/* ============================================
   AGENTLY LANDING PAGE STYLES
   Premium, FAANG-quality design system
   ============================================ */

:root {
  /* Brand Colors */
  --primary: #FFCC00;
  --primary-dark: #E6B800;
  --primary-light: #FFE066;
  --secondary: #1A237E;
  --secondary-light: #3949AB;
  --accent: #6C63FF;

  /* Neutrals */
  --bg: #FAFBFF;
  --surface: #FFFFFF;
  --surface-alt: #F1F3F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Status */
  --success: #00C853;
  --mtn: #FFC107;
  --telecel: #E60000;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.12);
  --shadow-primary: 0 8px 32px rgba(255, 204, 0, 0.25);

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE RESET
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--secondary) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: all 0.2s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--secondary-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}

.mobile-menu.open {
  display: flex;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 35, 126, 0.35);
}

.btn-ghost {
  background: rgba(26, 35, 126, 0.06);
  color: var(--secondary);
}

.btn-ghost:hover {
  background: rgba(26, 35, 126, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: rgba(255, 204, 0, 0.12);
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: rgba(26, 35, 126, 0.06);
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.25);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  perspective: 1200px;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #0F0F1A;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 32px 80px rgba(15, 23, 42, 0.35),
    0 0 120px rgba(255, 204, 0, 0.08);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s var(--ease);
  animation: float 6s ease-in-out infinite;
}

.phone-frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

@keyframes float {

  0%,
  100% {
    transform: rotateY(-8deg) rotateX(4deg) translateY(0px);
  }

  50% {
    transform: rotateY(-8deg) rotateX(4deg) translateY(-12px);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F5F7FA;
  border-radius: 26px;
  overflow: hidden;
}

.hero-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Mock App UI */
.mock-app {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}

.mock-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.mock-chips {
  display: flex;
  gap: 6px;
}

.mock-chip {
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  background: white;
  color: var(--text-secondary);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.mock-chip.active {
  background: var(--secondary);
  color: var(--primary);
}

.mock-card {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.mock-input-row {
  display: flex;
  gap: 8px;
}

.mock-input {
  padding: 10px 8px;
  border-radius: 8px;
  background: #F8FAFC;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  border: 1px solid var(--border-light);
}

.mock-input.large {
  flex: 2;
}

.mock-input.small {
  flex: 1;
}

.mock-tabs {
  display: flex;
  gap: 4px;
  background: #E8EAF0;
  border-radius: 10px;
  padding: 3px;
}

.mock-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.mock-tab.active.mtn {
  background: var(--mtn);
  color: var(--secondary);
}

.mock-tab.active.telecel {
  background: var(--telecel);
  color: white;
}

.mock-buttons {
  display: flex;
  gap: 8px;
}

.mock-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  background: white;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid;
}

.mock-btn.cash-in {
  border-color: var(--success);
}

.mock-btn.cash-out {
  border-color: var(--telecel);
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.trust-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mtn-dot {
  background: var(--mtn);
}

.telecel-dot {
  background: var(--telecel);
}

.firebase-dot {
  background: #FFCA28;
}

.paystack-dot {
  background: #00C3F7;
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(26, 35, 126, 0.06);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: var(--section-padding) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-highlight {
  background: linear-gradient(135deg, var(--secondary), #283593);
  color: white;
  border: none;
}

.feature-highlight p {
  color: rgba(255, 255, 255, 0.88);
}

.feature-highlight .feature-icon {
  background: rgba(255, 204, 0, 0.2);
}

.feature-highlight .feature-icon svg {
  stroke: var(--primary);
}

.feature-highlight h3 {
  color: #fff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  stroke: var(--secondary);
}

.icon-shield svg {
  stroke: var(--success);
}

.feature-highlight .icon-ussd svg {
  stroke: var(--primary);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: var(--section-padding) 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  position: relative;
  text-align: center;
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--primary), rgba(255, 204, 0, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-line {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.step-card:last-child .step-line {
  display: none;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  padding: var(--section-padding) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card-featured {
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-md);
}

.price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 24px 0;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-number {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text-primary);
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-savings {
  background: rgba(0, 200, 83, 0.08);
  color: var(--success);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.price-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.price-features svg {
  stroke: var(--success);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   CAROUSEL SYSTEM (shared)
   ============================================ */

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  overflow: visible;
  flex: 1;
  border-radius: 20px;
}

@media (min-width: 769px) {
  .carousel-viewport {
    overflow: hidden;
  }
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.carousel-btn:hover svg {
  stroke: white;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.carousel-dot.active {
  background: var(--secondary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   APP SCREENSHOTS CAROUSEL
   ============================================ */

.screenshots {
  padding: var(--section-padding) 0;
  background: white;
}

.screenshot-slide {
  min-width: 33.333%;
  padding: 0 12px;
  text-align: center;
}

.screenshot-phone {
  background: #0F0F1A;
  border-radius: 28px;
  padding: 8px;
  display: inline-block;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease);
}

.screenshot-phone:hover {
  transform: translateY(-6px);
}

.screenshot-img {
  width: 220px;
  height: auto;
  border-radius: 22px;
  display: block;
}

.screenshot-caption {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials {
  padding: var(--section-padding) 0;
}

.testimonial-slide {
  min-width: 50%;
  padding: 0 12px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq {
  padding: var(--section-padding) 0;
  background: white;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  stroke: var(--text-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   SECURITY
   ============================================ */

.security {
  padding: var(--section-padding) 0;
  background: white;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.security-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
}

.security-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.security-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.security-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.security-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--secondary), #283593);
  border-radius: 32px;
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 204, 0, 0.15);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(80px);
  z-index: 0;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta .btn {
  position: relative;
  z-index: 1;
  background: var(--primary);
  color: var(--secondary);
}

.cta .btn:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-primary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 32px;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-name {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s var(--ease);
}

.social-link:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.social-link svg {
  fill: currentColor;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-built-with {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-line {
    display: none !important;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-slide {
    min-width: 50%;
  }

  .testimonial-slide {
    min-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .section-container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .section-title {
    font-size: clamp(26px, 6vw, 36px);
    letter-spacing: -1px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .price-card {
    padding: 28px;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Carousel — mobile-friendly */
  .screenshot-slide {
    min-width: 80%;
    padding: 0 8px;
  }

  .screenshot-img {
    width: 100%;
    max-width: 220px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-wrapper {
    gap: 0;
  }

  .carousel-viewport {
    border-radius: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .carousel-track {
    /* Disable JS transform on mobile — native scroll handles it */
    transform: none !important;
  }

  .screenshot-slide,
  .testimonial-slide {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .testimonial-slide {
    min-width: 0;
    width: 90%;
    max-width: 90%;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .trust-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust-logos {
    justify-content: center;
  }

  .cta-container {
    padding: 56px 24px;
    border-radius: 24px;
    margin: 0 20px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 15px;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-menu {
    top: 56px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .section-container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 0 48px;
  }

  .hero-container {
    padding: 0 16px;
    gap: 32px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-divider {
    width: 1px;
    height: 32px;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }

  .screenshot-slide {
    min-width: 85%;
    padding: 0 6px;
  }

  .screenshot-img {
    width: 100%;
    max-width: 200px;
  }

  .screenshot-caption {
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .section-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .step-number {
    font-size: 52px;
    margin-bottom: 16px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }

  .price-card {
    padding: 24px;
  }

  .price-number {
    font-size: 40px;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .faq-list {
    margin: 0;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-quote {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .testimonial-author strong {
    font-size: 13px;
  }

  .security-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .security-item {
    padding: 20px 14px;
  }

  .security-item h4 {
    font-size: 14px;
  }

  .security-item p {
    font-size: 12px;
  }

  .cta-container {
    padding: 40px 20px;
    border-radius: 20px;
    margin: 0 16px;
  }

  .cta h2 {
    font-size: 22px;
  }

  .cta p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta .btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  .mobile-menu {
    padding: 16px;
  }

  .mobile-menu a {
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-menu .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block;
    border-bottom: none;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.features-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.features-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.features-grid .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.features-grid .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

.steps-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.steps-grid .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.security-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.security-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.security-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}