@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --pink-himalayan: #FDF2F0;
  --raw-quartz: #E8E8E8;
  --copper-ore: #B87333;
  --deep-basalt: #2D2D2D;
  --mist-white: #FFFFFF;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 45, 45, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 45, 45, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--pink-himalayan);
  color: var(--deep-basalt);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 1400px;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all var(--transition-luxury);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.hidden {
  transform: translateX(-50%) translateY(-120%);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper-ore);
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper-ore);
  transition: width var(--transition-smooth);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--deep-basalt);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--mist-white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl) var(--space-md);
  transition: right var(--transition-luxury);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: var(--space-sm);
  border-bottom: 1px solid var(--raw-quartz);
  transition: all var(--transition-smooth);
}

.nav-mobile a:hover {
  color: var(--copper-ore);
  padding-left: var(--space-md);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
  margin-top: 80px;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  text-align: center;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--deep-basalt);
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--copper-ore);
  color: var(--mist-white);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width var(--transition-luxury), height var(--transition-luxury);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--mist-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
  transform: translateY(40px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--copper-ore);
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.4rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-content {
  position: relative;
  z-index: 2;
}

.asymmetric-image {
  position: relative;
  transform: rotate(-3deg);
  transition: all var(--transition-luxury);
}

.asymmetric-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.asymmetric-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.overlap-section {
  position: relative;
  margin-top: var(--space-xl);
}

.overlap-bg {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: var(--copper-ore);
  opacity: 0.1;
  border-radius: var(--radius-lg);
  transform: rotate(5deg);
  z-index: 0;
}

.price-card {
  background: var(--mist-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-ore), var(--deep-basalt));
  transform: scaleX(0);
  transition: transform var(--transition-luxury);
}

.price-card:hover::before {
  transform: scaleX(1);
}

.price-card:hover {
  transform: translateY(-10px) rotate(-1deg);
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--copper-ore);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: var(--mist-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--copper-ore);
  opacity: 0.05;
  border-radius: 50%;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--raw-quartz);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
  background: var(--pink-himalayan);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper-ore);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer {
  background: var(--deep-basalt);
  color: var(--mist-white);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.85rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer a:hover {
  color: var(--copper-ore);
}

.popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--mist-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform var(--transition-luxury);
}

.popup.active {
  transform: translateY(0);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.popup-header h4 {
  font-size: 1.1rem;
}

.popup-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--deep-basalt);
  transition: color var(--transition-fast);
}

.popup-close:hover {
  color: var(--copper-ore);
}

.popup-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn-secondary {
  background: var(--raw-quartz);
  color: var(--deep-basalt);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thank-you-content {
  max-width: 600px;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--copper-ore);
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-luxury) ease-out;
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.error-content h1 {
  font-size: 8rem;
  color: var(--copper-ore);
  opacity: 0.3;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  margin-top: var(--space-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--mist-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.info-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 1.8rem;
  color: var(--copper-ore);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .asymmetric-section:nth-child(even) .asymmetric-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .header {
    width: 95%;
    padding: var(--space-sm);
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .hero {
    margin-top: 60px;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .popup {
    right: var(--space-sm);
    left: var(--space-sm);
    max-width: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .section > .container > div[style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
  
  .section > .container > div > div[style*="position: sticky"] {
    position: static !important;
  }
  
  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.85rem;
  }

  /* Stack all inline 2-col grids */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .service-big-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonials-wrap,
  .steps-wrap,
  .values-row,
  .stats-row,
  .guarantee-strip {
    grid-template-columns: 1fr !important;
  }

  .steps-wrap::before {
    display: none;
  }

  .stats-floating {
    grid-template-columns: repeat(2, 1fr) !important;
    margin: -2.5rem 0.75rem 0 !important;
  }

  .contact-card {
    grid-template-columns: 1fr !important;
  }

  .cta-block-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-block-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .story-timeline {
    padding-left: 55px;
  }

  .story-timeline::before {
    left: 18px;
  }

  .story-dot {
    left: -50px;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   320px — COMPREHENSIVE MOBILE SMALL SCREEN BREAKPOINT
   Covers all layout, typography, spacing, and component styles
   ============================================================ */
@media (max-width: 320px) {

  /* ── BASE ── */
  html {
    font-size: 12px;
  }

  body {
    overflow-x: hidden;
  }

  /* ── TYPOGRAPHY ── */
  h1 { font-size: 2rem !important; line-height: 1.1 !important; }
  h2 { font-size: 1.55rem !important; line-height: 1.15 !important; }
  h3 { font-size: 1.2rem !important; }
  h4 { font-size: 1rem !important; }

  /* ── HEADER ── */
  .header {
    width: 100%;
    border-radius: 0;
    padding: 0.6rem 0.75rem;
    left: 0;
    transform: translateX(0);
  }

  .header.hidden {
    transform: translateY(-120%);
  }

  .logo {
    font-size: 1.15rem;
  }

  /* ── MOBILE NAV ── */
  .nav-mobile {
    padding: 5rem 1.25rem 2rem;
    gap: 0.5rem;
  }

  .nav-mobile a {
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
  }

  /* ── HERO ── */
  .hero {
    margin-top: 56px;
    padding: 3rem 0.75rem 2.5rem !important;
    min-height: auto !important;
  }

  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .hero p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  /* Force all inline grid columns to single column */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Hero split image: hide on tiny screens to save space */
  .hero .container > div > div:last-child img {
    height: 220px !important;
  }

  /* Hero floating badge: reposition */
  .hero [style*="position: absolute; bottom:"] {
    position: static !important;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Year badge on despre hero */
  .hero [style*="position: absolute; bottom: 2rem; right:"] {
    position: static !important;
    display: inline-flex;
    margin-top: 1rem;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 2.5rem 0.75rem !important;
  }

  .container {
    padding: 0;
  }

  /* ── EYEBROW ── */
  .eyebrow {
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .eyebrow span {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }

  .eyebrow-line {
    width: 24px;
  }

  /* ── TICKER ── */
  .ticker-item {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    padding: 0 1.2rem;
    gap: 1rem;
  }

  /* ── STATS FLOATING ── */
  .stats-floating {
    grid-template-columns: 1fr 1fr !important;
    margin: -2rem 0.5rem 0 !important;
    border-radius: var(--radius-md);
  }

  .stat-col {
    padding: 1.25rem 0.75rem;
    border-right: 1px solid var(--raw-quartz) !important;
    border-bottom: 1px solid var(--raw-quartz) !important;
  }

  .stat-col:nth-child(even) {
    border-right: none !important;
  }

  .stat-col:nth-last-child(-n+2) {
    border-bottom: none !important;
  }

  .stat-big {
    font-size: 2.2rem;
  }

  .stat-desc {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* ── FEATURES STRIP ── */
  .features-strip-inner {
    grid-template-columns: 1fr !important;
  }

  .feat-col {
    padding: 2rem 1.25rem;
    border-right: none !important;
    border-bottom: 1px solid var(--raw-quartz);
  }

  .feat-col:last-child {
    border-bottom: none;
  }

  .feat-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .feat-col h3 {
    font-size: 1.05rem !important;
  }

  /* ── SERVICE BIG GRID ── */
  .service-big-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .svc-card-top {
    padding: 1.75rem 1.25rem;
    min-height: 120px;
  }

  .svc-card-top i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .svc-card-top h3 {
    font-size: 1.1rem !important;
  }

  .svc-card-body {
    padding: 1.25rem;
  }

  /* ── PROCESS STEPS ── */
  .steps-wrap {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
  }

  .steps-wrap::before {
    display: none;
  }

  .step-item {
    padding: 1.25rem 0.75rem;
  }

  .step-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
  }

  .step-circle i {
    font-size: 1.4rem;
  }

  .step-item h3 {
    font-size: 1rem !important;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-wrap {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .testi-card {
    padding: 1.5rem 1.25rem;
  }

  .testi-quote {
    font-size: 3rem;
  }

  .testi-text {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  /* ── CARDS & GRID ── */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .card-icon {
    font-size: 2rem;
  }

  .card h3 {
    font-size: 1.1rem !important;
  }

  /* ── PRICE CARDS ── */
  .price-card {
    padding: 1.75rem 1.25rem;
  }

  .price {
    font-size: 2rem;
  }

  /* ── PRICE TABLE ── */
  .price-tbl {
    display: block;
    overflow-x: auto;
    font-size: 0.8rem;
  }

  .price-tbl th,
  .price-tbl td {
    padding: 0.8rem 1rem;
    white-space: nowrap;
  }

  .price-tbl .price-val {
    font-size: 1rem;
  }

  /* ── GUARANTEE STRIP ── */
  .guarantee-strip {
    grid-template-columns: 1fr !important;
    border-radius: var(--radius-md);
  }

  .guar-item {
    padding: 2rem 1.25rem;
    border-right: none !important;
    border-bottom: 1px solid var(--raw-quartz);
  }

  .guar-item:last-child {
    border-bottom: none;
  }

  .guar-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  /* ── STATS ROW (dark) ── */
  .stats-row {
    grid-template-columns: 1fr !important;
  }

  .stats-col {
    padding: 2.5rem 1.25rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .stats-col:last-child {
    border-bottom: none;
  }

  .stats-big-num {
    font-size: 3rem;
  }

  /* ── VALUES ROW ── */
  .values-row {
    grid-template-columns: 1fr !important;
    border-radius: var(--radius-md);
  }

  .val-item {
    padding: 2rem 1.25rem;
    border-right: none !important;
    border-bottom: 1px solid var(--raw-quartz);
  }

  .val-item:last-child {
    border-bottom: none;
  }

  .val-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  /* ── STORY TIMELINE ── */
  .story-timeline {
    padding-left: 50px;
  }

  .story-timeline::before {
    left: 16px;
  }

  .story-dot {
    left: -48px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .story-content {
    padding: 1.25rem;
  }

  .story-content h3 {
    font-size: 1rem !important;
  }

  .story-content p {
    font-size: 0.8rem;
  }

  /* ── CONTACT CARD ── */
  .contact-card {
    grid-template-columns: 1fr !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .contact-left,
  .contact-right {
    padding: 1.75rem 1.25rem;
  }

  .contact-left h2 {
    font-size: 1.5rem !important;
  }

  .c-info-list {
    gap: 1.1rem;
  }

  .c-info-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .c-info-text span:last-child,
  .c-info-text a {
    font-size: 0.8rem;
    word-break: break-word;
  }

  .contact-right h3 {
    font-size: 1.3rem !important;
  }

  /* ── FORM ── */
  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .form-group label {
    font-size: 0.82rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  /* ── FAQ ACCORDION ── */
  .acc-trigger {
    font-size: 0.875rem;
    padding: 1.1rem 0;
    gap: 0.75rem;
  }

  .acc-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .acc-body-inner {
    font-size: 0.82rem;
  }

  /* ── CTA DARK BLOCK ── */
  .cta-block {
    padding: 3.5rem 1rem;
  }

  .cta-block h2 {
    font-size: 1.7rem !important;
  }

  .cta-block p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .cta-block-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-block-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* ── BUTTONS ── */
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.82rem;
  }

  /* ── ASYMMETRIC INLINE SECTIONS ── */
  .asymmetric-section {
    gap: 1.5rem;
  }

  /* ── MAP ── */
  .map-container {
    height: 260px;
    border-radius: var(--radius-md);
  }

  /* Map address strip → single column at 320px */
  .section [style*="grid-template-columns: repeat(4, 1fr)"],
  .section [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  .section [style*="border-right: 1px solid rgba(255,255,255,0.06)"] {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }

  /* ── INFO GRID ── */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .info-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  /* ── CONTACT SECTION (legacy) ── */
  .contact-section {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .contact-section h2 {
    font-size: 1.5rem !important;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 1.5rem 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  /* ── POPUP ── */
  .popup {
    padding: 1rem;
    bottom: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
    border-radius: var(--radius-md);
  }

  .popup-header h4 {
    font-size: 0.95rem !important;
  }

  .popup p {
    font-size: 0.8rem;
  }

  .popup-buttons {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .popup-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
  }
}

/* ====================================================
   REDESIGN 2.0 — NEW DESIGN SYSTEM ADDITIONS
   ==================================================== */

/* DARK SECTION */
.section-dark {
  background: var(--deep-basalt);
  color: var(--mist-white);
}

/* EYEBROW / SECTION LABEL */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--copper-ore);
  flex-shrink: 0;
}

.eyebrow span {
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper-ore);
  font-weight: 600;
}

/* TICKER / MARQUEE */
.ticker-section {
  background: var(--copper-ore);
  padding: 0.8rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}

.ticker-item {
  color: var(--mist-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.ticker-item::after {
  content: '✦';
  opacity: 0.55;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* STATS FLOATING STRIP */
.stats-floating {
  background: var(--mist-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(45,45,45,0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: -5rem auto 0;
}

.stat-col {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--raw-quartz);
}

.stat-col:last-child {
  border-right: none;
}

.stat-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--copper-ore);
  line-height: 1;
  display: block;
}

.stat-desc {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep-basalt);
  opacity: 0.5;
  margin-top: 0.5rem;
  display: block;
}

/* FEATURES STRIP */
.features-strip {
  border-top: 1px solid var(--raw-quartz);
  border-bottom: 1px solid var(--raw-quartz);
}

.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.feat-col {
  padding: 4rem 3rem;
  border-right: 1px solid var(--raw-quartz);
  text-align: center;
  transition: background var(--transition-smooth);
}

.feat-col:last-child {
  border-right: none;
}

.feat-col:hover {
  background: rgba(184,115,51,0.04);
}

.feat-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--copper-ore) 0%, #8B5A2B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(184,115,51,0.3);
}

.feat-col h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.feat-col p {
  font-size: 0.875rem;
  line-height: 1.75;
  opacity: 0.72;
}

/* SERVICE BIG CARDS GRID */
.service-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.svc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-luxury);
  background: var(--mist-white);
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(45,45,45,0.18);
}

.svc-card-top {
  background: var(--deep-basalt);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-card-top::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--copper-ore);
  opacity: 0.12;
  transition: all var(--transition-luxury);
}

.svc-card:hover .svc-card-top::before {
  transform: scale(2.5);
  opacity: 0.07;
}

.svc-card-top i {
  font-size: 2.5rem;
  color: var(--copper-ore);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.svc-card-top h3 {
  color: var(--mist-white);
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
}

.svc-card-body {
  padding: 2rem;
}

.svc-card-body p {
  font-size: 0.875rem;
  line-height: 1.75;
  opacity: 0.78;
  margin-bottom: 1.5rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.svc-tag {
  background: var(--pink-himalayan);
  color: var(--copper-ore);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

.svc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--copper-ore);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-smooth);
}

.svc-link:hover {
  gap: 1rem;
}

/* PROCESS STEPS */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  top: 55px;
  left: calc(16.6% + 30px);
  right: calc(16.6% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--copper-ore), var(--raw-quartz), var(--copper-ore));
}

.step-item {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--mist-white);
  border: 2px solid var(--copper-ore);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(184,115,51,0.15);
}

.step-item:hover .step-circle {
  background: var(--copper-ore);
}

.step-circle i {
  font-size: 1.8rem;
  color: var(--copper-ore);
  transition: color var(--transition-smooth);
}

.step-item:hover .step-circle i {
  color: white;
}

.step-circle span {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--copper-ore);
  margin-top: 0.3rem;
  font-weight: 600;
  transition: color var(--transition-smooth);
}

.step-item:hover .step-circle span {
  color: white;
}

.step-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.step-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.72;
}

/* TESTIMONIALS */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: var(--mist-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
  border-bottom: 3px solid transparent;
}

.testi-card:hover {
  border-bottom-color: var(--copper-ore);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-quote {
  font-size: 4.5rem;
  font-family: var(--font-display);
  color: var(--copper-ore);
  opacity: 0.18;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.82;
  font-style: italic;
  margin-bottom: 2rem;
}

.testi-stars {
  color: var(--copper-ore);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--copper-ore);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.78rem;
  opacity: 0.52;
}

/* DARK CTA BLOCK */
.cta-block {
  background: var(--deep-basalt);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before,
.cta-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--copper-ore);
  opacity: 0.06;
}

.cta-block::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
}

.cta-block::after {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -200px;
}

.cta-block h2 {
  color: var(--mist-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-block p {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta-block-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--mist-white);
  color: var(--deep-basalt);
}

.btn-white:hover {
  background: var(--copper-ore);
  color: var(--mist-white);
}

.btn-ghost {
  background: transparent;
  color: var(--mist-white);
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--mist-white);
  background: rgba(255,255,255,0.08);
}

/* GUARANTEE STRIP */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--mist-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.guar-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--raw-quartz);
  transition: background var(--transition-smooth);
}

.guar-item:last-child {
  border-right: none;
}

.guar-item:hover {
  background: var(--pink-himalayan);
}

.guar-icon {
  font-size: 2.5rem;
  color: var(--copper-ore);
  margin-bottom: 1.2rem;
}

.guar-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.guar-item p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.65;
}

/* PRICE TABLE */
.price-tbl {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.price-tbl thead tr {
  background: var(--deep-basalt);
  color: var(--mist-white);
}

.price-tbl th {
  padding: 1.2rem 2rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-tbl td {
  padding: 1.1rem 2rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--raw-quartz);
}

.price-tbl tbody tr:last-child td {
  border-bottom: none;
}

.price-tbl tbody tr:nth-child(odd) {
  background: var(--mist-white);
}

.price-tbl tbody tr:nth-child(even) {
  background: var(--pink-himalayan);
}

.price-tbl tbody tr:hover td {
  background: rgba(184,115,51,0.07);
}

.price-tbl .price-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--copper-ore);
  white-space: nowrap;
}

/* STATS ROW (dark) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--deep-basalt);
}

.stats-col {
  padding: 4rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.stats-col:last-child {
  border-right: none;
}

.stats-col::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--copper-ore);
  opacity: 0.06;
}

.stats-big-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--copper-ore);
  line-height: 1;
  display: block;
}

.stats-col h3 {
  color: var(--mist-white);
  font-size: 1.1rem;
  margin: 0.8rem 0 0.5rem;
}

.stats-col p {
  color: rgba(255,255,255,0.42);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* VALUES ROW (despre) */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--raw-quartz);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.val-item {
  padding: 3rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--raw-quartz);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.val-item:last-child {
  border-right: none;
}

.val-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--copper-ore);
  transform: scaleX(0);
  transition: transform var(--transition-luxury);
  transform-origin: left;
}

.val-item:hover::after {
  transform: scaleX(1);
}

.val-item:hover {
  background: rgba(184,115,51,0.04);
}

.val-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-ore), #8B5A2B);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 30px rgba(184,115,51,0.25);
}

.val-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.val-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.72;
}

/* STORY TIMELINE (despre) */
.story-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 100px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--copper-ore), rgba(184,115,51,0.1));
}

.story-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.story-item:last-child {
  margin-bottom: 0;
}

.story-dot {
  position: absolute;
  left: -78px;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mist-white);
  border: 2px solid var(--copper-ore);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-ore);
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(184,115,51,0.2);
  z-index: 1;
}

.story-content {
  background: var(--mist-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--copper-ore);
  transition: all var(--transition-smooth);
}

.story-item:hover .story-content {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.story-year {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-ore);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.story-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.story-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.72;
}

/* CONTACT SPLIT CARD */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(45,45,45,0.12);
}

.contact-left {
  background: var(--deep-basalt);
  padding: 3.5rem;
  color: var(--mist-white);
}

.contact-left h2 {
  color: var(--mist-white);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact-left > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.c-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.c-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184,115,51,0.18);
  border: 1px solid rgba(184,115,51,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-ore);
  flex-shrink: 0;
  font-size: 1rem;
}

.c-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-info-text span:first-child {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.c-info-text span:last-child,
.c-info-text a {
  color: var(--mist-white);
  font-size: 0.9rem;
}

.contact-right {
  background: var(--mist-white);
  padding: 3.5rem;
}

.contact-right h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.contact-right > p {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.acc-item {
  border-bottom: 1px solid var(--raw-quartz);
}

.acc-trigger {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep-basalt);
  text-align: left;
  transition: color var(--transition-smooth);
  gap: 1rem;
}

.acc-trigger:hover {
  color: var(--copper-ore);
}

.acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-himalayan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-ore);
  flex-shrink: 0;
  transition: all var(--transition-smooth);
  font-size: 1rem;
}

.acc-item.open .acc-icon {
  background: var(--copper-ore);
  color: white;
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.acc-item.open .acc-body {
  max-height: 300px;
}

.acc-body-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.75;
}

/* RESPONSIVE — NEW CLASSES */
@media (max-width: 1024px) {
  .stats-floating {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-big-grid,
  .steps-wrap,
  .testimonials-wrap,
  .values-row,
  .stats-row,
  .guarantee-strip {
    grid-template-columns: 1fr;
  }

  .stat-col {
    border-right: none;
    border-bottom: 1px solid var(--raw-quartz);
  }
  .stat-col:last-child { border-bottom: none; }

  .val-item {
    border-right: none;
    border-bottom: 1px solid var(--raw-quartz);
  }
  .val-item:last-child { border-bottom: none; }

  .stats-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .stats-col:last-child { border-bottom: none; }

  .guar-item {
    border-right: none;
    border-bottom: 1px solid var(--raw-quartz);
  }
  .guar-item:last-child { border-bottom: none; }

  .steps-wrap::before {
    display: none;
  }

  .story-timeline {
    padding-left: 80px;
  }

  .features-strip-inner {
    grid-template-columns: 1fr;
  }

  .feat-col {
    border-right: none;
    border-bottom: 1px solid var(--raw-quartz);
  }
  .feat-col:last-child { border-bottom: none; }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Map address strip stacks to 2 columns */
  .section [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stats-floating {
    grid-template-columns: repeat(2, 1fr);
    margin: -3rem 1rem 0;
  }

  .stat-col:nth-child(odd) {
    border-right: 1px solid var(--raw-quartz);
    border-bottom: 1px solid var(--raw-quartz);
  }
  .stat-col:nth-child(even) {
    border-bottom: 1px solid var(--raw-quartz);
  }
  .stat-col:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .price-tbl {
    display: block;
    overflow-x: auto;
  }

  .cta-block {
    padding: 5rem 1.5rem;
  }

  .contact-left,
  .contact-right {
    padding: 2.5rem 1.5rem;
  }

  .story-timeline {
    padding-left: 60px;
  }

  .story-timeline::before {
    left: 22px;
  }

  .story-dot {
    left: -58px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}