/* ============================================
   KARIRLUAR.ID — Design System
   Platform Karir Global Indonesia
   ============================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ---------- TOKENS ---------- */
:root {
  /* Brand */
  --navy:       #1F2937;
  --navy-mid:   #1A3A6B;
  --navy-light: #2A5298;
  --gold:       #e1c15a;
  --gold-mid:   #E0A830;
  --gold-light: #F5D78E;
  --teal:       #0F6E56;
  --teal-light: #E1F5EE;
  --teal-mid:   #1D9E75;
  --coral:      #D85A30;
  --coral-light:#FAECE7;

  /* Neutral */
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-800:   #1F2937;
  --gray-900:   #111827;

  /* Semantic */
  --success:    #059669;
  --warning:    #D97706;
  --danger:     #DC2626;
  --info:       #2563EB;

  /* Spacing */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-full: 9999px;

  /* Shadow */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.10);

  /* Transitions */
  --t-fast: 120ms ease;
  --t-med:  200ms ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; color: var(--gray-900); }
h1 { font-size: clamp(26px, 4vw, 40px); }
h2 { font-size: clamp(20px, 3vw, 30px); }
h3 { font-size: clamp(17px, 2.5vw, 22px); }
h4 { font-size: 16px; }
p  { line-height: 1.7; }

.text-sm   { font-size: 13px; }
.text-xs   { font-size: 11px; }
.text-muted{ color: var(--gray-500); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.font-display { font-family: var(--font-display); }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }

/* ---------- LAYOUT ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--sp-lg); }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 var(--sp-lg); }
.section { padding: var(--sp-3xl) 0; }
.section-sm { padding: var(--sp-2xl) 0; }

/* ---------- GRID ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--sp-md); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 var(--sp-md); }
}

/* ---------- FLEXBOX UTILS ---------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-xs { gap: var(--sp-xs); }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.gap-lg { gap: var(--sp-lg); }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

/* ---------- SPACING UTILS ---------- */
.mb-xs { margin-bottom: var(--sp-xs); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 8px var(--sp-md);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-display);
  position: relative;
  z-index: 200;
}
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: var(--sp-xl);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold-light); }
.nav-logo small {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  display: block;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  gap: 5px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--gold-light); }
.nav-links a .badge-new {
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: var(--r-full);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 22px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  border: 1.5px solid transparent;
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary   { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-mid); border-color: var(--gold-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-navy      { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }

.btn-outline   { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); background: var(--gray-50); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: #0A5A44; }

.btn-ghost { background: transparent; color: var(--gray-600); border-color: transparent; }
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-800); }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-full);
  line-height: 1.4;
}
.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.badge-green  { background: #D1FAE5; color: #065F46; }
.badge-amber  { background: #FEF3C7; color: #92400E; }
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-purple { background: #EDE9FE; color: #5B21B6; }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }
.badge-navy   { background: var(--navy); color: var(--white); }
.badge-gold   { background: var(--gold); color: var(--white); }
.badge-teal   { background: var(--teal-light); color: var(--teal); }

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-body  { padding: var(--sp-md); }
.card-featured { border: 2px solid var(--navy-mid); }

/* ---------- PRODUCT CARD ---------- */
.product-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--t-med), transform var(--t-med); cursor: pointer; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}
.product-card-body { padding: 14px; }
.product-card-type { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px; }
.product-card-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gray-900); line-height: 1.35; margin-bottom: 6px; }
.product-card-meta  { font-size: 12px; color: var(--gray-500); margin-bottom: 6px; }
.product-card-footer{ display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.product-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); }
.product-price-free { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--teal); }
.product-price-old  { font-size: 12px; color: var(--gray-400); text-decoration: line-through; }
.star-row { display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--gray-500); }
.star-row i { color: #F59E0B; font-size: 12px; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: var(--sp-md); }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.form-label .req { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,34,64,0.08); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- RADIO / CHECKBOX CARDS ---------- */
.choice-grid { display: grid; gap: 8px; }
.choice-grid-2 { grid-template-columns: 1fr 1fr; }
.choice-card {
  position: relative;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.choice-card input[type="radio"],
.choice-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.choice-card:has(input:checked) { border-color: var(--navy); background: rgba(13,34,64,0.04); }
.choice-card-label { font-weight: 600; font-size: 14px; font-family: var(--font-display); color: var(--gray-800); display: flex; align-items: center; gap: 8px; }
.choice-card-sub { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.choice-mark { width: 18px; height: 18px; border: 2px solid var(--gray-300); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.choice-card:has(input:checked) .choice-mark { border-color: var(--navy); background: var(--navy); }
.choice-mark::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--white); opacity: 0; transition: opacity var(--t-fast); }
.choice-card:has(input:checked) .choice-mark::after { opacity: 1; }

/* ---------- TABS ---------- */
.tabs-bar {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.tab-btn:hover { color: var(--gray-800); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }

/* ---------- PROGRESS BAR ---------- */
.progress-wrap { background: var(--gray-200); border-radius: var(--r-full); overflow: hidden; }
.progress-bar { height: 6px; border-radius: var(--r-full); background: var(--gold); transition: width 0.4s ease; }
.progress-bar.teal { background: var(--teal); }
.progress-bar.navy { background: var(--navy); }

/* ---------- STEPS ---------- */
.steps { display: flex; gap: 0; }
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.step:last-child::before { display: none; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--t-med);
}
.step.active .step-num { background: var(--navy); color: var(--white); }
.step.done .step-num { background: var(--teal); color: var(--white); }
.step-label { font-size: 12px; color: var(--gray-500); margin-top: 6px; font-weight: 500; }
.step.active .step-label { color: var(--navy); font-weight: 600; }

/* ---------- SECTION HEADER ---------- */
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title  { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--gray-900); margin-bottom: var(--sp-sm); }
.section-sub    { font-size: 16px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }

/* ---------- DESTINATION PILLS ---------- */
.dest-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.dest-scroll::-webkit-scrollbar { display: none; }
.dest-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-fast);
}
.dest-pill:hover { border-color: var(--navy); color: var(--navy); }
.dest-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.dest-pill .count { font-size: 11px; opacity: 0.7; }

/* ---------- STAT CARDS ---------- */
.stat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: var(--sp-md); }
.stat-card-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 13px; color: var(--gray-500); }
.stat-card-trend { font-size: 12px; font-weight: 600; margin-top: 6px; }
.stat-card-trend.up { color: var(--success); }
.stat-card-trend.down { color: var(--danger); }

/* ---------- TESTIMONIAL ---------- */
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.testi-stars { display: flex; gap: 2px; color: #F59E0B; font-size: 14px; }
.testi-text { font-size: 14px; color: var(--gray-700); line-height: 1.7; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700; font-size: 14px; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--gray-800); }
.testi-job  { font-size: 12px; color: var(--gray-500); }

/* ---------- ACCORDION / FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-md) 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  gap: var(--sp-md);
}
.faq-toggle .ico { font-size: 18px; color: var(--gray-400); transition: transform var(--t-med); flex-shrink: 0; }
.faq-item.open .faq-toggle .ico { transform: rotate(45deg); color: var(--navy); }
.faq-body { display: none; padding-bottom: var(--sp-md); font-size: 14px; color: var(--gray-600); line-height: 1.75; }
.faq-item.open .faq-body { display: block; }

/* ---------- NOTIFICATION TOAST ---------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 999; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--gray-900);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.25s ease forwards;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- FLOATING WA BUTTON ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--r-full);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 90;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.04); }
.wa-float i { font-size: 18px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top { padding: var(--sp-3xl) 0 var(--sp-2xl); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: var(--sp-2xl); }
.footer-brand .logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white); margin-bottom: var(--sp-sm); }
.footer-brand .logo span { color: var(--gold-light); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 8px; margin-top: var(--sp-md); }
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: all var(--t-fast);
  cursor: pointer;
}
.footer-social-btn:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.footer-col-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: var(--sp-md); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: var(--sp-md) 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .hamburger { display: block; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background: var(--navy); padding: var(--sp-md); gap: 0; z-index: 99; }
  .nav-links.open a { height: auto; padding: 12px var(--sp-md); border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a { border-bottom-color: transparent; }
}

/* ---------- HERO STYLES ---------- */
.hero-main {
  background: var(--navy);
  padding: var(--sp-3xl) 0 0;
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: var(--sp-2xl); align-items: end; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.35);
  color: var(--gold-light);
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.hero-h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: var(--sp-md); }
.hero-h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: var(--sp-xl); max-width: 520px; }
.hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--sp-xl); }
.hero-stats { display: flex; gap: var(--sp-xl); padding-top: var(--sp-lg); border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.hero-search-card {
  background: var(--white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: var(--sp-lg);
  box-shadow: var(--shadow-lg);
}
.hero-search-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: var(--sp-md); }
.search-input-wrap { position: relative; margin-bottom: 8px; }
.search-input-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--gray-400); }
.search-input-wrap input { padding-left: 38px; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-bottom: var(--sp-md); }
.popular-searches { }
.popular-label { font-size: 11px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.popular-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.popular-tag {
  font-size: 12px; padding: 4px 10px;
  background: var(--gray-100); color: var(--gray-600);
  border-radius: var(--r-full); cursor: pointer;
  transition: all var(--t-fast);
  border: 1px solid transparent;
}
.popular-tag:hover { background: rgba(13,34,64,0.08); color: var(--navy); border-color: var(--navy); }

/* ---------- MISC ---------- */
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.hidden { display: none !important; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.overflow-hidden { overflow: hidden; }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.relative { position: relative; }
.sticky-top { position: sticky; top: 60px; }
.w-full { width: 100%; }
