@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --bg:         #09101f;
  --bg-dark:    #060a14;
  --bg-medium:  #0d1529;
  --bg-card:    #0f1828;
  --bg-card2:   #111d33;
  --text:       #eef2ff;
  --text-muted: rgba(238,242,255,0.55);
  --teal:       #00b2a5;
  --teal-dark:  #008f84;
  --teal-light: #00d9c9;
  --teal-dim:   rgba(0,178,165,0.12);
  --border:     rgba(255,255,255,0.09);
  --border-teal:rgba(0,178,165,0.35);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --pill:       999px;
  --white:      #ffffff;
  --shadow-teal:0 20px 60px rgba(0,178,165,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =========================================
   LAYOUT
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container--mid { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(9,16,31,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.logo-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.logo:hover .logo-icon { background: var(--teal-dark); }

.logo-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(238,242,255,0.75);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--pill);
  transition: background 0.2s, transform 0.2s;
}

.btn-call-header:hover { background: var(--teal-dark); transform: scale(1.03); }
.btn-call-header svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

.hamburger svg { width: 26px; height: 26px; stroke: currentColor; fill: none; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(9,16,31,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: rgba(238,242,255,0.8);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #09101f 0%, #0d1b30 100%);
  text-align: center;
}

.page-hero .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--pill);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex-shrink: 0; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 16px 32px;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(0,178,165,0.3);
}

.btn-primary:hover { background: var(--teal-dark); transform: scale(1.04); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 15px 28px;
  font-size: 1rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-white {
  background: #fff;
  color: var(--teal-dark);
  padding: 16px 40px;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.btn-white:hover { background: rgba(255,255,255,0.9); transform: scale(1.04); }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.section-title.light { color: var(--white); }
.section-title.dark { color: var(--text); }

.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

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

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover { border-color: var(--border-teal); }

/* =========================================
   CHECK LIST
   ========================================= */
.check-list { display: flex; flex-direction: column; gap: 12px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check-list li .icon-check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.check-list li .icon-check svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* =========================================
   PLAN CARDS
   ========================================= */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.plan-card:hover { border-color: var(--border-teal); }

.plan-card.featured {
  border-color: var(--teal);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(0,178,165,0.2);
}

.plan-badge {
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px;
}

.plan-header {
  padding: 24px;
  color: #fff;
}

.plan-header .plan-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.plan-header .plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  margin-top: 4px;
}

.plan-header .plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
}

.plan-header .plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2px;
}

.plan-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-body .check-list { flex: 1; margin-bottom: 20px; }

.plan-body .btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: var(--pill);
  transition: background 0.2s;
}

.plan-body .btn-plan:hover { background: var(--teal-dark); }
.plan-body .btn-plan svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

/* Gradient header colors */
.grad-blue   { background: linear-gradient(135deg, #1d4ed8, #1e3a8a); }
.grad-teal   { background: linear-gradient(135deg, #0d9488, #0369a1); }
.grad-purple { background: linear-gradient(135deg, #7c3aed, #312e81); }
.grad-cyan   { background: linear-gradient(135deg, #0891b2, #0f766e); }
.grad-emerald{ background: linear-gradient(135deg, #059669, #0f766e); }
.grad-orange { background: linear-gradient(135deg, #ea580c, #991b1b); }
.grad-rose   { background: linear-gradient(135deg, #e11d48, #db2777); }
.grad-pink   { background: linear-gradient(135deg, #db2777, #7c3aed); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #060a14;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: var(--pill);
  transition: background 0.2s;
}

.footer-btn-call:hover { background: var(--teal-dark); }
.footer-btn-call svg { width: 15px; height: 15px; stroke: #fff; fill: none; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--teal);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(238,242,255,0.35);
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--bg-card);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  gap: 16px;
}

.faq-question:hover { background: var(--bg-card2); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-muted);
}

.faq-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

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

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  background: var(--bg-card);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

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

/* =========================================
   FORM
   ========================================= */
.form-group {
  margin-bottom: 18px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,178,165,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(238,242,255,0.3); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 5px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea { border-color: #f87171; }
.form-group.has-error .form-error { display: block; }

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--teal-dark); }

.success-box {
  background: rgba(0,178,165,0.08);
  border: 1px solid rgba(0,178,165,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  display: none;
}

.success-box.visible { display: block; }
.success-box .success-icon svg { width: 56px; height: 56px; stroke: var(--teal); fill: none; margin: 0 auto 16px; display: block; }
.success-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.success-box p { font-size: 0.9rem; color: var(--text-muted); }
.success-box a { color: var(--teal); font-weight: 600; }

/* =========================================
   LEGAL / PROSE
   ========================================= */
.prose h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 36px;
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.prose ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.prose ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* =========================================
   FEATURE ICON BOX
   ========================================= */
.icon-box {
  width: 48px; height: 48px;
  background: var(--teal-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s;
}

.icon-box svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; }
.card:hover .icon-box { background: rgba(0,178,165,0.2); }

/* =========================================
   TESTIMONIAL
   ========================================= */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stars { display: flex; gap: 4px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; fill: #facc15; stroke: #facc15; }

.testimonial blockquote {
  font-size: 0.9rem;
  color: rgba(238,242,255,0.75);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

.testimonial-author .loc {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 4px; margin-top: 3px;
}

.testimonial-author .loc svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

/* =========================================
   STAT BOX
   ========================================= */
.stat-box { text-align: center; }
.stat-box .stat-icon { display: flex; justify-content: center; margin-bottom: 12px; }
.stat-box .stat-icon svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; }
.stat-box .stat-value { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.stat-box .stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: linear-gradient(135deg, #006b62, #007a8a);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-band small {
  display: block;
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   INFO BOX (callout)
   ========================================= */
.info-box {
  background: rgba(0,178,165,0.06);
  border: 1px solid rgba(0,178,165,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

/* =========================================
   SECTIONS SPACING
   ========================================= */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--bg-dark); }
.section-medium { background: var(--bg-medium); }
.section-card { background: #060a14; }

/* =========================================
   HOW IT WORKS STEP
   ========================================= */
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}

.step:hover { border-color: var(--border-teal); }

.step-num {
  width: 56px; height: 56px;
  background: var(--teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.step h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* =========================================
   HERO (homepage)
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #09101f 0%, #0d1b30 60%, #0a1e28 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 15% 55%, rgba(0,178,165,0.18) 0%, transparent 50%),
              radial-gradient(circle at 85% 15%, rgba(0,120,140,0.15) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,178,165,0.15);
  border: 1px solid rgba(0,178,165,0.3);
  color: var(--teal-light);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--pill);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 22px;
}

.hero h1 .accent { color: var(--teal-light); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(238,242,255,0.7);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 22px;
  font-size: 0.825rem;
  color: rgba(238,242,255,0.35);
}

.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* =========================================
   WHY US BOX
   ========================================= */
.why-box {
  background: linear-gradient(135deg, #09101f, #0d1b30);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
}

.why-box .big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal-light);
  margin-bottom: 6px;
}

.why-box .big-label {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.why-box p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }

/* =========================================
   CONTACT INFO ITEM
   ========================================= */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--teal-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; }

.contact-info-text .label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-text a { transition: color 0.2s; }
.contact-info-text a.phone { color: var(--teal); font-size: 1.1rem; font-weight: 700; }
.contact-info-text a:hover { color: var(--white); }

/* =========================================
   FADE IN ANIMATION (JS-triggered)
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-call-header { display: none; }
  .hamburger { display: block; }

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

  .hero h1 { font-size: 2.2rem; }

  .plan-card.featured { transform: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .container, .container--narrow, .container--mid { padding: 0 18px; }

  .section { padding: 56px 0; }

  .two-col { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
