@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #090908;
  color: #eeeee6;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --yellow:   #f0c040;
  --yellow-d: #c89c20;
  --black:    #090908;
  --dark:     #0f0f0d;
  --mid:      #161614;
  --surface:  #1e1e1b;
  --surface2: #252522;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.13);
  --text:     #eeeee6;
  --text2:    #9a9a8e;
  --text3:    #555550;
  --green:    #4ade80;
  --red:      #f87171;
  --blue:     #60a5fa;
  --radius:   16px;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────────── */
#fd-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.3s;
  box-shadow: 0 0 10px rgba(240,192,64,0.5);
}
#fd-cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(240,192,64,0.45);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.28s ease, height 0.28s ease, border-color 0.2s;
}

a:hover ~ #fd-cursor,
button:hover ~ #fd-cursor { width: 20px; height: 20px; }

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
.font-display { font-family: 'Syne', sans-serif; }

/* ── NAVBAR ────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(9,9,8,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 56px;
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 19px;
  color: var(--text); text-decoration: none; letter-spacing: -0.03em;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn-ghost {
  padding: 9px 20px; border-radius: 9px;
  border: 1px solid var(--border2);
  color: var(--text2); background: transparent;
  font-size: 14px; font-weight: 500; font-family: inherit;
  text-decoration: none; cursor: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }
.btn-yellow {
  padding: 10px 22px; border-radius: 9px;
  background: var(--yellow); color: #111;
  font-size: 14px; font-weight: 700; font-family: inherit;
  text-decoration: none; cursor: none; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-yellow:hover {
  background: #f8d060;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(240,192,64,0.32);
}
.btn-dark {
  padding: 15px 32px; border-radius: 11px;
  background: #111; color: var(--yellow);
  font-size: 15px; font-weight: 700; font-family: inherit;
  text-decoration: none; cursor: none; border: none;
  display: inline-flex; align-items: center;
  transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: #1a1a18; transform: translateY(-1px); }
.btn-outline-dark {
  padding: 15px 28px; border-radius: 11px;
  background: transparent; color: #111;
  font-size: 15px; font-weight: 600; font-family: inherit;
  text-decoration: none; cursor: none;
  border: 2px solid rgba(0,0,0,0.22);
  display: inline-flex; align-items: center;
  transition: border-color 0.2s;
}
.btn-outline-dark:hover { border-color: rgba(0,0,0,0.45); }

/* ── MOBILE HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 600;
  background: rgba(9,9,8,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .btn-ghost {
  font-size: 15px; padding: 11px 28px; margin-top: 8px;
}
.mobile-nav .btn-yellow {
  font-size: 15px; padding: 12px 28px;
}
.mobile-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
  line-height: 1;
  padding: 0;
}
.mobile-close:hover { background: rgba(255,255,255,0.15); color: var(--yellow); }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 140px 56px 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 62% 32%, rgba(240,192,64,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(240,192,64,0.025) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 100%);
}
#hero-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 99px;
  border: 1px solid rgba(240,192,64,0.28);
  background: rgba(240,192,64,0.06);
  font-size: 12px; font-weight: 600; color: var(--yellow);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(50px, 7vw, 88px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: normal; color: var(--yellow);
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 99px;
  transform: scaleX(0); transform-origin: left;
  animation: underline-grow 0.6s 1.1s ease forwards;
}
@keyframes underline-grow { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 18px; color: var(--text2);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 40px; font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions .btn-yellow { padding: 14px 28px; font-size: 15px; }
.hero-actions .btn-ghost  { padding: 14px 24px; font-size: 15px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.04em; color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ── DASHBOARD MOCKUP ──────────────────────────────────────────── */
.hero-visual {
  position: absolute; right: -1%; top: 50%;
  transform: translateY(-50%);
  width: 50%; max-width: 760px;
  perspective: 1400px; z-index: 1;
  animation: fadeUp 0.9s 0.15s ease both;
}
.dashboard-3d {
  transform: rotateY(-18deg) rotateX(8deg);
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 80px 140px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.hero-visual:hover .dashboard-3d { transform: rotateY(-10deg) rotateX(4deg); }
.dash-mock { background: #0c0c0a; font-size: 10.5px; }
.dash-topbar {
  background: #121210; padding: 10px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-body { display: flex; }
.dash-sidebar {
  width: 130px; background: #0a0a08;
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.dash-logo-row {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 10px;
}
.dash-logo-sq {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--yellow); display: grid; place-items: center;
}
.dash-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 800; color: var(--text);
}
.dash-nav-item {
  padding: 5px 8px; border-radius: 6px; margin-bottom: 2px;
  font-size: 9.5px; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 5px;
}
.dash-nav-item.active { background: rgba(240,192,64,0.1); color: var(--yellow); }
.dash-section-label {
  font-size: 7.5px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2); padding: 8px 8px 4px; margin-bottom: 2px;
}
.dash-content { flex: 1; padding: 14px; }
.dash-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.dash-kpi {
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 9px;
}
.dash-kpi-label { font-size: 7.5px; color: rgba(255,255,255,0.3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.dash-kpi-val { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; }
.dash-kpi-val.green { color: #4ade80; }
.dash-kpi-val.yellow { color: var(--yellow); }
.dash-kpi-val.red { color: #f87171; }
.dash-chart {
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 10px; margin-bottom: 8px;
  height: 72px; position: relative; overflow: hidden;
}
.dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 100%; }
.dash-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(240,192,64,0.85), rgba(240,192,64,0.18));
  animation: barGrow 1s ease both;
}
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } }
.dash-table {
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; overflow: hidden;
}
.dash-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 8.5px; color: rgba(255,255,255,0.4);
}
.dash-row:last-child { border-bottom: none; }
.dash-avatar {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #c89c20);
  flex-shrink: 0;
}
.dash-pill {
  padding: 2px 6px; border-radius: 99px;
  font-size: 7.5px; background: rgba(74,222,128,0.14); color: #4ade80;
}
.dash-pill.amber { background: rgba(240,192,64,0.14); color: var(--yellow); }

/* ── MARQUEE ───────────────────────────────────────────────────── */
.marquee-section {
  padding: 18px 0; background: var(--yellow);
  overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 24s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Syne', sans-serif; font-size: 13px;
  font-weight: 700; color: #111; padding: 0 28px;
}
.marquee-dot { width: 5px; height: 5px; background: rgba(0,0,0,0.22); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SECTION BASE ──────────────────────────────────────────────── */
section { padding: 120px 56px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.08; color: var(--text); margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; color: var(--text2);
  font-weight: 300; line-height: 1.75; max-width: 520px;
}

/* ── PROBLEM ───────────────────────────────────────────────────── */
.problem { background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 60px; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px; border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.pain-item:hover { border-color: var(--border2); }
.pain-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(248,113,113,0.1); color: #f87171;
  display: grid; place-items: center; font-size: 16px; flex-shrink: 0;
}
.pain-title { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.pain-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }
.solution-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.solution-items { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.solution-item {
  display: flex; gap: 12px; align-items: center;
  font-size: 14px; color: var(--text2);
}
.sol-check {
  width: 20px; height: 20px; border-radius: 6px;
  background: rgba(74,222,128,0.1); color: #4ade80;
  display: grid; place-items: center; flex-shrink: 0; font-size: 11px;
}

/* ── FEATURES ──────────────────────────────────────────────────── */
.features { background: var(--dark); }
.features-header { margin-bottom: 56px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.feature-card {
  background: var(--dark); padding: 38px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.feature-card:hover { background: var(--mid); }
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0); transition: transform 0.3s;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.16);
  display: grid; place-items: center; margin-bottom: 20px;
  color: var(--yellow);
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--yellow); }
.feature-title {
  font-family: 'Syne', sans-serif; font-size: 18px;
  font-weight: 700; margin-bottom: 10px;
}
.feature-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }
.feature-tag {
  display: inline-flex; margin-top: 16px;
  padding: 4px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
  background: rgba(240,192,64,0.07);
  color: var(--yellow);
  border: 1px solid rgba(240,192,64,0.14);
}

/* ── HOW IT WORKS ──────────────────────────────────────────────── */
.how { background: var(--black); }
.how-center { text-align: center; margin-bottom: 64px; }
.how-center .section-sub { margin: 0 auto; }
.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 30px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--yellow), rgba(240,192,64,0.1));
}
.step { padding: 0 22px; text-align: center; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--yellow); color: #111;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  display: grid; place-items: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 0 40px rgba(240,192,64,0.28);
}
.step-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── COMPLIANCE ────────────────────────────────────────────────── */
.compliance { background: var(--dark); }
.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.comp-items { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.comp-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.comp-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.comp-title { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.comp-desc { font-size: 13px; color: var(--text2); }
.pdf-mockup {
  background: #f8f8f6; border-radius: 16px; padding: 28px;
  box-shadow: 0 48px 100px rgba(0,0,0,0.55);
  transform: rotate(1.5deg); position: relative;
}
.pdf-stamp {
  position: absolute; top: -10px; right: -10px;
  background: #4ade80; color: #111;
  font-size: 9px; font-weight: 700; padding: 4px 10px;
  border-radius: 4px; transform: rotate(-3deg); font-family: sans-serif;
}
.pdf-header {
  font-size: 12px; font-weight: 700; color: #111;
  border-bottom: 2px solid #111; padding-bottom: 8px;
  margin-bottom: 14px; font-family: sans-serif;
}
.pdf-field { margin-bottom: 9px; }
.pdf-label { font-size: 8px; color: #999; margin-bottom: 2px; font-family: sans-serif; }
.pdf-value {
  padding: 3px 0; border-bottom: 1px solid #ddd;
  font-size: 10px; color: #111;
  display: flex; justify-content: space-between; font-family: sans-serif;
}
.pdf-filled { color: #1d4ed8; font-weight: 600; }

/* ── DIRECT DEBIT ──────────────────────────────────────────────── */
.direct-debit { background: var(--mid); }
.dd-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.dd-grid::before {
  content: ''; position: absolute;
  top: 30px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--yellow), rgba(240,192,64,0.1));
}

/* ── PRICING ───────────────────────────────────────────────────── */
.pricing { background: var(--black); }
.pricing-center { text-align: center; margin-bottom: 56px; }
.pricing-center .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.plan-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.plan-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.plan-card.featured {
  border-color: rgba(240,192,64,0.4);
  background: linear-gradient(145deg, rgba(240,192,64,0.06) 0%, var(--mid) 55%);
}
.plan-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 20px; right: 20px;
  background: var(--yellow); color: #111;
  font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 99px;
}
.plan-name { font-size: 11px; font-weight: 700; color: var(--text2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan-price sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 10px; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text2); }
.plan-desc { font-size: 13px; color: var(--text2); margin: 14px 0 20px; line-height: 1.55; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 13px; color: var(--text2); display: flex; gap: 8px; align-items: flex-start; }
.plan-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; padding: 13px;
  border-radius: 10px; text-align: center;
  font-size: 14px; font-weight: 700; font-family: inherit;
  text-decoration: none; transition: all 0.2s; cursor: none; border: none;
}
.plan-btn-yellow { background: var(--yellow); color: #111; }
.plan-btn-yellow:hover { background: #f8d060; }
.plan-btn-outline {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2);
}
.plan-btn-outline:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.testi-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: var(--border2); }
.testi-stars { color: var(--yellow); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-d));
  display: grid; place-items: center;
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; color: #111; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text3); margin-top: 2px; }



/* ── FORM INPUTS ───────────────────────────────────────────────────────────── */
.form-input, .form-select, .textarea-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .textarea-input:focus {
  border-color: rgba(240,192,64,0.5);
}
.form-input::placeholder, .textarea-input::placeholder {
  color: var(--text-3);
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
  display: block;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.16);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--yellow); font-size: 18px;
}
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 4px; }
.contact-val { font-size: 15px; font-weight: 500; color: var(--text); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
.contact-submit {
  width: 100%; padding: 14px; margin-top: 20px;
  background: var(--yellow); color: #111;
  font-size: 15px; font-weight: 700; font-family: inherit;
  border: none; border-radius: 11px; cursor: none;
  transition: background 0.2s;
}
.contact-submit:hover { background: #f8d060; }
.contact-success { display: none; text-align: center; padding: 40px 20px; }
.textarea-input {
  width: 100%; padding: 12px 15px; border-radius: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; font-family: inherit;
  resize: vertical; min-height: 110px; outline: none;
  transition: border-color 0.2s;
}
.textarea-input:focus { border-color: rgba(240,192,64,0.5); }

/* ── CTA FINAL ─────────────────────────────────────────────────── */
.cta-final {
  background: var(--yellow); padding: 100px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(0,0,0,0.022) 10px, rgba(0,0,0,0.022) 11px
  );
}
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800; letter-spacing: -0.04em;
  color: #111; margin-bottom: 14px; line-height: 1.05;
}
.cta-final p { font-size: 17px; color: rgba(0,0,0,0.58); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--black); padding: 60px 56px 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-tagline { font-size: 13px; color: var(--text3); margin-top: 14px; line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text2); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text2); }

/* ── TOAST ─────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--mid); border: 1px solid rgba(74,222,128,0.3);
  border-radius: 14px; padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(calc(100% + 64px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  max-width: 320px; pointer-events: none;
  visibility: hidden;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-icon { font-size: 20px; }
.toast-title { font-size: 14px; font-weight: 600; }
.toast-sub { font-size: 12px; color: var(--text2); margin-top: 2px; }

/* ── FLOATING PARTICLES ────────────────────────────────────────── */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--yellow); opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.2; }
  90%  { opacity: 0.06; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}


/* ── FIX BROWSER AUTOFILL ──────────────────────────────────────────────────── */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-select:-webkit-autofill,
.textarea-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #252522 inset !important;
  -webkit-text-fill-color: #eeeee6 !important;
  caret-color: #eeeee6;
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero-visual { display: none; }
  .hero-inner { max-width: 100%; }
  .problem-grid, .compliance-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps, .dd-grid { grid-template-columns: 1fr 1fr; }
  .steps::before, .dd-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1024px) {
  #fd-cursor, #fd-cursor-ring { display: none !important; }
  #navbar { padding: 14px 22px; }
  #navbar.scrolled { padding: 12px 22px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 22px; }
  .hero { padding: 120px 22px 80px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .features-grid { grid-template-columns: 1fr; }
  .steps, .dd-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  footer { padding: 48px 22px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-final { padding: 80px 22px; }
}
