/* ============================================================
   D&V Partners — modern animated site
   ============================================================ */

:root {
  --bg: #070b16;
  --bg-2: #0a0f1e;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-strong: rgba(255, 255, 255, 0.16);
  --text: #eef2ff;
  --muted: #9aa5c4;
  --mint: #34f5c5;
  --violet: #8b7bff;
  --blue: #4aa8ff;
  --grad: linear-gradient(100deg, var(--mint), var(--blue) 55%, var(--violet));
  --radius: 18px;
  --radius-lg: 26px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(52, 245, 197, 0.28); color: #fff; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92vw); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradShift 6s ease-in-out infinite alternate;
}
@keyframes gradShift { to { background-position: 100% 0; } }

/* ---------------- Loader ---------------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.loader-logo {
  display: block; height: 76px; width: auto;
  animation: loaderPop 0.7s var(--ease-spring) both 0.1s;
}
@keyframes loaderPop { from { opacity: 0; transform: translateY(24px) scale(0.7); } }
.loader-bar {
  width: 160px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.loader-bar span { display: block; height: 100%; width: 40%; border-radius: 3px; background: var(--grad); animation: loaderSlide 1s ease-in-out infinite; }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(450%); } }

/* ---------------- Ambient background ---------------- */
#bgCanvas { position: fixed; inset: 0; z-index: -3; width: 100%; height: 100%; }

.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; will-change: transform; }
.orb-1 { width: 560px; height: 560px; top: -180px; left: -120px; background: radial-gradient(circle, rgba(52,245,197,0.5), transparent 65%); animation: orbDrift 22s ease-in-out infinite alternate; }
.orb-2 { width: 640px; height: 640px; top: 32%; right: -220px; background: radial-gradient(circle, rgba(139,123,255,0.5), transparent 65%); animation: orbDrift 28s ease-in-out infinite alternate-reverse; }
.orb-3 { width: 480px; height: 480px; bottom: -160px; left: 28%; background: radial-gradient(circle, rgba(74,168,255,0.42), transparent 65%); animation: orbDrift 26s ease-in-out 3s infinite alternate; }
@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(90px, -70px, 0) scale(1.15); }
}

.noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- Scroll progress ---------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 150; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 14px rgba(52, 245, 197, 0.6);
}

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform 0.45s var(--ease-out), background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--stroke);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  width: min(1240px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
/* the PNG has generous transparent padding, so it renders larger than its visual size */
.logo-img { height: 58px; width: auto; margin: -8px 0; }
.logo-img-footer { height: 66px; margin: -12px 0 -12px -14px; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.logo-text em { font-style: normal; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500;
  color: var(--muted); position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.35s var(--ease-out); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7, 11, 22, 0.92); backdrop-filter: blur(24px);
  display: grid; place-content: center;
  opacity: 0; visibility: hidden; transition: 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: 8px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 27px; font-weight: 600; padding: 10px 24px;
  opacity: 0; transform: translateY(18px); transition: 0.45s var(--ease-out);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu .mobile-cta { color: var(--mint); }

/* ---------------- Buttons ---------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 600; font-size: 15.5px; font-family: var(--font-body);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
  overflow: hidden; white-space: nowrap;
}
.btn > * { position: relative; z-index: 1; }
.btn svg { transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--grad); background-size: 160% 100%; color: #051018; box-shadow: 0 8px 28px rgba(52, 245, 197, 0.28); }
.btn-primary:hover { background-position: 90% 0; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(52, 245, 197, 0.4); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.5) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-ghost { background: var(--surface); border-color: var(--stroke); color: var(--text); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--stroke-strong); background: var(--surface-2); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: rgba(52, 245, 197, 0.45); color: var(--mint); }
.btn-outline:hover { background: rgba(52, 245, 197, 0.1); transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: 14px; border-radius: 12px; }
.btn-lg { padding: 18px 38px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.4; pointer-events: none; }

/* ---------------- Reveal animations ---------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.stagger .reveal.in { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Hero ---------------- */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
  background: var(--surface); border: 1px solid var(--stroke);
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  backdrop-filter: blur(8px);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); position: relative; flex: none; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--mint); animation: pulseRing 1.8s ease-out infinite; }
.pulse-dot.green { background: var(--mint); }
@keyframes pulseRing { from { transform: scale(0.5); opacity: 1; } to { transform: scale(1.7); opacity: 0; } }

.hero-title { font-size: clamp(40px, 5.4vw, 68px); margin-bottom: 24px; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .word { display: inline-block; transform: translateY(110%); animation: heroLine 0.95s var(--ease-out) forwards; }
.hero-title .line:nth-child(1) .word { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.28s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.41s; }
@keyframes heroLine { to { transform: translateY(0); } }

.hero-sub { max-width: 540px; color: var(--muted); font-size: 17.5px; margin-bottom: 24px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: rgba(52, 245, 197, 0.07); border: 1px solid rgba(52, 245, 197, 0.22); color: var(--mint);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 8px 40px; justify-content: start; }
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.stat-num span { color: var(--mint); }
.stat-label { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.terminal-scene { position: relative; perspective: 1100px; }
.scene-glow {
  position: absolute; inset: -8% -6%; z-index: -1; border-radius: 40px;
  background: radial-gradient(ellipse at 55% 40%, rgba(52,245,197,0.16), rgba(139,123,255,0.12) 45%, transparent 72%);
  filter: blur(24px);
}
.terminal-card {
  width: min(390px, 100%); margin-inline: auto;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke-strong);
  border-radius: var(--radius-lg); padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.terminal-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.term-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.term-model { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); }

.terminal-screen {
  position: relative; border-radius: 16px; padding: 26px 20px 30px;
  background: rgba(5, 9, 18, 0.75); border: 1px solid var(--stroke);
  text-align: center; overflow: hidden; margin-bottom: 16px; min-height: 172px;
  display: grid; place-content: center; gap: 12px;
}
.term-amount { font-family: var(--font-display); font-size: 38px; font-weight: 700; letter-spacing: -0.01em; }
.term-tap { display: grid; justify-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); position: relative; transition: opacity 0.4s; }
.tap-rings { position: absolute; top: -6px; left: 50%; translate: -50% 0; width: 40px; height: 40px; pointer-events: none; }
.tap-rings span { position: absolute; inset: 0; border: 1.5px solid rgba(52,245,197,0.55); border-radius: 50%; animation: tapRing 2.2s ease-out infinite; }
.tap-rings span:nth-child(2) { animation-delay: 0.55s; }
.tap-rings span:nth-child(3) { animation-delay: 1.1s; }
@keyframes tapRing { from { transform: scale(0.4); opacity: 0.9; } to { transform: scale(1.9); opacity: 0; } }

.term-success { position: absolute; inset: 0; display: grid; place-content: center; gap: 10px; justify-items: center; background: rgba(5, 9, 18, 0.92); font-size: 13.5px; color: var(--mint); opacity: 0; visibility: hidden; transition: 0.4s; }
.terminal-screen.paid .term-success { opacity: 1; visibility: visible; }
.check-circle { stroke-dasharray: 120; stroke-dashoffset: 120; }
.check-mark { stroke-dasharray: 34; stroke-dashoffset: 34; }
.terminal-screen.paid .check-circle, .form-success.show .check-circle { animation: draw 0.7s var(--ease-out) forwards; }
.terminal-screen.paid .check-mark, .form-success.show .check-mark { animation: draw 0.5s var(--ease-out) 0.45s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.terminal-rows { display: grid; gap: 9px; }
.t-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 10px 14px; border-radius: 11px; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.05); }
.t-row span { color: var(--muted); }
.t-row b { font-weight: 600; }
.t-row .ok { color: var(--mint); }

.float-tag {
  position: absolute; z-index: 2;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(10, 15, 30, 0.82); border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(14px); box-shadow: 0 18px 42px rgba(0,0,0,0.45);
  display: grid; gap: 1px;
}
.float-tag b { font-family: var(--font-display); font-size: 19px; }
.float-tag b span { font-size: 12px; color: var(--muted); font-family: var(--font-body); }
.float-tag small { font-size: 11.5px; color: var(--muted); }
.tag-rate { top: -4%; left: -4%; animation: floatY 5.5s ease-in-out infinite; }
.tag-setup { top: 33%; right: -6%; animation: floatY 6.5s ease-in-out 0.8s infinite; }
.tag-tx { bottom: -7%; left: -4%; display: flex; align-items: center; gap: 11px; animation: floatY 6s ease-in-out 1.6s infinite; }
.tag-tx > div { display: grid; gap: 1px; }
.tx-tick { width: 30px; height: 30px; flex: none; display: grid; place-content: center; border-radius: 50%; background: rgba(52,245,197,0.15); color: var(--mint); font-weight: 700; }
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; translate: -50% 0; opacity: 0.55; transition: opacity 0.3s; }
.scroll-hint:hover { opacity: 1; }
.mouse { display: block; width: 24px; height: 38px; border: 2px solid var(--muted); border-radius: 14px; position: relative; }
.wheel { position: absolute; left: 50%; top: 7px; translate: -50% 0; width: 3px; height: 7px; border-radius: 3px; background: var(--mint); animation: wheelDrop 1.7s ease-in-out infinite; }
@keyframes wheelDrop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(11px); opacity: 0; } 100% { opacity: 0; } }

/* ---------------- Marquee ---------------- */
.marquee-band { padding: 26px 0; border-block: 1px solid var(--stroke); background: rgba(255,255,255,0.015); overflow: hidden; }
.marquee { display: flex; overflow: hidden; user-select: none; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 34px; flex-shrink: 0; padding-right: 34px; animation: marquee 36s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.marquee-track i { color: var(--mint); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------------- Sections ---------------- */
.section { padding: 110px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
  border-block: 1px solid rgba(255,255,255,0.05);
}
.section-head { max-width: 720px; margin-bottom: 58px; }
.section-head h2, .funding-copy h2, .faq-head h2, .cta-inner h2, .contact-copy h2 { font-size: clamp(30px, 3.6vw, 46px); margin: 14px 0 18px; }
.section-head p { color: var(--muted); font-size: 17px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--grad); border-radius: 2px; }

/* ---------------- Services ---------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; padding: 30px 28px;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: var(--radius);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
  transform-style: preserve-3d; overflow: hidden;
}
.service-card:hover { border-color: rgba(52, 245, 197, 0.35); background: var(--surface-2); }
.card-glow {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(52,245,197,0.12), transparent 42%);
}
.service-card:hover .card-glow { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; display: grid; place-content: center; margin-bottom: 20px;
  border-radius: 14px; color: var(--mint);
  background: rgba(52, 245, 197, 0.09); border: 1px solid rgba(52, 245, 197, 0.22);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 24px rgba(52,245,197,0.22); }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.service-card ul { list-style: none; display: grid; gap: 8px; }
.service-card li { font-size: 13.5px; color: var(--muted); padding-left: 22px; position: relative; }
.service-card li::before { content: "→"; position: absolute; left: 0; color: var(--mint); font-weight: 600; }

/* ---------------- Terminal tabs ---------------- */
.terminal-tabs { background: var(--surface); border: 1px solid var(--stroke); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 26px; }
.tab-buttons { position: relative; display: inline-flex; gap: 4px; padding: 5px; margin-bottom: 30px; background: rgba(5, 9, 18, 0.6); border: 1px solid var(--stroke); border-radius: 14px; }
.tab-btn {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px; border: 0; background: none;
  font-size: 14.5px; font-weight: 600; color: var(--muted); transition: color 0.3s;
}
.tab-btn.active { color: #051018; }
.tab-indicator {
  position: absolute; top: 5px; bottom: 5px; border-radius: 10px;
  background: var(--grad); box-shadow: 0 6px 18px rgba(52,245,197,0.35);
  transition: left 0.45s var(--ease-spring), width 0.45s var(--ease-spring);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelIn 0.55s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } }
.panel-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.panel-copy h3 { font-size: 26px; margin-bottom: 12px; }
.panel-copy > p { color: var(--muted); margin-bottom: 20px; }
.ticks { list-style: none; display: grid; gap: 11px; margin-bottom: 22px; }
.ticks li { padding-left: 30px; position: relative; font-size: 15px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; display: grid; place-content: center;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  background: rgba(52,245,197,0.13); color: var(--mint); border: 1px solid rgba(52,245,197,0.3);
}
.ideal-for { padding: 14px 18px; border-radius: 13px; background: rgba(139,123,255,0.08); border: 1px solid rgba(139,123,255,0.2); margin-bottom: 22px; }
.ideal-for small { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.ideal-for p { font-size: 14.5px; margin-top: 3px; }

/* Devices */
.panel-art { display: grid; place-content: center; }
.device { position: relative; animation: floatY 6s ease-in-out infinite; }
.device-screen {
  position: relative; display: grid; place-content: center; gap: 6px; text-align: center;
  background: linear-gradient(165deg, #10182e, #0a0f1e);
  border: 1px solid var(--stroke-strong); border-radius: 20px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}
.device-amount { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.device-hint { font-size: 12px; color: var(--muted); }
.device-mobile .device-screen { width: 190px; height: 240px; }
.device-portable .device-screen { width: 220px; height: 210px; }
.device-countertop .device-screen { width: 250px; height: 180px; }
.device-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 14px 18px; background: #0c1223; border: 1px solid var(--stroke); border-top: 0; border-radius: 0 0 20px 20px; width: 190px; margin: -12px auto 0; padding-top: 22px; }
.device-keys span { height: 11px; border-radius: 5px; background: rgba(255,255,255,0.09); }
.device-dock { width: 250px; height: 18px; margin: 10px auto 0; border-radius: 9px; background: linear-gradient(180deg, #131b31, #0a0f1e); border: 1px solid var(--stroke); }
.device-base { width: 150px; height: 26px; margin: -4px auto 0; border-radius: 0 0 16px 16px; background: linear-gradient(180deg, #131b31, #0a0f1e); border: 1px solid var(--stroke); border-top: 0; }
.nfc-waves { position: absolute; top: 14px; right: 14px; width: 26px; height: 26px; }
.nfc-waves span { position: absolute; inset: 0; border: 1.5px solid rgba(52,245,197,0.5); border-radius: 50%; animation: tapRing 2.4s ease-out infinite; }
.nfc-waves span:nth-child(2) { animation-delay: 0.6s; }
.nfc-waves span:nth-child(3) { animation-delay: 1.2s; }
.receipt {
  position: absolute; bottom: -34px; left: 50%; translate: -50% 0;
  width: 74px; height: 44px; border-radius: 4px 4px 8px 8px;
  background: repeating-linear-gradient(180deg, #e8ecf5 0 3px, #cdd4e4 3px 4px, #e8ecf5 4px 10px);
  animation: receiptPrint 3.2s ease-in-out infinite;
}
@keyframes receiptPrint { 0%, 15% { height: 8px; opacity: 0; } 55%, 80% { height: 46px; opacity: 1; } 100% { height: 46px; opacity: 0; } }

/* Interactive tap-to-pay demo (mobile terminal) */
.tap-demo { position: relative; display: grid; justify-items: center; gap: 28px; }
.tap-demo.dragging .device, .tap-demo.busy .device { animation-play-state: paused; }
.tap-hint { font-size: 12.5px; color: var(--muted); text-align: center; transition: color 0.3s; }

.pay-card {
  position: relative; width: 208px; height: 128px; border-radius: 16px;
  padding: 15px 18px; display: flex; flex-direction: column;
  background:
    radial-gradient(120% 160% at 85% -20%, rgba(139, 123, 255, 0.38), transparent 55%),
    radial-gradient(130% 150% at -10% 110%, rgba(52, 245, 197, 0.3), transparent 55%),
    linear-gradient(150deg, #141c33, #0a0f1e);
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: grab; user-select: none; -webkit-user-select: none; touch-action: none;
  z-index: 3; will-change: transform;
}
.pay-card:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
.pay-card.dragging { cursor: grabbing; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6); }
.pay-card.to-terminal { transition: transform 0.35s var(--ease-out); pointer-events: none; }
.pay-card.returning { transition: transform 0.65s var(--ease-spring); pointer-events: none; }
.pay-card-glare { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.09) 45%, transparent 60%); pointer-events: none; }
.pay-card-top { display: flex; justify-content: space-between; align-items: flex-start; color: var(--mint); }
.pay-card-brand { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); }
.pay-card-brand em { font-style: normal; color: var(--mint); }
.pay-card-brand span { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 3px; }
.pay-card-chip { margin-top: 8px; width: 34px; height: 24px; border-radius: 5px; background: linear-gradient(140deg, #f4d47c, #b9903e); position: relative; overflow: hidden; }
.pay-card-chip span { position: absolute; background: rgba(10, 15, 30, 0.55); }
.pay-card-chip span:nth-child(1) { left: 0; right: 0; top: 50%; height: 1.5px; margin-top: -0.75px; }
.pay-card-chip span:nth-child(2) { top: 0; bottom: 0; left: 33%; width: 1.5px; }
.pay-card-chip span:nth-child(3) { top: 0; bottom: 0; right: 33%; width: 1.5px; }
.pay-card-number { margin-top: auto; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; color: var(--text); }
.pay-card-foot { display: flex; justify-content: space-between; font-size: 9.5px; letter-spacing: 0.12em; color: var(--muted); margin-top: 5px; }

.device-screen.armed {
  border-color: rgba(52, 245, 197, 0.65);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(52, 245, 197, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.device-status {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center; gap: 9px; justify-items: center;
  background: rgba(5, 9, 18, 0.985); font-size: 13.5px;
  opacity: 0; visibility: hidden; transition: 0.3s;
}
/* while the card rests on the lower half of the reader, keep the spinner visible above it */
.status-processing { padding-bottom: 100px; }
.status-approved { color: var(--mint); }
.status-approved small { font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }
.device-screen.processing .status-processing,
.device-screen.approved .status-approved { opacity: 1; visibility: visible; }
.pay-spinner { width: 26px; height: 26px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, 0.15); border-top-color: var(--mint); animation: paySpin 0.8s linear infinite; }
@keyframes paySpin { to { transform: rotate(360deg); } }
.pay-check-circle { stroke-dasharray: 150; stroke-dashoffset: 150; }
.pay-check-mark { stroke-dasharray: 40; stroke-dashoffset: 40; }
.device-screen.approved .pay-check-circle { animation: draw 0.6s var(--ease-out) forwards; }
.device-screen.approved .pay-check-mark { animation: draw 0.4s var(--ease-out) 0.35s forwards; }

.included-strip { padding: 26px 30px; border-radius: var(--radius); background: rgba(139,123,255,0.06); border: 1px solid rgba(139,123,255,0.18); }
.included-strip h4 { font-size: 16px; margin-bottom: 14px; }
.included-items { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.included-items span { font-size: 14px; color: var(--muted); }

/* ---------------- Quote builder ---------------- */
.quote-shell { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }
.quote-main {
  background: var(--surface); border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  padding: 32px; backdrop-filter: blur(10px);
}
.quote-steps { list-style: none; display: flex; gap: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.qs { display: flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; font-size: 13px; color: var(--muted); border: 1px solid transparent; transition: 0.35s; }
.qs i { font-style: normal; width: 22px; height: 22px; display: grid; place-content: center; border-radius: 50%; font-size: 11.5px; font-weight: 700; background: rgba(255,255,255,0.06); border: 1px solid var(--stroke); transition: 0.35s; }
.qs.active { color: var(--text); background: rgba(52,245,197,0.07); border-color: rgba(52,245,197,0.25); }
.qs.active i { background: var(--grad); color: #051018; border-color: transparent; }
.qs.done i { background: rgba(52,245,197,0.18); color: var(--mint); border-color: rgba(52,245,197,0.35); }

.q-panel { display: none; }
.q-panel.active { display: block; animation: panelIn 0.5s var(--ease-out); }
.q-panel h3 { font-size: 23px; margin-bottom: 6px; }
.q-hint { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.q-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.q-opt {
  text-align: left; padding: 17px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.035); border: 1px solid var(--stroke); color: var(--text);
  display: grid; gap: 3px; transition: 0.3s var(--ease-out); position: relative; overflow: hidden;
}
.q-opt b { font-size: 15px; font-weight: 600; }
.q-opt small { font-size: 12.5px; color: var(--muted); }
.q-opt:hover { border-color: var(--stroke-strong); transform: translateY(-2px); background: var(--surface-2); }
.q-opt.selected { border-color: rgba(52,245,197,0.55); background: rgba(52,245,197,0.08); box-shadow: 0 0 0 1px rgba(52,245,197,0.35), 0 10px 26px rgba(52,245,197,0.12); }
.q-opt.selected::after { content: "✓"; position: absolute; top: 12px; right: 14px; color: var(--mint); font-weight: 700; }

.quote-nav { display: flex; justify-content: space-between; margin-top: 30px; }

.q-result { text-align: center; padding: 12px 0 4px; }
.q-result-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mint); padding: 7px 15px; border-radius: 999px; background: rgba(52,245,197,0.08); border: 1px solid rgba(52,245,197,0.25); margin-bottom: 16px; }
.q-price { font-family: var(--font-display); margin: 8px 0 20px; }
.q-price small { font-size: 15px; color: var(--muted); font-family: var(--font-body); }
.q-price span { font-size: 58px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.q-summary { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px; }
.q-summary span { font-size: 12.5px; padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--stroke); color: var(--muted); }
.q-disclaimer { font-size: 13px; color: var(--muted); max-width: 460px; margin: 0 auto 24px; }

.quote-side { position: sticky; top: 96px; }
.quote-live {
  padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(139,123,255,0.12), rgba(52,245,197,0.07));
  border: 1px solid rgba(139,123,255,0.25);
  backdrop-filter: blur(10px);
}
.ql-head { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--mint); margin-bottom: 16px; }
.ql-amount { font-family: var(--font-display); font-size: 46px; font-weight: 700; line-height: 1; transition: 0.3s; }
.ql-unit { font-size: 13px; color: var(--muted); margin: 6px 0 16px; }
.ql-copy { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.ql-tags { list-style: none; display: grid; gap: 8px; margin-bottom: 20px; min-height: 10px; }
.ql-tags li { font-size: 13px; display: flex; align-items: center; gap: 9px; animation: panelIn 0.4s var(--ease-out); }
.ql-tags li::before { content: "✓"; width: 18px; height: 18px; flex: none; display: grid; place-content: center; border-radius: 50%; font-size: 10px; background: rgba(52,245,197,0.15); color: var(--mint); }
.ql-progress-head { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.ql-progress-head b { color: var(--text); }
.ql-bar { height: 7px; border-radius: 5px; background: rgba(255,255,255,0.08); overflow: hidden; }
.ql-bar span { display: block; height: 100%; border-radius: 5px; background: var(--grad); transition: width 0.6s var(--ease-out); box-shadow: 0 0 12px rgba(52,245,197,0.5); }

/* ---------------- Funding ---------------- */
.funding-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.funding-copy p { color: var(--muted); margin-bottom: 18px; font-size: 16.5px; }
.funding-copy .btn { margin-top: 8px; }
.funding-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.funding-card {
  padding: 26px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--stroke);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.funding-card:nth-child(even) { translate: 0 22px; }
.funding-card:hover { transform: translateY(-6px); border-color: rgba(139,123,255,0.4); box-shadow: 0 20px 44px rgba(139,123,255,0.13); }
.fc-icon { font-size: 26px; margin-bottom: 14px; }
.funding-card h4 { font-size: 17px; margin-bottom: 8px; }
.funding-card p { font-size: 13.5px; color: var(--muted); }

/* ---------------- Why ---------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--stroke); overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.why-item:hover { transform: translateY(-5px); border-color: rgba(52,245,197,0.3); }
.why-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 700; line-height: 1;
  background: linear-gradient(160deg, rgba(52,245,197,0.35), rgba(139,123,255,0.3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px; transition: 0.35s;
}
.why-item:hover .why-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.why-item h4 { font-size: 18px; margin-bottom: 9px; }
.why-item p { font-size: 14px; color: var(--muted); }

/* ---------------- Testimonials ---------------- */
.testi-wrap { max-width: 780px; margin-inline: auto; text-align: center; }
.testi-viewport { position: relative; min-height: 240px; }
.testi { position: absolute; inset: 0; opacity: 0; transform: translateY(22px) scale(0.98); transition: 0.65s var(--ease-out); pointer-events: none; display: grid; align-content: center; gap: 16px; }
.testi.active { opacity: 1; transform: none; pointer-events: auto; }
.stars { color: var(--mint); letter-spacing: 5px; font-size: 17px; }
.testi blockquote { font-family: var(--font-display); font-size: clamp(19px, 2.5vw, 27px); font-weight: 500; line-height: 1.45; }
.testi figcaption { font-size: 14px; color: var(--muted); }
.testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(255,255,255,0.18); transition: 0.35s; padding: 0; }
.testi-dots button.active { width: 30px; background: var(--grad); }

/* ---------------- FAQ ---------------- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-head p { color: var(--muted); }
.faq-head a { color: var(--mint); border-bottom: 1px solid rgba(52,245,197,0.4); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--stroke); border-radius: 15px; background: var(--surface); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq-item[open] { border-color: rgba(52,245,197,0.32); background: var(--surface-2); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 19px 22px;
  font-weight: 600; font-size: 15.5px; font-family: var(--font-display);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 20px; height: 20px; flex: none; }
.faq-x::before, .faq-x::after { content: ""; position: absolute; top: 50%; left: 50%; translate: -50% -50%; background: var(--mint); border-radius: 2px; transition: 0.35s var(--ease-out); }
.faq-x::before { width: 14px; height: 2px; }
.faq-x::after { width: 2px; height: 14px; }
.faq-item[open] .faq-x::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-x::before { transform: rotate(180deg); }
.faq-body { padding: 0 22px; overflow: hidden; }
.faq-body p { color: var(--muted); font-size: 14.5px; padding-bottom: 20px; }

/* ---------------- CTA band ---------------- */
.cta-band { padding: 40px 0 110px; }
.cta-inner {
  position: relative; text-align: center; padding: 78px 40px; border-radius: 30px; overflow: hidden;
  background: linear-gradient(160deg, rgba(52,245,197,0.09), rgba(139,123,255,0.11));
  border: 1px solid rgba(52,245,197,0.22);
}
.cta-glow { position: absolute; inset: -40%; background: radial-gradient(circle at 50% 120%, rgba(52,245,197,0.22), transparent 55%); animation: ctaPulse 5s ease-in-out infinite alternate; pointer-events: none; }
@keyframes ctaPulse { to { opacity: 0.55; transform: scale(1.06); } }
.cta-inner p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; font-size: 16.5px; }
.eyebrow.light { justify-content: center; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-copy > p { color: var(--muted); font-size: 16.5px; margin-bottom: 30px; }
.contact-channels { display: grid; gap: 12px; }
.channel {
  display: flex; align-items: center; gap: 16px; padding: 17px 20px;
  border-radius: 15px; background: var(--surface); border: 1px solid var(--stroke);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.channel:not(.static):hover { transform: translateX(6px); border-color: rgba(52,245,197,0.35); }
.channel-icon { width: 44px; height: 44px; flex: none; display: grid; place-content: center; border-radius: 12px; background: rgba(52,245,197,0.09); border: 1px solid rgba(52,245,197,0.22); color: var(--mint); }
.channel small { display: block; font-size: 12px; color: var(--muted); }
.channel b { font-size: 14.5px; font-weight: 600; }

.contact-form {
  position: relative; padding: 34px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--stroke); backdrop-filter: blur(10px);
  display: grid; gap: 18px; overflow: hidden;
}
.form-topic label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 11px; }
.topic-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; background: rgba(255,255,255,0.04); border: 1px solid var(--stroke); color: var(--muted); transition: 0.3s; }
.pill:hover { border-color: var(--stroke-strong); color: var(--text); }
.pill.active { background: rgba(52,245,197,0.1); border-color: rgba(52,245,197,0.5); color: var(--mint); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 17px 16px 8px; border-radius: 13px;
  background: rgba(5, 9, 18, 0.6); border: 1px solid var(--stroke);
  color: var(--text); font-family: inherit; font-size: 15px;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s; resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: rgba(52,245,197,0.55); box-shadow: 0 0 0 3px rgba(52,245,197,0.12); }
.field label {
  position: absolute; left: 16px; top: 13px; font-size: 15px; color: var(--muted);
  pointer-events: none; transition: 0.25s var(--ease-out); transform-origin: left;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-9px) scale(0.74); color: var(--mint);
}
.field input.error, .field textarea.error { border-color: rgba(255, 107, 107, 0.7); animation: shake 0.4s; }
@keyframes shake { 25% { translate: -5px 0; } 50% { translate: 5px 0; } 75% { translate: -3px 0; } }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; }

.form-success {
  position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; justify-items: center; gap: 10px;
  background: rgba(7, 11, 22, 0.96); text-align: center; padding: 30px;
  opacity: 0; visibility: hidden; transition: 0.5s;
}
.form-success.show { opacity: 1; visibility: visible; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); font-size: 14.5px; max-width: 320px; }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--stroke); background: rgba(5, 8, 16, 0.6); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding: 64px 0 44px; }
.footer-brand p { color: var(--muted); font-size: 13.5px; margin-top: 16px; max-width: 300px; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h5 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.25s, translate 0.25s; width: fit-content; }
.footer-col a:hover { color: var(--mint); translate: 3px 0; }
.footer-tag { font-size: 12.5px; color: var(--muted); }
.footer-base { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 12.5px; color: var(--muted); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding-top: 120px; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 18px 44px; }
  .tag-rate { left: 0; }
  .tag-setup { right: 0; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .quote-shell { grid-template-columns: 1fr; }
  .quote-side { position: static; }
  .funding-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-head { position: static; }
  .panel-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .btn { display: none; }
  .section { padding: 78px 0; }
  .services-grid, .why-grid, .funding-cards, .form-row { grid-template-columns: 1fr; }
  .funding-card:nth-child(even) { translate: 0 0; }
  .hero-stats { gap: 16px 30px; }
  .stat-num { font-size: 25px; }
  .terminal-tabs { padding: 18px; }
  .tab-buttons { width: 100%; display: flex; }
  .tab-btn { flex: 1; justify-content: center; padding: 11px 8px; font-size: 13px; }
  .quote-main { padding: 22px 18px; }
  .qs span { display: none; }
  .qs.active span { display: inline; }
  .cta-inner { padding: 56px 22px; }
  .contact-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .float-tag { display: none; }
  .tag-tx { display: flex; }
}
