:root {
  --brand: #3432C7;
  --brand-dark: #1f1d8a;
  --brand-darker: #14136b;
  --brand-soft: #eceefb;
  --gold: #f5b400;
  --gold-dark: #d99c00;
  --ink: #1a1a26;
  --ink-soft: #555566;
  --line: #d8d8e2;
  --line-soft: #ececf2;
  --bg: #ffffff;
  --bg-alt: #f4f4f8;
  --success: #1c8a4a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
}
h3 {
  font-size: 1.25rem;
  font-weight: 900;
}
p { margin: 0; }

.accent-text { color: var(--gold); }
.hero h1 .accent-text {
  font-size: 1.18em;
  display: inline-block;
  line-height: 1;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold); }

/* ============ TOP UTILITY BAR ============ */
.topbar {
  background: var(--brand-darker);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--gold); text-decoration: none; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-call { font-weight: 700; }
@media (max-width: 640px) {
  .topbar { font-size: 0.78rem; }
  .topbar-inner { justify-content: center; }
  .topbar-right { gap: 14px; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 72px;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 520px) {
  .nav-logo img { height: 34px; }
  .nav-inner { min-height: 62px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand); text-decoration: none; }
.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--ink) !important; }
@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-align: center;
}
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  text-decoration: none;
}
.btn-primary {
  background: var(--brand);
  color: #fff !important;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--brand) !important;
  text-decoration: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20,19,107,0.96), rgba(52,50,199,0.88)),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=70') center/cover;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { text-align: left; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
}
.hero-tag {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}
.hero .lede {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero .lede strong { color: var(--gold); }
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  text-align: left;
}
@media (max-width: 880px) {
  .hero-bullets { display: inline-block; max-width: 520px; margin-left: auto; margin-right: auto; }
}
.hero-bullets li {
  position: relative;
  padding-left: 36px;
  margin: 14px 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.78rem;
}
.hero-bullets strong { color: var(--gold); }
@media (max-width: 480px) {
  .hero-bullets li { font-size: 1rem; padding-left: 32px; }
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-counter {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  color: #fff;
}
.hero-counter strong { color: var(--gold); font-weight: 900; font-size: 1.05rem; }
.counter-divider { color: rgba(255,255,255,0.4); }
.counter-left { color: rgba(255,255,255,0.92); }

/* ============ HERO SAMPLE CARD (placeholder + image swap) ============ */
.hero-card {
  width: 100%;
}
.hero-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero-card-placeholder {
  aspect-ratio: 2 / 1;
  width: 100%;
  border: 2px dashed rgba(255,255,255,0.45);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero-card-placeholder-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-card-placeholder-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}
.hero-card-placeholder-text span {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-item:last-child { border-right: none; }
.trust-pct {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .trust-item:nth-child(2) { border-right: none; }
}

/* ============ SECTIONS ============ */
.section { padding: 72px 0; }
.section-grey { background: var(--bg-alt); }
.section-blue {
  background: var(--brand);
  color: #fff;
}
.section-blue h2,
.section-blue h3 { color: #fff; }
.section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.section-head-light p,
.lede-light { color: rgba(255,255,255,0.88); }
.section-head-light p { font-size: 1.1rem; }

/* ============ INTRO ============ */
.section-intro { padding: 80px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 18px; }
.intro-text p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.65;
}
.intro-text p strong { color: var(--ink); }
.intro-card {
  background: #fff;
  border: 3px solid var(--brand);
  border-radius: 6px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.intro-card-eyebrow {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.intro-card-price {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.intro-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.intro-card-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 700;
}
.intro-card-list li:last-child { border-bottom: none; }
.intro-card-foot {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
@media (max-width: 840px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  border-top: 4px solid var(--gold);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.step h3 { color: var(--ink); margin-bottom: 10px; }
.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}
.step p strong { color: var(--ink); }
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============ POSTCARD VISUALIZATION ============ */
.card-side-label {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-align: center;
  margin: 12px 0;
}
.postcard {
  aspect-ratio: 2 / 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 28px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 6px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr auto 1fr;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.slot {
  background: #f4f4f8;
  border: 2px dashed #b8b8c8;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  min-height: 0;
}
.slot:hover:not(.slot-locked) {
  background: var(--gold);
  border-color: var(--gold-dark);
  border-style: solid;
  color: var(--ink);
}
.slot-category {
  font-weight: 900;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.slot-status {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  margin-top: 4px;
  text-transform: uppercase;
}
.slot:not(.slot-locked) .slot-status { color: var(--brand); }
.slot:hover:not(.slot-locked) .slot-status { color: var(--ink); }
.slot-locked {
  background: var(--brand);
  border: 2px solid var(--brand-darker);
  color: #fff;
  cursor: not-allowed;
}
.slot-locked .slot-category { color: #fff; }
.slot-locked .slot-status { color: var(--gold); }

.tile-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
}
.tile-logo {
  background: #fff;
  border: 2px dashed #b8b8c8;
}
.tile-logo img { height: clamp(18px, 3vw, 26px); width: auto; }
.tile-community {
  background: #f4f4f8;
  border: 2px solid #b8b8c8;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tile-back {
  background: var(--brand-soft);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-foot {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.card-foot-cta {
  margin-top: 8px;
  color: var(--ink);
}
.card-foot-cta strong { color: var(--brand); }
@media (max-width: 600px) {
  .postcard { padding: 8px; gap: 6px; }
  .slot { font-size: 0.6rem; padding: 4px; }
  .slot-category { font-size: 0.65rem; }
  .slot-status { font-size: 0.55rem; }
  .tile-community, .tile-back { font-size: 0.65rem; padding: 4px 8px; }
}

/* ============ MATH ============ */
.math-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.math-card {
  background: #fff;
  border-radius: 6px;
  padding: 36px 32px;
  text-align: center;
  border: 3px solid var(--line);
}
.math-card-us {
  border-color: var(--brand);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.math-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.math-card-us .math-label { color: var(--brand); }
.math-value {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.math-card-us .math-value { color: var(--brand); }
.math-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
.math-perhome {
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.math-card-us .math-perhome { color: var(--brand); }
.math-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.math-list li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.math-card-us .math-list li { color: var(--ink); font-weight: 700; }

.math-breakdown {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: 44px 36px;
  text-align: center;
}
.math-breakdown-eyebrow {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.math-breakdown h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 18px;
}
.math-breakdown p {
  color: rgba(255,255,255,0.90);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.55;
}
.math-breakdown strong { color: var(--gold); }
.math-breakdown .example {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.20);
  padding-top: 22px;
  margin-top: 22px;
}
.math-breakdown em {
  font-style: normal;
  font-weight: 900;
  color: var(--gold);
}
@media (max-width: 640px) {
  .math-grid { grid-template-columns: 1fr; }
  .math-breakdown { padding: 32px 22px; }
}

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.why-item {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 28px 28px 28px 24px;
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.why-item h3 { margin-bottom: 10px; }
.why-item p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============ CATEGORIES ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.cat {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.cat-name {
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cat-status {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cat:not(.cat-locked):hover {
  border-color: var(--gold);
  background: #fffbeb;
}
.cat:not(.cat-locked) .cat-status { color: var(--brand); }
.cat-locked {
  background: var(--brand);
  border-color: var(--brand-darker);
  cursor: not-allowed;
}
.cat-locked .cat-name { color: #fff; }
.cat-locked .cat-status { color: var(--gold); }
.category-note {
  margin-top: 32px;
  text-align: center;
  background: #fffbeb;
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 22px 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
.category-note strong {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
@media (max-width: 800px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ DATES ============ */
.dates-table {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.dates-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.02rem;
}
.dates-table tr:last-child td { border-bottom: none; }
.dates-table td:first-child {
  color: var(--ink-soft);
  font-weight: 700;
}
.dates-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 700;
}
.dates-key { background: var(--gold) !important; }
.dates-key td:first-child,
.dates-key td:last-child {
  color: var(--ink) !important;
  font-weight: 900 !important;
}

/* ============ GUARANTEE ============ */
.guarantee-section { background: #fff; }
.guarantee-box {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: 56px 48px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.guarantee-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.guarantee-box h2 { color: #fff; margin-bottom: 18px; }
.guarantee-box p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.guarantee-box strong { color: var(--gold); }
@media (max-width: 640px) {
  .guarantee-box { padding: 40px 24px; }
}

/* ============ FAQ ============ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 4px 24px;
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--brand); }
.faq summary {
  padding: 20px 0;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq details p {
  padding: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  padding: 36px 32px;
  border-top: 4px solid var(--gold);
}
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: var(--ink);
}
.contact-card > p {
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.5;
}

.callback-form { display: grid; gap: 14px; }
.callback-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.callback-form label em {
  font-style: normal;
  color: var(--ink-soft);
  font-weight: 400;
}
.callback-form input,
.callback-form select {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.callback-form input:focus,
.callback-form select:focus {
  outline: none;
  border-color: var(--brand);
}
.callback-form button { margin-top: 6px; }
.form-success {
  display: none;
  color: var(--success);
  background: #e6f7ec;
  border: 2px solid #b8e6c9;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.form-success.show { display: block; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: #fff;
  color: var(--ink-soft);
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 36px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.footer-mail a {
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
}
.footer-fineprint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
