/* ============================================================
   SIMSALACLEAN — Landing Page Styles
   Color palette:
     Blue 900  #0D2B6E
     Blue 700  #1A4DB6
     Blue 500  #2563EB  (primary)
     Blue 400  #3B82F6
     Blue 100  #DBEAFE
     Blue 50   #EFF6FF
     Red  600  #DC2626  (CTA)
     Red  700  #B91C1C  (CTA hover)
     Red  50   #FEF2F2  (CTA tint)
     White     #FFFFFF
     Gray 700  #374151
     Gray 500  #6B7280
     Gray 100  #F3F4F6

   Fonts:
     Display / headings : 'Playfair Display', Georgia, serif
     Body / UI          : 'Inter', system-ui, sans-serif
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #374151;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Heading font ── */
h1, h2, h3,
.hero-copy h1,
.form-card-header h2,
.pricing h2,
.faq h2,
.how-it-works h2,
.features h2,
.testimonials h2,
.cta-bottom h2,
.form-success h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ── Typography helpers ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #DBEAFE;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: #0D2B6E;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }

.logo-icon { font-size: 1.5rem; }

.logo-text { font-weight: 500; }
.logo-text strong { font-weight: 800; color: #2563EB; }

.badge-prelaunch {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A4DB6;
  background: #DBEAFE;
  border: 1px solid #3B82F6;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #EFF6FF 0%, #ffffff 60%);
  padding-top: 5rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #DBEAFE 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
}

/* ── Hero copy ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1A4DB6;
  background: #DBEAFE;
  border: 1px solid #93C5FD;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0D2B6E;
  margin-bottom: 1rem;
}

.hero-copy h1 .highlight {
  color: #2563EB;
  position: relative;
}
.hero-copy h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: #DBEAFE;
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #2563EB;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
}

/* ── Lead Form Card ── */
.form-card {
  background: #ffffff;
  border: 1px solid #DBEAFE;
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 4px 6px -1px rgba(37, 99, 235, 0.07),
    0 20px 48px -8px rgba(37, 99, 235, 0.12);
  position: relative;
}

.form-card-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-card-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0D2B6E;
  margin-bottom: 0.35rem;
}

.form-card-header p {
  font-size: 0.875rem;
  color: #6B7280;
}

/* ── Form elements ── */
.form-group {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

label span[aria-hidden] {
  color: #EF4444;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #374151;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
  background: #ffffff;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

input.invalid,
select.invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.input-with-prefix {
  display: flex;
  align-items: center;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-with-prefix:focus-within {
  background: #ffffff;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.input-with-prefix.invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-prefix {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  border-right: 1.5px solid #E5E7EB;
  white-space: nowrap;
  user-select: none;
}

.input-with-prefix input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  padding-left: 0.65rem;
}

.input-with-prefix input:focus {
  box-shadow: none;
  border-color: transparent;
}

.field-hint {
  display: block;
  font-size: 0.775rem;
  color: #6B7280;
  margin-top: 0.3rem;
}

.field-error {
  display: block;
  font-size: 0.775rem;
  color: #EF4444;
  font-weight: 500;
  margin-top: 0.3rem;
  min-height: 1rem;
}

/* Checkbox */
.checkbox-group { margin-bottom: 1.25rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #374151;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  border: 1.5px solid #D1D5DB;
  border-radius: 5px;
  cursor: pointer;
  accent-color: #2563EB;
  margin-top: 1px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid #DC2626;
  outline-offset: 2px;
}

.btn-primary {
  background: #DC2626;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.btn-primary:hover {
  background: #B91C1C;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.btn-primary:disabled {
  background: #FCA5A5;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-full { width: 100%; }

.btn-white {
  background: #ffffff;
  color: #DC2626;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: #FEF2F2;
  color: #B91C1C;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* Spinner */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Success state ── */
.form-success {
  text-align: center;
  padding: 1.5rem 1rem;
  animation: fadeUp 0.4s ease;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  animation: bounce 0.6s ease;
}

.form-success h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0D2B6E;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-14px); }
  70%       { transform: translateY(-6px); }
}

/* Form privacy note */
.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 0.85rem;
  text-align: center;
}

/* ── Counter bar ── */
.counter-bar {
  background: #0D2B6E;
  padding: 0.75rem 0;
  margin-top: 0;
}

.counter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.counter-item {
  font-size: 0.875rem;
  color: #BFDBFE;
  font-weight: 500;
}

.counter-item strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.counter-divider { color: #3B82F6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 5rem 0;
  background: #ffffff;
}

.pricing h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0D2B6E;
  margin-bottom: 0.75rem;
}

.pricing-sub {
  font-size: 0.975rem;
  color: #6B7280;
  max-width: 580px;
  margin-bottom: 2.75rem;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* ── Pricing card base ── */
.pricing-card {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}

/* ── Popular card ── */
.pricing-card--popular {
  border-color: #2563EB;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.14);
  transform: translateY(-6px);
}

.pricing-card--popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.18);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #1A4DB6, #2563EB);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ── Card header ── */
.pricing-card-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pricing-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.pricing-card-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0D2B6E;
  margin-bottom: 0.2rem;
}

.pricing-tagline {
  font-size: 0.825rem;
  color: #6B7280;
}

/* ── Price ── */
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0D2B6E;
  line-height: 1;
}

.pricing-card--popular .price-amount {
  color: #2563EB;
}

.price-unit {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 500;
}

.pricing-min {
  text-align: center;
  font-size: 0.775rem;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
}

/* ── Feature list ── */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #374151;
}

.pricing-features li.unavailable {
  color: #9CA3AF;
}

.pricing-features li.unavailable span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #F3F4F6;
  color: #9CA3AF;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ── Outline button ── */
.btn-outline-primary {
  background: transparent;
  color: #2563EB;
  border: 2px solid #2563EB;
  box-shadow: none;
}

.btn-outline-primary:hover {
  background: #EFF6FF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* ── Pricing note ── */
.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: #374151;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  margin-top: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 5rem 0;
  background: #EFF6FF;
}

.faq h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0D2B6E;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid #DBEAFE;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: #2563EB;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0D2B6E;
  text-align: left;
  transition: background 0.15s;
}

.faq-question:hover {
  background: #F9FAFB;
}

.faq-question[aria-expanded="true"] {
  background: #EFF6FF;
  color: #2563EB;
}

.faq-question:focus-visible {
  outline: 3px solid #2563EB;
  outline-offset: -3px;
}

/* ── Chevron icon ── */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s, transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #2563EB;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Horizontal bar */
.faq-icon::before {
  width: 10px;
  height: 2px;
}

/* Vertical bar (forms + when closed) */
.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: #DBEAFE;
  transform: rotate(45deg);
}

/* ── Answer panel ── */
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  animation: fadeUp 0.25s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.75;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 5rem 0;
  background: #ffffff;
}

.how-it-works h2,
.features h2,
.testimonials h2,
.cta-bottom h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0D2B6E;
  margin-bottom: 2.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: calc(50% / 3 + 2rem);
  right: calc(50% / 3 + 2rem);
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #93C5FD);
  pointer-events: none;
}

.step-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
  border-color: #93C5FD;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.step-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0D2B6E;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 5rem 0;
  background: #EFF6FF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: #0D2B6E;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 5rem 0;
  background: #ffffff;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.stars {
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testi-card p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testi-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #2563EB, #1A4DB6);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.testi-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0D2B6E;
  font-style: normal;
}

.testi-loc {
  display: block;
  font-size: 0.775rem;
  color: #9CA3AF;
}

/* ============================================================
   CTA BOTTOM
   ============================================================ */
.cta-bottom {
  background: linear-gradient(135deg, #1A4DB6 0%, #2563EB 50%, #3B82F6 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner { position: relative; }

.cta-bottom h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-bottom p {
  color: #BFDBFE;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D2B6E;
  color: #BFDBFE;
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #93C5FD;
  max-width: 280px;
  line-height: 1.6;
}

.footer-contact h3,
.footer-social h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact li {
  font-size: 0.875rem;
}

.footer-contact a,
.footer-contact span {
  color: #93C5FD;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #ffffff; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links a {
  font-size: 0.875rem;
  color: #93C5FD;
  transition: color 0.2s;
}

.social-links a:hover { color: #ffffff; }

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6B7280;
  text-align: center;
}

/* ============================================================
   ANIMATIONS (scroll-reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-copy h1 { font-size: 2.25rem; }
  .hero-sub { max-width: 100%; }

  .features-grid,
  .steps-grid,
  .testi-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--popular { transform: translateY(0); }
  .pricing-card--popular:hover { transform: translateY(-4px); }

  .steps-grid::before { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 600px) {
  .hero { padding-top: 2.5rem; }

  .hero-grid { gap: 2rem; padding-bottom: 2rem; }

  .hero-copy h1 { font-size: 1.85rem; }

  .form-card { padding: 1.5rem 1.25rem; }

  .features-grid,
  .steps-grid,
  .testi-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--popular { transform: translateY(0); }

  .how-it-works,
  .features,
  .testimonials,
  .pricing,
  .faq,
  .cta-bottom {
    padding: 3.5rem 0;
  }

  .faq-question { padding: 1rem 1.1rem; font-size: 0.9rem; }
  .faq-answer   { padding: 0 1.1rem 1rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .counter-inner {
    flex-direction: column;
    gap: 0.25rem;
  }

  .counter-divider { display: none; }
}
