/* ===== CSS Variables / Design System ===== */
:root {
  /* Colors - Navy Trust Palette */
  --primary: 222 47% 25%;
  --primary-light: 222 47% 35%;
  --primary-dark: 222 47% 15%;
  
  --accent: 199 89% 48%;
  --accent-light: 199 89% 58%;
  
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;
  
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  
  --border: 214 32% 91%;
  
  --success: 142 76% 36%;
  --warning: 38 92% 50%;
  --destructive: 0 84% 60%;
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 5rem;
  --section-padding-mobile: 3rem;
  
  /* Typography */
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-hero {
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--accent-light)) 100%);
  color: white;
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px -8px hsla(var(--accent), 0.4);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px hsla(var(--accent), 0.5);
}

.btn-hero-outline {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--border));
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.btn-hero-outline:hover {
  background: hsl(var(--muted));
  border-color: hsl(var(--primary));
}

.btn-cta {
  background: white;
  color: hsl(var(--primary));
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn-full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.logo-accent {
  color: hsl(var(--accent));
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--primary));
}

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.mobile-nav-link:hover {
  background: hsl(var(--muted));
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .nav-cta {
    display: inline-flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* ===== Hero Section ===== */
.hero {
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(var(--accent), 0.1);
  color: hsl(var(--accent));
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge-icon {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-accent {
  color: hsl(var(--accent));
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.trust-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
}

@media (min-width: 768px) {
  .hero {
    padding: var(--section-padding) 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== Problem Section ===== */
.problem {
  padding: var(--section-padding-mobile) 0;
  background: hsl(var(--card));
}

.problems-grid {
  display: grid;
  gap: 1.5rem;
}

.problem-card {
  padding: 1.5rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.problem-card:hover {
  border-color: hsl(var(--warning));
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(var(--warning), 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.problem-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--warning));
}

.problem-title {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.problem-text {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

@media (min-width: 768px) {
  .problem {
    padding: var(--section-padding) 0;
  }
  
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Solution Section ===== */
.solution {
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(180deg, hsl(var(--muted)) 0%, hsl(var(--background)) 100%);
}

.solution-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.solution-content .section-title {
  text-align: left;
}

.solution-content .section-description {
  text-align: left;
  margin-bottom: 2rem;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.solution-check {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--success));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.solution-visual {
  display: flex;
  justify-content: center;
}

.solution-card {
  width: 100%;
  max-width: 20rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.solution-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: white;
}

.solution-card-icon {
  width: 2rem;
  height: 2rem;
}

.solution-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.solution-card-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

.solution-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.form-field:last-child {
  border-bottom: none;
}

.form-label {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.form-value {
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.solution-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: hsla(var(--success), 0.1);
  color: hsl(var(--success));
  font-size: 0.8125rem;
  font-weight: 500;
}

.solution-card-footer-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .solution {
    padding: var(--section-padding) 0;
  }
  
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== How It Works Section ===== */
.how-it-works {
  padding: var(--section-padding-mobile) 0;
  background: hsl(var(--card));
}

.steps-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: hsl(var(--accent));
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--accent-light)) 100%);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: hsla(var(--primary), 0.1);
  border-radius: 9999px;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.step-title {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.step-connector {
  display: none;
}

.steps-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.steps-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.steps-time-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
}

@media (min-width: 768px) {
  .how-it-works {
    padding: var(--section-padding) 0;
  }
  
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
  
  .step-connector {
    display: flex;
    justify-content: center;
    color: hsl(var(--border));
  }
  
  .step-connector svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ===== Features Section ===== */
.features {
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: hsla(var(--accent), 0.3);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(var(--accent), 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: background var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: hsla(var(--accent), 0.2);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
}

.feature-title {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features {
    padding: var(--section-padding) 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Pricing Section ===== */
.pricing {
  padding: var(--section-padding-mobile) 0;
  background: hsl(var(--card));
}

.pricing-grid {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--accent));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--accent));
  font-weight: 700;
}

.pricing-cta {
  width: 100%;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .pricing {
    padding: var(--section-padding) 0;
  }
}


/* ===== Is This For You / Audience Section (Polished Cards) ===== */

.who-is-for {
  padding: var(--section-padding-mobile) 0;
  background: hsl(var(--background));
}

.audience-grid {
  display: grid;
  gap: 2rem;
}

.audience-card {
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

/* FOR YOU */
.audience-for {
  background: linear-gradient(
    180deg,
    hsla(var(--success), 0.08) 0%,
    hsla(var(--success), 0.04) 100%
  );
  border: 1px solid hsla(var(--success), 0.25);
}

/* NOT FOR YOU */
.audience-not-for {
  background: linear-gradient(
    180deg,
    hsla(var(--destructive), 0.08) 0%,
    hsla(var(--destructive), 0.04) 100%
  );
  border: 1px solid hsla(var(--destructive), 0.25);
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.audience-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.audience-for .audience-icon {
  color: hsl(var(--success));
}

.audience-not-for .audience-icon {
  color: hsl(var(--destructive));
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
}

.audience-check {
  color: hsl(var(--success));
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.audience-x {
  color: hsl(var(--destructive));
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.audience-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(var(--destructive), 0.25);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Desktop layout */
@media (min-width: 768px) {
  .who-is-for {
    padding: var(--section-padding) 0;
  }

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


/* ===== FAQ Section ===== */
.faq {
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(180deg, hsl(var(--muted)) 0%, hsl(var(--background)) 100%);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color var(--transition-fast);
}

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

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq {
    padding: var(--section-padding) 0;
  }
}

/* ===== CTA Section ===== */
.cta {
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
}

.cta-content {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(0, 0%, 100%, 0.15);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.cta-badge-icon {
  width: 1rem;
  height: 1rem;
}

.cta-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.cta-trust-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .cta {
    padding: var(--section-padding) 0;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 4rem 0 2rem;
  background: hsl(var(--primary-dark));
  color: white;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.6;
  max-width: 20rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  font-size: 0.9375rem;
  color: hsla(0, 0%, 100%, 0.8);
  transition: color var(--transition-fast);
}

.footer-list a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: hsla(0, 0%, 100%, 0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: hsla(0, 0%, 100%, 0.4);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
