/* ============================================
   KARIRLUAR.ID — Main Stylesheet
   Version: 1.0.0
   Palette: Navy #0B1E3D / Gold #C9A84C / Light #F5F7FA
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1A2B45;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- CSS VARIABLES ---- */
:root {
  --navy:       #0B1E3D;
  --navy-2:     #122447;
  --navy-3:     #1A3260;
  --gold:       #C9A84C;
  --gold-2:     #E8C76A;
  --gold-3:     #F5DFA0;
  --gold-light: rgba(201,168,76,0.12);
  --gold-mid:   rgba(201,168,76,0.25);
  --gold-border:rgba(201,168,76,0.35);
  --white:      #FFFFFF;
  --light:      #F5F7FA;
  --light-2:    #EEF1F6;
  --border:     #D9E2EC;
  --text-main:  #0B1E3D;
  --text-body:  #2C3E55;
  --text-muted: #5A6B82;
  --text-light: #8A99AB;
  --success:    #1D9E75;
  --success-bg: rgba(29,158,117,0.1);

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(11,30,61,0.07);
  --shadow-md:  0 6px 24px rgba(11,30,61,0.10);
  --shadow-lg:  0 12px 40px rgba(11,30,61,0.14);

  --transition: 0.2s ease;
  --max-width:  1100px;
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.bg-light { background: var(--light); }
.text-center { text-align: center; }
.text-gold { color: var(--gold-2); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  border: none;
  padding: 10px 20px;
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1;
}
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-light); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: none;
  flex-shrink: 0;
}
.btn-gold:hover { background: var(--gold-2); }

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--gold-2); }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 62px;
}

.logo {
  font-size: 21px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-2); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  margin-left: auto;
  padding: 4px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 55%, var(--navy-2) 100%);
  padding: 88px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.14);
  border: 1px solid var(--gold-border);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge .ti { font-size: 15px; }

.hero-title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.13;
  letter-spacing: -1.5px;
  max-width: 780px;
  margin: 0 auto 22px;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy-2);
  border-bottom: 1px solid rgba(201,168,76,0.14);
  padding: 14px 24px;
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 500;
}
.trust-item .ti { color: var(--gold); font-size: 15px; }

/* ---- SECTION DEFAULTS ---- */
.section { padding: 80px 0; }

.section-header {
  margin-bottom: 52px;
  max-width: 620px;
}
.section-header.text-center { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ---- DESTINATIONS ---- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.dest-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.dest-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.dest-flag {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.dest-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.dest-prog {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- PROGRAMS ---- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.prog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.prog-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.prog-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.prog-icon .ti { color: var(--gold); font-size: 22px; }

.prog-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.prog-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.prog-tag {
  display: inline-block;
  background: var(--success-bg);
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}
.step-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition);
}
.step-item:hover { box-shadow: var(--shadow-sm); }

.step-num {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- PRICING ---- */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.pricing-note {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.note-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.note-title .ti { color: var(--gold); }
.pricing-note p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-md); }

.price-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffdf5 0%, #fff 100%);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.price-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.price-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-period {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  margin-bottom: 22px;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.price-features li {
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-features li .ti {
  color: var(--success);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- COMPARISON TABLE ---- */
.comp-wrap { margin-top: 8px; }
.comp-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.comp-table thead tr { background: var(--navy); }
.comp-table th {
  padding: 15px 22px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}
.comp-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comp-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.col-highlight { color: var(--gold-2) !important; }
.comp-table td {
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:nth-child(even) td { background: var(--light); }
.icon-yes { color: var(--success); font-size: 18px; }
.icon-no  { color: #C8D0D8; font-size: 18px; }
.bold { font-weight: 700; }

/* ---- STATUS TRACKER ---- */
.status-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.status-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.status-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sf-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sf-icon .ti { color: var(--gold); font-size: 18px; }
.status-features li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.status-features li span {
  font-size: 13px;
  color: var(--text-muted);
}

.tracker-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.tracker-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 10px;
}
.tracker-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.tracker-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius);
  outline: none;
  transition: border var(--transition);
  min-width: 0;
}
.tracker-input::placeholder { color: rgba(255,255,255,0.3); }
.tracker-input:focus { border-color: var(--gold); }

.tracker-empty {
  text-align: center;
  padding: 28px 20px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}
.tracker-empty .ti { font-size: 36px; display: block; margin-bottom: 10px; }

.status-timeline { display: none; }
.status-timeline.visible { display: block; }

.tl-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tl-header strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.tl-header span { font-size: 12px; color: rgba(255,255,255,0.45); }

.tl-list { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tl-item:last-child { border-bottom: none; }

.tl-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.tl-done .tl-dot  { background: var(--success); color: #fff; }
.tl-active .tl-dot{ background: var(--gold); color: var(--navy); }
.tl-pending .tl-dot{ background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); }

.tl-body { flex: 1; min-width: 0; }
.tl-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.tl-meta { font-size: 12px; color: rgba(255,255,255,0.45); }

.tl-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tl-status.done   { background: rgba(29,158,117,0.2); color: #5DCAA5; }
.tl-status.active { background: rgba(201,168,76,0.2); color: var(--gold-2); }
.tl-status.pending{ background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }

/* ---- CERTIFICATIONS ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.cert-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cert-card .ti {
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.cert-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cert-list {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card blockquote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}
.testi-dest {
  font-size: 12px;
  color: var(--text-light);
}

/* ---- REGISTRATION FORM ---- */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon .ti { color: var(--gold); font-size: 18px; }
.contact-list strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-list a, .contact-list span {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-list a:hover { color: var(--gold); }

.form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 8px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-full { grid-column: span 2; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.req { color: #E24B4A; }
.form-opt { font-weight: 400; color: var(--text-light); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-body);
  background: #fff;
  outline: none;
  transition: border var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6B82' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 96px; }

.form-error {
  font-size: 12px;
  color: #E24B4A;
  display: none;
}
.form-error.visible { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #E24B4A; }

.plan-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.plan-opt {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.plan-opt:hover { border-color: var(--gold-2); background: var(--gold-light); }
.plan-selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.plan-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.plan-desc { font-size: 11px; color: var(--text-light); }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 15px;
  margin-top: 16px;
  border-radius: var(--radius);
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.success-icon .ti {
  font-size: 56px;
  color: var(--success);
  display: block;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.success-code {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  padding: 60px 0 28px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.footer-logo span { color: #fff; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 420px; text-align: right; }

/* ---- FLOATING CTA ---- */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  z-index: 990;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--gold-2);
  box-shadow: 0 8px 36px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.float-cta .ti { font-size: 18px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- MOBILE MENU ---- */
.nav-mobile-open { display: flex !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pricing-layout,
  .status-layout,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Navbar mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--navy-2);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
    z-index: 999;
  }
  .nav-links.nav-mobile-open {
    display: flex !important;
  }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }

  .btn-nav { display: none; }

  /* Hero */
  .hero { padding: 60px 24px 72px; }
  .hero-stats { gap: 28px; padding-top: 32px; }
  .hero-stat .num { font-size: 26px; }

  /* Trust bar */
  .trust-inner { gap: 16px; }
  .trust-item { font-size: 12px; }

  /* Destinations */
  .dest-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }

  /* Programs */
  .prog-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-cards { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .plan-selector { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-disclaimer { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Float CTA */
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}

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