/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Onest:wght@300;400;500;600&display=swap');

/* ===== TOKENS ===== */
:root {
  --bg:          #ffffff;
  --bg2:         #faf9ff;
  --bg3:         #f3f1ff;
  --border:      rgba(99,102,241,0.1);
  --border-soft: rgba(99,102,241,0.06);
  --indigo:      #4f46e5;
  --purple:      #7c3aed;
  --grad:        linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --grad-text:   linear-gradient(135deg, #a855f7 20%, #ec4899 80%);
  --dim:         rgba(79,70,229,0.08);
  --text:        #0c0b14;
  --text2:       #2d2b4e;
  --muted:       #6b7280;
  --muted2:      #9ca3af;
  --display:     'Bricolage Grotesque', sans-serif;
  --body:        'Onest', sans-serif;
  --sh-xs:  0 1px 2px rgba(0,0,0,0.03), 0 1px 6px rgba(99,102,241,0.04);
  --sh-sm:  0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(99,102,241,0.06);
  --sh-md:  0 4px 24px rgba(0,0,0,0.05), 0 8px 32px rgba(79,70,229,0.09);
  --sh-lg:  0 8px 48px rgba(0,0,0,0.06), 0 16px 56px rgba(79,70,229,0.12);
  --r:      16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.25s, background 0.25s;
}
.nav--scrolled { background: rgba(255,255,255,0.82); box-shadow: 0 2px 20px rgba(79,70,229,0.06); }
.nav-inner { display: flex; align-items: center; height: 66px; gap: 8px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 1.1rem; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(79,70,229,0.28);
}
.logo-mark svg { width: 16px; height: 16px; }
.logo-text { color: var(--text); letter-spacing: -0.02em; }
.logo-badge {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  color: var(--indigo); background: var(--dim);
  border: 1px solid rgba(79,70,229,0.15);
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.04em;
}
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  padding: 7px 15px; border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }
.nav-cta {
  margin-left: 10px;
  font-size: 0.875rem; font-weight: 600;
  background: var(--grad); color: #fff;
  padding: 9px 22px; border-radius: 11px;
  box-shadow: 0 2px 10px rgba(79,70,229,0.26);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(79,70,229,0.34); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  margin-left: auto; width: 36px; height: 36px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.18s; border: none; text-decoration: none; font-family: var(--body);
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 3px 12px rgba(79,70,229,0.28); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(79,70,229,0.36); }
.btn-ghost { background: var(--bg); color: var(--text2); border: 1px solid var(--border); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: rgba(79,70,229,0.3); color: var(--indigo); }
.btn-outline { background: transparent; color: var(--indigo); border: 1px solid rgba(79,70,229,0.28); }
.btn-outline:hover { background: var(--dim); border-color: var(--indigo); }
.btn-lg { padding: 14px 30px; font-size: 0.95rem; border-radius: 13px; }
.btn-full { width: 100%; margin-top: 24px; justify-content: center; }
.btn-magnetic { display: inline-block; transition: transform 0.3s cubic-bezier(0.23,1,0.32,1); }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== HERO ===== */
.hero {
  padding: 136px 0 100px;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 70%);
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; top: -180px; right: -120px; z-index: 0; pointer-events: none;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, rgba(79,70,229,0.04) 40%, transparent 70%);
}
.hero-blob-2 {
  position: absolute; bottom: -100px; left: -80px; z-index: 0; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.04) 0%, transparent 65%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--indigo); background: var(--dim);
  border: 1px solid rgba(79,70,229,0.18);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); }
.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.035em;
  color: var(--text); margin-bottom: 22px;
}
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.72; margin-bottom: 36px; font-weight: 400; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid #fff;
  margin-left: -9px; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.68rem; font-weight: 800; color: #fff;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#4f46e5,#7c3aed); }
.av2 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.av3 { background: linear-gradient(135deg,#10b981,#059669); }
.av4 { background: linear-gradient(135deg,#3b82f6,#4f46e5); }
.proof-text { font-size: 0.82rem; color: var(--muted); }
.proof-text strong { color: var(--text); font-weight: 600; }

/* ===== HERO MOCKUP ===== */
.hero-right { display: flex; justify-content: center; align-items: flex-start; }
.mockup-wrap { position: relative; width: 100%; max-width: 430px; }
.mockup-card {
  background: #fff; border-radius: 22px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border-soft);
  padding: 22px; position: relative;
}
.mockup-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mockup-av {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.78rem; font-weight: 800; font-family: var(--display); flex-shrink: 0;
}
.mockup-header-info strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.mockup-header-info span { font-size: 0.73rem; color: var(--muted2); }
.mockup-live { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 500; color: #059669; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.mockup-hr { height: 1px; background: var(--border-soft); margin: 14px 0; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; }
.mkl { font-size: 0.77rem; color: var(--muted); }
.mkv { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 2px 9px; border-radius: 20px;
}
.bg { background: #dcfce7; color: #15803d; }
.bb { background: #dbeafe; color: #1d4ed8; }
.bp { background: var(--dim); color: var(--indigo); }
.progress-wrap { margin: 14px 0 5px; }
.progress-bar { height: 5px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 72%; border-radius: 3px;
  background: var(--grad); animation: progressPulse 2.5s ease-in-out infinite;
}
@keyframes progressPulse { 0%,100%{opacity:1} 50%{opacity:0.75} }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.71rem; color: var(--muted); margin-top: 5px; }
.mockup-btn {
  margin-top: 16px; width: 100%; padding: 11px;
  background: var(--grad); color: #fff; border: none; border-radius: 12px;
  font-family: var(--display); font-weight: 700; font-size: 0.85rem; cursor: pointer;
  box-shadow: 0 2px 10px rgba(79,70,229,0.24);
  transition: opacity 0.15s;
}
.mockup-btn:hover { opacity: 0.9; }
.float-1 {
  position: absolute; top: -18px; right: -18px;
  background: #fff; border-radius: 14px; padding: 11px 15px;
  box-shadow: var(--sh-md); border: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--text); white-space: nowrap;
}
.float-2 {
  position: absolute; bottom: -16px; left: -18px;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--sh-md); border: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 7px;
  font-size: 0.77rem; color: var(--muted); white-space: nowrap;
}
.float-2 strong { color: var(--text); font-weight: 600; }

/* ===== TRUST BAR ===== */
.trust-bar {
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  padding: 16px 0; overflow: hidden; background: #fff;
}
.trust-track { display: flex; gap: 56px; animation: marquee 22s linear infinite; white-space: nowrap; }
.trust-track:hover { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--muted); flex-shrink: 0; }
.t-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--indigo); opacity: 0.5; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 108px 0; }
.section--alt { background: var(--bg2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--indigo);
  background: var(--dim); padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  letter-spacing: -0.035em; color: var(--text);
  line-height: 1.1; margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 460px; margin: 0 auto; line-height: 1.7; }

/* ===== BENTO GRID (Codex-generated, integrated) ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.bento-card {
  position: relative; overflow: hidden;
  grid-column: span 2; min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(99,102,241,0.1);
  border-radius: 20px;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(79,70,229,0.07), transparent 42%),
    #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,0.05), 0 1px 2px rgba(0,0,0,0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(79,70,229,0.08), transparent 45%);
  opacity: 0; transition: opacity 0.22s ease; pointer-events: none;
}
.bento-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.28); box-shadow: 0 12px 32px rgba(79,70,229,0.1); }
.bento-card:hover::before { opacity: 1; }
.bento-card--wide { grid-column: span 2; }
.bento-card__icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  margin-bottom: 18px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(79,70,229,0.07), rgba(79,70,229,0.03));
  border: 1px solid rgba(79,70,229,0.1);
}
.bento-card__icon svg { width: 22px; height: 22px; stroke: #4f46e5; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bento-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 10px; }
.bento-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; max-width: 32ch; }
.bento-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tag-pill {
  display: inline-flex; align-items: center; height: 28px; padding: 0 11px;
  border-radius: 999px; border: 1px solid rgba(79,70,229,0.12);
  background: rgba(79,70,229,0.05); color: var(--indigo);
  font-size: 0.78rem; font-weight: 600;
}

/* ===== PROCESS ===== */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step {
  text-align: center; padding: 36px 28px;
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r); box-shadow: var(--sh-xs);
  transition: transform 0.2s, box-shadow 0.2s;
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.step-circle {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--display); font-size: 1.1rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(79,70,229,0.28);
}
.process-step h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.02em; }
.process-step p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r); padding: 32px;
  box-shadow: var(--sh-xs); transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.why-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--dim); border: 1px solid rgba(79,70,229,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; margin-bottom: 18px;
}
.why-card h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r); padding: 28px;
  box-shadow: var(--sh-xs); transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.t-stars { color: #f59e0b; font-size: 0.88rem; letter-spacing: 1px; margin-bottom: 14px; }
.t-text { font-size: 0.88rem; color: var(--text2); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-av {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.78rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg,#4f46e5,#7c3aed); }
.ta2 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.ta3 { background: linear-gradient(135deg,#10b981,#3b82f6); }
.t-author strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.t-author span { font-size: 0.73rem; color: var(--muted2); }

/* ===== PRICING ===== */
.pricing-note { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: -40px; margin-bottom: 48px; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--sh-xs); position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.pricing-card--featured {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), var(--sh-md);
  background: linear-gradient(155deg, #fdfcff, #f5f3ff 100%);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--grad); padding: 4px 14px; border-radius: 20px;
  box-shadow: 0 2px 10px rgba(79,70,229,0.28); white-space: nowrap;
}
.pricing-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--indigo); margin-bottom: 12px; }
.pricing-price { font-family: var(--display); font-size: 3.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.pricing-price sub { font-size: 1.2rem; font-weight: 500; font-family: var(--body); color: var(--muted); vertical-align: baseline; }
.pricing-cadence { font-size: 0.82rem; color: var(--muted2); margin-bottom: 16px; }
.pricing-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.pricing-hr { height: 1px; background: var(--border-soft); margin: 16px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: var(--text2); }
.pricing-features li::before { content: '✓'; color: var(--indigo); font-size: 0.78rem; font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ===== CTA ===== */
.cta-banner {
  background: linear-gradient(135deg, #f3f1ff 0%, #ede9fe 60%, #f0efff 100%);
  border-top: 1px solid rgba(79,70,229,0.1); border-bottom: 1px solid rgba(79,70,229,0.1);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.1), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 14px; }
.cta-banner p { color: var(--muted); font-size: 1rem; margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-sub-note { display: block; margin-top: 16px; font-size: 0.8rem; color: var(--muted2); }

/* ===== FOOTER ===== */
.footer { background: #0b0a15; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; padding: 60px 0 44px; }
.footer .logo-text { color: #f1f5f9; }
.footer .logo-badge { color: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
.f-tagline { font-size: 0.87rem; color: #4b5563; margin: 14px 0 8px; max-width: 280px; line-height: 1.65; }
.f-note { font-size: 0.73rem; color: #2d3748; letter-spacing: 0.02em; }
.footer-links { display: flex; gap: 52px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.f-col-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em; color: #374151; margin-bottom: 4px; }
.footer-col a { font-size: 0.84rem; color: #374151; transition: color 0.15s; }
.footer-col a:hover { color: #6b7280; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 18px 0; }
.f-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.f-copy { font-size: 0.75rem; color: #2d3748; }
.f-legal { display: flex; gap: 18px; }
.f-legal a { font-size: 0.75rem; color: #2d3748; transition: color 0.15s; }
.f-legal a:hover { color: #4b5563; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-card, .bento-card--wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { justify-content: flex-start; }
  .mockup-wrap { max-width: 380px; }
  .why-grid, .process-steps, .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 12px 24px 16px; border-bottom: 1px solid var(--border-soft); backdrop-filter: blur(16px); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-card--wide { grid-column: span 1; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .float-1, .float-2 { display: none; }
}
