/* ===== KOLAY ACENTELIK — PREMIUM DESIGN SYSTEM ===== */
:root {
  --dark: #faf7f5;
  --dark-2: #f3eeea;
  --dark-3: #ebe5df;
  --dark-4: #d6cdc4;
  --surface: #f7f2ee;
  --accent: #e8453c;
  --accent-2: #f97316;
  --accent-3: #fb923c;
  --neon: #e8453c;
  --neon-2: #f97316;
  --warm: #f59e0b;
  --coral: #ef4444;
  --text: #1a1a1a;
  --text-2: #5a524a;
  --text-3: #9a8e82;
  --glass: rgba(0,0,0,0.02);
  --glass-border: rgba(0,0,0,0.08);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ebe6; }
::-webkit-scrollbar-thumb { background: #d6cdc4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.1s ease;
  opacity: 0.5;
}
.cursor-ring.hovering {
  width: 64px; height: 64px;
  border-color: var(--accent-2);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ===== GRAIN OVERLAY ===== */
.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ===== NAVBAR ===== */
.nav-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-main.scrolled {
  padding: 0.75rem 0;
  background: rgba(250,247,245,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-noise {
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--neon);
  bottom: -100px; left: -100px;
  animation-delay: -7s;
  opacity: 0.15;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: var(--coral);
  top: 40%; left: 50%;
  animation-delay: -14s;
  opacity: 0.12;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left { max-width: 600px; position: relative; z-index: 2; }

/* Hero title */
.hero-title {
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
}
.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-word {
  display: inline-block;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(232,69,60,0.06);
  border: 1px solid rgba(232,69,60,0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.3s;
}
.hero-badge:hover { border-color: var(--accent); }
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 0 3px rgba(232,69,60,0.15);
}
.hero-badge-arrow {
  display: flex;
  color: var(--accent);
  opacity: 0.6;
  transition: all 0.3s;
}
.hero-badge:hover .hero-badge-arrow { opacity: 1; transform: translate(2px, -2px); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(232,69,60,0.15); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232,69,60,0.05); }
}

/* Hero description */
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero CTA */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #e8453c, #f97316);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,69,60,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-btn-primary:hover {
  box-shadow: 0 8px 32px rgba(232,69,60,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero-btn-primary:hover::before { opacity: 1; }
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 14px;
  border: 1.5px solid var(--glass-border);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hero-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,69,60,0.04);
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust-avatars {
  display: flex;
  align-items: center;
}
.hero-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  position: relative;
}
.hero-trust-text {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
}
.hero-trust-number {
  font-weight: 800;
  color: var(--text);
}
.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--glass-border);
}
.hero-trust-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

/* ===== HERO DASHBOARD MOCKUP ===== */
.hero-right { position: relative; z-index: 2; }
.hero-dashboard {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.02),
    0 20px 60px rgba(0,0,0,0.06),
    0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hero-dashboard:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

/* Dashboard top bar */
.hd-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #fafafa;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hd-dots {
  display: flex;
  gap: 0.375rem;
}
.hd-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hd-url {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-size: 0.65rem;
  color: #888;
  font-weight: 500;
}
.hd-url svg { color: #22c55e; }

/* Dashboard body */
.hd-body { padding: 1rem; }

/* Metrics */
.hd-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.hd-metric-card {
  padding: 0.75rem;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
}
.hd-metric-label {
  font-size: 0.6rem;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.hd-metric-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.hd-metric-change {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}
.hd-metric-change.up {
  color: #16a34a;
  background: rgba(22,163,74,0.08);
}
.hd-metric-change.down {
  color: #dc2626;
  background: rgba(220,38,38,0.08);
}

/* Chart */
.hd-chart-area {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.hd-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.hd-chart-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a1a1a;
}
.hd-chart-tabs {
  display: flex;
  gap: 0.25rem;
}
.hd-chart-tabs span {
  font-size: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  color: #999;
  cursor: default;
}
.hd-chart-tabs span.active {
  background: var(--accent);
  color: #fff;
}
.hd-chart {
  height: 80px;
  position: relative;
}
.hd-chart-svg {
  width: 100%;
  height: 100%;
}
.hd-chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: chartDraw 2s ease-out forwards;
  animation-delay: 0.5s;
}
.hd-chart-dot {
  opacity: 0;
  animation: chartDotPop 0.3s ease-out forwards;
  animation-delay: 2.3s;
}
@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes chartDotPop {
  0% { opacity: 0; r: 0; }
  100% { opacity: 1; r: 4; }
}

/* Bottom row */
.hd-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.hd-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.hd-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.hd-company-chip {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #555;
}
.hd-company-icon {
  width: 18px; height: 18px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
}
.hd-activity-items {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.hd-activity-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6rem;
  color: #666;
  font-weight: 500;
}
.hd-activity-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hd-activity-time {
  margin-left: auto;
  font-size: 0.55rem;
  color: #bbb;
  font-weight: 600;
}

/* Floating badge */
.hd-float-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  z-index: 3;
}
/* ===== MAGNETIC BUTTON ===== */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
  cursor: none;
}
.btn-primary-glow {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(232,69,60,0.25);
}
.btn-primary-glow:hover {
  box-shadow: 0 6px 32px rgba(232,69,60,0.35);
  transform: translateY(-2px);
}
.btn-outline-glow {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--glass-border);
}
.btn-outline-glow:hover {
  border-color: var(--accent);
  background: rgba(232,69,60,0.06);
}

/* ===== SECTION STYLES ===== */
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark-2); }
.section-surface { background: var(--surface); }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.section-sub { color: var(--text-2); max-width: 540px; line-height: 1.7; }

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bento-grid { grid-template-columns: 1fr; } }
.bento-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  transform-style: preserve-3d;
}
.bento-card:hover {
  border-color: rgba(232,69,60,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(232,69,60,0.05), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover::after { opacity: 1; }
.bento-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.bento-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.bento-span-2 { grid-column: span 2; }
@media (max-width: 640px) { .bento-span-2 { grid-column: span 1; } }

/* ===== STATS ===== */
.stat-strip {
  display: flex;
  justify-content: center;
  gap: 1px;
  background: var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--dark-2);
  text-align: center;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--dark-3); }
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== WHY US — SPLIT LAYOUT ===== */
.reason-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.reason-card:hover {
  background: var(--glass);
  border-color: var(--glass-border);
}
.reason-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(232,69,60,0.08);
  border: 1px solid rgba(232,69,60,0.12);
  color: var(--accent);
  transition: all 0.3s;
}
.reason-card:hover .reason-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ===== MARQUEE (Partners) ===== */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.partner-logo {
  flex-shrink: 0;
  width: 160px; height: 80px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.partner-logo:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(232,69,60,0.1);
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3), var(--surface));
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent, var(--accent-2), transparent);
  animation: cta-rotate 10s linear infinite;
  opacity: 0.05;
}
@keyframes cta-rotate { 100% { transform: rotate(360deg); } }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(232,69,60,0.2); }
.faq-btn {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: none;
  transition: background 0.3s;
}
.faq-btn:hover { background: var(--glass); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
}
.faq-answer.open { max-height: 500px; }
.faq-icon {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* Text split reveal */
.split-word {
  display: inline-block;
  overflow: hidden;
}
.split-word > span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.split-word.revealed > span { transform: translateY(0); }

/* ===== GRADIENT BORDER CARD ===== */
.gradient-border {
  position: relative;
  background: var(--dark-2);
  border-radius: var(--radius);
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.gradient-border:hover::before { opacity: 1; }

/* ===== FORM STYLES ===== */
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  transition: all 0.3s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,69,60,0.1);
}
.form-input::placeholder { color: var(--text-3); }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Branch tag */
.branch-tag {
  cursor: pointer;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-2);
  transition: all 0.3s;
}
.branch-tag:hover { border-color: var(--accent); color: var(--text); }
.branch-tag.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent), transparent);
  filter: blur(120px);
  opacity: 0.15;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  position: relative;
}
.page-hero p {
  color: var(--text-2);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250,247,245,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== PREMIUM FORM ===== */
.premium-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,69,60,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select option {
  background: #fff;
  color: var(--text);
}

/* ===== MISC ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.animate-fadeIn { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
