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

    :root {
      --navy:       #0D1B2A;
      --navy-mid:   #152233;
      --navy-dark:  #060E16;
      --ivory:      #F8F5F0;
      --ivory-dark: #EDE8E0;
      --gold:       #C9A84C;
      --gold-light: #E8D49A;
      --gold-pale:  rgba(201,168,76,.08);
      --slate:      #4A5568;
      --slate-lt:   #718096;
      --white:      #FFFFFF;
      --ff-display: 'Cormorant Garamond', Georgia, serif;
      --ff-body:    'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--ff-body); background: var(--ivory); color: var(--navy); line-height: 1.6; overflow-x: hidden; }

    /* ── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 3rem; height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(13,27,42,.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(201,168,76,.15);
    }
    .nav-logo { text-decoration: none; line-height: 1.15; }
    .nav-logo-name  { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500; color: var(--white); letter-spacing: .02em; display: block; }
    .nav-logo-title { font-size: .62rem; font-weight: 300; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; display: block; }

    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,.75); text-decoration: none;
      font-size: .75rem; font-weight: 400; letter-spacing: .09em; text-transform: uppercase;
      position: relative; transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-sep { width: 1px; height: 24px; background: rgba(255,255,255,.15); }

    .nav-lang { display: flex; gap: .3rem; align-items: center; flex-wrap: nowrap; }
    .lang-btn {
      background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
      font-family: var(--ff-body); font-size: .82rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.55); padding: .3rem .5rem; transition: color .2s;
    }
    .lang-flag { width: 18px; height: 12px; display: block; flex-shrink: 0; border-radius: 2px; }
    .lang-btn.active { color: var(--gold); }
    .lang-btn:hover  { color: var(--white); }

    .nav-cta {
      background: var(--gold) !important; color: var(--navy) !important;
      padding: .5rem 1.2rem !important; font-weight: 500 !important;
      transition: background .2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

    .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--white); }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      position: relative; height: 100vh; min-height: 680px;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('../img/remote/cropped-piron-guillaume-492639-unsplash.jpg') center 30% / cover no-repeat;
      transform: scale(1.06);
      animation: zoomOut 14s ease-out forwards;
    }
    @keyframes zoomOut { to { transform: scale(1); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(110deg, rgba(13,27,42,.9) 0%, rgba(13,27,42,.6) 55%, rgba(13,27,42,.25) 100%);
    }
    .hero-body {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 3rem; padding-top: 72px;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1.8rem;
      opacity: 0; animation: fadeUp .8s .3s forwards;
    }
    .hero-eyebrow-rule { width: 36px; height: 1px; background: var(--gold); }
    .hero-eyebrow-text { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

    .hero-h1 {
      font-family: var(--ff-display); font-weight: 300; line-height: 1.05;
      font-size: clamp(2.8rem, 5.5vw, 5.2rem); color: var(--white);
      opacity: 0; animation: fadeUp .8s .5s forwards;
    }
    .hero-h1 em { font-style: italic; }
    .hero-name {
      display: block; font-size: clamp(1.8rem, 3.5vw, 3.2rem);
      font-weight: 500; color: var(--gold-light); margin-top: .4rem;
    }
    .hero-sub {
      font-family: var(--ff-display); font-style: italic; font-weight: 300;
      font-size: clamp(.95rem, 1.8vw, 1.2rem); color: rgba(255,255,255,.65);
      max-width: 460px; margin: 1.4rem 0 2.8rem;
      opacity: 0; animation: fadeUp .8s .7s forwards;
    }
    .hero-btns { display: flex; align-items: center; gap: 1.5rem; opacity: 0; animation: fadeUp .8s .9s forwards; }

    .btn-gold {
      display: inline-flex; align-items: center; gap: .6rem;
      background: var(--gold); color: var(--navy);
      padding: .9rem 2rem; text-decoration: none;
      font-size: .9rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
      position: relative; overflow: hidden; transition: color .3s;
    }
    .btn-gold::before {
      content: ''; position: absolute; inset: 0;
      background: var(--white); transform: translateX(-101%); transition: transform .3s ease;
    }
    .btn-gold:hover::before { transform: translateX(0); }
    .btn-gold span { position: relative; z-index: 1; }
    .btn-ghost {
      color: rgba(255,255,255,.75); font-size: .9rem; letter-spacing: .06em;
      text-transform: uppercase; text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px;
      transition: color .2s, border-color .2s;
    }
    .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: rgba(255,255,255,.4); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
      opacity: 0; animation: fadeIn 1s 1.6s forwards;
    }
    .hero-scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: lineGrow 2s 1.6s infinite;
    }
    @keyframes lineGrow {
      0%   { transform: scaleY(0); transform-origin: top; }
      49%  { transform: scaleY(1); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ── STATS BAND ──────────────────────────────────── */
    .stats-band {
      background: var(--navy);
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat {
      padding: 2.5rem 2rem; text-align: center;
      border-right: 1px solid rgba(255,255,255,.07);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: var(--ff-display); font-size: 2.8rem; font-weight: 300;
      color: var(--gold); line-height: 1; margin-bottom: .4rem;
    }
    .stat-lbl { font-size: .68rem; font-weight: 300; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }

    /* ── SECTION SHELL ───────────────────────────────── */
    section { padding: 7rem 3rem; }
    .inner { max-width: 1200px; margin: 0 auto; }
    .s-label { display: flex; align-items: center; gap: 1rem; margin-bottom: .8rem; }
    .s-label-rule { width: 28px; height: 1px; background: var(--gold); }
    .s-label-text { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
    .s-title {
      font-family: var(--ff-display); font-weight: 300; line-height: 1.15;
      font-size: clamp(1.9rem, 3.5vw, 3rem); color: var(--navy); margin-bottom: 1.2rem;
    }
    .s-title em { font-style: italic; }
    .s-title-white { color: var(--white); }
    .s-lead { font-size: .95rem; font-weight: 300; color: var(--slate); line-height: 1.85; max-width: 560px; }

    /* ── SPECIALTIES ─────────────────────────────────── */
    #specialites { background: var(--ivory); }
    .spec-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem; }
    .spec-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5px; background: var(--ivory-dark);
    }
    .spec-card {
      background: var(--white); padding: 2.2rem 1.8rem;
      position: relative; overflow: hidden; transition: background .4s;
    }
    .spec-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--gold); transform: scaleX(0); transition: transform .4s;
    }
    .spec-card:hover { background: var(--navy); }
    .spec-card:hover::after { transform: scaleX(1); }

    .spec-num {
      font-family: var(--ff-display); font-size: 3.5rem; font-weight: 300;
      color: var(--ivory-dark); line-height: 1; margin-bottom: .8rem; transition: color .4s;
    }
    .spec-card:hover .spec-num { color: rgba(201,168,76,.15); }
    .spec-name {
      font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500;
      color: var(--navy); line-height: 1.3; margin-bottom: .7rem; transition: color .4s;
    }
    .spec-card:hover .spec-name { color: var(--white); }
    .spec-desc { font-size: .9rem; font-weight: 300; color: var(--slate-lt); line-height: 1.75; transition: color .4s; }
    .spec-card:hover .spec-desc { color: rgba(255,255,255,.55); }
    .spec-arrow {
      position: absolute; bottom: 1.2rem; right: 1.2rem;
      width: 18px; height: 18px; opacity: 0;
      transform: translate(-4px, 4px); transition: all .4s;
      color: var(--gold);
    }
    .spec-card:hover .spec-arrow { opacity: 1; transform: translate(0,0); }

    /* ── ABOUT ───────────────────────────────────────── */
    #a-propos { background: var(--navy); }
    .about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }

    .portrait-wrap { position: relative; }
    .portrait-frame { position: relative; }
    .portrait-frame::before {
      content: ''; position: absolute;
      top: -1.5rem; left: -1.5rem; right: 1.5rem; bottom: 1.5rem;
      border: 1px solid rgba(201,168,76,.35); z-index: 0;
    }
    .portrait-img {
      position: relative; z-index: 1; width: 100%;
      aspect-ratio: 3/4; object-fit: cover; object-position: top center;
      filter: grayscale(15%); display: block;
    }
    .portrait-caption { margin-top: 1.8rem; padding-left: 1rem; border-left: 2px solid var(--gold); }
    .portrait-caption-name  { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--white); }
    .portrait-caption-title { font-size: .9rem; font-weight: 300; letter-spacing: .06em; color: var(--gold); margin-top: .3rem; }

    .about-text { font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.95; margin-bottom: 1.4rem; }
    .about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2.5rem 0; }
    .cred {
      padding: 1.1rem 1.3rem;
      border: 1px solid rgba(201,168,76,.18);
      background: rgba(201,168,76,.04);
    }
    .cred-label { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
    .cred-val   { font-family: var(--ff-display); font-size: .95rem; font-weight: 400; color: var(--white); }
    .about-quote {
      padding: 1.8rem 2.2rem;
      border-left: 3px solid var(--gold);
      background: rgba(201,168,76,.06);
    }
    .about-quote p {
      font-family: var(--ff-display); font-style: italic; font-weight: 300;
      font-size: 1.15rem; color: rgba(255,255,255,.82); line-height: 1.65;
    }

    /* ── ROBOTIC FEATURE ─────────────────────────────── */
    .robotic { background: var(--ivory-dark); overflow: hidden; }
    .robotic-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
    .robotic-img {
      background: url('../img/remote/20190105_162209-722x1024.jpg') center top / cover no-repeat;
      min-height: 520px;
    }
    .robotic-body {
      background: var(--navy-mid); padding: 5rem 4rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .robotic-text { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.95; margin: 1.5rem 0 2rem; }
    .robotic-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
    .robotic-list li { display: flex; gap: .8rem; font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.65); }
    .robotic-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

    /* ── FAQ ─────────────────────────────────────────── */
    #faq { background: var(--white); }
    .faq-list { max-width: 780px; margin-top: 3rem; }
    .faq-item { border-bottom: 1px solid var(--ivory-dark); }
    .faq-btn {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.4rem 0; text-align: left; gap: 1rem;
    }
    .faq-q {
      font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500;
      color: var(--navy); transition: color .2s;
    }
    .faq-btn:hover .faq-q { color: var(--gold); }
    .faq-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
    .faq-icon::before, .faq-icon::after {
      content: ''; position: absolute; background: var(--gold); transition: transform .3s, opacity .3s;
    }
    .faq-icon::before { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
    .faq-icon::after  { height: 1px; width: 100%; top: 50%; transform: translateY(-50%); }
    .faq-item.open .faq-icon::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
    .faq-ans { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .3s; }
    .faq-item.open .faq-ans { max-height: 400px; padding-bottom: 1.4rem; }
    .faq-ans p { font-size: .9rem; font-weight: 300; color: var(--slate); line-height: 1.9; }

    /* ── LOCATION ────────────────────────────────────── */
    #localisation { background: var(--ivory); }
    .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
    .hours-table { margin: 1.8rem 0; }
    .hours-row { display: flex; justify-content: space-between; padding: .95rem 0; border-bottom: 1px solid var(--ivory-dark); font-size: .9rem; }
    .hours-day  { font-weight: 400; color: var(--navy); }
    .hours-time { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500; color: var(--navy); }
    .loc-note {
      font-size: .9rem; font-weight: 300; font-style: italic; color: var(--slate-lt);
      padding: 1rem 1.2rem; background: var(--gold-pale); border-left: 2px solid var(--gold); margin-top: 1rem;
    }
    .map-box { background: var(--navy-mid); aspect-ratio: 4/3; overflow: hidden; }
    .map-box iframe { width: 100%; height: 100%; border: none; display: block; }
    .addr-card { background: var(--navy); padding: 1.5rem; margin-top: 1px; }
    .addr-line { display: flex; align-items: center; gap: .7rem; font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.6); margin-bottom: .4rem; }
    .addr-line:last-child { margin-bottom: 0; }
    .addr-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

    /* ── CONTACT ─────────────────────────────────────── */
    #contact { background: var(--navy); }
    .contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
    .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
    .cd-label { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
    .cd-val { font-family: var(--ff-display); font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.82); text-decoration: none; transition: color .2s; display: block; }
    a.cd-val:hover { color: var(--gold); }

    .contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
    .honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .form-alert {
      padding: 1rem 1.2rem;
      border-left: 3px solid var(--gold);
      background: rgba(255,255,255,.08);
      color: var(--white);
      font-size: .95rem;
      line-height: 1.65;
    }
    .form-alert.success {
      border-left-color: #7bb661;
      background: rgba(123,182,97,.12);
    }
    .form-alert.error {
      border-left-color: #d77a7a;
      background: rgba(215,122,122,.12);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .f-group { display: flex; flex-direction: column; gap: .4rem; }
    .f-label { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
    .f-ctrl {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11);
      color: var(--white); padding: .85rem 1rem;
      font-family: var(--ff-body); font-size: .9rem; font-weight: 300;
      outline: none; width: 100%; appearance: none; transition: border-color .3s, background .3s;
    }
    .f-ctrl::placeholder { color: rgba(255,255,255,.22); }
    .f-ctrl:focus { border-color: var(--gold); background: rgba(201,168,76,.06); }
    textarea.f-ctrl { resize: vertical; min-height: 110px; }
    select.f-ctrl option { background: var(--navy); }
    .f-consent { display: flex; align-items: flex-start; gap: .75rem; }
    .f-consent input { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
    .f-consent-txt { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.6; }
    .btn-submit {
      align-self: flex-start; background: var(--gold); color: var(--navy);
      border: none; padding: .9rem 2.4rem; cursor: pointer;
      font-family: var(--ff-body); font-size: .9rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
      transition: background .2s;
    }
    .btn-submit:hover { background: var(--gold-light); }

    /* ── FOOTER ──────────────────────────────────────── */
    footer { background: var(--navy-dark); padding: 3.5rem 3rem 2rem; }
    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .f-brand-name  { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 500; color: var(--white); }
    .f-brand-title { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: .25rem 0 1rem; }
    .f-brand-desc  { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.3); line-height: 1.8; }
    .f-col-title   { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
    .f-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
    .f-links a { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
    .f-links a:hover { color: var(--gold); }
    .f-contact-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
    .f-contact-list li { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.4); }

    .footer-bottom {
      max-width: 1200px; margin: 0 auto; padding-top: 2rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .f-copy { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.18); }
    .f-legal { display: flex; gap: 1.5rem; }
    .f-legal a { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.18); text-decoration: none; transition: color .2s; }
    .f-legal a:hover { color: var(--gold); }

    /* ── MOBILE MENU ─────────────────────────────────── */
    .mob-menu {
      display: none; position: fixed; inset: 0; z-index: 90;
      background: var(--navy); padding: 6rem 2.5rem 3rem;
      flex-direction: column;
    }
    .mob-menu.open { display: flex; }
    .mob-menu a {
      font-family: var(--ff-display); font-size: 2rem; font-weight: 300;
      color: rgba(255,255,255,.7); text-decoration: none;
      padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
      transition: color .2s;
    }
    .mob-menu a:hover { color: var(--gold); }
    .mob-lang { display: flex; gap: .8rem; margin-top: 1.5rem; }
    .mob-lang .lang-btn {
      border: 1px solid rgba(255,255,255,.16);
      font-size: .92rem;
      padding: .7rem 1rem;
      color: rgba(255,255,255,.7);
    }
    .mob-lang .lang-btn.active {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── ANIMATIONS ──────────────────────────────────── */
    @keyframes fadeUp { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform: translateY(0); } }
    @keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

    .reveal { opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity:1; transform: translateY(0); }
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }

    /* ── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 1100px) {
      .spec-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      nav { padding: 0 1.5rem; }
      .nav-links, .nav-sep { display: none; }
      .nav-burger { display: flex; }
      section { padding: 5rem 1.5rem; }
      .stats-band { grid-template-columns: repeat(2,1fr); }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
      .spec-header { flex-direction: column; align-items: flex-start; }
      .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
      .portrait-wrap { max-width: 340px; }
      .about-creds { grid-template-columns: 1fr; }
      .robotic-inner { grid-template-columns: 1fr; }
      .robotic-img  { min-height: 280px; }
      .robotic-body { padding: 3rem 2rem; }
      .loc-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .hero-body { padding: 0 1.5rem; padding-top: 72px; }
    }
    @media (max-width: 600px) {
      .spec-grid { grid-template-columns: 1fr; }
    }
