/* ============================================================
   BWii Website Cost Calculator — Professional Stylesheet v3
   Color: #004aad | Font: Poppins | Font Awesome Icons
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand Colors ── */
  --brand:      #004aad;          /* primary blue */
  --brand-dk:   #003585;          /* darker blue */
  --brand-lt:   #1a62c4;          /* lighter blue */
  --brand-xlt:  #e8f0fd;          /* very light blue tint */
  --accent:     #004aad;          /* alias for brand */
  --accent-dk:  #003585;
  --gold:       #f59e0b;          /* highlight / shimmer accent */
  --white:      #ffffff;
  --bg:         #f4f7fc;          /* page background — subtle blue tint */
  --bg2:        #eaf0fb;
  --border:     #d0ddf5;
  --text:       #0d1f3c;
  --muted:      #5a7099;
  --success:    #16a34a;
  --wa:         #25d366;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 4px 20px rgba(0,74,173,0.10);
  --shadow-md:  0 8px 32px rgba(0,74,173,0.14);
  --shadow-lg:  0 16px 48px rgba(0,74,173,0.18);
  --tr:         0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--brand); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--brand-dk); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: 2px solid transparent;
  transition: all var(--tr); white-space: nowrap; text-decoration: none;
  font-family: 'Poppins', sans-serif; line-height: 1;
}
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-primary {
  background: var(--brand); color: var(--white); border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dk); border-color: var(--brand-dk); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,74,173,0.38);
}
.btn-white { background: var(--white); color: var(--brand); border-color: var(--white); }
.btn-white:hover { background: var(--bg2); color: var(--brand-dk); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--brand); }
.btn-whatsapp { background: var(--wa); color: var(--white); border-color: var(--wa); }
.btn-whatsapp:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }
.btn-wa-dark { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-wa-dark:hover { background: var(--wa); border-color: var(--wa); }
.full-btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--brand-dk);
  color: rgba(255,255,255,0.8);
  font-size: 13px; padding: 9px 0;
}
.topbar-inner { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-inner span { display: flex; align-items: center; gap: 7px; }
.topbar-inner i { color: var(--gold); font-size: 12px; }
.topbar-right { margin-left: auto; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,74,173,0.08);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 14px 0;
}
.logo-link { flex-shrink: 0; }
.logo { height: 48px; width: auto; object-fit: contain; }
.header-nav { display: flex; gap: 4px; align-items: center; }
.header-nav a {
  font-weight: 500; color: var(--text); font-size: 14px;
  padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
  transition: all var(--tr);
}
.header-nav a i { color: var(--brand); font-size: 13px; }
.header-nav a:hover { background: var(--brand-xlt); color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-wa { font-size: 13px; padding: 9px 18px; }
.header-wa i { font-size: 15px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 6px; border-radius: 8px;
}
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  color: var(--white); padding: 100px 0 165px;
  text-align: center;
  background: linear-gradient(-45deg, #002a6b, #004aad, #0062d6, #003585, #001f52, #004aad);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.orb-1 {
  width: 540px; height: 540px; top: -180px; left: -120px;
  background: radial-gradient(circle, #1a8cff, transparent 70%);
  animation: orbFloat1 14s ease-in-out infinite;
}
.orb-2 {
  width: 420px; height: 420px; bottom: -80px; right: -80px;
  background: radial-gradient(circle, #0047a8, transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px; top: 30%; left: 55%;
  background: radial-gradient(circle, #4d94ff, transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}
.orb-4 {
  width: 220px; height: 220px; top: 10%; right: 22%;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  opacity: 0.22; animation: orbFloat1 8s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,40px) scale(1.1); }
  66%     { transform: translate(-30px,70px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-80px,-50px) scale(1.15); }
  70%     { transform: translate(40px,-30px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-60px,50px); }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.2); animation: particleRise linear infinite; }
.p1 { width:6px;  height:6px;  left:10%; bottom:-10px; animation-duration:8s;  animation-delay:0s; }
.p2 { width:10px; height:10px; left:25%; bottom:-10px; animation-duration:12s; animation-delay:2s; }
.p3 { width:4px;  height:4px;  left:40%; bottom:-10px; animation-duration:9s;  animation-delay:1s; }
.p4 { width:8px;  height:8px;  left:55%; bottom:-10px; animation-duration:14s; animation-delay:3s; }
.p5 { width:5px;  height:5px;  left:68%; bottom:-10px; animation-duration:11s; animation-delay:0.5s; }
.p6 { width:12px; height:12px; left:78%; bottom:-10px; animation-duration:7s;  animation-delay:4s; }
.p7 { width:4px;  height:4px;  left:88%; bottom:-10px; animation-duration:13s; animation-delay:1.5s; }
.p8 { width:7px;  height:7px;  left:5%;  bottom:-10px; animation-duration:10s; animation-delay:6s; }
@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-110vh) translateX(40px) scale(0.5); opacity: 0; }
}

/* Hero Content */
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #c7dcff;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  margin-bottom: 28px; backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}
.hero-pill i { color: var(--gold); animation: boltPulse 1.5s ease-in-out infinite; }
@keyframes boltPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
  animation: fadeInUp 0.9s ease 0.15s both;
}
.highlight {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s linear infinite;
}
@keyframes textShimmer { to { background-position: 200% center; } }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  margin: 0 auto 36px; max-width: 640px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; animation: fadeInUp 0.9s ease 0.45s both; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; animation: fadeInUp 0.9s ease 0.6s both; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  padding: 7px 16px; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(8px); transition: all var(--tr);
}
.badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.badge i { color: var(--gold); font-size: 12px; }

/* Triple Wave Divider */
.hero-waves {
  position: absolute; bottom: -2px; left: 0; right: 0;
  width: 100%; height: 120px; z-index: 2;
}
.wave { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; animation: waveMove linear infinite; }
.wave path { fill: var(--bg); }
.wave-1 { opacity: 1;   animation-duration: 8s;  animation-delay: 0s; }
.wave-2 { opacity: 0.5; animation-duration: 12s; animation-delay: -4s; }
.wave-2 path { fill: #dce8f8; }
.wave-3 { opacity: 0.3; animation-duration: 6s;  animation-delay: -2s; }
.wave-3 path { fill: var(--white); }
@keyframes waveMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(24px); }  to { opacity:1; transform:translateY(0); } }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: 0 4px 16px rgba(0,74,173,0.07);
  position: relative; z-index: 3;
}
.stats-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.stat-item { flex: 1 1 160px; text-align: center; padding: 10px 20px; }
.stat-num  { font-size: 2.4rem; font-weight: 800; color: var(--brand); letter-spacing: -0.03em; line-height: 1; }
.stat-plus { font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.stat-label { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ── SECTION COMMON ──────────────────────────────────────── */
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-xlt); color: var(--brand);
  padding: 7px 18px; border-radius: 50px; font-size: 13px;
  font-weight: 700; margin-bottom: 14px; border: 1px solid var(--border);
}
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 600px; }

/* ── CALCULATOR SECTION ──────────────────────────────────── */
.calculator-section { padding: 90px 0; background: var(--bg); }

.progress-steps { display: flex; align-items: center; margin-bottom: 44px; overflow-x: auto; padding-bottom: 4px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  color: var(--muted); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.step.active .step-num { border-color: var(--brand); background: var(--brand); color: var(--white); }
.step-label { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.step.active .step-label { color: var(--brand); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); min-width: 30px; }

.calc-wrapper { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.calc-form { display: flex; flex-direction: column; gap: 36px; }

/* Group Card */
.calc-group {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: box-shadow var(--tr);
}
.calc-group:hover { box-shadow: var(--shadow-md); }
.group-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--bg2);
}
.group-title i { color: var(--brand); font-size: 1rem; }
.step-badge {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  font-size: 12px; font-weight: 800; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Option Cards */
.option-cards { display: flex; flex-wrap: wrap; gap: 14px; }
.option-card {
  flex: 1 1 170px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 16px; cursor: pointer; transition: all var(--tr);
  background: var(--bg); display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
}
.option-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.card-check {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--border); color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: all var(--tr); font-weight: 700;
}
.option-card:hover { border-color: var(--brand-lt); background: var(--white); box-shadow: var(--shadow); transform: translateY(-2px); }
.option-card.active { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 3px rgba(0,74,173,0.12); }
.option-card.active .card-check { background: var(--brand); color: var(--white); }
.card-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-xlt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--brand); margin-bottom: 4px;
  transition: all var(--tr);
}
.option-card.active .card-icon-wrap { background: rgba(0,74,173,0.15); }
.card-title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.card-desc  { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.card-price { font-size: 0.83rem; font-weight: 700; color: var(--brand); margin-top: 2px; }

/* Sliders */
.slider-block { margin-bottom: 24px; }
.slider-block:last-child { margin-bottom: 0; }
.slider-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 10px; }
.slider-top label { font-size: 0.92rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 7px; }
.slider-top label i { color: var(--brand); }
.slider-val-pill {
  background: var(--brand); color: var(--white);
  padding: 4px 14px; border-radius: 50px; font-size: 13px; font-weight: 600;
  flex-shrink: 0; white-space: nowrap;
}
.slider-val-pill strong { font-weight: 800; }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 7px; border-radius: 4px;
  background: linear-gradient(to right, var(--brand) 0%, var(--border) 0%);
  outline: none; cursor: pointer; transition: background var(--tr);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--brand);
  cursor: pointer; box-shadow: 0 2px 10px rgba(0,74,173,0.35);
  transition: transform var(--tr), box-shadow var(--tr);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 4px 16px rgba(0,74,173,0.5); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--brand); cursor: pointer;
}
.slider-meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--muted); }
.slider-hint { display: flex; align-items: center; gap: 4px; color: var(--brand); font-weight: 600; }

/* Addon Grid */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 14px; }
.addon-card {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 14px; cursor: pointer; transition: all var(--tr);
  background: var(--bg); display: flex; flex-direction: column;
  gap: 6px; align-items: flex-start; position: relative; overflow: hidden;
}
.addon-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.addon-check {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border); color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; transition: all var(--tr);
}
.addon-card:hover { border-color: var(--brand-lt); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.addon-card.selected { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 3px rgba(0,74,173,0.1); }
.addon-card.selected .addon-check { background: var(--brand); color: var(--white); }
.addon-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-xlt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--brand); margin-bottom: 2px;
  transition: all var(--tr);
}
.addon-card.selected .addon-icon-wrap { background: rgba(0,74,173,0.15); }
.addon-title { font-size: 0.83rem; font-weight: 700; color: var(--text); }
.addon-price { font-size: 0.78rem; color: var(--brand); font-weight: 700; }

/* ── SUMMARY PANEL ───────────────────────────────────────── */
.summary-sticky { position: sticky; top: 92px; }
.summary-header {
  background: linear-gradient(135deg, var(--brand-dk) 0%, var(--brand) 100%);
  color: var(--white); padding: 22px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; gap: 16px;
}
.summary-logo { height: 40px; width: auto; border-radius: 8px; background: white; padding: 4px; flex-shrink: 0; }
.summary-header h3 { font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.summary-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── CURRENCY BAR ────────────────────────────────────────── */
.currency-bar {
  background: var(--bg2); border: 1px solid var(--border); border-top: none;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 10px;
}
.currency-label {
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 6px;
}
.currency-label i { color: var(--brand); }
.currency-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.cur-pill {
  padding: 5px 13px; border-radius: 50px; font-size: 12px; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); cursor: pointer; transition: all var(--tr);
  font-family: 'Poppins', sans-serif; line-height: 1.4;
  white-space: nowrap;
}
.cur-pill:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-xlt); }
.cur-pill.active { background: var(--brand); border-color: var(--brand); color: var(--white); box-shadow: 0 3px 10px rgba(0,74,173,0.3); }
.currency-rate-info {
  font-size: 11px; color: var(--muted); display: flex;
  align-items: center; gap: 6px;
}
.currency-rate-info i { color: var(--brand); font-size: 11px; }
#rateSpinner { animation: spin 1s linear infinite; display: none; }
#rateSpinner.spinning { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.summary-body { background: var(--white); padding: 22px 24px; border: 1px solid var(--border); border-top: none; }

.summary-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--bg2); gap: 8px;
}
.summary-row:last-of-type { border-bottom: none; }
.sr-label { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 2px; flex: 1; }
.sr-label i { color: var(--brand); font-size: 12px; width: 14px; }
.sr-val    { font-size: 0.82rem; color: var(--text); text-align: center; flex: 1; }
.sr-price  { font-size: 0.9rem; font-weight: 700; color: var(--text); text-align: right; white-space: nowrap; }

.summary-total {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--brand-xlt);
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; margin-top: 14px;
  font-weight: 800; font-size: 1rem; color: var(--text);
}
.summary-total i { color: var(--brand); margin-right: 6px; }
#s-total { color: var(--brand); font-size: 1.5rem; letter-spacing: -0.02em; }

.summary-perks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px;
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border);
}
.summary-perks span { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); }
.summary-perks i { color: var(--success); font-size: 11px; }

.summary-form {
  background: var(--bg); padding: 22px 24px;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.summary-form h4 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 16px;
  color: var(--text); display: flex; align-items: center; gap: 8px;
}
.summary-form h4 i { color: var(--brand); }
.form-row { margin-bottom: 10px; }
.form-icon-row { position: relative; }
.form-icon-row .fi {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 13px; pointer-events: none; z-index: 1;
}
.form-icon-row input { padding-left: 38px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 11px 35px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color var(--tr), box-shadow var(--tr); outline: none;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,74,173,0.12);
}
.form-row textarea { resize: vertical; min-height: 72px; padding: 11px 14px; }
.form-error {
  display: flex; align-items: center; gap: 7px;
  color: #dc2626; font-size: 0.875rem; font-weight: 600;
  margin-top: 10px; padding: 10px 14px; background: rgba(220,38,38,0.06);
  border-radius: 8px; border: 1px solid rgba(220,38,38,0.2);
}
.form-error[hidden],
.thankyou-panel[hidden] {
  display: none !important;
}

/* ── THANK YOU PANEL ─────────────────────────────────────── */
.thankyou-panel {
  padding: 28px 20px 20px;
  text-align: center;
  animation: tyFadeIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes tyFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.ty-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #004aad, #1a62c4);
  color: var(--white); font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(0,74,173,0.35);
  animation: tyBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}
@keyframes tyBounce {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ty-title {
  font-size: 1.2rem; font-weight: 800; color: var(--text);
  margin-bottom: 10px; line-height: 1.3;
}
.ty-title span { color: var(--brand); }
.ty-msg {
  font-size: 0.875rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 20px;
}
.ty-msg strong { color: var(--brand); }
.ty-summary {
  background: var(--brand-xlt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  margin-bottom: 18px; text-align: left;
}
.ty-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; color: var(--muted); padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.ty-row:last-child { border-bottom: none; }
.ty-row i { color: var(--brand); font-size: 12px; width: 14px; flex-shrink: 0; }
.ty-total { font-weight: 700; color: var(--text) !important; }
.ty-total strong { color: var(--brand); font-size: 1rem; }
.ty-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-outline-blue {
  background: transparent; color: var(--brand);
  border: 2px solid var(--brand); justify-content: center;
}
.btn-outline-blue:hover { background: var(--brand-xlt); }
  margin-top: 10px; padding: 10px 14px; background: rgba(220,38,38,0.06);
  border-radius: 8px; border: 1px solid rgba(220,38,38,0.2);
}

/* ── FEATURES ────────────────────────────────────────────── */
.features-section { padding: 90px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  transition: all var(--tr); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--border); transition: background var(--tr);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.feature-card:hover::before { background: var(--brand); }
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-xlt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brand); margin-bottom: 16px;
  transition: all var(--tr);
}
.feature-card:hover .feature-icon-wrap { background: var(--brand); color: var(--white); transform: scale(1.08); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-section { padding: 90px 0; background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: all var(--tr); display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--brand); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--brand-xlt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--brand); margin-bottom: 14px;
  transition: all var(--tr);
}
.service-card:hover .service-icon-wrap { background: var(--brand); color: var(--white); transform: scale(1.08); }
.service-num {
  position: absolute; top: 14px; right: 20px;
  font-size: 3.8rem; font-weight: 800;
  color: rgba(0,74,173,0.06); line-height: 1; user-select: none;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--brand);
  margin-top: auto;
}
.service-link i { font-size: 11px; transition: transform var(--tr); }
.service-link:hover { color: var(--brand-dk); }
.service-link:hover i { transform: translateX(4px); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dk) 0%, var(--brand) 50%, var(--brand-lt) 100%);
  padding: 70px 0; color: var(--white); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-text p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { padding: 90px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; max-width: 780px; margin: 0 auto; }
.contact-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 22px; text-align: center;
  transition: all var(--tr);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand); transform: translateY(-4px); }
.contact-icon-wrap {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--brand-xlt); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brand); margin: 0 auto 16px;
  transition: all var(--tr);
}
.contact-card:hover .contact-icon-wrap { background: var(--brand); color: var(--white); transform: scale(1.1); }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.contact-card a { color: var(--brand); font-weight: 600; font-size: 0.9rem; }
.contact-card a:hover { color: var(--brand-dk); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--brand-dk); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0 40px; }
.footer-logo { height: 44px; width: auto; border-radius: 8px; background: white; padding: 4px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 14px;
  transition: all var(--tr);
}
.footer-socials a:hover { background: var(--brand-lt); border-color: var(--brand-lt); color: var(--white); transform: translateY(-3px); }
.footer-col h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.875rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.footer-col ul li i { color: var(--gold); font-size: 11px; width: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.875rem; display: flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a i { color: var(--gold); font-size: 11px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--tr); text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); color: var(--white); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .calc-wrapper { grid-template-columns: 1fr 360px; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .calc-wrapper { grid-template-columns: 1fr; }
  .summary-sticky { position: static; }
  .header-nav {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 12px 16px;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 999;
  }
  .header-nav.open { display: flex; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 680px) {
 .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px;
}
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .features-grid, .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badges { gap: 7px; }
  .badge { font-size: 12px; padding: 5px 12px; }
  .option-cards { flex-direction: column; }
  .calc-group { padding: 20px 18px; }
  .progress-steps { display: none; }
  .topbar { display: none; }
  h2 { font-size: 1.5rem; }
  .summary-perks { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .wave, .orb, .particle, .hero { animation: none !important; }
  .hero { background: var(--brand); }
}

@media screen and (max-width: 768px) {
.header-wa {
    display: none;
}
.option-card.active .card-icon-wrap {
    background: unset;
}
.header-inner {
    padding: 14px 14px;
}
}
