/* ═══════════════════════════════════════
       TOKENS
    ═══════════════════════════════════════ */
    :root {
      --bg:    #021520;
      --bg2:   #031d2a;
      --lime:  #C7CF00;
      --white: #ffffff;
      --muted: rgba(255,255,255,0.45);
      --border: rgba(199,207,0,0.14);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NOISE TEXTURE ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 999; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.28;
    }

    /* ── GRID ── */
    .grid-bg {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(199,207,0,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199,207,0,0.045) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    /* ── ORBS ── */
    .orb {
      position: fixed; border-radius: 50%;
      filter: blur(140px); pointer-events: none; z-index: 0;
    }
    .orb-1 { width: 700px; height: 700px; background: rgba(199,207,0,0.08);  top: -250px; right: -200px; }
    .orb-2 { width: 450px; height: 450px; background: rgba(199,207,0,0.05); bottom: 0;   left: -150px; }
    .orb-3 { width: 300px; height: 300px; background: rgba(199,207,0,0.04); top: 50%;    right: 10%; }

    /* ── WRAPPER ── */
    .wrapper {
      position: relative; z-index: 1;
      max-width: 1260px; margin: 0 auto; padding: 0 48px;
    }

    /* ═══════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════ */
    .topbar {
      background: rgba(2,21,32,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(199,207,0,0.1);
      position: sticky; top: 0; z-index: 100;
      animation: fadeDown 0.6s ease both;
    }
    .topbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; max-width: 1260px; margin: 0 auto;
      height: 70px;
    }

    /* Logo */
    .logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; flex-shrink: 0;
    }
    .logo img { height: 40px; width: auto; }
    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem; letter-spacing: 0.18em;
      color: var(--lime);
    }

    /* Main nav */
    .main-nav {
      display: flex; align-items: center; gap: 4px;
      list-style: none;
    }
    .main-nav a {
      display: flex; align-items: center; gap: 6px;
      padding: 8px 14px;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.18em;
      text-transform: uppercase; text-decoration: none;
      color: var(--muted);
      border-bottom: 2px solid transparent;
      transition: color 0.25s, border-color 0.25s;
    }
    .main-nav a:hover,
    .main-nav a.active { color: var(--lime); border-color: var(--lime); }
    .main-nav a svg { width: 13px; height: 13px; flex-shrink: 0; }

    /* Lang switcher */
    .lang-switcher {
      display: flex; align-items: center; gap: 6px;
      list-style: none; margin-left: 24px;
    }
    .lang-switcher a {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.12em;
      color: var(--muted); text-decoration: none;
      padding: 4px 8px;
      border: 1px solid transparent;
      transition: color 0.25s, border-color 0.25s;
    }
    .lang-switcher a:hover { color: var(--lime); border-color: var(--border); }
    .lang-switcher a.active { color: var(--lime); border-color: var(--lime); }

    /* Mobile toggle */
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px; background: none; border: none;
    }
    .nav-toggle span {
      display: block; width: 24px; height: 2px;
      background: var(--lime); transition: 0.3s;
    }

    /* ═══════════════════════════════════════
       CONTACT STRIP
    ═══════════════════════════════════════ */
    .contact-strip {
      background: rgba(199,207,0,0.05);
      border-bottom: 1px solid var(--border);
    }
    .contact-strip-inner {
      display: flex; align-items: center; justify-content: flex-end; gap: 36px;
      max-width: 1260px; margin: 0 auto; padding: 8px 48px;
    }
    .contact-item {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem; letter-spacing: 0.12em;
      color: var(--muted); text-decoration: none;
      transition: color 0.25s;
    }
    .contact-item:hover { color: var(--lime); }
    .contact-item svg { width: 12px; height: 12px; color: var(--lime); flex-shrink: 0; }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      padding: 110px 0 90px;
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 80px; align-items: center;
      min-height: 88vh;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.4em;
      color: var(--lime); text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp 0.8s 0.15s ease both;
    }
    .hero-badge::before {
      content: ''; display: block;
      width: 36px; height: 1px; background: var(--lime); flex-shrink: 0;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--lime);
      animation: pulse 2s ease infinite;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 7.5vw, 7rem);
      line-height: 0.93; letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 10px;
      animation: fadeUp 0.8s 0.28s ease both;
    }
    .hero-title-accent {
      display: block;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--lime);
    }
    .hero-title-sub {
      display: block;
      font-size: clamp(1.4rem, 3vw, 2.8rem);
      color: var(--lime);
      -webkit-text-stroke: 0;
      margin-top: 6px;
    }

    .hero-desc {
      font-size: 1rem; font-weight: 300; line-height: 1.85;
      color: var(--muted); max-width: 520px;
      margin-top: 28px;
      animation: fadeUp 0.8s 0.42s ease both;
    }

    .hero-actions {
      display: flex; align-items: center; gap: 18px;
      flex-wrap: wrap;
      margin-top: 52px;
      animation: fadeUp 0.8s 0.55s ease both;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 16px 36px;
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem; letter-spacing: 0.15em;
      text-transform: uppercase; text-decoration: none;
      position: relative; overflow: hidden;
      cursor: pointer; border: none; white-space: nowrap;
      transition: color 0.35s;
    }
    .btn > * { position: relative; z-index: 1; }
    .btn::before {
      content: ''; position: absolute; inset: 0;
      transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
      z-index: 0;
    }

    .btn-primary {
      background: var(--lime); color: var(--bg);
    }
    .btn-primary::before { background: var(--white); transform: translateX(-101%); }
    .btn-primary:hover { color: var(--bg); }
    .btn-primary:hover::before { transform: translateX(0); }

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--muted);
    }
    .btn-outline::before { background: rgba(199,207,0,0.06); transform: translateX(-101%); }
    .btn-outline:hover { color: var(--lime); border-color: var(--lime); }
    .btn-outline:hover::before { transform: translateX(0); }

    /* ── HERO STATS CARD ── */
    .hero-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--border);
      padding: 44px; position: relative;
      animation: fadeLeft 0.9s 0.35s ease both;
    }
    .hero-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 70%; height: 2px;
      background: linear-gradient(90deg, var(--lime), transparent);
    }
    .hero-card::after {
      content: ''; position: absolute; bottom: 0; right: 0;
      width: 40%; height: 1px;
      background: linear-gradient(270deg, rgba(199,207,0,0.35), transparent);
    }

    .card-eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 0.56rem; letter-spacing: 0.32em;
      color: var(--lime); opacity: 0.6;
      text-transform: uppercase; margin-bottom: 32px;
    }

    .stat-list { display: flex; flex-direction: column; }
    .stat {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.055);
    }
    .stat:first-child { padding-top: 0; }
    .stat:last-child  { border-bottom: none; padding-bottom: 0; }
    .stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.4rem; color: var(--lime); line-height: 1;
    }
    .stat-label {
      font-size: 0.77rem; font-weight: 300;
      color: rgba(255,255,255,0.38);
      text-align: right; max-width: 145px; line-height: 1.45;
    }

    .card-footnote {
      margin-top: 28px; padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.055);
      font-family: 'Space Mono', monospace;
      font-size: 0.56rem; letter-spacing: 0.18em;
      color: rgba(255,255,255,0.25);
    }

    /* ═══════════════════════════════════════
       DIVIDER
    ═══════════════════════════════════════ */
    .divider {
      border: none;
      border-top: 1px solid rgba(199,207,0,0.08);
    }

    /* ═══════════════════════════════════════
       SECTION COMMONS
    ═══════════════════════════════════════ */
    .section-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.42em;
      color: var(--lime); text-transform: uppercase;
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 20px;
    }
    .section-label::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: var(--lime); flex-shrink: 0;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      line-height: 0.96; letter-spacing: 0.04em;
      color: var(--white);
    }
    .section-title .t-lime { color: var(--lime); }
    .section-title .t-outline {
      color: transparent;
      -webkit-text-stroke: 1px var(--lime);
    }

    .section-desc {
      font-size: 0.92rem; font-weight: 300;
      line-height: 1.78; color: var(--muted);
      max-width: 480px;
    }

    /* ═══════════════════════════════════════
       SERVICES SECTION
    ═══════════════════════════════════════ */
    .services {
      padding: 96px 0 108px;
    }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: end;
      margin-bottom: 72px;
    }

    /* 3-col grid */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .service-card {
      position: relative;
      padding: 52px 40px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(199,207,0,0.07);
      text-decoration: none; color: var(--white);
      overflow: hidden;
      display: flex; flex-direction: column; gap: 18px;
      transition: background 0.4s, border-color 0.4s;
      animation: fadeUp 0.8s ease both;
    }
    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.15s; }
    .service-card:nth-child(3) { animation-delay: 0.25s; }

    .card-glow {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(199,207,0,0.08) 0%, transparent 55%);
      opacity: 0; transition: opacity 0.4s; z-index: 0;
    }
    .service-card:hover { background: rgba(199,207,0,0.04); border-color: rgba(199,207,0,0.3); }
    .service-card:hover .card-glow { opacity: 1; }
    .service-card > *:not(.card-glow) { position: relative; z-index: 1; }

    .card-num {
      font-family: 'Space Mono', monospace;
      font-size: 0.56rem; letter-spacing: 0.32em;
      color: rgba(199,207,0,0.4);
    }

    .card-icon-wrap {
      width: 52px; height: 52px;
      border: 1px solid rgba(199,207,0,0.18);
      display: grid; place-items: center;
      transition: border-color 0.3s, background 0.3s;
    }
    .service-card:hover .card-icon-wrap {
      border-color: var(--lime);
      background: rgba(199,207,0,0.08);
    }
    .card-icon-wrap svg {
      width: 22px; height: 22px;
      color: var(--lime);
      transition: transform 0.4s;
    }
    .service-card:hover .card-icon-wrap svg { transform: scale(1.12) rotate(-5deg); }

    .card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem; letter-spacing: 0.06em;
      color: var(--white);
      transition: color 0.28s;
    }
    .service-card:hover .card-title { color: var(--lime); }

    .card-text {
      font-size: 0.85rem; font-weight: 300;
      color: rgba(255,255,255,0.38); line-height: 1.65;
    }

    .card-cta {
      margin-top: auto; padding-top: 8px;
      display: flex; align-items: center; gap: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.2em;
      color: rgba(255,255,255,0.28);
      transition: color 0.28s, gap 0.38s;
    }
    .service-card:hover .card-cta { color: var(--lime); gap: 16px; }

    .card-sweep {
      position: absolute; bottom: 0; left: 0;
      height: 2px; width: 0; background: var(--lime);
      transition: width 0.46s cubic-bezier(0.76, 0, 0.24, 1);
      z-index: 2;
    }
    .service-card:hover .card-sweep { width: 100%; }

    /* ═══════════════════════════════════════
       DOMAINS SECTION (tile grid)
    ═══════════════════════════════════════ */
    .domains { padding: 0 0 108px; }

    .domains-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: end;
      margin-bottom: 64px;
    }

    .domain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(199,207,0,0.06);
    }

    .domain-card {
      position: relative;
      background: var(--bg2);
      padding: 56px 40px 44px;
      text-decoration: none; color: var(--white);
      overflow: hidden;
      display: flex; flex-direction: column;
      min-height: 280px;
      animation: fadeUp 0.8s ease both;
    }
    .domain-card:nth-child(1) { animation-delay: 0.08s; }
    .domain-card:nth-child(2) { animation-delay: 0.18s; }
    .domain-card:nth-child(3) { animation-delay: 0.28s; }

    /* wipe fill */
    .domain-card::after {
      content: ''; position: absolute; inset: 0;
      background: var(--lime);
      transform: translateY(102%);
      transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
      z-index: 0;
    }
    .domain-card:hover::after { transform: translateY(0); }
    .domain-card > * { position: relative; z-index: 1; }

    .domain-index {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem; letter-spacing: 0.35em;
      color: rgba(199,207,0,0.45);
      margin-bottom: auto;
      transition: color 0.25s;
    }
    .domain-card:hover .domain-index { color: rgba(2,21,32,0.55); }

    .domain-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem; letter-spacing: 0.05em;
      color: var(--white); margin-top: 60px;
      transition: color 0.25s;
    }
    .domain-card:hover .domain-title { color: var(--bg); }

    .domain-arrow {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.2em;
      color: rgba(255,255,255,0.28);
      margin-top: 14px;
      transition: color 0.25s, gap 0.35s;
    }
    .domain-card:hover .domain-arrow { color: var(--bg); gap: 16px; }

    /* top border accent */
    .domain-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--lime) 0%, transparent 70%);
      z-index: 1;
      transition: opacity 0.3s;
    }
    .domain-card:hover::before { opacity: 0; }

    /* ═══════════════════════════════════════
       WHY US SECTION
    ═══════════════════════════════════════ */
    .why { padding: 0 0 108px; }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .why-card {
      padding: 44px 40px;
      background: rgba(255,255,255,0.015);
      border: 1px solid rgba(199,207,0,0.06);
      display: flex; flex-direction: column; gap: 16px;
      transition: background 0.3s, border-color 0.3s;
      animation: fadeUp 0.8s ease both;
    }
    .why-card:nth-child(1) { animation-delay: 0.05s; }
    .why-card:nth-child(2) { animation-delay: 0.12s; }
    .why-card:nth-child(3) { animation-delay: 0.19s; }
    .why-card:nth-child(4) { animation-delay: 0.26s; }
    .why-card:hover { background: rgba(199,207,0,0.03); border-color: rgba(199,207,0,0.18); }

    .why-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem; color: rgba(199,207,0,0.15); line-height: 1;
    }

    .why-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem; letter-spacing: 0.06em; color: var(--lime);
    }

    .why-text {
      font-size: 0.88rem; font-weight: 300;
      line-height: 1.7; color: var(--muted);
    }

    /* ═══════════════════════════════════════
       CTA BAND
    ═══════════════════════════════════════ */
    .cta-band {
      position: relative;
      background: var(--lime);
      padding: 72px 0;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(2,21,32,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2,21,32,0.1) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .cta-band-inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px; flex-wrap: wrap;
    }

    .cta-band-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1; letter-spacing: 0.04em;
      color: var(--bg);
    }
    .cta-band-sub {
      font-size: 0.95rem; font-weight: 300;
      color: rgba(2,21,32,0.65); margin-top: 8px;
    }

    .btn-dark {
      background: var(--bg); color: var(--lime);
    }
    .btn-dark::before { background: rgba(255,255,255,0.1); transform: translateX(-101%); }
    .btn-dark:hover { color: var(--white); }
    .btn-dark:hover::before { transform: translateX(0); }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      position: relative; z-index: 1;
      background: rgba(2,21,32,0.96);
      border-top: 1px solid var(--border);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px; padding-bottom: 56px;
    }

    .footer-brand { display: flex; flex-direction: column; gap: 18px; }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem; letter-spacing: 0.2em; color: var(--lime);
      text-decoration: none;
    }
    .footer-desc {
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.72; color: var(--muted); max-width: 260px;
    }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 0.8rem; color: var(--muted);
      text-decoration: none; transition: color 0.25s;
    }
    .footer-contact-item:hover { color: var(--lime); }
    .footer-contact-item svg { width: 14px; height: 14px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }

    .footer-col-title {
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem; letter-spacing: 0.3em;
      color: var(--lime); text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
    .footer-links a {
      font-size: 0.85rem; color: var(--muted);
      text-decoration: none; transition: color 0.25s;
      display: flex; align-items: center; gap: 8px;
    }
    .footer-links a::before { content: '->'; color: rgba(199,207,0,0.4); font-size: 0.75rem; }
    .footer-links a:hover { color: var(--lime); }
    .footer-links a:hover::before { color: var(--lime); }

    .footer-bottom {
      border-top: 1px solid rgba(199,207,0,0.08);
      padding: 20px 0;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; flex-wrap: wrap;
    }
    .footer-copy {
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem; letter-spacing: 0.15em;
      color: rgba(255,255,255,0.2);
    }
    .footer-copy a { color: var(--lime); text-decoration: none; }

    /* ═══════════════════════════════════════
       COOKIE BANNER
    ═══════════════════════════════════════ */

    /* ═══════════════════════════════════════
       SCROLL REVEAL (JS-assisted)
    ═══════════════════════════════════════ */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(44px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.8); }
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; min-height: auto; gap: 60px; padding: 80px 0 72px; }
      .hero-card { max-width: 480px; }
      .services-header, .domains-header { grid-template-columns: 1fr; }
      .service-grid, .domain-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .cta-band-inner { flex-direction: column; align-items: flex-start; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .main-nav { display: none; }
      .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); padding: 16px 24px; border-bottom: 1px solid var(--border); }
      .nav-toggle { display: flex; }
      .topbar-inner { flex-wrap: wrap; height: auto; padding: 14px 20px; }
      .wrapper { padding: 0 20px; }
      .contact-strip-inner { padding: 8px 20px; flex-wrap: wrap; }
    }

    @media (max-width: 640px) {
      .footer-grid { grid-template-columns: 1fr; }
      .hero-card { padding: 30px 20px; }
      .service-card { padding: 36px 22px; }
      .domain-card { padding: 38px 22px; }
      .why-card { padding: 32px 20px; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
    }
