/* ============================================================
   STYLE.CSS — ChitCare demo
   All colors use CSS custom properties.
   Defaults live here as fallbacks; main.js overrides them
   from config.js at runtime so the entire site rebrands
   by editing config.js alone.
   ============================================================ */


/* ─── 1. CSS VARIABLES (FALLBACK DEFAULTS) ─────────────────── */
:root {
  --primary:         #1e3a8a;
  --primary-light:   #2563eb;
  --primary-dark:    #172554;
  --secondary:       #0d9488;
  --secondary-light: #14b8a6;
  --accent:          #f59e0b;
  --accent-dark:     #d97706;
  --bg-light:        #f8fafc;
  --bg-white:        #ffffff;
  --text-dark:       #0f172a;
  --text-mid:        #64748b;
  --text-light:      #94a3b8;
  --border-color:    #e2e8f0;
  --gradient-hero:   linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
  --gradient-cta:    linear-gradient(135deg, #172554 0%, #0d9488 100%);
  --gradient-card:   linear-gradient(135deg, rgba(30,58,138,0.06) 0%, rgba(13,148,136,0.06) 100%);
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:       0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-primary:  0 4px 20px rgba(30,58,138,0.25);
  --radius-sm:       0.375rem;
  --radius-md:       0.75rem;
  --radius-lg:       1rem;
  --radius-xl:       1.5rem;
  --transition:      all 0.3s ease;
}


/* ─── 2. BASE RESET & TYPOGRAPHY ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--font-body); }


/* ─── 3. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-card);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(30,58,138,0.12);
  margin-bottom: 1rem;
}


/* ─── 4. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.9375rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30,58,138,0.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--bg-white);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}


/* ─── 5. SCROLL PROGRESS BAR ────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}


/* ─── 6. NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  padding: 1.125rem 0;
}
#navbar.nav-transparent { background: transparent; }
#navbar.nav-scrolled {
  background: var(--bg-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0.625rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--bg-white);
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-scrolled .nav-logo { color: var(--primary); }
.nav-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
  letter-spacing: -0.03em;
  overflow: hidden;
}
/* Image mode — transparent bg, image fills the badge */
.nav-logo-icon.has-image {
  background: transparent;
  padding: 0;
}
.nav-logo-icon.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0 1rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover,
.nav-links a.active { color: var(--accent); background: rgba(245,158,11,0.1); }
.nav-scrolled .nav-links a:hover,
.nav-scrolled .nav-links a.active { color: var(--primary); background: rgba(30,58,138,0.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-login-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-scrolled .nav-login-btn { color: var(--primary); border-color: var(--primary); }
.nav-login-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }
.nav-scrolled .nav-login-btn:hover { background: var(--primary); color: var(--bg-white); }
.nav-cta-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--accent);
  padding: 0.5625rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  border: none;
  background: transparent;
  gap: 5px;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-scrolled .hamburger span { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--bg-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 0.125rem;
  border-top: 3px solid var(--primary);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); background: rgba(30,58,138,0.04); }
.mobile-menu a.active { color: var(--primary); font-weight: 600; }
.mobile-menu-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.mobile-menu-actions .btn { flex: 1; justify-content: center; }


/* ─── 7. HERO SECTION ───────────────────────────────────────── */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--bg-white);
}
.hero-shape-1 { width: 600px; height: 600px; right: -200px; top: -200px; }
.hero-shape-2 { width: 350px; height: 350px; left: -120px; bottom: -120px; }
.hero-shape-3 { width: 200px; height: 200px; left: 35%; top: 60%; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--bg-white);
  padding: 0.4375rem 1rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-headline .highlight { color: var(--accent); }
.hero-subtext {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 500;
}
.hero-trust-item i { color: var(--accent); font-size: 0.875rem; }

.hero-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 480px;
  position: relative;
}
.hero-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,37,84,0.45) 0%, transparent 55%);
}
.hero-float-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  min-width: 170px;
}
.hero-float-1 { bottom: -1.5rem; left: -2rem; }
.hero-float-2 { top: 1.75rem; right: -2rem; }
.hero-float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-float-icon.teal { background: rgba(13,148,136,0.12); color: var(--secondary); }
.hero-float-icon.gold { background: rgba(245,158,11,0.12); color: var(--accent); }
.hero-float-label { font-size: 0.6875rem; color: var(--text-mid); font-weight: 400; }
.hero-float-value { font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); }


/* ─── 8. TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--primary-dark);
  padding: 1.625rem 0;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
}
.trust-item i { color: var(--accent); font-size: 0.9375rem; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.18); }


/* ─── 9. ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--bg-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-image-area { position: relative; }
.about-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.about-accent-img {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 170px;
  height: 170px;
  border-radius: var(--radius-lg);
  border: 5px solid var(--bg-white);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-badge-float {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  min-width: 110px;
}
.about-badge-float .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.about-badge-float .lbl { font-size: 0.75rem; font-weight: 500; opacity: 0.85; line-height: 1.35; }
.about-text h2 { font-size: clamp(1.625rem, 2.5vw, 2.25rem); font-weight: 700; margin-bottom: 1.25rem; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1rem; }
.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dark);
}
.about-check-item i { color: var(--secondary); font-size: 0.9375rem; }


/* ─── 10. WHY US SECTION ────────────────────────────────────── */
.why-us-section { background: var(--bg-light); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(30,58,138,0.1); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  border: 1px solid rgba(30,58,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.why-card:hover .why-card-icon { background: var(--primary); color: var(--bg-white); border-color: var(--primary); }
.why-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.625rem; }
.why-card p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.65; }


/* ─── 11. CHIT PLANS SECTION ────────────────────────────────── */
.plans-section { background: var(--bg-white); }
.plan-filters {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.375rem;
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  border: 1.5px solid var(--border-color);
  color: var(--text-mid);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(30,58,138,0.04); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--bg-white); box-shadow: var(--shadow-primary); }

/* ── Plan loading / empty / error states ──────────────────── */
.plans-loading,
.plans-empty,
.plans-error {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
}
.plans-empty i,
.plans-error i {
  font-size: 2.5rem;
  opacity: 0.45;
}
.plans-empty i { color: var(--primary); }
.plans-error i { color: var(--accent); }
.plans-loading p,
.plans-empty p,
.plans-error p { max-width: 480px; line-height: 1.7; margin: 0; }
.plans-error a,
.plans-empty a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* Spinner */
.plans-spinner {
  width: 2.75rem;
  height: 2.75rem;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.plan-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card.featured { border-color: var(--primary); box-shadow: var(--shadow-primary); }
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan-card.hidden { display: none !important; }

.plan-card-header {
  padding: 1.75rem;
  background: var(--gradient-card);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.plan-card.featured .plan-card-header { background: var(--gradient-hero); }

.plan-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}
.plan-name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.375rem; }
.plan-card.featured .plan-name { color: var(--bg-white); }
.plan-value { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.25rem; }
.plan-card.featured .plan-value { color: var(--accent); }
.plan-value-label { font-size: 0.8125rem; color: var(--text-mid); }
.plan-card.featured .plan-value-label { color: rgba(255,255,255,0.7); }

.plan-card-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.plan-meta { display: flex; gap: 1.5rem; }
.plan-meta-item { display: flex; flex-direction: column; gap: 0.125rem; }
.plan-meta-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); font-weight: 600; }
.plan-meta-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.plan-suited-for {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--secondary);
}
.plan-highlights { display: flex; flex-direction: column; gap: 0.5rem; }
.plan-highlights li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); }
.plan-highlights li i { color: var(--secondary); font-size: 0.8125rem; flex-shrink: 0; }
.plan-card-footer { padding: 1.25rem 1.75rem; border-top: 1px solid var(--border-color); }
.plan-card-footer .btn { width: 100%; justify-content: center; }


/* ─── 12. HOW IT WORKS ──────────────────────────────────────── */
.how-section { background: var(--bg-light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.625rem;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.15;
}
.step-card { text-align: center; padding: 1.5rem 1rem; position: relative; z-index: 1; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-primary);
}
.step-icon-wrap {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.375rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}
.step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.625rem; }
.step-desc { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.65; }


/* ─── 13. STATISTICS SECTION ────────────────────────────────── */
.stats-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.75); font-weight: 500; }


/* ─── 14. TESTIMONIALS SECTION ──────────────────────────────── */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  color: var(--primary);
  opacity: 0.1;
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
  pointer-events: none;
}
.testimonial-stars { color: var(--accent); font-size: 0.8125rem; margin-bottom: 0.875rem; display: flex; gap: 2px; }
.testimonial-text { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.78; flex: 1; margin-bottom: 1.5rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}
.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem; color: var(--text-dark); margin-bottom: 0.125rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--text-light); }

/* Swiper overrides */
.swiper { padding-bottom: 3.5rem !important; }
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.3 !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; opacity: 1 !important; }
.swiper-slide { height: auto; }
.swiper-slide .testimonial-card { height: 100%; }


/* ─── 15. FAQ SECTION ───────────────────────────────────────── */
.faq-section { background: var(--bg-white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open { border-color: rgba(30,58,138,0.2); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-mid);
  font-size: 0.75rem;
}
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: var(--bg-white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.78; border-top: 1px solid var(--border-color); padding-top: 1rem; }

.faq-cta-row { text-align: center; margin-top: 2.5rem; }
.faq-cta-row p { color: var(--text-mid); margin-bottom: 1rem; }


/* ─── 16. CONTACT SECTION ───────────────────────────────────── */
.contact-section { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.625rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.125rem; margin-bottom: 2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-card);
  border: 1px solid rgba(30,58,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.contact-detail-label { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; color: var(--text-dark); margin-bottom: 0.1875rem; }
.contact-detail-value { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.55; }
.contact-detail-value a { color: var(--primary); transition: var(--transition); }
.contact-detail-value a:hover { color: var(--secondary); }

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.contact-form-card h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.375rem; }
.contact-form-card > p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,138,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


/* ─── 17. MAP SECTION ───────────────────────────────────────── */
.map-section { overflow: hidden; background: var(--bg-light); }
.map-section iframe { width: 100%; height: 400px; border: none; display: block; filter: grayscale(15%); }


/* ─── 18. CTA SECTION ───────────────────────────────────────── */
.cta-section {
  background: var(--gradient-cta);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 1.5rem; }
.cta-content h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; color: var(--bg-white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ─── 19. FOOTER ────────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.78); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  font-family: var(--font-heading);
  overflow: hidden;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
/* Image mode — transparent bg, image fills the badge */
.footer-logo-icon.has-image {
  background: transparent;
  padding: 0;
}
.footer-logo-icon.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; opacity: 0.7; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent); color: var(--text-dark); }
.footer-col h4 {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2rem;
  height: 2px;
  background: var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-links a:hover { color: var(--accent); padding-left: 0.25rem; }
.footer-links a i { font-size: 0.5625rem; opacity: 0.7; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: rgba(255,255,255,0.62); }
.footer-contact-list li i { color: var(--accent); font-size: 0.875rem; margin-top: 0.125rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.62); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-left { font-size: 0.875rem; opacity: 0.55; }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: var(--transition); text-decoration: none; }
.footer-bottom-right a:hover { color: var(--accent); }


/* ─── 20. PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 7.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--bg-white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; line-height: 1.75; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb .crumb-current { color: var(--accent); font-weight: 600; }


/* ─── 21. BRANCH CARDS ──────────────────────────────────────── */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.branch-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.branch-card:hover { box-shadow: var(--shadow-md); border-color: rgba(30,58,138,0.12); transform: translateY(-4px); }
.branch-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.branch-card h4 i { color: var(--accent); font-size: 0.9375rem; }
.branch-card p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.625rem; }
.branch-card a { font-size: 0.9375rem; color: var(--primary); font-weight: 600; transition: var(--transition); display: flex; align-items: center; gap: 0.375rem; }
.branch-card a:hover { color: var(--secondary); }


/* ─── 22. HIGHLIGHTS STRIP (Why Us page) ────────────────────── */
.highlight-strip {
  background: var(--gradient-card);
  border: 1px solid rgba(30,58,138,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 4rem;
}
.highlight-strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.highlight-strip-item { text-align: center; }
.highlight-strip-item .hs-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 0.625rem; }
.highlight-strip-item .hs-value { font-family: var(--font-heading); font-size: 1.625rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.125rem; }
.highlight-strip-item .hs-label { font-size: 0.875rem; color: var(--text-mid); }


/* ─── 23. BENEFITS SECTION ──────────────────────────────────── */
.benefits-section { background: var(--bg-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.benefit-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-card:hover { background: var(--bg-white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-card);
  border: 1px solid rgba(30,58,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.benefit-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; }
.benefit-card p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.6; }


/* ─── 24. SCROLL-TO-TOP & WHATSAPP FLOAT ────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--primary-light); transform: translateY(-3px); }
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 998;
  transition: var(--transition);
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); }


/* ─── 25. ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLeft  { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn    { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.anim-fade-up    { animation: fadeInUp   0.75s ease both; }
.anim-fade-in    { animation: fadeIn     0.75s ease both; }
.anim-slide-left { animation: slideLeft  0.75s ease both; }
.anim-slide-right{ animation: slideRight 0.75s ease both; }
.anim-scale-in   { animation: scaleIn    0.75s ease both; }
.anim-delay-1    { animation-delay: 0.1s; }
.anim-delay-2    { animation-delay: 0.2s; }
.anim-delay-3    { animation-delay: 0.3s; }
.anim-delay-4    { animation-delay: 0.4s; }


/* ─── 26. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-accent-img { display: none; }
  .about-badge-float { left: 1rem; }
  .hero-float-1, .hero-float-2 { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions > *:not(.hamburger) { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 4.5rem;
  }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-area { order: -1; }
  .hero-img-card { max-width: 380px; margin: 0 auto; }
  .hero-img-card img { height: 280px; }

  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-padding { padding: 3.5rem 0; }
  .about-checks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-strip-inner { gap: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .btn { padding: 0.625rem 1.375rem; font-size: 0.875rem; }
  .plan-meta { flex-direction: column; gap: 0.75rem; }
  .mobile-menu-actions { flex-direction: column; }
  .footer-bottom-right { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 6.5rem 0 3.5rem; }
  .stats-grid { gap: 2rem; }
}
