/* ============= HEADER ============= */
.hdr {
  position: sticky; top: 0; z-index: 50;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
  border-bottom: 1px solid transparent;
}
.hdr.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.hdr-row {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 24px;
}
.hdr-logo { display: flex; align-items: center; }
.hdr-nav {
  display: flex; gap: 28px; align-items: center;
  margin-right: 12px;
}
.hdr-link {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  transition: color 120ms ease;
  position: relative; padding: 6px 0;
}
.hdr-link:hover { color: var(--yellow); }
.hdr-link.is-active { color: var(--yellow); }
.hdr-link.is-active::after {
  content: ''; position: absolute; bottom: -2px; right: 0; left: 0;
  height: 2px; background: var(--yellow); border-radius: 2px;
}
.hdr-cta { margin-right: auto; flex-shrink: 0; }
@media (max-width: 1100px) {
  .hdr-nav { gap: 18px; }
  .hdr-link { font-size: 14px; }
}
.hdr-burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.hdr-burger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
}
.hdr-mobile {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.hdr-mobile a {
  padding: 14px 12px; border-radius: 10px;
  font-weight: 600;
}
.hdr-mobile a:hover { background: var(--bg-2); }
@media (max-width: 900px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .hdr-mobile { display: flex; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(1200px 600px at 70% 0%, rgba(255, 214, 10, 0.12), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(255, 214, 10, 0.06), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 214, 10, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 10, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero-bolt-bg {
  position: absolute;
  top: -40px; left: -60px;
  width: 520px; height: 520px;
  pointer-events: none;
  animation: bolt-pulse 4s ease-in-out infinite;
}
@keyframes bolt-pulse {
  0%, 100% { opacity: 1; transform: rotate(-4deg) scale(1); }
  50% { opacity: 0.7; transform: rotate(-2deg) scale(1.04); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.hero-title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero-title-accent {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--yellow);
  position: relative;
}
.title-bolt {
  width: 0.55em; height: 0.7em;
  filter: drop-shadow(0 0 30px rgba(255, 214, 10, 0.6));
  animation: bolt-tilt 2.4s ease-in-out infinite;
}
@keyframes bolt-tilt {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(6deg); }
}
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.hero-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-3);
  font-size: 15px;
  margin-top: 8px;
}
.hero-phone .num { color: var(--ink); font-weight: 700; letter-spacing: 0.04em; }
.hero-phone-sep {
  width: 4px; height: 4px; border-radius: 50%; background: var(--ink-4);
}

.hero-photo-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.hero-art {
  position: relative;
  width: 100%; max-width: 560px;
  aspect-ratio: 1.05;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% 20%, rgba(255,214,10,0.18), transparent 55%),
    radial-gradient(100% 80% at 20% 90%, rgba(255,214,10,0.10), transparent 50%),
    linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  border: 1px solid rgba(255,214,10,0.18);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-art-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-art-route {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-art-mark {
  position: absolute;
  width: 44%;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  filter: drop-shadow(0 24px 40px rgba(255,214,10,0.35));
  animation: bolt-bob 3.2s ease-in-out infinite;
}
@keyframes bolt-bob {
  0%, 100% { transform: translate(-50%, -52%) rotate(0deg); }
  50% { transform: translate(-50%, -54%) rotate(-2deg); }
}
.hero-art-pin {
  position: absolute;
  top: 16%; right: 18%;
  width: 38px; height: 38px;
  background: #FFD60A;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(255,214,10,0.45);
  animation: pin-pop 2.4s ease-in-out infinite;
}
.hero-art-pin svg { width: 22px; height: 22px; }
@keyframes pin-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
}
/* legacy — unused but kept harmless */
.hero-photo {
  position: relative;
  width: 100%; max-width: 560px;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--yellow-border);
  background: #000;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.95) contrast(1.05);
}
.hero-photo-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(255, 214, 10, 0.18), transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.hero-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.7);
  animation: float 4s ease-in-out infinite;
}
.hero-chip-eta { top: 24px; right: 24px; color: var(--yellow); }
.hero-chip-price {
  bottom: 24px; left: 24px;
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  animation-delay: -2s;
}
.hero-chip-bolt {
  display:flex; align-items:center; justify-content:center;
  width: 32px; height: 32px;
  background: #000;
  border-radius: 8px;
}
.hero-chip-bolt svg { width: 16px; height: 22px; }
.hero-chip-k { font-size: 11px; opacity: 0.8; font-weight: 600; }
.hero-chip-v { font-size: 18px; font-weight: 800; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Stats strip */
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 16px;
  padding: 28px 32px;
  border: 1px solid var(--yellow-border);
  background: linear-gradient(180deg, rgba(255,214,10,0.04), transparent);
  border-radius: var(--r-lg);
}
.hero-stats-div {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.stat { text-align: center; }
.stat-num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--ink-3);
  margin-top: 6px; font-weight: 600;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 20px; }
  .hero-stats-div { display: none; }
  .hero-stats > .stat { padding: 12px 0; }
}

/* ============= SERVICES ============= */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  padding: 28px 24px;
  cursor: pointer;
}
.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--yellow); color: #000;
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.service-icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 16px;
  color: var(--yellow);
}
.service-card:hover .service-icon { background: var(--yellow); color: #000; }
.service-title {
  font-size: 22px; font-weight: 800; line-height: 1.3;
}
.service-desc { color: var(--ink-3); font-size: 15px; line-height: 1.6; }
.service-link {
  margin-top: auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--yellow);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: gap 200ms ease;
}
.service-card:hover .service-link { gap: 14px; }

/* ============= PRICING ============= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  padding: 32px 28px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 200ms ease;
}
.price-card.is-active {
  border-color: var(--yellow);
  background: linear-gradient(180deg, rgba(255,214,10,0.08), rgba(255,214,10,0.02));
  box-shadow: 0 0 0 1px var(--yellow), 0 30px 60px -20px rgba(255,214,10,0.4);
  transform: translateY(-4px);
}
.price-badge {
  position: absolute; top: -12px; right: 50%; transform: translateX(50%);
  background: var(--yellow); color: #000;
  padding: 5px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 800;
}
.price-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto;
  border: 1px solid var(--yellow-border);
  border-radius: 50%;
  color: var(--yellow);
}
.price-label { font-size: 18px; font-weight: 800; margin-top: 4px; }
.price-detail { color: var(--ink-3); font-size: 14px; }
.price-amount {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin: 14px 0 8px;
}
.price-num {
  font-size: 64px; font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-cur { font-size: 18px; font-weight: 700; color: var(--ink-2); }
.price-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; color: var(--ink-2);
  padding: 6px 0;
}
.price-row svg { color: var(--yellow); }

.calc {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.calc-head {
  padding: 28px 32px 0;
  text-align: center;
}
.calc-head h3 {
  font-size: 26px; font-weight: 800;
}
.calc-head p { color: var(--ink-3); margin-top: 6px; }
.calc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  padding: 24px 32px;
}
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; padding: 24px; } }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label {
  font-size: 13px; font-weight: 600; color: var(--ink-3);
}
.calc-field select {
  appearance: none;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 40px;
}
.calc-field select:hover, .calc-field select:focus {
  border-color: var(--yellow); outline: none;
}
.calc-result {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(90deg, rgba(255,214,10,0.06), rgba(255,214,10,0));
  border-top: 1px solid var(--yellow-border);
  flex-wrap: wrap;
}
.calc-result-k { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.calc-result-d { font-size: 17px; font-weight: 700; margin-top: 2px; }
.calc-result-amt {
  display: flex; align-items: baseline; gap: 8px;
  margin-right: auto;
}
.calc-result-amt .num {
  font-size: 48px; font-weight: 900; color: var(--yellow); line-height: 1;
}
.calc-result-amt span:last-child { font-size: 16px; color: var(--ink-2); font-weight: 700; }

/* ============= COVERAGE ============= */
.cov-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 28px 32px;
  margin: 0 auto 40px;
  max-width: 720px;
  border: 1px solid var(--yellow-border);
  background: var(--bg-2);
  border-radius: var(--r-xl);
}
.cov-sum-item { text-align: center; }
.cov-sum-num {
  font-size: 36px; font-weight: 900; color: var(--yellow);
  letter-spacing: -0.02em; line-height: 1;
  white-space: nowrap;
}
.cov-sum-lbl { font-size: 13px; color: var(--ink-2); margin-top: 6px; font-weight: 600; }
.cov-sum-divider { width: 1px; height: 40px; background: var(--line); }

.cov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 980px) { .cov-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cov-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .cov-grid { grid-template-columns: 1fr; } }

.cov-card {
  position: relative; display: flex; flex-direction: column;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.cov-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  background: rgba(255,214,10,0.04);
}
.cov-card-primary {
  border-color: var(--yellow);
  background: linear-gradient(180deg, rgba(255,214,10,0.08), rgba(255,214,10,0.02));
}
.cov-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cov-card-icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(255,214,10,0.12); border-radius: 10px; color: var(--yellow);
}
.cov-card-price {
  display: inline-flex; align-items: baseline; gap: 3px;
  padding: 5px 10px;
  background: rgba(255,214,10,0.12);
  border-radius: 999px;
  color: var(--yellow);
  font-weight: 800;
}
.cov-card-price .num { font-size: 14px; }
.cov-card-price small { font-size: 10px; font-weight: 700; opacity: 0.75; }

.cov-card-name {
  font-size: 22px; font-weight: 900; color: var(--ink);
  letter-spacing: -0.01em;
}
.cov-card-cap { font-size: 12px; color: var(--ink-3); margin-top: 2px; font-weight: 600; }
.cov-card-note {
  font-size: 13px; color: var(--ink-2); line-height: 1.6;
  margin-top: 12px; flex: 1;
}
.cov-card-cta {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13px; font-weight: 700; color: var(--yellow);
}

.cov-footnote {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
}
.cov-footnote-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255,214,10,0.12); border-radius: 12px; color: var(--yellow);
}
.cov-footnote h4 { font-size: 18px; font-weight: 900; color: var(--ink); }
.cov-footnote p { font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.cov-footnote > div { flex: 1; }
@media (max-width: 600px) {
  .cov-footnote { flex-direction: column; align-items: flex-start; }
  .cov-footnote .btn { width: 100%; justify-content: center; }
}

/* legacy detail panel - kept hidden but available */
.coverage-detail-legacy { display: none; }
.cov-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--yellow);
  color: #000;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 800;
}
.cov-title {
  font-size: 36px; font-weight: 900; margin-top: 16px;
  letter-spacing: -0.02em;
}
.cov-desc { color: var(--ink-2); margin-top: 10px; line-height: 1.7; }
.cov-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 24px 0;
}
.cov-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}
.cov-stat-k { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.cov-stat-v {
  font-size: 22px; font-weight: 900; color: var(--yellow);
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.cov-stat-v span { font-size: 13px; color: var(--ink-2); font-weight: 700; margin-right: 4px; }
.cov-cta { width: 100%; justify-content: center; }

/* ============= HOW IT WORKS ============= */
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: start;
}
@media (max-width: 920px) { .how-grid { grid-template-columns: 1fr; } }
.how-steps { display: flex; flex-direction: column; gap: 12px; }
.how-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px; align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--r-md);
  transition: all 200ms ease;
}
.how-step.is-active {
  border-color: var(--yellow);
  background: linear-gradient(90deg, rgba(255,214,10,0.06), transparent);
}
.how-step-num {
  font-size: 28px; font-weight: 900; color: var(--ink-4);
  letter-spacing: -0.02em;
}
.how-step.is-active .how-step-num { color: var(--yellow); }
.how-step-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3);
  border-radius: 12px;
  color: var(--ink-2);
}
.how-step.is-active .how-step-icon { background: var(--yellow); color: #000; }
.how-step h3 { font-size: 17px; font-weight: 800; }
.how-step p { color: var(--ink-3); font-size: 14px; margin-top: 4px; }

.how-preview { display: flex; flex-direction: column; gap: 16px; }
.wa-phone {
  background: #ECE5DD;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #1c1c1c;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  position: relative;
}
.wa-phone-notch { display: none; }
.wa-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #075E54;
  color: #fff;
}
.wa-avatar {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wa-name { font-size: 14px; font-weight: 700; }
.wa-status { font-size: 11px; opacity: 0.85; display: flex; align-items: center; gap: 6px; }
.wa-dot { width: 6px; height: 6px; background: #25D366; border-radius: 50%; }
.wa-call { margin-right: auto; opacity: 0.85; }
.wa-body {
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 280px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.01) 20px, rgba(0,0,0,0.01) 40px),
    #ECE5DD;
}
.wa-bubble {
  max-width: 80%;
  padding: 10px 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  color: #1c1c1c;
  position: relative;
  line-height: 1.5;
  word-break: break-word;
}
.wa-bubble pre {
  font: inherit;
  white-space: pre-wrap;
  margin: 0;
}
.wa-bubble-out {
  background: #DCF8C6;
  align-self: flex-start;
  border-top-right-radius: 2px;
}
.wa-bubble-in {
  background: #fff;
  align-self: flex-end;
  border-top-left-radius: 2px;
}
.wa-time {
  position: absolute; bottom: 4px; left: 8px;
  font-size: 10px; color: #5a8a6f;
  direction: ltr; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.wa-input {
  display: flex; gap: 8px; padding: 10px 12px;
  background: #f4ede4;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-input input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #fff;
  font-size: 14px;
  outline: none;
  color: #1c1c1c;
}
.wa-input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #052e1a;
  display: flex; align-items: center; justify-content: center;
}
.how-tweak {
  display: grid; gap: 10px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.how-tweak-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: center;
}
.how-tweak-row label {
  font-size: 13px; color: var(--ink-3); font-weight: 600;
}
.how-tweak-row input {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  font-weight: 600;
}
.how-tweak-row input:focus { border-color: var(--yellow); }

/* ============= WHY US ============= */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px;
}
.why-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--yellow);
  color: #000;
  border-radius: 14px;
}
.why-card h3 { font-size: 19px; font-weight: 800; }
.why-card p { color: var(--ink-3); line-height: 1.6; }

/* ============= TESTIMONIALS ============= */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 920px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.testi-stars { display: flex; gap: 2px; color: var(--yellow); }
.testi-text { color: var(--ink-2); line-height: 1.7; font-size: 15px; flex: 1; }
.testi-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--yellow);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-area { font-size: 12px; color: var(--ink-3); }

/* ============= FAQ ============= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.faq-item.is-open { border-color: var(--yellow-border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-size: 17px; font-weight: 700;
  text-align: right;
}
.faq-q:hover { color: var(--yellow); }
.faq-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--yellow);
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon { background: var(--yellow); color: #000; border-color: var(--yellow); }
.faq-a {
  padding: 0 24px 24px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ============= CTA BAND ============= */
.cta-band { padding: 64px 0; }
.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: #000;
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
}
.cta-bolt {
  position: absolute; top: -40px; left: -60px;
  width: 360px; height: 360px;
}
.cta-card h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-card p {
  font-size: 18px;
  margin-top: 12px;
  opacity: 0.85;
  position: relative;
}
.cta-actions {
  margin-top: 28px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: #000;
  color: var(--yellow);
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 17px;
  transition: transform 120ms;
}
.btn-cta-primary:hover { transform: translateY(-2px); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border: 1.5px solid #000;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 17px;
}

/* ============= FOOTER ============= */
.ftr {
  padding: 64px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.ftr-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .ftr-top { grid-template-columns: 1fr; }
}
.ftr-brand p { color: var(--ink-3); margin-top: 16px; line-height: 1.7; max-width: 320px; }
.ftr-social {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.ftr-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink-2);
  transition: all 200ms ease;
}
.ftr-social a:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.ftr-col h4 {
  font-size: 14px; font-weight: 800;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.ftr-col a {
  display: block;
  padding: 6px 0;
  color: var(--ink-2);
  font-size: 14px;
}
.ftr-col a:hover { color: var(--yellow); }
.ftr-contact {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 14px; color: var(--ink-2);
}
.ftr-contact svg { color: var(--yellow); }
.ftr-handles {
  margin-top: 12px;
  font-size: 13px; color: var(--ink-3);
}
.ftr-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 13px; color: var(--ink-3);
  flex-wrap: wrap; gap: 12px;
}
.ftr-bot a { color: var(--ink-3); }
.ftr-bot a:hover { color: var(--yellow); }
.ftr-dot { margin: 0 8px; opacity: 0.5; }

/* ============= CAPTAINS PAGE ============= */
.cap-hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 500px at 50% 0%, rgba(255, 214, 10, 0.12), transparent 60%);
}
.cap-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center;
}
@media (max-width: 920px) { .cap-hero-grid { grid-template-columns: 1fr; } }
.cap-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cap-hero p {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
  margin-top: 18px;
}
.cap-perks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 28px;
}
.cap-perk {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--yellow-border);
  background: var(--yellow-bg);
  border-radius: 14px;
}
.cap-perk-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: #000;
  border-radius: 10px;
}
.cap-perk-k { font-size: 15px; font-weight: 800; }
.cap-perk-v { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

.cap-form {
  background: var(--bg-2);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-xl);
  padding: 32px;
}
.cap-form h3 {
  font-size: 24px; font-weight: 900;
  letter-spacing: -0.01em;
}
.cap-form-sub { color: var(--ink-3); margin-top: 6px; font-size: 14px; }
.cap-form-grid {
  display: grid; gap: 14px;
  margin-top: 24px;
}
.cap-row { display: grid; gap: 6px; }
.cap-row label {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.cap-row input, .cap-row select {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  color: var(--ink);
  outline: none;
  font-weight: 600;
}
.cap-row input:focus, .cap-row select:focus { border-color: var(--yellow); }
.cap-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cap-submit {
  margin-top: 8px;
  background: var(--yellow);
  color: #000;
  padding: 16px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
}
.cap-submit:hover { background: #fff; }
.cap-success {
  padding: 28px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37,211,102,0));
  border: 1px solid #25D366;
  border-radius: 14px;
  text-align: center;
}
.cap-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #052e1a;
  border-radius: 50%;
}
.cap-success h4 { font-size: 22px; font-weight: 900; }
.cap-success p { color: var(--ink-2); margin-top: 8px; }

.cap-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 64px 0 0;
}
@media (max-width: 720px) { .cap-numbers { grid-template-columns: repeat(2, 1fr); } }
.cap-num-card {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
}
.cap-num-v {
  font-size: 36px; font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.cap-num-k { font-size: 13px; color: var(--ink-3); margin-top: 4px; font-weight: 600; }
