    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg: #ffffff;
      --surface: #f5f5f7;
      --card: #fafafa;
      --accent: #f54b07;;
      --accent2: #f5a400;
      --accent3:black
      ;
      --text: #111111;
      --muted: #666680;
      --border: rgba(0,0,0,0.08);
      --glow: rgba(232,40,11,0.25);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Syne', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom Cursor */
    #cursor {
      position: fixed; width: 12px; height: 12px;
      background: var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    }
    #cursor-ring {
      position: fixed; width: 36px; height: 36px;
      border: 1.5px solid var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: left 0.12s ease, top 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
    }
    body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; background: var(--accent2); }
    body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 54px; height: 54px; border-color: var(--accent2); }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: #f0f0f0; }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 6vw;
      backdrop-filter: blur(20px);
      background: rgb(255 255 255);
      border-bottom: 1px solid var(--border);
      transition: padding 0.3s;
    }
    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem; letter-spacing: 2px;
      color: var(--text);
    }
    .logo span { color: var(--accent); }
    .nav-logo {
      height: 3.0rem;
      width: auto;
      object-fit: contain;
      transition: transform 0.2s ease;
    }
    .nav-logo:hover {
      transform: scale(1.05);
    }
    .nav-links { display: flex; gap: 2.4rem; list-style: none; }
    .nav-links a {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      color: var(--muted);
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: var(--accent);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--accent); color: white;
      padding: 0.6rem 1.4rem; border-radius: 2px;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .nav-cta:hover { background: black ; box-shadow: 0 0 20px ; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh; display: flex; align-items: center;
      padding: 120px 6vw 80px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,40,11,0.08) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,168,107,0.06) 0%, transparent 60%);
    }
    .grid-overlay {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content { position: relative; z-index: 1; max-width: 560px; }
    .hero-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      width: 100%;
    }
    .hero-visual {
      position: relative;
    }
    .hero-img-wrap {
      position: relative; border-radius: 8px; overflow: hidden;
      /* box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 0 1px var(--border); */
      aspect-ratio: 4/3;
    }
    .hero-img-wrap img {
      width: 100%; height: 100%;  
      display: block;
      transition: transform 0.6s ease;
    }
    .hero-img-wrap:hover img { transform: scale(1.04); }
    .hero-img-badge {
      position: absolute; bottom: 1.2rem; left: 1.2rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: 6px; padding: 0.8rem 1.1rem;
      display: flex; align-items: center; gap: 0.7rem;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .hero-img-badge .badge-icon { font-size: 1.4rem; }
    .hero-img-badge .badge-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
    .hero-img-badge .badge-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--accent); line-height: 1; }
    .hero-img-badge2 {
      position: absolute; top: 1.2rem; right: -1.5rem;
      background: var(--accent);
      border-radius: 6px; padding: 0.7rem 1rem;
      box-shadow: 0 8px 24px rgba(232,40,11,0.3);
      color: #fff;
    }
    .hero-img-badge2 .badge-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; line-height: 1; }
    .hero-img-badge2 .badge-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,60,0,0.1); border: 1px solid rgba(255,60,0,0.3);
      padding: 0.35rem 0.9rem; border-radius: 2px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent)    #f54b07;
      margin-bottom: 2rem;
      animation: fadeSlideUp 0.7s ease forwards;
    }
    .hero-badge .dot {
      width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.4); }
    }
    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 9vw, 9rem);
      line-height: 0.9; letter-spacing: 2px;
      animation: fadeSlideUp 0.8s 0.1s ease both;
    }
    h1 .line { display: block; }
    h1 .accent { color: var(--accent); }
    h1 .outline {
      -webkit-text-stroke: 2px rgba(0,0,0,0.15);
      color: transparent;
    }
    .hero-sub {
      margin-top: 2rem; max-width: 500px;
      font-size: 1rem; line-height: 1.7; color: var(--muted);
      animation: fadeSlideUp 0.8s 0.2s ease both;
    }
    .hero-actions {
      display: flex; gap: 1rem; margin-top: 2.8rem; flex-wrap: wrap;
      animation: fadeSlideUp 0.8s 0.3s ease both;
    }
    .btn-primary {
      background: var(--accent); color: #fff;
      padding: 0.9rem 2.2rem; border-radius: 2px;
      font-size: 0.82rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none;
      border: none; cursor: none;
      transition: box-shadow 0.3s, transform 0.2s, background 0.2s;
      position: relative; overflow: hidden;
    }
    .btn-primary::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%);
      transition: transform 0.4s;
    }
    .btn-primary:hover::after { transform: translateX(100%); }
    .btn-primary:hover { box-shadow: 0 0 30px var(--glow); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent; color: var(--text);
      padding: 0.9rem 2.2rem; border-radius: 2px;
      font-size: 0.82rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none;
      border: 1px solid var(--border);
      cursor: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--accent3); color: var(--accent3); }

    /* Ticker */
    .ticker-wrap {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 0.9rem 0;
    }
    .ticker-track {
      display: flex; gap: 3rem;
      animation: ticker 25s linear infinite;
      white-space: nowrap;
    }
    .ticker-item {
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      display: flex; align-items: center; gap: 0.7rem;
    }
    .ticker-item span { color: var(--accent); font-weight: 700; }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ── STATS ── */
    #stats {
      padding: 6rem 6vw;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px; background: var(--border);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stat-item {
      background: var(--bg);
      padding: 3rem 2.5rem;
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .stat-item::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s;
    }
    .stat-item:hover { background: var(--card); }
    .stat-item:hover::before { transform: scaleX(1); }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem; line-height: 1;
      color: var(--text);
    }
    .stat-num .unit { color: var(--accent); }
    .stat-label {
      margin-top: 0.5rem;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted);
    }

    /* ── IMG STRIP ── */
    .img-strip { padding: 3rem 6vw 0; }
    .img-strip-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .img-strip-card {
      position: relative; border-radius: 6px; overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      cursor: default;
    }
    .img-strip-card img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
      filter: saturate(0.85);
    }
    .img-strip-card:hover img { transform: scale(1.07); filter: saturate(1.1); }
    .img-strip-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.55));
      color: #fff; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 1.5rem 1rem 0.7rem;
    }
    @media (max-width: 700px) { .img-strip-inner { grid-template-columns: 1fr 1fr; } }

    /* ── RESULTS BANNER ── */
    .results-banner {
      margin-top: 3.5rem;
      border-radius: 8px; overflow: hidden;
      position: relative; height: 260px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    }
    .results-banner img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; filter: brightness(0.55) saturate(1.2);
    }
    .results-banner-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: space-around;
      padding: 2rem;
      flex-wrap: wrap; gap: 1.5rem;
    }
    .rb-stat { text-align: center; color: #fff; }
    .rb-stat .rb-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.2rem; line-height: 1;
      color: #fff;
    }
    .rb-stat .rb-num span { color: var(--accent2); }
    .rb-stat .rb-lbl {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.7); margin-top: 0.3rem;
    }
    .rb-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.2); }
    @media (max-width: 600px) { .rb-divider { display: none; } }

    /* ── SERVICES ── */
    #services { padding: 7rem 6vw; }
    .section-header { margin-bottom: 4rem; }
    .section-tag {
      font-family: 'Space Mono', monospace;
      font-size: 0.72rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 1rem; display: block;
    }
    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      line-height: 1; letter-spacing: 1px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1px; background: var(--border);
    }
    .service-card {
      background: var(--card); padding: 2.8rem 2.4rem;
      position: relative; overflow: hidden;
      transition: background 0.3s;
      border: 1px solid transparent;
    }
    .service-card:hover { background: var(--surface); border-color: var(--border); }
    .service-icon {
      font-size: 2rem; margin-bottom: 1.5rem;
      display: inline-block;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon { transform: scale(1.2) rotate(-5deg); }
    .service-card h3 {
      font-size: 1.1rem; font-weight: 800;
      letter-spacing: 0.5px; margin-bottom: 1rem;
    }
    .service-card p { font-size: 0.88rem; line-height: 1.7; color: var(--muted); }
    .service-tag {
      display: inline-block; margin-top: 1.5rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem; letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent3); border-bottom: 1px solid var(--accent3);
      padding-bottom: 2px;
    }
    .service-card .bg-num {
      position: absolute; right: 1.5rem; top: 1rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem; color: rgba(0,0,0,0.04);
      line-height: 1; pointer-events: none;
    }

    /* ── PROCESS ── */
    #process {
      padding: 7rem 6vw;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .process-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }
    .process-left .section-header { margin-bottom: 2rem; }
    .process-img-wrap {
      position: relative; border-radius: 8px; overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .process-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; filter: saturate(0.9);
      transition: transform 0.5s ease;
    }
    .process-img-wrap:hover img { transform: scale(1.04); }
    .process-img-tag {
      position: absolute; bottom: 1rem; left: 1rem;
      background: var(--accent); color: #fff;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem; letter-spacing: 2px;
      padding: 0.4rem 0.9rem; border-radius: 3px;
    }
    .process-steps-v { display: flex; flex-direction: column; gap: 0; }
    .step-v {
      display: flex; gap: 1.5rem; align-items: flex-start;
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--border);
    }
    .step-v:last-child { border-bottom: none; }
    .step-v .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem; line-height: 1;
      color: var(--accent); opacity: 0.5;
      min-width: 2.5rem; flex-shrink: 0;
    }
    .step-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
    .step-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
    @media (max-width: 800px) {
      .process-layout { grid-template-columns: 1fr; gap: 3rem; }
    }

    /* ── RESULTS / MARQUEE ── */
    #results { padding: 7rem 6vw; overflow: hidden; }
    .results-intro { max-width: 600px; margin-bottom: 4rem; }
    .results-intro p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-top: 1rem; }

    .case-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .case-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.2rem;
      position: relative; overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .case-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 20px rgba(232,40,11,0.08);
    }
    .case-brand {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 1.5rem;
    }
    .case-metric {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem; line-height: 1;
      color: var(--text);
    }
    .case-metric .up { color: var(--accent3); }
    .case-metric .down { color: var(--accent); }
    .case-desc {
      margin-top: 0.8rem;
      font-size: 0.85rem; color: var(--muted); line-height: 1.6;
    }
    .case-channel {
      display: inline-block; margin-top: 1.2rem;
      background: rgba(255,255,255,0.05);
      padding: 0.2rem 0.7rem; border-radius: 2px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
    }

    /* ── BRANDS ── */
    #brands {
      padding: 4rem 6vw;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      text-align: center;
    }
    .brands-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 2.5rem;
    }
    .brands-row {
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: center;
      gap: 3.5rem;
    }
    .brand-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem; letter-spacing: 3px;
      color: rgba(0,0,0,0.18);
      transition: color 0.3s;
    }
    .brand-name:hover { color: rgba(0,0,0,0.5); }

    /* ── PRICING ── */
    #pricing { padding: 7rem 6vw; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem; margin-top: 4rem;
    }
    .plan {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }
    .plan:hover { transform: translateY(-4px); }
    .plan.featured {
      border-color: var(--accent);
      background: linear-gradient(160deg, rgba(232,40,11,0.05) 0%, var(--card) 60%);
    }
    .plan-badge {
      position: absolute; top: 1.2rem; right: 1.2rem;
      background: var(--accent);
      padding: 0.2rem 0.7rem; border-radius: 2px;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: #fff;
    }
    .plan-name {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 1.2rem;
    }
    .plan-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem; line-height: 1;
    }
    .plan-price sup {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem; vertical-align: top; margin-top: 0.6rem;
    }
    .plan-price sub {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem; color: var(--muted);
    }
    .plan-divider {
      height: 1px; background: var(--border);
      margin: 1.5rem 0;
    }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .plan-features li {
      font-size: 0.85rem; color: var(--muted);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .plan-features li .check { color: var(--accent3); font-size: 1rem; }
    .plan-features li .x { color: rgba(0,0,0,0.2); font-size: 1rem; }
    .plan-btn {
      display: block; text-align: center;
      margin-top: 2rem; padding: 0.85rem;
      border-radius: 2px; font-size: 0.8rem;
      font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none;
      transition: 0.2s;
    }
    .plan-btn.primary { background: var(--accent); color: #fff; }
    .plan-btn.primary:hover { background: var(--accent2); }
    .plan-btn.outline {
      background: transparent; color: var(--text);
      border: 1px solid var(--border);
    }
    .plan-btn.outline:hover { border-color: var(--accent); color: var(--accent); }

    /* ── TESTIMONIALS ── */
    #testimonials {
      padding: 7rem 6vw;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 4rem;
    }
    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
      transition: border-color 0.3s, transform 0.3s;
    }
    .testi-card:hover { transform: translateY(-4px); border-color: rgba(232,40,11,0.3); }
    .testi-stars { color: var(--accent2); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
    .testi-text {
      font-size: 0.9rem; line-height: 1.75; color: var(--text);
      font-style: italic;
    }
    .testi-author {
      display: flex; align-items: center; gap: 0.9rem;
      margin-top: 1.5rem;
    }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.9rem; color: #fff;
      flex-shrink: 0;
    }
    .testi-name { font-size: 0.85rem; font-weight: 700; }
    .testi-role { font-size: 0.75rem; color: var(--muted); }

    /* ── FAQ ── */
    #faq { padding: 7rem 6vw; max-width: 800px; margin: auto; }
    .faq-list { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1px; background: var(--border); }
    .faq-item { background: var(--card); }
    .faq-question {
      padding: 1.5rem 1.8rem;
      display: flex; align-items: center; justify-content: space-between;
      cursor: none; font-size: 0.95rem; font-weight: 600;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon {
      font-size: 1.2rem; color: var(--accent);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-answer-inner {
      padding: 0 1.8rem 1.5rem;
      font-size: 0.87rem; color: var(--muted); line-height: 1.75;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* ── CTA ── */
    #cta {
      padding: 8rem 6vw;
      background: linear-gradient(135deg, rgba(232,40,11,0.06) 0%, rgba(245,164,0,0.04) 50%, rgba(0,168,107,0.04) 100%);
      border-top: 1px solid var(--border);
      text-align: center;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: 'GROW';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30vw; letter-spacing: 5px;
      color: rgba(232,40,11,0.04);
      pointer-events: none; white-space: nowrap;
    }
    #cta .section-tag { justify-content: center; display: flex; }
    #cta h2 { max-width: 700px; margin: 0.5rem auto; }
    #cta p {
      color: var(--muted); font-size: 0.95rem;
      margin: 1.5rem auto 2.5rem; max-width: 480px; line-height: 1.7;
    }
    #cta .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .input-group {
      display: flex; gap: 0; flex-wrap: wrap;
      justify-content: center; margin-bottom: 1rem;
    }
    .cta-email {
      background: var(--card); border: 1px solid var(--border);
      border-right: none; padding: 0.9rem 1.5rem;
      color: var(--text); font-family: 'Syne', sans-serif;
      font-size: 0.9rem; outline: none; width: 300px;
      border-radius: 2px 0 0 2px;
      transition: border-color 0.2s;
    }
    .cta-email:focus { border-color: var(--accent); }
    .cta-submit {
      background: var(--accent); color: #fff;
      padding: 0.9rem 1.8rem; border: none;
      font-family: 'Syne', sans-serif; font-size: 0.8rem;
      font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      cursor: none; border-radius: 0 2px 2px 0;
      transition: background 0.2s;
    }
    .cta-submit:hover { background: var(--accent2); }

    /* ── FOOTER ── */
    footer {
      background: #ffffff;
      border-top: 1px solid var(--border);
      padding: 4rem 6vw 2rem;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand .logo { display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
    .footer-col h4 {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--text);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul li a {
      font-size: 0.85rem; color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.8rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: 0.78rem; color: var(--muted); }
    .socials { display: flex; gap: 1rem; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid var(--border); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; text-decoration: none; color: var(--muted);
      transition: border-color 0.2s, color 0.2s;
    }
    .social-link:hover { border-color: var(--accent); color: var(--accent); }

    /* ── ANIMATIONS ── */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Number counter */
    .counter-num { display: inline; }

    /* Floating particles */
    #particles {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .footer-top { grid-template-columns: 1fr; }
      h1 { font-size: 3.5rem; }
      .hero-actions { flex-direction: column; }
    }