/*
Theme Name: Totalmob
Author: Andweb
Author URI: https://www.andweb.ro/
Description: A custom theme for Totalmob.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: totalmob
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:   #000000;
      --near:    #1D1D1F;
      --dark:    #2D2D2F;
      --mid:     #6E6E73;
      --light:   #86868B;
      --silver:  #F5F5F7;
      --white:   #FFFFFF;
      --yellow:  #FFDB00;
      --blue:    #0057A8;
      --navy:    #002D62;
      --r: 16px;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--white);
      color: var(--near);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── UTILITIES ─────────── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }
    .container--wide { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── NAV ─────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      height: 52px;
      display: flex;
      align-items: center;
      background: rgba(0,0,0,0.72);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background 0.4s;
    }
    .nav.light {
      background: rgba(255,255,255,0.82);
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .nav .container {
      width: 100%;
      max-width: 1120px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-logo img{
        margin-bottom:10px;
    }
    .nav.light .nav-logo { color: var(--near); }
    .nav-logo span { color: var(--yellow); }
    .nav.light .nav-logo span { color: var(--blue); }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 0.25rem;
    }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      padding: 0.35rem 0.7rem;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      letter-spacing: 0.01em;
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
    .nav.light .nav-links a { color: var(--mid); }
    .nav.light .nav-links a:hover { color: var(--near); background: rgba(0,0,0,0.06); }

    .nav-cta-btn {
      font-size: 0.78rem;
      font-weight: 600;
      background: var(--yellow);
      color: var(--navy) !important;
      padding: 0.4rem 1rem !important;
      border-radius: 100px !important;
    }
    .nav-cta-btn:hover { background: #f0cb00 !important; color: var(--navy) !important; }
    .nav.light .nav-cta-btn { background: var(--yellow) !important; }

    .nav-toggle {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .nav-toggle:hover { background: rgba(255,255,255,0.1); }
    .nav.light .nav-toggle:hover { background: rgba(0,0,0,0.06); }
    .nav-toggle span {
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transform-origin: center;
      transition: transform 0.3s cubic-bezier(.16,1,.3,1), opacity 0.2s, width 0.3s;
    }
    .nav.light .nav-toggle span { background: var(--near); }
    /* hamburger → X */
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── HERO ────────────────────────────────── */
    .hero {
      position: relative;
      height: 100dvh;
      min-height: 680px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://totalmob.ro/images/backgrounds/Bucatarie1.jpg');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.06);
      transition: transform 9s cubic-bezier(.16,1,.3,1);
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.05) 100%),
        linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 60%);
    }

    /* Top bar inside hero */
    .hero-top {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: calc(52px + clamp(1.5rem, 3vw, 2.5rem)) clamp(2rem, 5vw, 4rem) 0;
    }
    .hero-year {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
    }

    /* Bottom content — editorial split */
    .hero-bottom {
      position: relative;
      z-index: 2;
      padding: 0 clamp(2rem, 5vw, 4rem) clamp(5rem, 12vh, 9rem);
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: flex-end;
      gap: clamp(2rem, 5vw, 5rem);
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 1rem;
    }
    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: var(--yellow);
      flex-shrink: 0;
    }
    .hero h1 {
      font-size: clamp(3.5rem, 9.5vw, 9.5rem);
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.045em;
      line-height: 0.95;
      margin: 0;
    }
    .hero h1 em { font-style: normal; color: var(--yellow); }

    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2rem;
      padding-bottom: 0.5rem;
      min-width: 260px;
      max-width: 320px;
    }
    .hero-sub {
      font-size: clamp(0.88rem, 1.2vw, 1rem);
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      text-align: left;
      max-width: none;
    }
    .hero-actions {
      display: flex;
      flex-direction: row;
      gap: 0.75rem;
      width: 100%;
    }
    .hero-actions .btn { justify-content: center; flex: 0 0 auto; }
    .hero-divider {
      width: 1px;
      background: rgba(255,255,255,0.12);
      align-self: stretch;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      border-radius: 100px;
      padding: 0.8rem 1.8rem;
      transition: all 0.22s cubic-bezier(.16,1,.3,1);
      border: none;
      cursor: pointer;
      letter-spacing: 0.01em;
    }
    .btn--yellow { background: var(--yellow); color: var(--navy); }
    .btn--yellow:hover { background: #f0cb00; transform: scale(1.03); }
    .btn--ghost  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(8px); }
    .btn--ghost:hover  { background: rgba(255,255,255,0.15); transform: scale(1.03); }
    .btn--dark   { background: var(--near); color: var(--white); }
    .btn--dark:hover { background: var(--dark); transform: scale(1.03); }
    .btn--outline-dark { background: transparent; color: var(--near); border: 1.5px solid rgba(0,0,0,0.2); }
    .btn--outline-dark:hover { background: var(--near); color: var(--white); transform: scale(1.03); }

    .hero-scroll {
      position: absolute;
      bottom: clamp(2rem,4vh,3rem);
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }
    .hero-scroll span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
    @keyframes scrollLine { 0%,100% { opacity:0.35; transform:scaleY(1) } 50% { opacity:0.9; transform:scaleY(1.4) } }

    @media (max-width: 700px) {
      /* Stack vertically, centre everything */
      .hero {
        justify-content: flex-end;
      }
      .hero-overlay {
        background:
          linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 100%);
      }
      .hero-top { padding-bottom: 0; }
      .hero-year { display: none; }

      .hero-bottom { padding-bottom: 2.5rem; }
      .hero-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .hero-divider { display: none; }

      .hero-eyebrow { margin-bottom: 0.75rem; }

      .hero h1 {
        font-size: clamp(3rem, 13vw, 4.5rem);
        line-height: 1.0;
      }

      .hero-right {
        align-items: flex-start;
        max-width: 100%;
        min-width: 0;
        gap: 1.25rem;
      }
      .hero-sub {
        font-size: 0.95rem;
        text-align: left;
        color: rgba(255,255,255,0.65);
      }
      .hero-actions {
        flex-direction: row;
        width: 100%;
      }
      .hero-actions .btn {
        flex: 1;
        text-align: center;
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
      }
      .hero-scroll { display: none; }
    }

    /* ── MARQUEE ────────────────────────── */
    .marquee-wrap {
      background: var(--yellow);
      padding: 0.8rem 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      gap: 3rem;
      width: max-content;
      animation: marquee 30s linear infinite;
    }
    @keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      white-space: nowrap;
    }
    .marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--navy); opacity: 0.4; }

    /* ── STATEMENT ──────────────────────── */
    .statement {
      padding: clamp(6rem, 12vw, 12rem) 0;
      text-align: center;
    }
    .statement h2 {
      font-size: clamp(2.2rem, 5.5vw, 5.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.08;
      color: var(--near);
      max-width: 18ch;
      margin: 0 auto 1.5rem;
    }
    .statement h2 em { font-style: normal; color: var(--blue); }
    .statement p {
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      font-weight: 300;
      color: var(--light);
      max-width: 52ch;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    /* ── ABOUT SPLIT ─────────────────────── */
    .about { background: var(--silver); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }
    .about-image-side {
      position: relative;
      overflow: hidden;
    }
    .about-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .about-text-side {
      padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--white);
    }
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
      display: block;
    }
    .about-text-side h2 {
      font-size: clamp(1.8rem, 3vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .about-text-side p {
      font-size: 1rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.75;
      margin-bottom: 1rem;
      max-width: 40ch;
    }
    .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0; }
    .tag {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--near);
      background: var(--silver);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      border: 1px solid rgba(0,0,0,0.08);
    }
    .about-year {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.08);
      display: flex;
      gap: 2.5rem;
    }
    .about-year-item strong {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--near);
    }
    .about-year-item span { font-size: 0.82rem; color: var(--light); }

    /* ── PRODUCTS ─────────────────────────── */
    .products { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--near); }
    .products-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: clamp(2.5rem, 5vw, 5rem);
    }
    .products-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      max-width: 18ch;
      line-height: 1.1;
    }
    .products-head p { font-size: 0.95rem; color: var(--light); max-width: 32ch; line-height: 1.65; font-weight: 300; }

    .bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: auto;
      gap: 1.5px;
    }
    .prod-card {
      position: relative;
      overflow: hidden;
      background: var(--dark);
      cursor: pointer;
    }
    .bento .prod-card:nth-child(1) { grid-column: span 2; }
    .bento .prod-card:nth-child(1) img { min-height: 440px; }
    .prod-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-height: 300px;
      transition: transform 0.7s cubic-bezier(.16,1,.3,1);
    }
    .prod-card:hover img { transform: scale(1.05); }
    .prod-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.75rem;
    }
    .prod-cat {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.4rem;
    }
    .prod-name {
      font-size: clamp(0.95rem, 1.6vw, 1.25rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    /* ── GALLERY ─────────────────────────── */
    .gallery { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--white); }
    .gallery-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
    .gallery-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .gallery-head p { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 48ch; }

    .gallery-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .g-tab {
      font-size: 0.82rem;
      font-weight: 600;
      padding: 0.5rem 1.1rem;
      border-radius: 100px;
      border: 1.5px solid rgba(0,0,0,0.12);
      background: transparent;
      color: var(--mid);
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
      letter-spacing: 0.01em;
    }
    .g-tab:hover { border-color: var(--near); color: var(--near); }
    .g-tab.active { background: var(--near); border-color: var(--near); color: var(--white); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
    }
    .g-item {
      aspect-ratio: 1;
      overflow: hidden;
      cursor: pointer;
      background: var(--silver);
      position: relative;
    }
    .g-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(.16,1,.3,1);
    }
    .g-item:hover img { transform: scale(1.08); }
    .g-item.g-hidden { display: none; }

    /* lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.96);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lb-img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 40px 120px rgba(0,0,0,0.8);
    }
    .lb-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--white);
      font-size: 1.3rem;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lb-close:hover { background: rgba(255,255,255,0.2); }
    .lb-prev, .lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      font-size: 1.2rem;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); }
    .lb-prev { left: 1.5rem; }
    .lb-next { right: 1.5rem; }
    .lb-counter {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.1em;
    }

    @media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 580px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ── MATERIALS ────────────────────────── */
    .materials { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--silver); }
    .materials-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
    .materials-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .materials-head p { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 48ch; margin: 0 auto; }

    .materials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .mat-card {
      background: var(--white);
      border-radius: var(--r);
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s;
    }
    .mat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
    .mat-swatch {
      height: 160px;
      display: flex;
      align-items: flex-end;
      padding: 1.25rem;
      position: relative;
      overflow: hidden;
    }
    .mat-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: rgba(0,0,0,0.55);
      color: var(--white);
      padding: 0.3rem 0.7rem;
      border-radius: 100px;
      backdrop-filter: blur(6px);
    }
    .mat-body { padding: 1.5rem; }
    .mat-body h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
    .mat-body p  { font-size: 0.88rem; color: var(--light); line-height: 1.65; font-weight: 300; max-width: none; }
    .mat-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
    .mat-tag {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--blue);
      background: rgba(0,87,168,0.07);
      padding: 0.25rem 0.7rem;
      border-radius: 100px;
    }

    /* gradient swatches */
    .sw-pal     { background: linear-gradient(135deg, #D4C5A9 0%, #B8A989 50%, #8B7355 100%); }
    .sw-mdf-mel { background: linear-gradient(135deg, #F0EDE8 0%, #D8D0C4 50%, #B8AFA0 100%); }
    .sw-mdf-lac { background: linear-gradient(135deg, #E8F0F4 0%, #B8D0DC 50%, #2D6E8E 100%); }
    .sw-lemn    { background: linear-gradient(135deg, #C8A87A 0%, #9B7340 50%, #6B4F25 100%); }
    .sw-blat    { background: linear-gradient(135deg, #F4F0EC 0%, #D4C8B8 100%); }
    .sw-sticla  { background: linear-gradient(135deg, rgba(180,210,230,0.5) 0%, rgba(120,180,210,0.8) 100%); backdrop-filter: blur(4px); }

    @media (max-width: 900px) { .materials-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 580px) { .materials-grid { grid-template-columns: 1fr; } }

    /* ── ADVANTAGES ──────────────────────── */
    .adv { padding: clamp(5rem, 10vw, 10rem) 0; }
    .adv-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 6rem); }
    .adv-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .adv-head p { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 44ch; margin: 0 auto; }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .adv-card {
      background: var(--silver);
      border-radius: var(--r);
      padding: clamp(1.75rem, 3vw, 2.5rem);
      transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s;
    }
    .adv-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
    .adv-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .adv-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
    .adv-card p  { font-size: 0.88rem; color: var(--light); line-height: 1.65; font-weight: 300; max-width: none; }

    /* ── PROCESS ─────────────────────────── */
    .process { background: var(--near); padding: clamp(5rem, 10vw, 10rem) 0; }
    .process-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 6rem); }
    .process-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .process-head p { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 40ch; margin: 0 auto; }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .step {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--r);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .step::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--yellow);
    }
    .step-num {
      font-size: 4rem;
      font-weight: 900;
      letter-spacing: -0.06em;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      margin-bottom: 1.5rem;
    }
    .step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
    .step p  { font-size: 0.86rem; color: var(--light); line-height: 1.65; font-weight: 300; }

    /* ── STATS ────────────────────────────── */
    .stats {
      padding: clamp(5rem, 10vw, 10rem) 0;
      background: var(--silver);
    }
    .stats-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,0.06);
      border-radius: var(--r);
      overflow: hidden;
    }
    .stat-cell {
      background: var(--white);
      padding: clamp(2rem, 4vw, 4rem) 2rem;
      text-align: center;
    }
    .stat-num {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 900;
      letter-spacing: -0.05em;
      color: var(--near);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-num span { color: var(--blue); }
    .stat-label { font-size: 0.85rem; color: var(--light); font-weight: 400; letter-spacing: 0.01em; }

    /* ── TESTIMONIALS ─────────────────────── */
    .testimonials { padding: clamp(5rem, 10vw, 10rem) 0; }
    .testimonials-head { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
    .testimonials-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .testimonials-head p { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 44ch; }

    .t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .t-card {
      background: var(--silver);
      border-radius: var(--r);
      padding: clamp(1.75rem, 3vw, 2.5rem);
    }
    .t-stars { font-size: 0.85rem; margin-bottom: 1.25rem; color: var(--yellow); letter-spacing: 0.1em; }
    .t-text {
      font-size: clamp(1.05rem, 1.5vw, 1.2rem);
      font-weight: 300;
      line-height: 1.65;
      color: var(--near);
      margin-bottom: 2rem;
      font-style: italic;
    }
    .t-author strong { font-size: 0.9rem; font-weight: 700; display: block; }
    .t-author span   { font-size: 0.8rem; color: var(--light); }

    /* ── FAQ ──────────────────────────────── */
    .faq { background: var(--near); padding: clamp(5rem, 10vw, 10rem) 0; }
    .faq-inner { max-width: 760px; margin: 0 auto; }
    .faq-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
    .faq-head h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .faq-head p { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 38ch; margin: 0 auto; }

    .faq-list { display: flex; flex-direction: column; gap: 1px; }
    .faq-item { background: rgba(255,255,255,0.04); border-radius: 0; overflow: hidden; }
    .faq-item:first-child { border-radius: var(--r) var(--r) 0 0; }
    .faq-item:last-child  { border-radius: 0 0 var(--r) var(--r); }
    .faq-item:only-child  { border-radius: var(--r); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 1.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      text-align: left;
      gap: 1.5rem;
      transition: background 0.2s;
      font-family: inherit;
    }
    .faq-q:hover { background: rgba(255,255,255,0.04); }
    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: grid;
      place-items: center;
      transition: transform 0.3s, background 0.3s;
      font-size: 1rem;
      color: var(--white);
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(.16,1,.3,1);
    }
    .faq-a-inner { padding: 0 1.75rem 1.4rem; font-size: 0.9rem; color: var(--light); line-height: 1.7; font-weight: 300; }
    .faq-item.open .faq-a { max-height: 200px; }

    /* ── CONTACT ──────────────────────────── */
    .contact { padding: clamp(5rem, 10vw, 10rem) 0; }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(3rem, 6vw, 7rem);
      align-items: start;
    }
    .contact-left h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .contact-left > p {
      font-size: 1rem;
      color: var(--light);
      font-weight: 300;
      line-height: 1.7;
      max-width: 36ch;
      margin-bottom: 2.5rem;
    }
    .c-details { display: flex; flex-direction: column; gap: 1.5rem; }
    .c-detail { display: flex; gap: 1rem; align-items: flex-start; }
    .c-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--silver);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .c-detail strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--near); margin-bottom: 0.2rem; letter-spacing: 0.02em; }
    .c-detail span,.c-detail .is-span, .c-detail a { font-size: 0.88rem; color: var(--light); text-decoration: none; line-height: 1.5; }
    .c-detail a:hover { color: var(--blue); }

    .c-detail p{
      margin-bottom: 0;
    }

    .wpcf7 .fg label{
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .contact-form {
      background: var(--silver);
      border-radius: 20px;
      padding: clamp(2rem, 4vw, 3rem);
    }
    .contact-form h3 {
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1.75rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .fg { margin-bottom: 0.75rem; }
    .fg label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--mid); margin-bottom: 0.4rem; letter-spacing: 0.04em; text-transform: uppercase; }
    .fg input, .fg select, .fg textarea {
      width: 100%;
      padding: 0.85rem 1.1rem;
      background: var(--white);
      border: 1.5px solid transparent;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: var(--near);
      outline: none;
      transition: border-color 0.2s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); }
    .fg textarea { resize: vertical; min-height: 90px;height:90px }
    .form-btn {
      width: 100%;
      margin-top: 0.5rem;
      padding: 1rem;
      background: var(--near);
      color: var(--white);
      border: none;
      border-radius: 100px;
      font-family: inherit;
      font-size: 0.92rem;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.2s;
    }
    .form-btn:hover { background: var(--blue); transform: scale(1.02); }

    /* ── FOOTER ───────────────────────────── */
    .footer { background: var(--black); padding: clamp(4rem, 8vw, 7rem) 0 2rem; }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      margin-bottom: 4rem;
    }
    .footer-logo {
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      text-decoration: none;
      display: block;
      margin-bottom: 1rem;
    }
    .footer-logo span { color: var(--yellow); }
    .footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 28ch; margin-bottom: 1.5rem; font-weight: 300; }

    .footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem;padding:0; }
    .footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 300; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); font-weight: 300; }

    /* ── MOBILE ───────────────────────────── */
    @media (max-width: 900px) {
      .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 52px; left: 0; right: 0;
        height: calc(100dvh - 52px);
        background: rgba(10,10,12,0.97);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        padding: 2rem 1.5rem;
        gap: 0.25rem;
        z-index: 199;
        /* hidden state */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.3s cubic-bezier(.16,1,.3,1), transform 0.3s cubic-bezier(.16,1,.3,1);
      }
      .nav-links.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
      }
      .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
      .nav-links li:last-child { border-bottom: none; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
      .nav-links a {
        display: block;
        font-size: 1.15rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75) !important;
        padding: 1rem 0.5rem;
        border-radius: 0;
        background: none !important;
        letter-spacing: -0.01em;
      }
      .nav-links a:hover { color: var(--white) !important; }
      .nav-links .nav-cta-btn {
        display: block;
        background: var(--yellow) !important;
        color: var(--navy) !important;
        text-align: center;
        border-radius: 100px !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
      }
      .nav-toggle { display: flex; }
      .about-inner { grid-template-columns: 1fr; }
      .about-image-side { height: 320px; }
      .bento { grid-template-columns: repeat(2, 1fr); }
      .bento .prod-card:nth-child(1) { grid-column: span 1; }
      .bento .prod-card:nth-child(1) img { min-height: 300px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr;background:initial; }
      .t-grid { grid-template-columns: 1fr; }
      .adv-grid { grid-template-columns: 1fr 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 580px) {
      .bento { grid-template-columns: 1fr; }
      .bento .prod-card { grid-column: span 1 !important; }
      .process-steps { grid-template-columns: 1fr; }
      .adv-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
    }