/* ============================================================
   dautumamnon.com — Design v3.0 — Bright & Modern
   Inspiration: Airbnb listings × Notion clarity
   ============================================================ */

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

:root {
  /* Colors — bright, trustworthy */
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-warm: #FAFAF7;
  --border: #ECEDEF;
  --border-strong: #D8DADE;

  --ink: #0F1115;
  --ink-2: #2C3038;
  --ink-3: #5A6068;
  --ink-4: #8A8F98;

  /* Brand: warm coral primary + deep forest secondary */
  --brand: #FF5A4E;
  --brand-deep: #E04438;
  --brand-soft: #FFEDEB;

  --accent: #1A5C4A;
  --accent-soft: #E8F2EE;

  --gold: #B8965A;
  --gold-soft: #FAF4E8;

  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;

  /* Type */
  --serif-display: 'DM Sans', system-ui, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --max: 1200px;
  --gutter: 20px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,17,21,0.04), 0 1px 3px rgba(15,17,21,0.04);
  --shadow: 0 4px 12px rgba(15,17,21,0.06), 0 2px 4px rgba(15,17,21,0.04);
  --shadow-lg: 0 12px 36px rgba(15,17,21,0.10), 0 4px 12px rgba(15,17,21,0.06);
  --shadow-xl: 0 24px 60px rgba(15,17,21,0.14), 0 8px 16px rgba(15,17,21,0.06);
}

@media (min-width: 880px) {
  :root { --gutter: 32px; }
}

* { box-sizing: border-box; }
*::selection { background: var(--ink); color: #fff; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

img, video, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ========== TYPE ========== */
h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

p { margin: 0 0 1em; }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 60ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.eyebrow-accent {
  background: var(--accent-soft);
  color: var(--accent);
}
.eyebrow-accent::before { background: var(--accent); }

.eyebrow-gold {
  background: var(--gold-soft);
  color: var(--gold);
}
.eyebrow-gold::before { background: var(--gold); }

.muted { color: var(--ink-4); }
.accent { color: var(--brand); }
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .18s ease;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(255,90,78,0.24);
}
.btn-primary:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,90,78,0.32);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  background: var(--bg-soft);
  color: var(--ink-2);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--border);
  color: var(--ink);
}

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 14px; font-size: 0.86rem; }
.btn-block { width: 100%; display: flex; }

.btn-arrow::after {
  content: "→";
  transition: transform .2s;
  margin-left: 2px;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--brand);
  border-radius: 3px;
  transform: rotate(45deg);
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 2px;
  position: relative;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--brand); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-cta:hover { background: #000; color: #fff; }

.nav-toggle {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  cursor: pointer;
  position: relative;
}
.nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s;
}
.nav-toggle::before { top: 14px; }
.nav-toggle::after  { bottom: 14px; }
body.nav-open .nav-toggle::before { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle::after  { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 880px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 49;
  }
  body.nav-open .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  body.nav-open .main-nav a:last-child { border-bottom: 0; }
  body.nav-open .nav-cta {
    display: flex;
    position: fixed;
    left: var(--gutter); right: var(--gutter);
    bottom: 20px;
    z-index: 50;
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    justify-content: center;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse at top right, rgba(255,237,235,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(232,242,238,0.5) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}
@media (min-width: 880px) {
  .hero { padding: 88px 0 72px; }
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
  }
}

.hero-content h1 {
  margin-bottom: 22px;
}
.hero-content h1 .accent { color: var(--brand); }
.hero-content .lead {
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-3);
}
.trust-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Hero visual side: collage of stats */
.hero-visual {
  position: relative;
  min-height: 320px;
}
.hero-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-stat-num {
  font-family: var(--serif-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--ink);
}
.hero-stat-num.accent { color: var(--brand); }
.hero-stat-num.green { color: var(--accent); }
.hero-stat-label {
  font-size: 0.84rem;
  color: var(--ink-3);
  font-weight: 500;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .hero-stats-grid { gap: 20px; }
}

.hero-stat.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ink) 0%, #1f242c 100%);
  border-color: var(--ink);
  color: #fff;
}
.hero-stat.featured .hero-stat-num { color: #fff; }
.hero-stat.featured .hero-stat-num small {
  font-size: 0.42em;
  font-weight: 500;
  color: #FFB4AD;
  margin-left: 6px;
  font-family: var(--sans);
}
.hero-stat.featured .hero-stat-label { color: rgba(255,255,255,0.65); }

.hero-stat.featured .mini-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.mini-tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: 100px;
  font-weight: 500;
}

/* ========== SECTIONS ========== */
.section {
  padding: 64px 0;
}
@media (min-width: 880px) {
  .section { padding: 96px 0; }
}

.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-dark .muted { color: rgba(255,255,255,0.5); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .lead {
  margin: 16px auto 0;
}

.section-head-left {
  max-width: 720px;
  margin: 0 0 48px;
}
.section-head-left .lead { margin-top: 16px; }

/* ========== VALUE PROPS ========== */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .value-props { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .value-props { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.value-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value-card:nth-child(2) .value-card-icon { background: var(--accent-soft); color: var(--accent); }
.value-card:nth-child(3) .value-card-icon { background: var(--gold-soft); color: var(--gold); }
.value-card:nth-child(4) .value-card-icon { background: #EEF4FF; color: #3B6CDB; }

.value-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}
.value-card p {
  font-size: 0.94rem;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}

/* ========== TIMELINE (16h day) ========== */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (min-width: 960px) {
  .timeline-grid { grid-template-columns: repeat(3, 1fr); }
}

.tl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.tl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.tl-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand);
  opacity: 0.7;
}
.tl-card.cyan::before { background: #3B6CDB; }
.tl-card.green::before { background: var(--accent); }
.tl-card.gold::before { background: var(--gold); }
.tl-card.purple::before { background: #8B5CF6; }
.tl-card.orange::before { background: #F59E0B; }
.tl-card.pink::before { background: #EC4899; }

.tl-time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  margin-bottom: 10px;
  display: inline-block;
}
.tl-card.cyan .tl-time { color: #3B6CDB; }
.tl-card.green .tl-time { color: var(--accent); }
.tl-card.gold .tl-time { color: var(--gold); }
.tl-card.purple .tl-time { color: #8B5CF6; }
.tl-card.orange .tl-time { color: #F59E0B; }
.tl-card.pink .tl-time { color: #EC4899; }

.tl-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.tl-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  margin: 0 0 12px;
  line-height: 1.5;
}
.tl-price {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: 100px;
}

/* ========== DEAL CARDS ========== */
.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .deals-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (min-width: 960px) {
  .deals-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.deal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.deal-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD0CB 0%, #FFB4AD 100%);
}
.deal-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.deal-card:hover .deal-card-img img { transform: scale(1.06); }

.deal-card-img-fallback {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #FFD0CB 0%, var(--brand) 100%);
  color: #fff;
  font-family: var(--serif-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 0.92;
}

.deal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.deal-badge.premium {
  background: var(--ink);
  color: #fff;
}
.deal-badge.premium::before { content: "◆ "; color: #FFD073; }

.deal-favorite {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--ink-3);
}

.deal-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deal-card-loc {
  font-size: 0.82rem;
  color: var(--ink-3);
  margin-bottom: 6px;
  font-weight: 500;
}

.deal-card-name {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.deal-card-tagline {
  font-size: 0.92rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  line-height: 1.45;
  flex: 1;
}

.deal-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}
.deal-card-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.deal-card-meta dt {
  font-size: 0.74rem;
  color: var(--ink-4);
  font-weight: 500;
}
.deal-card-meta dd {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.deal-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.deal-card-price-label {
  font-size: 0.76rem;
  color: var(--ink-4);
  font-weight: 500;
}
.deal-card-price-value {
  font-family: var(--serif-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.deal-card-price-value .accent { color: var(--brand); }

/* ========== DEAL DETAIL ========== */
.deal-detail-hero {
  padding: 32px 0 48px;
  background: var(--bg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-3);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--border-strong); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

.deal-detail-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 880px) {
  .deal-detail-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.deal-detail-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #FFD0CB, var(--brand));
  box-shadow: var(--shadow);
}
.deal-detail-image img { width: 100%; height: 100%; object-fit: cover; }

.deal-detail-info h1 {
  margin-bottom: 14px;
}
.deal-detail-loc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--ink-3);
}
.deal-detail-tagline {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 28px;
  font-weight: 500;
}

.stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 14px; }
}
.stat-item {
  padding: 18px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  text-align: left;
}
.stat-num {
  font-family: var(--serif-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat-num.accent { color: var(--brand); }
.stat-num small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--ink-4);
  margin-left: 4px;
  font-family: var(--sans);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-3);
  font-weight: 500;
}

/* Strengths grid */
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0 8px;
}
@media (min-width: 600px) {
  .strengths-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.strength-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.strength-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.strength-card h4 {
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.strength-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}

/* Financial cards */
.fin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 880px) {
  .fin-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.fin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fin-card-head {
  padding: 18px 22px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.fin-card-head h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin: 0;
}
.fin-card-head .sub {
  font-size: 0.78rem;
  color: var(--ink-4);
}

.fin-card-body { padding: 20px 22px; }

.fin-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.fin-row:last-child { border-bottom: none; }
.fin-row-label { color: var(--ink-3); }
.fin-row-value {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.fin-row-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  border-bottom: none;
}
.fin-row-total .fin-row-label {
  font-weight: 700;
  color: var(--ink);
}
.fin-row-total .fin-row-value {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
}

/* Scenarios */
.scenarios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 600px) {
  .scenarios { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.scenario {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
}
.scenario.featured {
  background: linear-gradient(135deg, var(--ink) 0%, #1f242c 100%);
  border-color: var(--ink);
  color: #fff;
}

.scenario-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-soft);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  border-radius: 100px;
  margin-bottom: 16px;
}
.scenario.featured .scenario-tag {
  background: var(--brand);
  color: #fff;
}

.scenario-label {
  font-size: 0.86rem;
  color: var(--ink-3);
  margin-bottom: 4px;
  font-weight: 500;
}
.scenario.featured .scenario-label { color: rgba(255,255,255,0.6); }

.scenario-num {
  font-family: var(--serif-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--ink);
}
.scenario.featured .scenario-num { color: #fff; }
.scenario-num small {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-4);
  margin-left: 4px;
  font-family: var(--sans);
}
.scenario.featured .scenario-num small { color: rgba(255,255,255,0.5); }

.scenario-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-3);
}
.scenario.featured .scenario-row {
  border-top-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}
.scenario-row span:last-child {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.scenario.featured .scenario-row span:last-child { color: #fff; }
.scenario-row.profit span:last-child { color: var(--success); }
.scenario.featured .scenario-row.profit span:last-child { color: #5DE090; }

/* Calculator */
.calc-block {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 32px 0;
}
.calc-block summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.calc-block summary::-webkit-details-marker { display: none; }
.calc-block summary::after {
  content: "+";
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--brand);
  transition: transform .25s;
  box-shadow: var(--shadow-sm);
}
.calc-block[open] summary::after { transform: rotate(45deg); }

.calc-intro {
  margin-top: 14px;
  color: var(--ink-3);
  font-size: 0.94rem;
}

.calc-slider {
  margin: 28px 0 8px;
}
.calc-slider input[type=range] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 3px;
  outline: none;
}
.calc-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  background: var(--brand);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,90,78,0.4);
}
.calc-slider input[type=range]::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--brand);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
.calc-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--ink-4);
}

.calc-out {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
}
@media (min-width: 720px) {
  .calc-out { grid-template-columns: repeat(3, 1fr); }
}
.calc-out-item .label {
  font-size: 0.76rem;
  color: var(--ink-4);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}
.calc-out-item .val {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.calc-out-item .val.profit { color: var(--success); }
.calc-out-item .val.loss { color: var(--danger); }

/* ========== QUIZ ========== */
.quiz-wrap {
  min-height: calc(100vh - 68px);
  background: var(--bg);
  padding: 32px 0 80px;
}
@media (min-width: 720px) { .quiz-wrap { padding: 56px 0 96px; } }

.quiz-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.quiz-progress-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-3);
  white-space: nowrap;
}
.quiz-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  overflow: hidden;
  position: relative;
  border-radius: 3px;
}
.quiz-progress-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, var(--brand), #FF8C7A);
  transition: right .4s cubic-bezier(.4,.0,.2,1);
  border-radius: 3px;
}

.quiz-step {
  display: none;
  animation: quizIn .4s cubic-bezier(.2,.6,.2,1);
}
.quiz-step.active { display: block; }
@keyframes quizIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.quiz-step-num {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.quiz-q {
  font-family: var(--serif-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
}

.quiz-sub {
  font-size: 1.02rem;
  color: var(--ink-3);
  margin: 0 0 32px;
  max-width: 52ch;
  line-height: 1.5;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  transition: all .15s ease;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--ink);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.quiz-option.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.opt-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 28px;
  display: grid;
  place-items: center;
}

.opt-label {
  flex: 1;
  line-height: 1.35;
}

.opt-check {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all .15s;
}
.quiz-option.selected .opt-check {
  background: var(--brand);
  border-color: var(--brand);
}
.quiz-option.selected .opt-check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.quiz-back {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.quiz-back:hover { color: var(--ink); }
.quiz-back::before { content: "←  "; }

.quiz-hint {
  font-size: 0.82rem;
  color: var(--ink-4);
}

/* Lead form (last step) */
.quiz-lead {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 8px;
}
@media (min-width: 600px) { .quiz-lead { padding: 32px 28px; } }

/* ========== FORMS ========== */
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,90,78,0.12);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row .hint {
  margin-top: 5px;
  font-size: 0.82rem;
  color: var(--ink-4);
}
.form-row.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 520px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-disclaimer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 14px 0;
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ========== FAQ ========== */
.faq-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.35;
  gap: 16px;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg-soft); }

.faq-toggle {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .25s, background .15s;
  font-weight: 400;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--brand-soft);
}

.faq-a {
  display: none;
  padding: 0 24px 22px;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }
.faq-a strong { color: var(--ink); font-weight: 600; }
.faq-a a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* ========== ALERTS ========== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.alert-success {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(26,92,74,0.2);
}
.alert-error {
  background: #FEE7E5;
  color: var(--brand-deep);
  border: 1px solid rgba(224,68,56,0.2);
}

.notice {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.notice strong { color: var(--ink); font-weight: 600; }

/* ========== CTA SECTION ========== */
.cta-box {
  background: linear-gradient(135deg, var(--ink) 0%, #1f242c 100%);
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,90,78,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,92,74,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; max-width: 16ch; margin: 0 auto 16px; }
.cta-box .lead { color: rgba(255,255,255,0.75); margin: 0 auto 28px; max-width: 56ch; }

/* ========== RESULT PAGE ========== */
.result-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 720px) {
  .result-options { grid-template-columns: 1fr 1fr; }
}

.result-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.result-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.result-card.primary {
  border-color: var(--brand);
  background: linear-gradient(180deg, #FFF8F7 0%, #fff 100%);
  position: relative;
}
.result-card.primary::before {
  content: "Đề xuất chính";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--brand);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
}
.result-card h4 {
  font-family: var(--serif-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.result-card p {
  color: var(--ink-3);
  margin-bottom: 20px;
  flex: 1;
  font-size: 0.95rem;
}

.share-token {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 480px;
  margin: 24px auto 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  text-align: center;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 24px;
}
.site-footer .brand { color: #fff; }
.site-footer h4 {
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  margin-bottom: 16px;
  font-family: var(--sans);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 36ch;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer ul a { color: rgba(255,255,255,0.6); }
.site-footer ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-disclaimer {
  flex-basis: 100%;
  margin-top: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* Floating Zalo */
.floating-zalo {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(255,90,78,0.45);
  z-index: 40;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-zalo:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(255,90,78,0.55);
  color: #fff;
}

/* Utility */
.mt-8 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; }
.flex-row { display: flex; flex-wrap: wrap; gap: 12px; }
.justify-center { justify-content: center; }

@media (max-width: 880px) {
  body.nav-open { overflow: hidden; }
}
