/* ===================================================
   TRUFFLEJENNY — OFFERS / VALUE LADDER PAGE
   =================================================== */

:root {
  --gold:       #C9A84C;
  --gold-light: #E0BC68;
  --gold-dark:  #A8882E;
  --black:      #0C0C0C;
  --dark:       #111111;
  --dark-2:     #181818;
  --white:      #FFFFFF;
  --cream:      #FAF7F0;
  --text:       #1A1A1A;
  --text-mid:   #555555;
  --text-muted: #999999;
  --border:     rgba(0,0,0,0.08);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     16px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img.emoji { height: 1em; width: 1em; margin: 0 .05em 0 .1em; vertical-align: -0.1em; display: inline-block; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s var(--ease);
}
.nav.scrolled { background: rgba(12,12,12,0.96); }
.nav-inner {
  width: 100%; max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
}
.nav-logo { justify-self: start; }
.nav-center { justify-self: center; display: flex; align-items: center; gap: 12px; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 18px; }
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--gold); text-decoration: none; letter-spacing: 0.04em;
}
.nav-socials { display: flex; align-items: center; gap: 18px; }
.nav-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: color 0.22s;
}
.nav-link:hover { color: var(--gold); }

/* Header CTA buttons (Dubai Relocate / US LLC) */
.nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 17px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; line-height: 1;
  text-decoration: none; white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}
.nav-btn--primary { background: var(--gold); color: #0C0C0C; }
.nav-btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-btn--ghost { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.45); }
.nav-btn--ghost:hover { background: rgba(201,168,76,0.22); }
.nav-flag { display: inline-flex; align-items: center; }
/* Mobile hamburger menu */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0; margin: 0; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; margin: 0 auto; transition: transform 0.25s, opacity 0.2s; }
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(12,12,12,0.98); border-top: 1px solid rgba(201,168,76,0.18); padding: 6px 22px 18px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.32s ease, opacity 0.25s ease, padding 0.32s ease; box-shadow: 0 18px 40px rgba(0,0,0,0.45); }
.nav.is-open .nav-mobile { max-height: 460px; opacity: 1; }
.nav-mobile-link { display: flex; align-items: center; gap: 9px; padding: 14px 2px; color: rgba(255,255,255,0.88); text-decoration: none; font-size: 1.02rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-socials { display: flex; gap: 26px; padding: 16px 2px 2px; }
.nav-mobile-socials a { color: var(--gold); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
@media (max-width: 600px) {
  .nav-inner { display: flex; justify-content: space-between; gap: 8px; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .nav { padding-left: 16px; padding-right: 10px; }
  .nav-logo { font-size: 1.05rem; }
}
.nav-social-link {
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.25s; display: flex; align-items: center;
}
.nav-social-link:hover { color: var(--gold); }

/* ========== BUTTONS ========== */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--black);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 100px;
  transition: all 0.28s var(--ease); border: none; cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.32);
}
.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 100px; border: 1.5px solid var(--gold);
  transition: all 0.25s var(--ease); cursor: pointer;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-block { width: 100%; }

/* ========== HERO ========== */
.offers-hero {
  background: var(--black);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.offers-hero-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.09), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.offers-hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 26px;
}
.offers-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700;
  color: var(--white); line-height: 1.08; margin-bottom: 22px;
}
.offers-hero-title em { font-style: italic; color: var(--gold); }
.offers-hero-sub {
  color: rgba(255,255,255,0.58); font-size: 1.05rem; line-height: 1.75;
  max-width: 580px; margin: 0 auto 52px;
}

/* ladder stepper */
.ladder {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; max-width: 720px; margin: 0 auto;
}
.ladder-step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-decoration: none;
  padding: 16px 8px; border-radius: 14px;
  transition: all 0.25s var(--ease);
}
.ladder-step:hover { background: rgba(255,255,255,0.04); transform: translateY(-3px); }
.ladder-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
}
.ladder-step--hot .ladder-dot {
  background: var(--gold); border-color: var(--gold); color: var(--black);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}
.ladder-label { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 500; text-align: center; line-height: 1.3; }
.ladder-price { color: var(--gold); font-size: 0.92rem; font-weight: 700; }
.ladder-line {
  align-self: flex-start; margin-top: 35px;
  flex: 0 0 24px; height: 1.5px;
  background: linear-gradient(90deg, rgba(201,168,76,0.4), rgba(201,168,76,0.15));
}

/* ========== OFFERS ========== */
.offers-main { padding: 80px 0 60px; }
.offer {
  scroll-margin-top: 90px;
  margin-bottom: 28px;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 40px;
  position: relative;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
/* deep-link highlight */
.offer:target .offer-card {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18), 0 20px 60px rgba(0,0,0,0.1);
}

.offer-card--free { background: #FFFFFF; border-style: dashed; border-color: rgba(0,0,0,0.12); }
.offer-card--featured {
  background: linear-gradient(160deg, #14100A 0%, #1E1809 100%);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}
.offer-card--vip {
  background: linear-gradient(160deg, #0C0C0C 0%, #1A1305 100%);
  border-color: rgba(201,168,76,0.3);
}

.offer-ribbon {
  position: absolute; top: 0; right: 32px; transform: translateY(-50%);
  background: var(--gold); color: var(--black);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.offer-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.offer-card--featured .offer-head,
.offer-card--vip .offer-head { border-bottom-color: rgba(255,255,255,0.08); }

.offer-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; flex-shrink: 0;
}
.offer-card--featured .offer-icon,
.offer-card--vip .offer-icon { background: rgba(201,168,76,0.15); }

.offer-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark); background: rgba(201,168,76,0.12);
  padding: 4px 11px; border-radius: 100px; margin-bottom: 8px;
}
.offer-badge--free { color: #2E7D32; background: rgba(46,125,50,0.1); }
.offer-badge--gold { color: var(--gold); background: rgba(201,168,76,0.18); }
.offer-badge--vip { color: var(--gold); background: rgba(201,168,76,0.18); }

.offer-title {
  font-family: var(--serif);
  font-size: 1.7rem; font-weight: 700; line-height: 1.15; color: var(--text);
}
.offer-card--featured .offer-title,
.offer-card--vip .offer-title { color: var(--white); }

.offer-price { text-align: right; }
.price-num {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 700; color: var(--gold-dark); line-height: 1; white-space: nowrap;
}
.offer-card--featured .price-num,
.offer-card--vip .price-num { color: var(--gold); }

.offer-desc {
  color: var(--text-mid); font-size: 0.97rem; line-height: 1.7; margin-bottom: 22px;
}
.offer-card--featured .offer-desc,
.offer-card--vip .offer-desc { color: rgba(255,255,255,0.62); }
.offer-card--featured .offer-desc strong { color: var(--gold-light); }

.offer-list { list-style: none; margin-bottom: 28px; }
.offer-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.92rem; line-height: 1.5; color: var(--text);
  border-bottom: 1px solid #F2EFE8;
}
.offer-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.offer-card--featured .offer-list li,
.offer-card--vip .offer-list li { color: rgba(255,255,255,0.78); border-bottom-color: rgba(255,255,255,0.06); }
.offer-list li:last-child { border-bottom: none; }
.offer-list-highlight {
  color: var(--gold-light) !important; font-weight: 600;
}
.offer-list-highlight::before { content: '★' !important; background: var(--gold) !important; }

.offer-sublist { padding-left: 28px !important; font-size: 0.88rem !important; }
.offer-sublist::before { content: '' !important; background: transparent !important; }
.offer-list--vip li:not(.offer-sublist) { font-weight: 500; }

.offer-note {
  font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.5;
}
.offer-card--featured .offer-note,
.offer-card--vip .offer-note { color: rgba(255,255,255,0.4); }

/* VIP gate */
.vip-gate {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 22px;
}
.vip-gate p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.vip-actions { display: flex; flex-direction: column; gap: 12px; }

/* ========== COMPARE TABLE ========== */
.compare, .faq { margin-top: 70px; }
.compare-head { text-align: center; margin-bottom: 36px; }
.section-eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.compare-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--text);
}
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: center; font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--black); color: var(--white);
  font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.compare-feature-col { text-align: left !important; }
.compare-table tbody td:first-child { text-align: left; color: var(--text-mid); font-weight: 500; }
.compare-table tbody td { color: var(--gold-dark); font-weight: 700; }
.compare-col-hot { background: rgba(201,168,76,0.07); }
.compare-table thead .compare-col-hot { background: #1A1305; color: var(--gold); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ========== FAQ ========== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 4px 22px; transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(201,168,76,0.3); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 16px 0; font-size: 0.98rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold-dark); font-size: 1.4rem; font-weight: 400;
  transition: transform 0.25s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 18px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--black); text-align: center;
  padding: 80px 0; margin-top: 70px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 65%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.final-cta-sub {
  color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7;
  max-width: 480px; margin: 0 auto 34px;
}

/* ========== FOOTER ========== */
.footer { background: var(--black); padding: 48px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { text-align: center; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.footer-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.22s; }
.footer-socials a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 22px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin-bottom: 8px; }
.footer-disclaimer { color: rgba(255,255,255,0.18); font-size: 0.73rem; max-width: 480px; margin: 0 auto; line-height: 1.55; }

/* ========== RESPONSIVE ========== */
@media (max-width: 720px) {
  .offers-hero { padding: 110px 0 60px; }
  .ladder { flex-wrap: wrap; gap: 10px; }
  .ladder-line { display: none; }
  .ladder-step { flex: 0 0 calc(50% - 5px); background: rgba(255,255,255,0.03); }
  .offer-card { padding: 28px 22px; }
  .offer-head { grid-template-columns: auto 1fr; gap: 14px; }
  .offer-price { grid-column: 1 / -1; text-align: left; margin-top: 4px; }
  .price-num { font-size: 2.2rem; }
  .offer-ribbon { right: 16px; }
  .footer-top { flex-direction: column; gap: 16px; }
}
