/* ==========================================================================
   AUTHENSCORE (Design Tokens)
   ========================================================================== */
:root {
  --navy: #081A3A;
  --void: #050816;
  --blue: #1565FF;
  --lime: #8BCF00;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;

  --bg: var(--void);
  --bg-elevated: #0B1530;
  --surface: rgba(255,255,255,0.045);
  --surface-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.09);
  --text: #F5F7FA;
  --text-dim: #9AA6C4;
  --text-faint: #6B7699;

  --grad-primary: linear-gradient(135deg, var(--blue), #3D8BFF);
  --grad-accent: linear-gradient(135deg, var(--lime), #B6E84B);
  --grad-hero: linear-gradient(135deg, var(--blue) 0%, #6E3BFF 100%);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,0.5);
  --shadow-glow-blue: 0 0 60px -10px rgba(21,101,255,0.45);
  --shadow-glow-lime: 0 0 50px -10px rgba(139,207,0,0.4);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

[data-theme="light"] {
  --bg: var(--gray-light);
  --bg-elevated: #FFFFFF;
  --surface: rgba(8,26,58,0.035);
  --surface-strong: rgba(8,26,58,0.06);
  --border: rgba(8,26,58,0.09);
  --text: #0B1530;
  --text-dim: #4A5578;
  --text-faint: #7A85A5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-desc { margin-top: 18px; font-size: 17px; color: var(--text-dim); line-height: 1.7; max-width: 560px; }
.accent-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn i { font-size: 13px; transition: transform 0.3s var(--ease); }
.btn:hover i { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(21,101,255,0.55);
}
.btn-primary:hover { box-shadow: 0 16px 40px -8px rgba(21,101,255,0.7); transform: translateY(-2px); }

.btn-accent {
  background: var(--grad-accent);
  color: #061404;
  box-shadow: 0 10px 30px -8px rgba(139,207,0,0.55);
}
.btn-accent:hover { box-shadow: 0 16px 40px -8px rgba(139,207,0,0.7); transform: translateY(-2px); }

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

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-nav { padding: 11px 22px; font-size: 14px; }

/* ==========================================================================
   Scroll progress + cursor glow
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-accent);
  z-index: 2000;
  transition: width 0.1s linear;
}

.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,255,0.12), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow { display: block; } }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), height 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5,8,22,0.75);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  height: 68px;
}
[data-theme="light"] .navbar.scrolled { background: rgba(245,247,250,0.8); }

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.logo-accent { color: var(--lime); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-accent);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  font-size: 14px;
}
.theme-toggle .sun-icon, .theme-toggle .moon-icon {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toggle .sun-icon { color: #FFD166; opacity: 0; transform: scale(0.5) rotate(-90deg); }
.theme-toggle .moon-icon { color: var(--blue); opacity: 1; transform: scale(1) rotate(0); }
[data-theme="light"] .theme-toggle .sun-icon { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="light"] .theme-toggle .moon-icon { opacity: 0; transform: scale(0.5) rotate(90deg); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 82vw);
  height: 100vh;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 1500;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 22px; }
.mobile-link { font-family: var(--font-display); font-size: 19px; font-weight: 600; }

@media (max-width: 980px) {
  .nav-menu { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
#particleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.glow-1 { width: 520px; height: 520px; background: var(--blue); top: -120px; left: -100px; }
.glow-2 { width: 420px; height: 420px; background: var(--lime); bottom: -140px; right: -80px; opacity: 0.25; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.title-line { display: block; }
.title-line.accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 38px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
}
.hero-checklist i { color: var(--lime); font-size: 11px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero visual */
.hero-visual { position: relative; height: 520px; }

.card-device {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
.device-frame {
  background: linear-gradient(160deg, #0E1A3C, #060B1E);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.device-notch { width: 60px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.15); margin: 0 auto 14px; }
.device-screen {
  background: linear-gradient(180deg, rgba(21,101,255,0.08), rgba(139,207,0,0.04));
  border-radius: 20px;
  padding: 20px 18px 24px;
  min-height: 340px;
}
.screen-row { display: flex; gap: 6px; margin-bottom: 18px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-red { background: #FF5F57; } .dot-amber { background: #FEBC2E; } .dot-green { background: #28C840; }

.screen-shield { display: flex; justify-content: center; margin: 6px 0 14px; }
.shield-svg { width: 130px; height: 130px; overflow: visible; }
.ring { fill: none; stroke: rgba(21,101,255,0.35); stroke-width: 1; }
.ring-2 { stroke: rgba(139,207,0,0.3); stroke-dasharray: 4 6; animation: spin 18s linear infinite; transform-origin: 60px 60px; }
.ring-1 { animation: spin 26s linear infinite reverse; transform-origin: 60px 60px; }
@keyframes spin { to { transform: rotate(360deg); } }
.shield-path { fill: rgba(21,101,255,0.14); stroke: url(#logoGrad); stroke: var(--blue); stroke-width: 2; }
.shield-check { fill: none; stroke: var(--lime); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw-check 2.2s var(--ease) infinite; }
@keyframes draw-check { 0%, 20% { stroke-dashoffset: 40; } 45%, 100% { stroke-dashoffset: 0; } }
.scan-dot { fill: var(--lime); filter: drop-shadow(0 0 6px var(--lime)); animation: scan-orbit 4s linear infinite; transform-origin: 60px 60px; }
@keyframes scan-orbit { to { transform: rotate(360deg); } }

.screen-status { display: flex; justify-content: center; margin-bottom: 16px; }
.status-pill {
  font-size: 11.5px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-full);
  background: rgba(139,207,0,0.14);
  color: var(--lime);
  border: 1px solid rgba(139,207,0,0.3);
}
.screen-bars { display: flex; flex-direction: column; gap: 8px; }
.bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; position: relative; }
.bar::after {
  content: ''; position: absolute; inset: 0; width: var(--w);
  background: var(--grad-primary); border-radius: 4px;
  animation: fillBar 1.6s var(--ease) both;
}
@keyframes fillBar { from { width: 0; } to { width: var(--w); } }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: rgba(11,21,48,0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  animation: floaty 5s ease-in-out infinite;
}
[data-theme="light"] .floating-card { background: rgba(255,255,255,0.85); }
.floating-card i { font-size: 18px; color: var(--blue); }
.floating-card strong { display: block; font-size: 13px; font-family: var(--font-display); }
.floating-card span { font-size: 11.5px; color: var(--text-faint); }

.card-verified { top: 8%; left: -4%; animation-delay: 0s; }
.card-2fa { top: 42%; right: -8%; animation-delay: 1.2s; }
.card-2fa i { color: var(--lime); }
.card-confidential { bottom: 6%; left: 2%; animation-delay: 2.4s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-checklist, .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 40px; }
}
@media (max-width: 560px) {
  .hero-visual { height: 420px; }
  .floating-card { display: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-dim);
  animation: bob 2.2s ease-in-out infinite;
  z-index: 3;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,6px);} }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  position: relative;
  z-index: 3;
  margin: -46px auto 0;
  max-width: 1080px;
  padding: 0 24px;
}
.trust-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 20px;
}
.trust-item { text-align: center; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust-label { font-size: 13px; color: var(--text-dim); margin-top: 6px; display: block; }
@media (max-width: 700px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21,101,255,0.4);
  background: var(--surface-strong);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  color: #fff;
  font-size: 19px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(21,101,255,0.5);
}
.service-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-track { position: relative; padding-left: 8px; }
.track-line {
  position: absolute;
  left: 27px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}
.track-fill {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0%;
  background: var(--grad-accent);
  transition: height 0.2s linear;
}
.process-step {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 0 0 48px 0;
}
.process-step:last-child { padding-bottom: 0; }
.step-node {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dim);
  transition: border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}
.process-step.is-active .step-node {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 0 6px rgba(139,207,0,0.12);
}
.step-body { padding-top: 10px; }
.step-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.step-body p { color: var(--text-dim); font-size: 15px; max-width: 480px; }

/* ==========================================================================
   Why Us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-4px); background: var(--surface-strong); }
.why-card i { font-size: 22px; color: var(--lime); margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--text-dim); }

.flow-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  flex: 1;
  min-width: 90px;
}
.flow-step i {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 16px;
}
.flow-step.flow-final i { background: var(--grad-accent); color: #061404; border-color: transparent; }
.flow-arrow { color: var(--text-faint); font-size: 13px; }
@media (max-width: 760px) {
  .flow-panel { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
}

/* ==========================================================================
   Stats (secondary)
   ========================================================================== */
.stats { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-block { display: flex; flex-direction: column; gap: 8px; }
.stat-number {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--text-dim); font-size: 14px; }
@media (max-width: 700px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider { max-width: 720px; margin: 0 auto; }
.testimonial-track { position: relative; min-height: 240px; }
.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.testimonial-card.active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.stars { color: #FFC94A; font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card p { font-size: 17px; line-height: 1.75; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.testimonial-author strong { display: block; font-size: 14.5px; }
.testimonial-author span { font-size: 13px; color: var(--text-faint); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.slider-btn:hover { background: var(--surface-strong); transform: scale(1.06); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.3s ease, transform 0.3s ease; }
.slider-dot.active { background: var(--lime); transform: scale(1.3); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-inner { max-width: 780px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  text-align: left;
}
.accordion-trigger i { color: var(--lime); transition: transform 0.35s var(--ease); font-size: 14px; }
.accordion-trigger[aria-expanded="true"] i { transform: rotate(135deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel p { padding: 0 4px 24px; color: var(--text-dim); font-size: 15px; line-height: 1.7; max-width: 620px; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--grad-hero);
  text-align: center;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139,207,0,0.35), transparent 60%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: #fff;
  margin-bottom: 14px;
}
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 60px;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }

.contact-form { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 14.5px;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue);
  background: var(--surface-strong);
}
.form-note { font-size: 13.5px; color: var(--lime); min-height: 18px; }

.contact-side { display: flex; flex-direction: column; gap: 16px; padding-top: 78px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-card i {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary); color: #fff; font-size: 16px;
}
.contact-card strong { display: block; font-size: 14px; margin-bottom: 3px; }
.contact-card a, .contact-card span { font-size: 14px; color: var(--text-dim); }
.contact-note {
  display: flex; gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(139,207,0,0.08);
  border: 1px solid rgba(139,207,0,0.25);
}
.contact-note i { color: var(--lime); margin-top: 2px; }
.contact-note p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 34px; } }
.footer-brand p { color: var(--text-dim); font-size: 14px; margin: 14px 0 20px; max-width: 320px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 13px;
}
.footer-social a:hover { background: var(--surface-strong); transform: translateY(-2px); }
.footer-links h4 { font-family: var(--font-display); font-size: 14px; margin-bottom: 18px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 12px; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
}

/* ==========================================================================
   Floating elements
   ========================================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6);
  z-index: 900;
  transition: transform 0.3s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
[data-reveal], [data-reveal-delay] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal-delay] { transition-delay: 0.15s; }
[data-reveal].in-view, [data-reveal-delay].in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-card, .why-card { will-change: transform; }
