/* ============================================================
   IntérpreteEnTampa.com
   Design System: Deep Navy + Gold | Mobile-First | Conversion-Optimized
   ============================================================ */

:root {
  --navy:       #131F35;
  --navy-2:     #192845;
  --navy-3:     #1F3155;
  --navy-card:  #162242;
  --gold:       #C4A24A;
  --gold-light: #D4B45E;
  --gold-dim:   rgba(196,162,74,0.12);
  --gold-border:rgba(196,162,74,0.24);
  --white:      #FFFFFF;
  --text-main:  #D8E8F4;
  --text-muted: #7B93B0;
  --green:      #27AE60;
  --red:        #E74C3C;
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.5);
  --shadow-card:0 4px 24px rgba(0,0,0,0.35);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: all 0.28s ease;
  --max-w:      1140px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--navy);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── LANGUAGE TOGGLE ── */
body.lang-es .t-en { display: none !important; }
body.lang-en .t-es { display: none !important; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-2);
  border-bottom: 1px solid var(--gold-border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.topbar-phone:hover { color: var(--gold); }
.lang-toggle {
  display: flex;
  background: var(--navy-3);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-radius: 18px;
}

/* ── HERO ── */
.hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,162,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media(min-width:900px){
  .hero .container { grid-template-columns: 1fr 320px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
}

/* ── HERO CONTACT BOX ── */
.hero-contact-box {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px;
}
.hcb-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hcb-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hcb-radio { cursor: pointer; }
.hcb-radio input { display: none; }
.hcb-radio span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy-3);
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.hcb-radio input:checked + span {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}
.hcb-fields { display: flex; flex-direction: column; gap: 9px; }
.hcb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
@media(max-width:560px){ .hcb-row { grid-template-columns: 1fr; } }
.hcb-input {
  background: var(--navy-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  padding: 10px 13px;
  width: 100%;
  font-family: inherit;
  transition: var(--transition);
}
.hcb-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.hcb-input::placeholder { color: var(--text-muted); }
.hcb-textarea { resize: none; min-height: 72px; }
.hcb-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  margin-top: 4px;
  font-family: inherit;
}
.hcb-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hcb-success {
  display: none;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--green);
  text-align: center;
  margin-top: 8px;
}
.hcb-success.show { display: block; }

/* ── HERO PHOTO ── */
.hero-photo-wrap {
  display: flex;
  justify-content: center;
}
.hero-photo-wrap img {
  width: 260px;
  height: 310px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 2px solid var(--gold-border);
  box-shadow: 0 0 0 5px var(--gold-dim), var(--shadow-lg);
}
@media(min-width:900px){
  .hero-photo-wrap img { width: 300px; height: 360px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,162,74,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-lg { padding: 17px 36px; font-size: 1.08rem; }
.btn-full { width: 100%; }

/* ── SECTION TITLES ── */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.section-header { margin-bottom: 36px; }

/* ── SERVICES SECTION ── */
.services { padding: 56px 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:640px){ .services-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:960px){ .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(196,162,74,0.18);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-card);
}
.service-card.featured::before { opacity: 1; }
.service-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-icon { font-size: 2.2rem; }
.service-name { font-size: 1.2rem; font-weight: 800; color: var(--white); line-height: 1.25; }
.service-name-en { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.service-desc { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.service-price { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.service-price-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 6px;
  transition: var(--transition);
}
.service-card:hover .service-cta {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── REFERRAL CARD ── */
.referral-card {
  background: var(--navy-2);
  border: 1px dashed var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.referral-card:hover { border-color: var(--gold); background: var(--navy-3); }
.referral-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.referral-title { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.referral-sub { font-size: 0.85rem; color: var(--text-muted); }
.referral-link { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* ── CREDENTIALS SECTION ── */
.credentials { padding: 52px 0; background: var(--navy-2); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media(min-width:640px){ .credentials-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:900px){ .credentials-grid { grid-template-columns: repeat(5, 1fr); } }
.cred-item {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.cred-icon { font-size: 1.6rem; }
.cred-title { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); line-height: 1.3; }
.cred-sub { font-size: 0.7rem; color: var(--text-muted); }

/* ── ABOUT STRIP ── */
.about-strip { padding: 52px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media(min-width:800px){ .about-inner { grid-template-columns: auto 1fr; } }
.about-photo {
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  object-fit: cover;
  object-position: top center;
  margin: 0 auto;
}
@media(min-width:800px){ .about-photo { margin: 0; } }
.about-text h2 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.about-text h2 em { font-style: normal; color: var(--gold); }
.about-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }

/* ── PAYMENT SECTION ── */
.payment-section { padding: 44px 0; }
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pay-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-2);
  border-top: 1px solid var(--gold-border);
  padding: 36px 0 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
@media(min-width:700px){
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-brand { font-size: 0.85rem; color: var(--text-muted); }
.footer-brand strong { color: var(--gold); display: block; font-size: 1rem; margin-bottom: 4px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-border);
}

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.05); color: #fff; box-shadow: 0 6px 26px rgba(37,211,102,0.55); }
.float-wa svg { flex-shrink: 0; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}
.float-call {
  position: fixed;
  bottom: 24px; left: 20px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(196,162,74,0.45);
  text-decoration: none;
  transition: var(--transition);
}
@media(max-width:640px){
  .float-call { display: flex; }
  .float-wa span.wa-label { display: none; }
  .float-wa { padding: 13px; border-radius: 50%; }
}

/* ── TUNNEL STYLES ── */
.tunnel-header {
  background: var(--navy-2);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
}
.tunnel-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tunnel-back {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.85rem;
  text-decoration: none; transition: var(--transition);
}
.tunnel-back:hover { color: var(--gold); }
.tunnel-brand { font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }

/* ── PROGRESS BAR ── */
.progress-wrap { padding: 24px 0 8px; }
.progress-label {
  font-size: 0.78rem; color: var(--text-muted);
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 8px;
}
.progress-bar { height: 4px; background: var(--navy-3); border-radius: 4px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.5s ease;
}
.progress-steps { display: flex; justify-content: space-between; margin-top: 10px; }
.progress-step {
  font-size: 0.72rem; color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.progress-step.active { color: var(--gold); }
.progress-step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--navy-3); border: 2px solid var(--text-muted);
  transition: var(--transition);
}
.progress-step.active .progress-step-dot {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 6px rgba(196,162,74,0.5);
}
.progress-step.done .progress-step-dot { background: var(--green); border-color: var(--green); }
.progress-step.done { color: var(--green); }

/* ── TUNNEL CONTENT ── */
.tunnel-body { padding: 36px 0 60px; }
.tunnel-step { display: none; }
.tunnel-step.active { display: block; }
.tunnel-service-name {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.tunnel-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.tunnel-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 28px; max-width: 600px; }
.info-box {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 26px; margin-bottom: 24px;
}
.info-box h3 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.info-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--text-main);
}
.info-list li::before {
  content: '✓'; color: var(--gold);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.price-box {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.price-big { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.price-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.price-add { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.reassurance-box {
  background: var(--navy-2);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 28px; font-style: italic;
}
.reassurance-box strong { color: var(--white); font-style: normal; }

/* ── FORM ── */
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media(min-width:600px){ .form-row { grid-template-columns: 1fr 1fr; } }
label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.03em; text-transform: uppercase;
}
label .req { color: var(--gold); margin-left: 2px; }
input, select, textarea {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.97rem;
  padding: 13px 16px; width: 100%;
  transition: var(--transition); font-family: inherit;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
select { cursor: pointer; }
select option { background: var(--navy-2); }
textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); }
.form-error {
  background: rgba(231,76,60,0.12);
  border: 1px solid rgba(231,76,60,0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.88rem;
  color: #E74C3C; display: none;
}
.form-error.visible { display: block; }

/* ── STEP 3 — PAYMENT ── */
.payment-box {
  background: var(--navy-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px; text-align: center;
  max-width: 520px; margin: 0 auto;
}
.payment-box .check { font-size: 3rem; margin-bottom: 12px; }
.payment-box h2 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.payment-box p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }
.payment-deposit { font-size: 2.5rem; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.payment-deposit-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.payment-methods { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.pay-badge {
  background: var(--navy-2); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 6px 14px;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 600;
}
.cancel-policy {
  background: var(--navy-2); border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 20px 22px; margin-top: 32px;
}
.cancel-policy h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 12px;
}
.cancel-row {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.83rem;
  padding: 6px 0; border-bottom: 1px solid var(--gold-border); gap: 12px;
}
.cancel-row:last-child { border-bottom: none; }
.cancel-row span:first-child { color: var(--text-muted); }
.cancel-row span:last-child { font-weight: 700; text-align: right; }
.cancel-row .refund { color: var(--green); }
.cancel-row .partial { color: var(--gold); }
.cancel-row .no-refund { color: var(--red); }
.cancel-transfer {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 10px; font-style: italic;
}
.cancel-transfer strong { color: var(--gold-light); font-style: normal; }

/* ── GRACIAS PAGE ── */
.gracias-wrap {
  min-height: 80vh; display: flex;
  align-items: center; justify-content: center; padding: 60px 20px;
}
.gracias-box {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 48px 36px;
  max-width: 540px; width: 100%; text-align: center;
}
.gracias-icon { font-size: 3.5rem; margin-bottom: 16px; }
.gracias-box h1 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.gracias-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.next-steps { list-style: none; text-align: left; margin: 20px 0 28px; }
.next-steps li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--gold-border);
  font-size: 0.9rem; color: var(--text-main);
}
.next-steps li:last-child { border-bottom: none; }
.step-num {
  background: var(--gold); color: var(--navy);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.hidden { display: none !important; }
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ANIMATIONS ── */
.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FAQ ACCORDION ── */
details.cred-item { cursor:pointer; }
details.cred-item summary { user-select:none; }
details.cred-item summary::-webkit-details-marker { display:none; }
details[open] summary span:last-child { transform:rotate(45deg); display:inline-block; }
details[open] { border-color:var(--gold); }
details[open] summary { color:var(--gold-light); }

/* ── PERFORMANCE STATS BAR (Hero) ── */
.perf-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 22px 0 24px;
  flex-wrap: wrap;
}
.perf-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 4px 12px;
}
.perf-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.perf-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  vertical-align: super;
}
.perf-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.perf-divider {
  width: 1px;
  height: 52px;
  background: var(--gold-border);
  flex-shrink: 0;
}
@media(max-width: 560px) {
  .perf-stats { gap: 12px; }
  .perf-divider { display: none; }
  .perf-stat { min-width: 100%; border-bottom: 1px solid var(--gold-border); padding-bottom: 12px; }
  .perf-stat:last-child { border-bottom: none; }
}

/* ── GOVERNMENT PORTFOLIO CARDS ── */
.portfolio-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: var(--transition);
}
.portfolio-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.portfolio-federal {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-border);
}
.portfolio-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}
.portfolio-icon { font-size: 1.6rem; flex-shrink: 0; }
.portfolio-cat {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.portfolio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.portfolio-list li {
  font-size: 0.82rem;
  color: var(--text-main);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.portfolio-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.portfolio-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 2px;
}
