*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --lime: #AADB1E;
      --lime-dim: #8BB818;
      --dark: #1E2227;
      --darker: #15181C;
      --card: #252A30;
      --border: rgba(170,219,30,.15);
      --text: #E8EDF2;
      --muted: rgba(232,237,242,.5);
      --white: #ffffff;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      /* Prevent horizontal scroll on mobile */
      max-width: 100vw;
    }
    /* Improve tap targets on touch devices */
    a, button { -webkit-tap-highlight-color: transparent; }

    /* ── NOISE OVERLAY ── */
    body::after {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 56px; height: 72px;
      background: rgba(21,24,28,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; flex-shrink: 0;
    }
    .logo-mark { display: none; }
    .logo-text {
      font-family: 'Syne', sans-serif;
      font-size: 18px; font-weight: 800;
      color: var(--white); letter-spacing: -.5px;
    }
    .logo-text span { color: var(--lime); }
    .nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
    .nav-links a {
      text-decoration: none; font-size: 13px; font-weight: 500;
      color: var(--muted); letter-spacing: .5px; transition: color .2s;
    }
    .nav-links a:hover { color: var(--lime); }
    .nav-cta {
      background: var(--lime) !important; color: var(--darker) !important;
      padding: 10px 20px; border-radius: 6px; font-weight: 700 !important;
      letter-spacing: 0 !important; font-size: 13px !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--lime-dim) !important; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all .3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .mobile-drawer {
      display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
      background: var(--darker); z-index: 490; padding: 40px 24px;
      flex-direction: column; transform: translateX(100%);
      transition: transform .3s ease; overflow-y: auto;
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer a {
      display: block; color: var(--text); text-decoration: none;
      font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800;
      padding: 16px 0; border-bottom: 1px solid var(--border); transition: color .2s;
    }
    .mobile-drawer a:hover { color: var(--lime); }
    .mob-cta {
      margin-top: 28px !important; background: var(--lime) !important;
      color: var(--darker) !important; text-align: center;
      border-radius: 8px; border-bottom: none !important; font-size: 24px !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 56px 80px;
      position: relative; overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(170,219,30,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170,219,30,.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute; top: -20%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(170,219,30,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--border); border-radius: 100px;
      padding: 6px 16px; font-size: 12px; font-weight: 600;
      color: var(--lime); letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 28px; width: fit-content;
    }
    .hero-tag::before {
      content: ''; width: 6px; height: 6px;
      background: var(--lime); border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }
    .hero-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(48px, 7vw, 100px);
      font-weight: 800; line-height: .92;
      color: var(--white); letter-spacing: -2px;
      margin-bottom: 32px; max-width: 900px;
    }
    .hero-title .lime { color: var(--lime); }
    .hero-title .outline {
      -webkit-text-stroke: 2px var(--lime);
      color: transparent;
    }
    .hero-sub {
      font-size: 18px; color: var(--muted); line-height: 1.7;
      max-width: 540px; margin-bottom: 48px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--lime); color: var(--darker);
      padding: 16px 32px; border-radius: 6px;
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800;
      text-decoration: none; transition: background .2s, transform .15s;
      letter-spacing: -.3px;
    }
    .btn-primary:hover { background: var(--lime-dim); transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid var(--border); color: var(--text);
      padding: 16px 32px; border-radius: 6px;
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
      text-decoration: none; transition: border-color .2s, color .2s, transform .15s;
    }
    .btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
    .hero-stats {
      display: flex; gap: 48px; margin-top: 72px;
      padding-top: 40px; border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .stat-num {
      font-family: 'Syne', sans-serif; font-size: 40px;
      font-weight: 800; color: var(--lime); line-height: 1;
    }
    .stat-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; letter-spacing: .5px; }

    /* ── MARQUEE ── */
    .marquee-bar {
      background: var(--lime); padding: 14px 0;
      overflow: hidden; white-space: nowrap;
    }
    .marquee-inner {
      display: inline-block;
      animation: marquee 25s linear infinite;
      font-family: 'Space Mono', monospace;
      font-size: 13px; letter-spacing: 3px;
      color: var(--darker); font-weight: 700;
    }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── SECTION SHARED ── */
    .section { padding: 100px 56px; }
    .sec-eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--lime); margin-bottom: 16px;
    }
    .sec-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800; color: var(--white);
      line-height: .95; letter-spacing: -1px; margin-bottom: 20px;
    }
    .sec-desc { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 560px; }

    /* ── SERVICES ── */
    .services { background: var(--darker); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-top: 64px;
    }
    .service-card {
      background: var(--card);
      padding: 40px 36px;
      position: relative; overflow: hidden;
      transition: background .25s;
      cursor: default;
    }
    .service-card:hover { background: #2D3339; }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--lime);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s ease;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px;
      background: rgba(170,219,30,.1);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 24px;
    }
    .service-num {
      position: absolute; top: 32px; right: 32px;
      font-family: 'Space Mono', monospace;
      font-size: 11px; color: rgba(170,219,30,.3); letter-spacing: 2px;
    }
    .service-title {
      font-family: 'Syne', sans-serif;
      font-size: 20px; font-weight: 800;
      color: var(--white); margin-bottom: 12px; letter-spacing: -.3px;
    }
    .service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .service-tags {
      display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
    }
    .tag {
      background: rgba(170,219,30,.08);
      border: 1px solid rgba(170,219,30,.12);
      color: var(--lime); font-size: 11px; font-weight: 600;
      padding: 4px 10px; border-radius: 4px; letter-spacing: .5px;
    }

    /* ── ABOUT ── */
    .about-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-visual {
      position: relative;
      padding-bottom: 20px; /* space for the badge that hangs below */
    }
    .about-img-wrap {
      border-radius: 12px; overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
    }
    .about-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      filter: grayscale(20%) contrast(1.05);
    }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--lime); color: var(--darker);
      padding: 20px 24px; border-radius: 10px;
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 14px; text-align: center; line-height: 1.3;
      box-shadow: 0 8px 32px rgba(170,219,30,.3);
    }
    .about-badge .big { font-size: 32px; display: block; }
    .about-text .sec-title { margin-bottom: 24px; }
    .about-text p {
      font-size: 16px; color: var(--muted); line-height: 1.8;
      margin-bottom: 18px;
    }
    .about-list { list-style: none; margin: 28px 0; }
    .about-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: var(--text); padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    .about-list li::before {
      content: '→'; color: var(--lime); font-weight: 700; flex-shrink: 0;
    }

    /* ── PORTFOLIO ── */
    .portfolio { background: var(--darker); }
    .portfolio-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; margin-top: 64px;
    }
    .portfolio-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px; overflow: hidden;
      transition: border-color .25s, transform .25s;
    }
    .portfolio-card:hover { border-color: var(--lime); transform: translateY(-4px); }
    .portfolio-card.featured { grid-column: span 2; }
    .p-thumb {
      height: 240px; background: var(--darker);
      display: flex; align-items: center; justify-content: center;
      font-size: 80px; position: relative; overflow: hidden;
    }
    .portfolio-card.featured .p-thumb { height: 320px; }
    .p-thumb-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #1A0A00, #3D1C02);
      display: flex; align-items: center; justify-content: center;
      font-size: 100px;
    }
    .portfolio-card.featured .p-thumb-bg { font-size: 140px; }
    .p-thumb-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(37,42,48,.9) 0%, transparent 60%);
    }
    .p-label {
      position: absolute; top: 16px; left: 16px;
      background: var(--lime); color: var(--darker);
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
    }
    .p-body { padding: 28px 32px; }
    .p-title {
      font-family: 'Syne', sans-serif; font-size: 22px;
      font-weight: 800; color: var(--white); margin-bottom: 8px;
    }
    .p-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
    .p-stack { display: flex; gap: 8px; flex-wrap: wrap; }
    .coming-soon {
      height: 100%; min-height: 200px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 40px; text-align: center;
    }
    .coming-soon-icon { font-size: 40px; margin-bottom: 16px; opacity: .4; }
    .coming-soon-text {
      font-family: 'Space Mono', monospace;
      font-size: 12px; letter-spacing: 2px;
      color: var(--muted); text-transform: uppercase;
    }

    /* ── PRICING ── */
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 64px;
    }
    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 40px 32px;
      position: relative; transition: border-color .25s;
    }
    .price-card:hover { border-color: rgba(170,219,30,.4); }
    .price-card.featured-price {
      border-color: var(--lime);
      background: rgba(170,219,30,.05);
    }
    .price-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--lime); color: var(--darker);
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
      white-space: nowrap;
    }
    .price-tier {
      font-family: 'Space Mono', monospace; font-size: 11px;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--lime); margin-bottom: 16px;
    }
    .price-amount {
      font-family: 'Syne', sans-serif; font-size: 48px;
      font-weight: 800; color: var(--white); line-height: 1;
      margin-bottom: 4px;
    }
    .price-amount small { font-size: 20px; color: var(--muted); }
    .price-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
    .price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
    .price-features { list-style: none; }
    .price-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--text); padding: 8px 0;
    }
    .price-features li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }
    .price-features li.muted-feat { color: var(--muted); }
    .price-features li.muted-feat::before { content: '–'; color: var(--muted); }
    .btn-price {
      display: block; text-align: center; margin-top: 32px;
      padding: 14px; border-radius: 6px; font-family: 'Syne', sans-serif;
      font-size: 14px; font-weight: 800; text-decoration: none;
      transition: all .2s;
    }
    .btn-price-outline {
      border: 1px solid var(--border); color: var(--text);
    }
    .btn-price-outline:hover { border-color: var(--lime); color: var(--lime); }
    .btn-price-filled {
      background: var(--lime); color: var(--darker);
    }
    .btn-price-filled:hover { background: var(--lime-dim); }

    /* ── CONTACT ── */
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .contact-info .sec-title { margin-bottom: 24px; }
    .contact-info p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
    .contact-links { display: flex; flex-direction: column; gap: 16px; }
    .contact-link {
      display: flex; align-items: center; gap: 16px;
      text-decoration: none; padding: 16px 20px;
      border: 1px solid var(--border); border-radius: 8px;
      transition: border-color .2s, background .2s; color: var(--text);
    }
    .contact-link:hover { border-color: var(--lime); background: rgba(170,219,30,.05); }
    .contact-link-icon {
      width: 40px; height: 40px; background: rgba(170,219,30,.1);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .contact-link-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
    .contact-link-val { font-size: 15px; font-weight: 600; color: var(--white); }
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .5px; }
    .form-input, .form-textarea {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 6px; padding: 14px 16px;
      font-family: 'DM Sans', sans-serif; font-size: 14px;
      color: var(--text); outline: none;
      transition: border-color .2s;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--lime); }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(232,237,242,.25); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      background: var(--lime); color: var(--darker);
      border: none; cursor: pointer;
      padding: 16px; border-radius: 6px;
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800;
      transition: background .2s, transform .15s; letter-spacing: -.3px;
    }
    .form-submit:hover { background: var(--lime-dim); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--darker);
      border-top: 1px solid var(--border);
      padding: 40px 56px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-copy { font-size: 13px; color: var(--muted); }
    .footer-copy a { color: var(--lime); text-decoration: none; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--lime); }

    /* ── ANIMATIONS ── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    @keyframes reveal { to { opacity: 1; transform: none; } }
    .fade-up { animation: reveal 0s 1.2s forwards; }

    /* ── TABLET ── */
    @media (max-width: 1200px) and (min-width: 901px) {
      nav { padding: 0 32px; }
      .hero, .section { padding-left: 40px; padding-right: 40px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      footer { padding: 32px 40px; }
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      /* Nav */
      nav { padding: 0 20px; height: 64px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-drawer { display: flex; top: 64px; }

      /* Hero */
      .hero {
        padding: 96px 20px 56px;
        min-height: 100svh;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: clamp(88px, 20vw, 110px);
      }
      .hero-grid-bg { background-size: 40px 40px; }
      .hero-glow { width: 280px; height: 280px; top: -5%; right: -15%; opacity: 0.8; }
      .hero-tag { font-size: 10px; padding: 5px 12px; letter-spacing: 1.5px; margin-bottom: 20px; }
      .hero-title {
        font-size: clamp(28px, 8.5vw, 56px);
        letter-spacing: -1px;
        line-height: 0.96;
        margin-bottom: 24px;
        overflow: hidden;
        max-width: 100%;
      }
      /* "Experiences." — tighter scaling so it never overflows the viewport */
      .hero-title .outline {
        display: block;
        font-size: clamp(22px, 7vw, 50px);
        letter-spacing: -2px;
        max-width: 100%;
        overflow: hidden;
      }
      .hero-sub { font-size: 15px; line-height: 1.65; max-width: 100%; margin-bottom: 36px; }
      .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
      .btn-primary, .btn-outline {
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
        font-size: 15px;
      }
      .hero-stats {
        gap: 0;
        margin-top: 48px;
        flex-wrap: nowrap;
        justify-content: space-between;
      }
      .hero-stats > div {
        flex: 1;
        padding: 0 8px;
        text-align: center;
      }
      .hero-stats > div:first-child { padding-left: 0; }
      .hero-stats > div:last-child { padding-right: 0; }
      .stat-num { font-size: 26px; }
      .stat-lbl { font-size: 11px; }

      /* Sections */
      .section { padding: 56px 20px; }
      .sec-title { font-size: clamp(28px, 8vw, 48px); }
      .sec-desc { font-size: 15px; }

      /* Marquee */
      .marquee-inner { font-size: 11px; letter-spacing: 2px; }

      /* Services */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 40px;
      }
      .service-card { padding: 28px 22px; }
      .service-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 18px; }
      .service-title { font-size: 18px; }
      .service-desc { font-size: 13px; }

      /* About */
      .about-inner {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .about-visual {
        order: -1;
        margin-bottom: 40px;
        padding-bottom: 0;
      }
      /* Let the image scale naturally using its aspect-ratio — no fixed height */
      .about-img-wrap {
        height: auto;
        aspect-ratio: 16/9;
        width: 100%;
      }
      .about-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
      }
      .about-badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        padding: 8px 10px;
        font-size: 10px;
        border-radius: 8px;
        max-width: 38%;
      }
      .about-badge img { width: 28px !important; margin-bottom: 4px !important; }
      .about-badge .big { font-size: 13px; }
      .about-text p { font-size: 15px; }
      .about-list li { font-size: 14px; }

      /* Portfolio */
      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
      }
      .portfolio-card.featured { grid-column: span 1; }
      .portfolio-card.featured .p-thumb { height: 200px; }
      .p-thumb { height: 180px; }
      .p-thumb-bg { font-size: 72px; }
      .portfolio-card.featured .p-thumb-bg { font-size: 90px; }
      .p-body { padding: 20px 18px; }
      .p-title { font-size: 18px; }
      .p-desc { font-size: 13px; margin-bottom: 14px; }

      /* Pricing */
      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
      }
      .price-card { padding: 32px 24px; }
      .price-card.featured-price { padding-top: 40px; }
      .price-amount { font-size: 40px; }
      .price-amount small { font-size: 18px; }
      .btn-price { padding: 14px; font-size: 14px; }

      /* Contact */
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-info p { font-size: 15px; margin-bottom: 24px; }
      .contact-link { padding: 14px 16px; gap: 12px; }
      .contact-link-icon { width: 36px; height: 36px; font-size: 16px; }
      .contact-link-val { font-size: 14px; }
      .form-row { grid-template-columns: 1fr; }
      .form-input, .form-textarea { font-size: 16px; /* prevents iOS zoom */ }
      .form-submit { font-size: 15px; padding: 16px; }

      /* Footer */
      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
      }
      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
      }
      .footer-copy { font-size: 12px; line-height: 1.8; }
    }

    /* ── SMALL MOBILE ── */
    @media (max-width: 480px) {
      .hero-title { font-size: clamp(36px, 10.5vw, 52px); letter-spacing: -1px; }
      .hero-sub { font-size: 14px; }
      .hero-stats { gap: 0; }
      .stat-num { font-size: 22px; }
      .stat-lbl { font-size: 10px; letter-spacing: 0; }
      .sec-title { font-size: clamp(26px, 8.5vw, 40px); }
    }

    @media (max-width: 420px) {
      .hero { padding: 84px 16px 44px; }
      .section { padding: 44px 16px; }
      .service-card { padding: 24px 16px; }
      .price-card { padding: 28px 18px; }
      .p-body { padding: 16px; }
      .contact-link { padding: 12px 14px; gap: 10px; }
      .btn-primary, .btn-outline { padding: 14px 20px; font-size: 14px; }
      .about-badge {
        bottom: 8px;
        right: 8px;
        padding: 6px 8px;
        font-size: 9px;
        max-width: 35%;
      }
      .about-badge img { width: 22px !important; margin-bottom: 3px !important; }
      .about-badge .big { font-size: 11px; }
      .mobile-drawer a { font-size: 30px; padding: 14px 0; }
      .mob-cta { font-size: 20px !important; padding: 14px !important; margin-top: 20px !important; }
      .price-amount { font-size: 34px; }
      footer { padding: 24px 16px; }
      .footer-links { gap: 10px 14px; }
    }
