/* ═══════════════════════════════════════════════════════════════
   MEDSENIOR — Landing Page Styles
   NewLiv Corretora | Eric Rodrigues
   Cores: Verde MedSênior #00703C  |  Dourado #C8A951
   Fontes: Cormorant Garamond (headings) + Inter (body)
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --green:        #00703C;
  --green-dark:   #005A30;
  --green-light:  #E6F4EC;
  --green-mid:    #009E55;
  --gold:         #C8A951;
  --gold-light:   #F5EDD3;
  --dark:         #0A1A10;
  --dark-2:       #112B1A;
  --dark-3:       #1A3D27;
  --text:         #1C2B22;
  --text-muted:   #5A7063;
  --border:       #D4E6DA;
  --white:        #FFFFFF;
  --bg:           #F9FCF9;
  --bg-2:         #EFF8F3;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,112,60,.10);
  --shadow-lg:    0 12px 48px rgba(0,112,60,.15);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::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);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITIES ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.gold  { color: var(--gold); }
.green { color: var(--green); }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 26, 16, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,81,.15);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.logo-tag {
  font-size: .72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.82);
  font-weight: 400;
  transition: color var(--transition);
  letter-spacing: .3px;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: .82rem !important;
  letter-spacing: .5px !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--green-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,26,16,.98);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.mobile-menu.open { display: flex; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 45%, var(--dark-3) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,112,60,.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(200,169,81,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,112,60,.12) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,.12);
  border: 1px solid rgba(200,169,81,.30);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  padding: 14px 28px;
  border-radius: 10px;
  letter-spacing: .3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,112,60,.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,112,60,.45);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: .92rem;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22);
  transition: border-color var(--transition), color var(--transition);
}
.btn-whatsapp:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills span {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .3px;
}
.hero-aside {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.hero-badge-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,81,.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 160px;
}
.hero-badge-card .hbc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-card .hbc-label {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  letter-spacing: .5px;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(200,169,81,.15);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 36px;
  flex: 1;
  min-width: 130px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .73rem;
  color: rgba(255,255,255,.6);
  margin-top: 5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--dark);
}
.section-alt {
  background: var(--bg-2);
}
.section-label {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.75;
}
.section-desc.light { color: rgba(255,255,255,.65); }

/* ─── AUDIENCE TABS ──────────────────────────────────────────── */
.audience-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.tab-btn.active, .tab-btn:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── PLANS GRID ─────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  opacity: 0;
  transition: opacity var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.plan-card:hover::before { opacity: 1; }
.plan-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.plan-card.featured::before { opacity: 1; }
.plan-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.plan-badge.gold-badge {
  background: var(--gold-light);
  color: #7A6128;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.plan-ans {
  font-size: .73rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.plan-area {
  font-size: .8rem;
  color: var(--green-dark);
  font-weight: 600;
  background: var(--green-light);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--text);
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px;
  border-radius: 8px;
  transition: background var(--transition);
  letter-spacing: .3px;
}
.plan-cta:hover { background: var(--green-dark); }

/* ─── DIFERENCIAIS ───────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.diff-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.diff-item:hover {
  border-color: rgba(200,169,81,.30);
  transform: translateY(-4px);
}
.diff-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.diff-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.diff-item p {
  font-size: .84rem;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
}

/* ─── COMPARE TABLE ──────────────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.compare-table th {
  padding: 20px 24px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.compare-table th:first-child {
  background: var(--bg-2);
  color: var(--text-muted);
  text-align: left;
  width: 42%;
}
.compare-table th.col-common {
  background: #F5F5F5;
  color: #888;
}
.compare-table th.col-senior {
  background: var(--green);
  color: var(--white);
}
.compare-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-2); }
.check { color: var(--green); font-size: 1.1rem; font-weight: 700; }
.cross { color: #C0392B; font-size: 1.1rem; }

/* ─── HOSPITAIS ──────────────────────────────────────────────── */
.hosp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.hosp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hosp-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.hosp-state {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hosp-city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}
.hosp-card ul { display: flex; flex-direction: column; gap: 6px; }
.hosp-card li {
  font-size: .83rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.hosp-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .88rem; color: var(--text); }
.testi-role { font-size: .76rem; color: var(--text-muted); margin-top: 2px; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-item.open .faq-q { color: var(--green-dark); }
.faq-arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  font-size: .7rem;
  color: var(--text-muted);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
  padding: 0 24px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 36px 36px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 24px;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: .88rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.45);
  transition: border-color var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* ─── FORM SECTION ───────────────────────────────────────────── */
.section-form { background: var(--bg-2); }
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.form-left .section-title { color: var(--text); }
.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.form-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
}
.form-benefits li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: .83rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: border-color var(--transition), color var(--transition);
}
.contact-chip:hover {
  border-color: var(--green);
  color: var(--green-dark);
}
.form-right {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,112,60,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-error {
  font-size: .77rem;
  color: #C0392B;
  display: block;
  min-height: 16px;
}
.form-group input.error,
.form-group select.error {
  border-color: #C0392B;
}
.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-privacy {
  text-align: center;
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 10px;
}
.form-success p { font-size: .9rem; color: var(--text-muted); }

/* ─── BLOG PREVIEW ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 22px; }
.blog-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-card-link {
  font-size: .83rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card-link { gap: 8px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-disclaimer {
  font-size: .74rem !important;
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
}

/* ─── WA FLOAT ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-top: 68px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
}
.breadcrumb li a { color: var(--green-dark); font-weight: 500; }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li.active { color: var(--text); font-weight: 500; }
.breadcrumb-sep { color: var(--border); }

/* ─── ANIMATE ────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-aside { display: none; }
  .stat-divider { display: none; }
  .stats-inner { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 100px 24px 60px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-right { padding: 24px; }
  .cta-inner { flex-direction: column; }
  .compare-wrap { font-size: .8rem; }
  .footer-disclaimer { text-align: left; }
}
