/* ── RESET & ROOT ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:       #05070f;
      --surface:  #080d1a;
      --surface2: #0c1220;
      --border:   #152040;
      --border2:  #1e3060;
      --accent:   #e63329;
      --navy:     #0b1f45;
      --text:     #dce6f5;
      --muted:    #7a94b8;
      --font-display: 'Syne', sans-serif;
      --font-body:    'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 5%;
      background: rgba(5,7,15,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    nav::after {
      content: '';
      position: absolute; bottom: -3px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
      opacity: 0.7;
    }
    /* ── LOGO ── */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-img {
      height: 44px;
      width: auto;
      flex-shrink: 0;
    }
    .footer-logo .logo-img { height: 38px; }
    .logo-text-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .logo-top {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      white-space: nowrap;
      line-height: 1;
    }
    .logo-bottom {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 0.45rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* ── HAMBURGER MENU ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .4rem;
      background: none;
      border: none;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: rgba(5,7,15,0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 5%;
      z-index: 99;
      flex-direction: column;
      gap: 0;
      transform: translateY(-10px);
      opacity: 0;
      transition: all .25s ease;
    }
    .mobile-menu.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu a {
      color: var(--text);
      text-decoration: none;
      font-size: 1.1rem;
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--accent); }

    /* ── MOBILE PRICING CAROUSEL ── */
    .pricing-carousel-wrap {
      display: none;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; transition: color .2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-links a.active { color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
    .nav-cta { background: var(--accent); color: #fff; border: none; padding: .5rem 1.25rem; border-radius: 6px; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: opacity .2s, transform .15s; text-decoration: none; }
    .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
    .nav-right { display: flex; align-items: center; gap: 1rem; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 8rem 5% 5rem;
      position: relative; overflow: hidden;
      background: radial-gradient(ellipse 100% 80% at 50% 0%, #0b1f45 0%, #05070f 60%);
    }
    @keyframes twinkle1 { 0%,100%{opacity:1} 50%{opacity:0.1} }
    @keyframes twinkle2 { 0%,100%{opacity:0.7} 40%{opacity:1} 80%{opacity:0.05} }
    @keyframes twinkle3 { 0%,100%{opacity:0.4} 30%{opacity:1} 70%{opacity:0.05} }

    #hero::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(1px 1px at 15% 20%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 72% 8%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 35%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 15%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 5%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 28% 45%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 28%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 60%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 93% 55%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 22% 10%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 18%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 47% 42%, rgba(220,230,245,1) 0%, transparent 100%);
      animation: twinkle1 4s ease-in-out infinite;
    }
    #hero::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(1px 1px at 33% 30%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60% 12%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 5% 40%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 50%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 18% 75%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 65%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 38% 88%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 72%, rgba(220,230,245,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 12% 92%, rgba(220,230,245,1) 0%, transparent 100%);
      animation: twinkle2 6s ease-in-out 2s infinite;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(26,58,110,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,58,110,0.18) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    }
    .hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(11,31,69,0.55) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -60%); pointer-events: none; }
    .hero-glow2 { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(230,51,41,0.1) 0%, transparent 70%); top: 55%; left: 55%; pointer-events: none; }

    .hero-inner { position: relative; max-width: 800px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1px solid var(--border); background: rgba(26,58,110,0.25);
      color: var(--accent); font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: .35rem 1rem; border-radius: 100px;
      margin-bottom: 1.8rem; animation: fadeUp .6s ease both;
    }
    .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

    h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 1.4rem; animation: fadeUp .6s .1s ease both; }
    h1 .line2 { color: var(--accent); display: block; }
    .hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin: 0 auto 2.4rem; font-weight: 300; animation: fadeUp .6s .2s ease both; }
    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }

    .btn-primary { background: var(--accent); color: #fff; border: none; padding: .85rem 2rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block; }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230,51,41,0.35); }
    .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); padding: .85rem 2rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block; }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

    .hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); animation: fadeUp .6s .4s ease both; flex-wrap: wrap; }
    .stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text); }
    .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: .2rem; letter-spacing: 0.04em; }

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

    /* ── SHARED SECTION ── */
    section { padding: 6rem 5%; }
    .section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.18; margin-bottom: 1rem; }
    .section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; font-weight: 300; }
    .section-header { max-width: 1100px; margin: 0 auto 3.5rem; }

    /* ── SERVICES ── */
    #services { background: #060c18; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; max-width: 1100px; margin: 0 auto; border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
    .service-card { background: var(--surface); padding: 2.5rem 2rem; transition: background .25s; }
    .service-card:hover { background: #0d1a30; }
    .service-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(230,51,41,0.1); border: 1px solid rgba(230,51,41,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.4rem; }
    .service-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
    .service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; font-weight: 300; }
    .service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
    .tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; padding: .2rem .65rem; border-radius: 100px; border: 1px solid var(--border); color: var(--muted); }

    /* ── GRAIN OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 999;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px 128px;
    }

    /* ── HERO BADGE REFINEMENT ── */
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1px solid rgba(230,51,41,0.3);
      background: rgba(230,51,41,0.07);
      color: var(--text); font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: .4rem 1.1rem; border-radius: 100px;
      margin-bottom: 1.8rem; animation: fadeUp .6s ease both;
      backdrop-filter: blur(8px);
    }
    .hero-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse 2s infinite; }

    /* ── CTA BAND GLOW ── */
    #cta-band {
      background: var(--navy);
      border-top: 1px solid var(--border2);
      border-bottom: 1px solid var(--border2);
      padding: 4rem 5%; text-align: center;
      position: relative; overflow: hidden;
    }
    #cta-band::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(230,51,41,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── ANIMATED PAGESPEED BARS ── */
    .ps-fill { width: 0; }
    .ps-fill.animated { transition: width 1.2s cubic-bezier(.4,0,.2,1); }

    /* ── SECTION DIVIDER LINE ── */
    .section-rule {
      max-width: 1100px; margin: 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 30%, var(--border2) 70%, transparent);
    }

    /* ── CARD HOVER GLOW ── */
    .service-card:hover { background: #0d1a30; box-shadow: inset 0 0 0 1px rgba(230,51,41,0.15); }
    .portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(230,51,41,0.1); }
    .pricing-card:hover { background: var(--surface2); box-shadow: inset 0 0 30px rgba(11,31,69,0.3); }

    /* ── WHY CARD ACCENT TOP BORDER ── */
    .why-card { background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--accent); border-radius: 16px; padding: 2rem; }

    /* ── FOOTER TOP ACCENT ── */
    footer { background: var(--bg); border-top: 2px solid var(--accent); }

    #why { background: var(--bg); }
    .why-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .why-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
    .why-item { display: flex; gap: 1rem; align-items: flex-start; }
    .why-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(230,51,41,0.15); border: 1px solid rgba(230,51,41,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
    .why-check svg { width: 10px; height: 10px; fill: var(--accent); }
    .why-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
    .why-item p { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
    .why-image-side { position: relative; }
    .pagespeed-bar { margin-top: 1.5rem; }
    .ps-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); margin-bottom: .4rem; font-weight: 500; }
    .ps-track { height: 8px; background: var(--border); border-radius: 100px; overflow: hidden; }
    .ps-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent), #ff6b35); width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
    .ps-score { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
    .ps-score span { font-size: 1rem; color: var(--muted); font-weight: 400; }

    /* ── PORTFOLIO ── */
    #portfolio { background: #060c18; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
    .portfolio-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
    .portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
    .portfolio-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; }
    .portfolio-thumb.auto { background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%); }
    .portfolio-thumb.food { background: linear-gradient(135deg, #1a0a05 0%, #4a1a0a 100%); }
    .portfolio-thumb.health { background: linear-gradient(135deg, #051a10 0%, #0a3a20 100%); }
    .portfolio-thumb-label { position: absolute; bottom: 0; left: 0; right: 0; padding: .6rem 1rem; background: linear-gradient(to top, rgba(5,7,15,0.9), transparent); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
    .portfolio-body { padding: 1.4rem; }
    .portfolio-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
    .portfolio-body p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
    .portfolio-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .8rem; }

    /* ── ABOUT ── */
    #about { background: #060c18; border-top: 1px solid var(--border); }
    .about-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
    .about-photo-wrap { position: relative; }
    .about-photo { width: 100%; aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 5rem; overflow: hidden; position: relative; }
    .about-photo-badge { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); background: rgba(5,7,15,0.92); backdrop-filter: blur(10px); border: 1px solid var(--border2); border-radius: 8px; padding: .6rem 1.2rem; white-space: nowrap; text-align: center; }
    .about-photo-badge .badge-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }
    .about-photo-badge .badge-title { font-size: 0.72rem; color: var(--muted); }
    .about-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 1.2rem; }
    .about-content p { color: var(--muted); font-size: 0.95rem; font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
    .about-content p strong { color: var(--text); font-weight: 500; }
    .about-cta { margin-top: 2rem; }

    /* ── PRICING ── */
    #pricing { background: var(--bg); }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1100px; margin: 0 auto; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .pricing-card { background: var(--surface); padding: 2.2rem; border-right: 1px solid var(--border); position: relative; transition: background .2s; display: flex; flex-direction: column; }
    .pricing-card:last-child { border-right: none; }
    .pricing-card:hover { background: var(--surface2); }
    .pricing-card.featured { background: var(--surface2); border-top: 3px solid var(--accent); }
    .featured-badge { display: inline-block; background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: .2rem .75rem; border-radius: 100px; margin-bottom: .8rem; }
    .plan-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
    .plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
    .plan-price sup { font-size: 1.2rem; font-weight: 600; vertical-align: super; }
    .plan-price sub { font-size: 0.9rem; font-weight: 400; color: var(--muted); vertical-align: baseline; margin-left: .1rem; }
    .plan-setup { font-size: 0.78rem; color: var(--muted); margin-top: .25rem; margin-bottom: .3rem; }
    .plan-contract { display: inline-flex; align-items: center; gap: .35rem; font-size: 0.72rem; color: var(--muted); background: rgba(26,58,110,0.3); border: 1px solid var(--border); border-radius: 100px; padding: .15rem .6rem; margin-bottom: 1.4rem; }
    .plan-divider { height: 1px; background: var(--border); margin-bottom: 1.4rem; }
    .plan-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.6rem; font-weight: 300; line-height: 1.6; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; flex: 1; }
    .plan-features li { font-size: 0.875rem; color: var(--text); display: flex; align-items: flex-start; gap: .65rem; }
    .plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
    .plan-features li.no-item { color: var(--muted); }
    .plan-features li.no-item::before { content: '—'; color: #2a3a55; }
    .plan-btn { width: 100%; padding: .8rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all .2s; text-align: center; text-decoration: none; display: block; margin-top: auto; }
    .plan-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
    .plan-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
    .plan-btn-filled { background: var(--accent); border: none; color: #fff; }
    .plan-btn-filled:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,51,41,0.35); }
    .pricing-footer-note { max-width: 1100px; margin: 1.5rem auto 0; font-size: 0.8rem; color: var(--muted); font-weight: 300; }
    .pricing-footer-note strong { color: var(--text); font-weight: 500; }

    /* ── CTA BAND ── */
    #cta-band { background: var(--navy); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 4rem 5%; text-align: center; }
    .cta-band-inner { max-width: 700px; margin: 0 auto; }
    .cta-band-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; }
    .cta-band-inner p { color: var(--muted); font-size: 1rem; font-weight: 300; margin-bottom: 2rem; }
    .cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── CONTACT ── */
    #contact { background: #060c18; border-top: 1px solid var(--border); }
    .contact-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
    .contact-info h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; }
    .contact-info p { color: var(--muted); font-size: 0.95rem; font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
    .contact-points { display: flex; flex-direction: column; gap: 1rem; }
    .contact-point { display: flex; align-items: center; gap: .8rem; font-size: 0.875rem; color: var(--muted); }
    .contact-point-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(230,51,41,0.08); border: 1px solid rgba(230,51,41,0.2); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
    .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .45rem; }
    .form-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
    .form-input, .form-textarea, .form-select { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: .75rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; transition: border-color .2s; outline: none; width: 100%; }
    .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,51,41,0.1); }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-select option { background: var(--bg); }
    .form-submit { background: var(--accent); color: #fff; border: none; padding: .9rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all .2s; margin-top: .4rem; }
    .form-submit:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(230,51,41,0.35); }

    /* ── FOOTER ── */
    footer { background: var(--bg); }
    .footer-main { max-width: 1100px; margin: 0 auto; padding: 3rem 5% 2rem; display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 3rem; }
    .footer-brand { margin-bottom: .8rem; }
    .footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
    .footer-col h3 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
    .footer-col ul a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-col ul a:hover { color: var(--text); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 1.2rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
    .footer-bottom p { font-size: 0.75rem; color: var(--muted); }
    .footer-contact-info { display: flex; flex-direction: column; gap: .4rem; }
    .footer-contact-info a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color .2s; white-space: nowrap; }
    .footer-contact-info a:hover { color: var(--text); }

    /* ── FAQ ── */
    #faq { background: var(--bg); border-top: 1px solid var(--border); }
    .faq-wrap { max-width: 780px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-question {
      width: 100%; background: none; border: none;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 0;
      cursor: pointer;
      text-align: left;
      gap: 1rem;
    }
    .faq-question span {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }
    .faq-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
      font-size: 1rem; font-weight: 300;
      transition: transform .3s ease, background .2s;
      line-height: 1;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(230,51,41,0.1);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0;
    }
    .faq-answer p {
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.75;
      padding-bottom: 1.4rem;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .why-wrap { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
      .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
      .about-wrap { grid-template-columns: 1fr; }
      .about-photo-wrap { max-width: 280px; }
      .footer-main { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .portfolio-grid { grid-template-columns: 1fr; }

      /* Hide desktop pricing grid, show carousel */
      .pricing-grid { display: none; }
      .pricing-footer-note { text-align: center; }
      .pricing-carousel-wrap {
        display: block;
        max-width: 100%;
        overflow: hidden;
        position: relative;
      }
      /* Overlaid chevron arrows on edges */
      .pricing-carousel-wrap::before,
      .pricing-carousel-wrap::after {
        content: '';
        position: absolute;
        top: 0; bottom: 1.5rem;
        width: 56px;
        z-index: 2;
        pointer-events: none;
      }
      .pricing-carousel-wrap::before {
        left: 0;
        background: linear-gradient(to right, rgba(5,7,15,0.7) 0%, transparent 100%);
      }
      .pricing-carousel-wrap::after {
        right: 0;
        background: linear-gradient(to left, rgba(5,7,15,0.7) 0%, transparent 100%);
      }
      .carousel-chevron {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        pointer-events: none;
        color: rgba(255,255,255,0.25);
        font-size: 1.4rem;
        line-height: 1;
        transition: opacity .3s ease;
      }
      .carousel-chevron.hidden { opacity: 0; }
      .carousel-chevron-left { left: 10px; }
      .carousel-chevron-right { right: 10px; }
      .carousel-arrows { display: none; }
      .pricing-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding: 0 10% 1.5rem;
        scroll-padding: 10%;
      }
      .pricing-carousel::-webkit-scrollbar { display: none; }
      .pricing-carousel-card {
        flex: 0 0 78vw;
        max-width: 320px;
        scroll-snap-align: center;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1.8rem;
        display: flex;
        flex-direction: column;
      }
      .pricing-carousel-card.featured {
        border-color: var(--accent);
        background: var(--surface2);
        border-top: 3px solid var(--accent);
        box-shadow: 0 0 30px rgba(230,51,41,0.12);
      }
      /* Carousel dots */
      .carousel-dots {
        display: flex;
        justify-content: center;
        gap: .5rem;
        margin-top: .25rem;
      }
      .carousel-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--border2);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background .2s, transform .2s;
      }
      .carousel-dot.active {
        background: var(--accent);
        transform: scale(1.3);
      }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: 1fr; }
    }
    @media (min-width: 641px) and (max-width: 900px) {
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
    }