/* ============================================
   LEADING CLICK - Premium Marketing Platform
   Design System & Complete Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --primary: #193497;
  --primary-dark: #0f2266;
  --accent: #EDA398;
  --accent-light: #f5c9c2;
  --gold: #C39945;
  --gold-hover: #d4aa56;
  --gold-dark: #a8822e;
  --bg: #FCFBF9;
  --bg-dark: #0f172a;
  --bg-darker: #0a1022;
  --bg-light: #E5E9FA;
  --text: #282828;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;
  --text-on-dark: #e2e8f0;
  --white: #ffffff;
  --border: #e2e2e2;
  --border-light: #f0f0f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Inter Tight', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --secondary: #0f172a;
  --container: 1200px;
  --container-narrow: 900px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

h1 em, h2 em, h3 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

p {
  margin-bottom: 1rem;
}

.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--light {
  background: var(--bg-light);
}

.section--bg {
  background: var(--bg);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--column { flex-direction: column; }
.flex--gap { gap: 16px; }
.flex--gap-lg { gap: 32px; }

.text-center { text-align: center; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(195, 153, 69, 0.35);
}

.btn--primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(195, 153, 69, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn--outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Focus-visible styles for accessibility */
.btn:focus-visible,
.nav__link:focus-visible,
.faq-question:focus-visible,
.faq__question:focus-visible,
.plan-option:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.header--scrolled .header__logo {
  color: var(--primary);
}

.header--scrolled .nav__link {
  color: var(--text);
}

.header--scrolled .nav__link:hover {
  color: var(--gold);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  transition: color var(--transition);
}

.header__logo span {
  color: var(--gold);
}

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

.nav__link {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.nav__link:hover {
  color: var(--white);
}

.nav__cta {
  margin-left: 8px;
}

/* Dark header variant for pages with light heroes */
.header--dark .header__logo { color: var(--primary); }
.header--dark .nav__link { color: var(--text); }
.header--dark .nav__link:hover { color: var(--gold); }

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header--scrolled .mobile-toggle span {
  background: var(--text);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--short {
  min-height: 60vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 52, 151, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__content--center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Animated Stat Counters
   ============================================ */
.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  margin-bottom: 40px;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Large stats (dark sections) */
.stats-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  margin-top: 60px;
}

.stats-large__item .stat-item__number {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.stats-large__item .stat-item__label {
  font-size: 1rem;
  color: var(--text-on-dark);
}

/* ============================================
   Wave Dividers
   ============================================ */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider--top {
  top: -1px;
}

.wave-divider--bottom {
  bottom: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--bg-light);
  color: var(--primary);
}

.card__icon--gold {
  background: rgba(195, 153, 69, 0.1);
  color: var(--gold);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Illustrated Technology Cards */
.card--illustrated {
  padding: 0;
  overflow: hidden;
}

.card__illustration {
  width: 100%;
  border-bottom: 1px solid var(--border-light);
}

.card__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.card--illustrated .card__icon,
.card--illustrated h3,
.card--illustrated p {
  margin-left: 32px;
  margin-right: 32px;
}

.card--illustrated .card__icon {
  margin-top: 28px;
}

.card--illustrated p {
  padding-bottom: 32px;
}

/* Service Cards with Side-by-Side Layout */
.card--service {
  padding: 0;
  overflow: hidden;
}

.card__service-inner {
  display: flex;
  align-items: stretch;
}

.card__service-visual {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
}

.card__service-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.card__service-text {
  flex: 1;
  padding: 32px;
}

.card__checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.card__checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.card__checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .card__service-inner {
    flex-direction: column;
  }
  .card__service-visual {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header__label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section--dark .section-header__label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.section--dark .section-header p {
  color: var(--text-on-dark);
}

/* ============================================
   Two-Column Layout
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse > *:first-child {
  order: 2;
}

.split--reverse > *:last-child {
  order: 1;
}

.split__visual {
  position: relative;
}

.split__gradient-card {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, #2a4fd4 50%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.split__gradient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(195,153,69,0.2) 0%, transparent 40%);
}

.split__gradient-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.split__content h2 {
  margin-bottom: 20px;
}

.split__content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ============================================
   Steps / Process
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.step__number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 40px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
  opacity: 0.2;
}

.step:last-child .step__number::after {
  display: none;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.pricing-toggle__label.active {
  color: var(--text);
}

.pricing-toggle__switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}

.pricing-toggle__switch.active {
  background: var(--gold);
}

.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.pricing-toggle__switch.active::after {
  transform: translateX(24px);
}

.pricing-save {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(195, 153, 69, 0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  margin-left: 4px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 2px solid var(--border-light);
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(195, 153, 69, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__billed {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card__features {
  margin-bottom: 32px;
}

.pricing-card__features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card__features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__features li.highlight {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #193497 50%, #0f172a 100%);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(195, 153, 69, 0.08), transparent 70%);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-darker);
  color: rgba(255, 255, 255, 0.5);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand span {
  color: var(--gold);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.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: 0.8rem;
}

/* ============================================
   Preview Nav (bottom bar)
   ============================================ */
.preview-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 9999;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-nav__link {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.preview-nav__link:hover,
.preview-nav__link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.preview-nav__label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 8px;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 52, 151, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.checkout__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.checkout__sidebar {
  position: sticky;
  top: 100px;
}

.checkout__summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.checkout__summary h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.checkout__line-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
}

.checkout__line-item--total {
  border-top: 2px solid var(--border);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 1.1rem;
}

.checkout__includes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.checkout__includes h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.checkout__includes li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout__includes li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-badge__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--primary);
}

/* Plan selector */
.plan-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.plan-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.plan-option.selected {
  border-color: var(--gold);
  background: rgba(195, 153, 69, 0.04);
}

.plan-option__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-option__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.plan-option__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary);
}

.plan-option__price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-option__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Card input styling */
.card-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.form-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.8rem;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer__inner {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Home Page FAQ (BEM style) */
.faq__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--primary);
}

.faq__toggle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__item.active .faq__answer {
  max-height: 600px;
  padding: 0 24px 20px;
}

/* ============================================
   Service Detail Sections
   ============================================ */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background: var(--bg-light);
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.pillar h4 {
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.feature-list {
  margin-top: 16px;
}

.feature-list li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li::before {
  content: '\2022';
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   Blog / Coming Soon
   ============================================ */
.coming-soon {
  text-align: center;
  padding: 80px 0;
}

.coming-soon__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.topic-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  text-align: left;
  transition: all var(--transition);
}

.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.topic-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topic-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Subscribe form */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 32px auto 0;
}

.subscribe-form .form-input {
  flex: 1;
}

/* ============================================
   Account / Login
   ============================================ */
.login-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.login-card h2 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.login-card__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.login-card__footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.login-card__footer a {
  color: var(--primary);
  font-weight: 600;
}

/* Dashboard preview */
.dashboard-preview {
  max-width: 900px;
  margin: 60px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.dashboard-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dashboard-stat {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.dashboard-stat__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.dashboard-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   About Page
   ============================================ */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  counter-reset: philosophy;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all var(--transition);
}

.philosophy-card:hover {
  box-shadow: var(--shadow-md);
}

.philosophy-card__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 24px;
}

.philosophy-card h3 {
  margin-bottom: 10px;
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.team-member {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.team-member__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
}

.team-member__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-member__title {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ============================================
   Landing Page
   ============================================ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(237, 163, 152, 0.15);
  border: 1px solid rgba(237, 163, 152, 0.3);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.urgency-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.quick-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.quick-benefit__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(195, 153, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   Animations (GSAP targets)
   ============================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(30px);
}

.anim-left {
  opacity: 0;
  transform: translateX(-40px);
}

.anim-right {
  opacity: 0;
  transform: translateX(40px);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.95);
}


/* ============================================
   Vertical Connector
   ============================================ */
.connector {
  position: relative;
  padding-left: 40px;
}

.connector::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0.2;
}

.connector__dot {
  position: absolute;
  left: 5px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split--reverse {
    direction: ltr;
  }

  .checkout {
    grid-template-columns: 1fr;
  }

  .checkout__sidebar {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .nav.active {
    right: 0;
  }

  .nav__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stats-large {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step__number::after {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .plan-selector {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .card-input-group {
    grid-template-columns: 1fr;
  }

  .service-pillars {
    grid-template-columns: 1fr;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
  }

  .topic-previews {
    grid-template-columns: 1fr;
  }

  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-benefits {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-nav__inner {
    gap: 4px;
    padding: 0 8px;
  }

  .preview-nav__link {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .preview-nav__label {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero p {
    font-size: 1rem;
  }

  .stat-item__number {
    font-size: 2rem;
  }

  .stats-bar__inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .checkout__form {
    padding: 28px 20px;
  }

  .login-card {
    padding: 32px 24px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* Bottom padding for preview nav */
body {
  padding-bottom: 56px;
}
