  :root {
    --ink: #0A0C10; --paper: #F8F8F4; --cream: #EDEAE2; --slate: #101420; --deep: #0C0F18;
    --lime: #C8F230; --lime-light: #D9F76A; --lime-dark: #9CC200; --electric: #E8FF47;
    --blue: #1A3A8F; --sky: #2563EB; --muted: #6B7280; --border: #DDD9D0; --max: 1140px;
    --glow: 0 0 60px rgba(200,242,48,0.15);
    --nav-height: 64px;
    --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(10,12,16,0.06);
    --shadow-md: 0 8px 24px rgba(10,12,16,0.1);
    --shadow-lg: 0 20px 50px rgba(10,12,16,0.15);
    --transition-spring: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    --transition-smooth: all 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Outfit', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* SCROLL PROGRESS BAR */
  .scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--lime), var(--sky));
    z-index: 200; transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
  }

  /* LOGO */
  .logo { font-family: 'Anybody', sans-serif; font-weight: 900; font-size: 1.35rem; color: var(--ink); text-decoration: none; letter-spacing: -0.5px; display: inline-flex; align-items: center; cursor: pointer; }
  .logo-w {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; background: var(--lime); border-radius: var(--radius-sm);
    font-family: 'Anybody', sans-serif; font-weight: 900; font-size: 1.3rem;
    color: var(--ink); margin-right: 6px; transform: rotate(-3deg);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); flex-shrink: 0;
  }
  .logo:hover .logo-w { transform: rotate(0deg) scale(1.08); }
  .logo-text { letter-spacing: -0.5px; }
  .logo-dot { color: var(--lime); font-size: 1.5rem; line-height: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(248,248,244,0.85);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(221,217,208,0.4);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }
  nav.scrolled {
    background: rgba(248,248,244,0.96);
    box-shadow: 0 4px 32px rgba(10,12,16,0.08);
    border-bottom-color: rgba(221,217,208,0.6);
  }
  .nav-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem;
    transition: padding 0.3s ease;
  }
  nav.scrolled .nav-inner { padding: 0.7rem 2rem; }
  .nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 500;
    transition: color 0.2s ease; cursor: pointer; position: relative; padding: 4px 0;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--lime); border-radius: 1px;
    transform: scaleX(0); transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--ink); }
  .nav-cta {
    background: var(--ink) !important; color: var(--paper) !important;
    padding: 0.5rem 1.3rem !important; border-radius: var(--radius-sm);
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 8px rgba(10,12,16,0.2);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover {
    background: var(--slate) !important; transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(10,12,16,0.3) !important;
    color: var(--paper) !important;
  }

  /* HAMBURGER – animated X */
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 6px; border-radius: var(--radius-sm);
    transition: background 0.2s ease;
  }
  .hamburger:hover { background: rgba(10,12,16,0.05); }
  .hamburger span {
    display: block; width: 22px; height: 2px; background: var(--ink);
    border-radius: 2px; transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE MENU – smooth transition */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: var(--paper);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
    padding: 2rem;
  }
  .mobile-menu.open {
    opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
  }
  .mobile-menu::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 500px 400px at 50% 40%, rgba(200,242,48,0.05), transparent 70%);
    pointer-events: none;
  }
  .mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; width: 100%; max-width: 320px; }
  .mobile-menu a {
    font-family: 'Anybody', sans-serif; font-size: 1.5rem; font-weight: 700;
    color: var(--ink); text-decoration: none; padding: 0.6rem 1.5rem; border-radius: var(--radius-md);
    transition: color 0.2s, background 0.2s; width: 100%; text-align: center;
    position: relative;
  }
  .mobile-menu a:hover { color: var(--sky); background: rgba(37,99,235,0.05); }
  .mobile-menu .btn-dark {
    color: var(--paper); font-size: 1rem; padding: 0.85rem 2.5rem;
    border-radius: var(--radius-md); margin-top: 0.8rem; width: 100%;
    background: var(--ink); justify-content: center; display: flex;
    box-shadow: 0 4px 20px rgba(10,12,16,0.25);
  }
  .mobile-menu .btn-dark:hover { background: var(--slate); color: var(--paper); }
  .mobile-close {
    position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1rem; cursor: pointer;
    background: rgba(10,12,16,0.06); border: none; color: var(--ink);
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease; font-weight: 700;
  }
  .mobile-close:hover { background: rgba(10,12,16,0.12); }
  .mobile-divider { width: 40px; height: 2px; background: var(--lime); border-radius: 2px; margin: 0.4rem 0; }

  .page { display: none; } .page.active { display: block; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

  /* HERO */
  .hero {
    min-height: 100svh; padding: 8rem 2rem 5rem;
    display: flex; align-items: center;
    position: relative; overflow: hidden; background: var(--slate);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 700px 600px at 80% 30%, rgba(200,242,48,0.07) 0%, transparent 65%),
      radial-gradient(ellipse 500px 500px at 10% 85%, rgba(37,99,235,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 300px 300px at 50% 50%, rgba(200,242,48,0.03) 0%, transparent 70%),
      linear-gradient(145deg, var(--slate) 0%, #0d1128 60%, var(--deep) 100%);
    pointer-events: none;
  }
  .hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
    will-change: transform;
  }
  .hero-orb-1 {
    width: 500px; height: 500px; top: -100px; right: -80px;
    background: radial-gradient(circle, rgba(200,242,48,0.06), transparent 70%);
    animation: orb-float 12s ease-in-out infinite;
  }
  .hero-orb-2 {
    width: 350px; height: 350px; bottom: -50px; left: 5%;
    background: radial-gradient(circle, rgba(37,99,235,0.07), transparent 70%);
    animation: orb-float 16s ease-in-out infinite reverse;
  }
  @keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
  }
  .hero-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 440px; gap: 4rem;
    align-items: center; width: 100%; position: relative; z-index: 1;
  }
  .hero-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--lime); margin-bottom: 1.6rem;
    background: rgba(200,242,48,0.08); padding: 0.4rem 1rem;
    border-radius: 24px; border: 1px solid rgba(200,242,48,0.15);
    width: fit-content;
    animation: label-pulse 4s ease-in-out infinite;
  }
  @keyframes label-pulse {
    0%, 100% { border-color: rgba(200,242,48,0.15); }
    50% { border-color: rgba(200,242,48,0.3); }
  }
  .hero-label::before { content: '◆'; font-size: 0.55rem; }
  h1 {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.04; letter-spacing: -2px;
    margin-bottom: 1.6rem; color: var(--paper);
  }
  h1 em { font-style: normal; color: var(--lime); display: inline-block; }
  .hero-desc {
    font-size: 1.05rem; color: rgba(248,248,244,0.55);
    line-height: 1.85; margin-bottom: 2.5rem; max-width: 440px; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.85rem 1.7rem; border-radius: var(--radius-md);
    font-weight: 600; font-size: 0.88rem; text-decoration: none;
    cursor: pointer; border: none;
    transition: var(--transition-spring);
    font-family: 'Outfit', sans-serif; white-space: nowrap;
    position: relative; overflow: hidden;
  }
  .btn-lime {
    background: var(--lime); color: var(--ink); font-weight: 700;
    box-shadow: 0 4px 24px rgba(200,242,48,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
  }
  .btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,242,48,0.4);
    background: var(--lime-light);
  }
  .btn-lime:active { transform: translateY(-1px); }
  .btn-dark {
    background: var(--ink); color: var(--paper);
    box-shadow: 0 4px 20px rgba(10,12,16,0.25);
  }
  .btn-dark:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(10,12,16,0.35); }
  .btn-outline {
    background: transparent; border: 1.5px solid rgba(248,248,244,0.18); color: var(--paper);
  }
  .btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
  .btn-outline-dark {
    background: transparent; border: 1.5px solid var(--border); color: var(--ink);
  }
  .btn-outline-dark:hover { border-color: var(--ink); background: rgba(10,12,16,0.04); transform: translateY(-2px); }
  .hero-trust {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem; color: rgba(248,248,244,0.35);
  }
  .hero-trust-stars { color: var(--lime); letter-spacing: 2px; }

  /* HERO CARD */
  .hero-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 1.8rem; position: relative; overflow: hidden;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
  }
  .hero-card:hover { border-color: rgba(200,242,48,0.15); transform: translateY(-4px); }
  .hero-card::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(200,242,48,0.12), transparent 70%);
    pointer-events: none;
  }
  .browser-bar {
    background: rgba(255,255,255,0.05); padding: 0.6rem 1rem;
    display: flex; align-items: center; gap: 0.4rem; border-radius: 12px 12px 0 0;
  }
  .browser-dot { width: 9px; height: 9px; border-radius: 50%; }
  .browser-url {
    flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px;
    padding: 0.25rem 0.7rem; font-size: 0.72rem; color: rgba(248,248,244,0.25); margin-left: 0.4rem;
  }
  .browser-body {
    background: rgba(255,255,255,0.02); padding: 1.4rem; border-radius: 0 0 12px 12px;
    min-height: 140px; display: flex; flex-direction: column; gap: 8px; justify-content: center;
  }
  .mock-h {
    height: 13px; border-radius: 4px; background: rgba(255,255,255,0.08);
    animation: shimmer 2.5s ease-in-out infinite;
  }
  .mock-p {
    height: 7px; border-radius: 3px; background: rgba(255,255,255,0.04);
    animation: shimmer 2.5s ease-in-out infinite 0.3s;
  }
  @keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  .mock-btn { height: 28px; width: 90px; border-radius: 6px; background: var(--lime); margin-top: 6px; }
  .card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; margin-top: 1.3rem; }
  .card-stat {
    text-align: center; padding: 0.8rem;
    background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-spring);
  }
  .card-stat:hover { background: rgba(200,242,48,0.05); border-color: rgba(200,242,48,0.15); transform: scale(1.04); }
  .card-stat-num { font-family: 'Anybody', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--lime); }
  .card-stat-lbl { font-size: 0.68rem; color: rgba(248,248,244,0.3); margin-top: 3px; font-weight: 500; }

  /* PROOF BAR */
  .proof-bar { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.04); padding: 1.2rem 2rem; }
  .proof-bar-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; gap: 0.6rem;
    overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .proof-bar-inner::-webkit-scrollbar { display: none; }
  .proof-lbl {
    font-size: 0.68rem; color: rgba(248,248,244,0.3); letter-spacing: 2px;
    text-transform: uppercase; margin-right: 0.5rem; white-space: nowrap; font-weight: 600; flex-shrink: 0;
  }
  .proof-tag {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px; padding: 0.32rem 1rem; font-size: 0.78rem;
    color: rgba(248,248,244,0.45); white-space: nowrap;
    transition: all 0.25s ease; cursor: default; flex-shrink: 0;
  }
  .proof-tag:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-1px); }

  /* SECTIONS */
  .section { padding: 6rem 2rem; }
  .section-dark { background: var(--slate); }
  .section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--sky); background: rgba(37,99,235,0.07); padding: 0.35rem 1rem;
    border-radius: 24px; margin-bottom: 1rem;
  }
  .section-dark .section-tag { color: var(--lime); background: rgba(200,242,48,0.08); }
  h2 {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 900; letter-spacing: -1px; line-height: 1.08; margin-bottom: 1rem;
  }
  .section-dark h2 { color: var(--paper); }
  .section-sub {
    font-size: 1rem; color: var(--muted); line-height: 1.8;
    max-width: 500px; margin-bottom: 3rem; font-weight: 300;
  }
  .section-dark .section-sub { color: rgba(248,248,244,0.4); }
  .center { text-align: center; } .center .section-sub { margin-left: auto; margin-right: auto; }

  /* STEPS */
  .steps-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative;
  }
  .steps-grid::before {
    content: ''; position: absolute; top: 32px; left: 12%; width: 76%; height: 2px;
    background: linear-gradient(90deg, var(--lime), var(--sky)); z-index: 0; opacity: 0.4;
  }
  .step { position: relative; z-index: 1; text-align: center; padding: 0 0.8rem; }
  .step-num {
    width: 64px; height: 64px; background: var(--ink); color: var(--lime);
    font-family: 'Anybody', sans-serif; font-size: 1.3rem; font-weight: 900;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.1rem; border: 3px solid var(--paper);
    box-shadow: 0 4px 20px rgba(10,12,16,0.15), var(--glow);
    transform: rotate(-2deg); transition: var(--transition-spring);
  }
  .step:hover .step-num { transform: rotate(0deg) scale(1.08); box-shadow: 0 8px 32px rgba(10,12,16,0.2), 0 0 0 6px rgba(200,242,48,0.1); }
  .step h3 { font-family: 'Anybody', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
  .step p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
  .svc {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: var(--transition-spring); position: relative; overflow: hidden;
  }
  .svc::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--sky));
    opacity: 0; transition: opacity 0.3s ease;
  }
  .svc::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(200,242,48,0.04), transparent 60%);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
  }
  .svc:hover { transform: translateY(-6px); border-color: rgba(200,242,48,0.2); box-shadow: 0 20px 48px rgba(0,0,0,0.22); }
  .svc:hover::before { opacity: 1; }
  .svc:hover::after { opacity: 1; }
  .svc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .svc h3 { font-family: 'Anybody', sans-serif; font-size: 1rem; font-weight: 700; color: var(--paper); margin-bottom: 0.5rem; }
  .svc p { font-size: 0.84rem; color: rgba(248,248,244,0.4); line-height: 1.75; font-weight: 300; }
  .svc-tag {
    display: inline-block; margin-top: 1rem; font-size: 0.68rem;
    background: rgba(200,242,48,0.08); color: var(--lime);
    padding: 0.28rem 0.8rem; border-radius: 24px; font-weight: 600;
  }

  /* PRICING */
  .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
  .price-card {
    border: 1.5px solid var(--border); border-radius: 20px; padding: 2.4rem;
    transition: var(--transition-spring); background: white; position: relative;
  }
  .price-card:hover {
    border-color: var(--sky); transform: translateY(-6px);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12), var(--shadow-lg);
  }
  .price-card.feat {
    border-color: transparent; background: var(--ink); color: var(--paper);
    transform: scale(1.04);
    box-shadow: 0 24px 60px rgba(10,12,16,0.3), var(--glow);
  }
  .price-card.feat::after {
    content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,242,48,0.06), transparent 60%);
  }
  .price-card.feat:hover { transform: scale(1.04) translateY(-6px); }
  .feat-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--lime); color: var(--ink); font-size: 0.66rem; font-weight: 800;
    padding: 0.35rem 1.2rem; border-radius: 24px; letter-spacing: 1px; white-space: nowrap;
    font-family: 'Anybody', sans-serif;
  }
  .price-name {
    font-family: 'Anybody', sans-serif; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--sky); margin-bottom: 0.8rem;
  }
  .price-card.feat .price-name { color: var(--lime); }
  .price-amt { font-family: 'Anybody', sans-serif; font-size: 3rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1; }
  .price-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.3rem; margin-top: 0.3rem; font-weight: 300; }
  .price-card.feat .price-period { color: rgba(248,248,244,0.35); }
  .price-monthly { background: rgba(0,0,0,0.04); border-radius: 10px; padding: 0.7rem 0.9rem; margin: 0.6rem 0 1.2rem; text-align: left; }
  .price-card.feat .price-monthly { background: rgba(255,255,255,0.07); }
  .price-monthly-title { font-size: 0.85rem; font-weight: 700; color: var(--sky); margin-bottom: 0.35rem; }
  .price-card.feat .price-monthly-title { color: var(--lime); }
  .price-monthly-list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
  .price-monthly-list li { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
  .price-monthly-list li::before { content: '•'; font-weight: 700; color: var(--sky); }
  .price-card.feat .price-monthly-list li::before { color: var(--lime); }
  .price-card.feat .price-monthly-list li { color: rgba(248,248,244,0.55); }
  .price-div { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
  .price-card.feat .price-div { background: rgba(255,255,255,0.07); }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; }
  .price-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; }
  .price-features li::before { content: '✓'; color: var(--sky); font-weight: 800; flex-shrink: 0; }
  .price-card.feat .price-features li::before { color: var(--lime); }
  .price-card.feat .price-features li { color: rgba(248,248,244,0.72); }
  .btn-full { width: 100%; justify-content: center; padding: 0.9rem; }
  .price-card.individual { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .price-card.individual .price-icon { font-size: 2.5rem; margin: 1rem 0 0.5rem; }
  .price-card.individual .price-amt { font-size: 1.6rem; }
  .price-card.individual:hover { border-color: var(--lime); }
  .price-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 2rem; font-weight: 300; }
  .price-note a { color: var(--sky); text-decoration: none; }

  /* PORTFOLIO */
  .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
  .port-item {
    border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border);
    transition: var(--transition-spring); background: white;
  }
  .port-item:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(10,12,16,0.14); }
  .port-thumb {
    height: 190px; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1rem; position: relative; overflow: hidden;
  }
  .port-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 60%);
    pointer-events: none;
  }
  .port-t1 { background: linear-gradient(135deg, #0B3D91, #1A6FC4); }
  .port-t2 { background: linear-gradient(135deg, #141B2A, #2D4A6A); }
  .port-t3 { background: linear-gradient(135deg, #2D1B47, #4A2C7A); }
  .port-mock {
    position: absolute; top: 12px; left: 12px; right: 12px;
    background: rgba(255,255,255,0.08); border-radius: 8px; padding: 10px;
    display: flex; flex-direction: column; gap: 5px;
  }
  .pm { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.18); }
  .pm.s { width: 55%; } .pm.l { background: var(--lime); width: 38%; }
  .port-label {
    font-size: 0.7rem; font-weight: 700; background: rgba(255,255,255,0.18); color: white;
    padding: 0.25rem 0.6rem; border-radius: 6px; width: fit-content;
    backdrop-filter: blur(8px); position: relative; z-index: 1;
  }
  .port-info { padding: 1.2rem; }
  .port-info h4 { font-family: 'Anybody', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
  .port-info p { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
  .port-coming { border-style: dashed; opacity: 0.55; }
  .port-coming .port-thumb { background: var(--cream); align-items: center; justify-content: center; }
  .coming-txt { font-family: 'Anybody', sans-serif; font-weight: 700; color: var(--muted); font-size: 0.9rem; }

  /* FAQ */
  .faq-list { max-width: 700px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.4rem 0; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: var(--ink); cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 1rem; transition: color 0.2s ease;
  }
  .faq-q:hover { color: var(--sky); }
  .faq-icon {
    width: 28px; height: 28px; background: rgba(200,242,48,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; line-height: 1; font-weight: 700; color: var(--lime-dark); flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease;
  }
  .faq-icon.open { transform: rotate(45deg); background: rgba(200,242,48,0.2); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
    font-size: 0.87rem; color: var(--muted); line-height: 1.85; font-weight: 300;
  }
  .faq-a.open { max-height: 400px; padding-bottom: 1.2rem; }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact-info h2 { margin-bottom: 1rem; }
  .contact-info p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; font-weight: 300; }
  .contact-detail { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.1rem; }
  .contact-icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: rgba(200,242,48,0.08); border: 1px solid rgba(200,242,48,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
    transition: var(--transition-spring);
  }
  .contact-detail:hover .contact-icon { background: rgba(200,242,48,0.15); transform: scale(1.08); }
  .contact-detail-text { font-size: 0.9rem; color: var(--ink); font-weight: 500; }
  .contact-detail-label { font-size: 0.73rem; color: var(--muted); }
  .contact-form-wrap {
    background: white; border-radius: 20px; padding: 2.4rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(10,12,16,0.05), 0 1px 0 rgba(255,255,255,0.8) inset;
  }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  label { font-size: 0.76rem; color: var(--muted); font-weight: 500; }
  input, textarea, select {
    background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius-md);
    padding: 0.8rem 1rem; color: var(--ink); font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; outline: none; transition: all 0.25s ease; width: 100%;
  }
  input:focus, textarea:focus, select:focus {
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 4px rgba(200,242,48,0.12);
    background: white;
  }
  textarea { height: 100px; resize: vertical; }
  select option { background: white; }
  .btn-submit { width: 100%; justify-content: center; padding: 0.95rem; margin-top: 0.4rem; }
  .form-legal { font-size: 0.73rem; color: var(--muted); margin-top: 0.8rem; text-align: center; font-weight: 300; }

  /* COMPLIANCE */
  .legal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .comp-card {
    background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; transition: var(--transition-smooth);
  }
  .comp-card:hover { box-shadow: 0 14px 36px rgba(10,12,16,0.07); transform: translateY(-4px); border-color: rgba(37,99,235,0.2); }
  .comp-card h3 { font-family: 'Anybody', sans-serif; font-size: 1.02rem; font-weight: 700; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
  .comp-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
  .comp-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.8rem; }
  .comp-card ul li { font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.5rem; font-weight: 300; }
  .comp-card ul li::before { content: '→'; color: var(--lime-dark); flex-shrink: 0; font-weight: 700; }
  .comp-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 0.22rem 0.75rem; border-radius: 24px; margin-bottom: 0.6rem; }
  .badge-ok { background: #D1FAE5; color: #065F46; }
  .badge-warn { background: #FEF3C7; color: #92400E; }
  .badge-must { background: #FEE2E2; color: #991B1B; }

  /* FOOTER */
  footer { background: var(--deep); border-top: 1px solid rgba(255,255,255,0.04); padding: 4rem 2rem 2.5rem; position: relative; }
  footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--sky), var(--lime));
  }
  .footer-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
    padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .footer-brand .logo { color: var(--paper); }
  .footer-brand p { font-size: 0.82rem; color: rgba(248,248,244,0.3); line-height: 1.8; margin-top: 1rem; max-width: 270px; font-weight: 300; }
  .footer-col h4 {
    font-family: 'Anybody', sans-serif; font-size: 0.7rem; font-weight: 700;
    color: rgba(248,248,244,0.3); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-col a {
    font-size: 0.84rem; color: rgba(248,248,244,0.4); text-decoration: none;
    transition: color 0.2s ease; cursor: pointer; font-weight: 300;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .footer-col a::before { content: '→'; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; font-size: 0.8rem; color: var(--lime); }
  .footer-col a:hover { color: rgba(248,248,244,0.85); }
  .footer-col a:hover::before { opacity: 1; transform: translateX(0); }
  .footer-bottom {
    max-width: var(--max); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.78rem; color: rgba(248,248,244,0.18); font-weight: 300; }

  /* STAGGERED ANIMATIONS */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
  .reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
  .reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
  .reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
  .reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.4s; }
  .reveal-stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.48s; }
  .reveal-stagger.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.56s; }
  .reveal-stagger.visible > *:nth-child(n+9) { opacity: 1; transform: none; transition-delay: 0.6s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .price-card.individual { grid-column: 1 / -1; max-width: 400px; justify-self: center; }
    .price-card.feat { transform: none; }
    .price-card.feat:hover { transform: translateY(-6px); }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.individual { max-width: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    h1 { font-size: 2.3rem; letter-spacing: -1px; }
    h2 { font-size: 1.75rem; }
    .hero { padding-top: 6.5rem; min-height: auto; padding-bottom: 4rem; }
    .section { padding: 4rem 1.5rem; }
    .wrap { padding: 0 1.25rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
    .proof-bar { padding: 1rem 1.25rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .btn { padding: 0.85rem 1.4rem; }
    .nav-inner { padding: 0.85rem 1.25rem; }
  }
  @media (max-width: 400px) {
    .steps-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
  }

  /* COOKIE BANNER */
  .cookie-banner {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--slate); color: rgba(248,248,244,0.8);
    padding: 1.2rem 2rem; border-top: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
    align-items: center; gap: 1.5rem; font-size: 0.84rem; line-height: 1.6; font-weight: 300;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  }
  .cookie-banner.show { display: flex; }
  .cookie-banner p { flex: 1; margin: 0; }
  .cookie-banner a { color: var(--lime); text-decoration: underline; cursor: pointer; }
  .cookie-buttons { display: flex; gap: 0.6rem; flex-shrink: 0; }
  .cookie-btn {
    padding: 0.55rem 1.2rem; border-radius: var(--radius-md); font-size: 0.82rem;
    font-weight: 600; cursor: pointer; border: none; font-family: 'Outfit', sans-serif;
    transition: all 0.25s ease;
  }
  .cookie-accept { background: var(--lime); color: var(--ink); }
  .cookie-accept:hover { background: var(--lime-light); transform: translateY(-1px); }
  .cookie-decline { background: transparent; color: rgba(248,248,244,0.5); border: 1px solid rgba(255,255,255,0.12); }
  .cookie-decline:hover { border-color: rgba(255,255,255,0.35); color: rgba(248,248,244,0.85); }

  /* SALE */
  .nav-badge {
    display: inline-flex; align-items: center; gap: 3px; background: #EF4444; color: white;
    font-size: 0.58rem; font-weight: 800; padding: 2px 6px; border-radius: 4px;
    letter-spacing: 0.5px; margin-left: 4px; vertical-align: top;
    animation: pulse-badge 2s ease-in-out infinite; position: relative; top: -2px;
    font-family: 'Anybody', sans-serif;
  }
  @keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.96); }
  }
  .sale-banner {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    padding: 0.75rem 2rem; text-align: center; color: white; font-size: 0.88rem; font-weight: 600;
  }
  .sale-banner span { font-weight: 300; opacity: 0.85; }
  .price-old {
    text-decoration: line-through; color: var(--muted); font-size: 1.2rem;
    font-weight: 400; margin-right: 0.3rem; display: inline-block;
  }
  .price-card.feat .price-old { color: rgba(248,248,244,0.3); }
  .sale-tag {
    display: inline-block; background: #EF4444; color: white; font-size: 0.63rem;
    font-weight: 800; padding: 2px 8px; border-radius: 4px; margin-left: 0.5rem;
    vertical-align: middle; letter-spacing: 0.5px; font-family: 'Anybody', sans-serif;
  }

  /* FOCUS STYLES – accessibility */
  :focus-visible {
    outline: 2.5px solid var(--lime); outline-offset: 3px; border-radius: 4px;
  }
  button:focus-visible, a:focus-visible { outline: 2.5px solid var(--lime); outline-offset: 3px; }

  /* REDUCED MOTION */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.15s !important; }
    .hero-orb-1, .hero-orb-2 { animation: none; }
    .scroll-progress { transition: none; }
  }
