/* ════════════════════════════════════════════════════════════
   WEDDINGWEB – style.css
   Paletta: krém · bézs · meleg arany · mahagóni
   Tipográfia: Playfair Display (serif) + DM Sans (sans)
════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  --cream:     #FAF7F2;
  --warm:      #F2EBE0;
  --beige:     #E8DDD0;
  --gold:      #C9A96E;
  --gold-lt:   #E8D5B0;
  --gold-dk:   #9E7A42;
  --brown:     #2C1810;
  --brown-md:  #5C3D2A;
  --muted:     #8B7355;
  --white:     #FFFFFF;
  --border:    rgba(201,169,110,.2);

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --nav-h: 76px;
  --container: 1200px;
  --gap: clamp(16px, 4vw, 48px);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ── SECTION SHARED ───────────────────────────────────────── */
section { padding: clamp(80px, 12vw, 140px) 0; }

.section-label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
}

.section-title em {
  font-style: italic;
  color: var(--gold-dk);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 100px);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--gold);
  font-size: 1rem;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-lt));
}

.ornament::after { background: linear-gradient(to left, transparent, var(--gold-lt)); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%);
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 4px 24px rgba(201,169,110,.35);
}
.btn-gold:hover { box-shadow: 0 8px 36px rgba(201,169,110,.5); }

.btn-dark {
  background: var(--brown);
  color: var(--cream);
}
.btn-dark:hover { background: var(--brown-md); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.7);
  padding: 13px 28px;
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); }

.btn-full { width: 100%; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }
.reveal-delay-5 { transition-delay: .60s; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 clamp(20px, 5vw, 80px);
  height: var(--nav-h);
  transition: background .4s var(--ease), box-shadow .4s;
}

.navbar.scrolled {
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(44,24,16,.05);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .04em;
  transition: color .3s;
}
.navbar.scrolled .nav-logo { color: var(--brown); }

.logo-icon {
  color: var(--gold);
  font-size: .9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .3s;
}
.navbar.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--brown) !important;
  padding: 11px 22px;
  font-size: .65rem !important;
  border-radius: 0;
  transition: background .3s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: background .3s, transform .3s;
}
.navbar.scrolled .burger span { background: var(--brown); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s var(--ease);
  will-change: transform;
}
.hero:hover .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(44,24,16,.72) 0%, rgba(44,24,16,.38) 60%, rgba(44,24,16,.15) 100%),
    linear-gradient(to top, rgba(44,24,16,.55) 0%, transparent 55%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 80px) 80px;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .9s var(--ease) .3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s var(--ease) .55s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(250,247,242,.78);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .85s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.6s forwards;
}
.hero-scroll span {
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-orn {
  position: absolute;
  z-index: 2;
  color: rgba(201,169,110,.2);
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-orn-1 { top: 12%; right: 8%; font-size: 9rem; animation: floatOrn 8s ease-in-out infinite; }
.hero-orn-2 { bottom: 20%; right: 22%; font-size: 4rem; animation: floatOrn 6s ease-in-out infinite .8s; }

@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.5)} }
@keyframes floatOrn { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-16px) rotate(5deg)} }

/* ══════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--brown);
  padding: 32px clamp(20px, 5vw, 80px);
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
}

.trust-label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
  margin-top: 4px;
  display: block;
}

.trust-sep {
  color: rgba(201,169,110,.3);
  font-size: .8rem;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about-frame {
  position: relative;
}

.about-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--brown);
  color: var(--cream);
  padding: 28px 32px;
  text-align: center;
}

.about-badge span {
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.about-badge p {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  line-height: 1.5;
}

.about-text {
  padding: 20px 0;
}

.about-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features { background: var(--warm); }

.features-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.features-note {
  font-size: .85rem;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.75;
  text-align: right;
  flex-shrink: 0;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background .3s;
}

.feature-row:hover { background: rgba(201,169,110,.04); }
.feature-row:hover .feature-num { color: var(--gold); }

.feature-row:nth-child(odd)  { padding-right: 60px; border-right: 1px solid var(--border); }
.feature-row:nth-child(even) { padding-left: 60px; }
.feature-row:nth-last-child(-n+2) { border-bottom: none; }

.feature-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(201,169,110,.28);
  line-height: 1;
  padding-top: 4px;
  transition: color .35s var(--ease);
  user-select: none;
}

.feature-body { padding-top: 2px; }

.feature-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 640px) {
  .features-top { flex-direction: column; align-items: flex-start; }
  .features-note { text-align: left; max-width: 100%; }
  .features-list { grid-template-columns: 1fr; }
  .feature-row:nth-child(odd)  { padding-right: 0; border-right: none; }
  .feature-row:nth-child(even) { padding-left: 0; }
  .feature-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-row:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════════ */
.benefits { background: var(--cream); overflow: hidden; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: .92rem;
  color: var(--brown-md);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.benefit-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Phone mockup */
.benefits-phone {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: min(300px, 90vw);
  background: var(--brown);
  border-radius: 36px;
  padding: 48px 32px;
  box-shadow:
    0 40px 80px rgba(44,24,16,.25),
    0 0 0 8px rgba(44,24,16,.08),
    inset 0 2px 0 rgba(255,255,255,.05);
  position: relative;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
}

.phone-mock-content { text-align: center; }

.phone-names {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}

.phone-names span { color: var(--gold); }

.phone-date {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250,247,242,.5);
  margin-bottom: 24px;
}

.phone-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

.phone-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.phone-info-row {
  font-size: .78rem;
  color: rgba(250,247,242,.65);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 10px 16px;
  text-align: left;
}

.phone-rsvp {
  display: inline-block;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--brown);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}

/* ══════════════════════════════════════════════════════════
   DEMO
══════════════════════════════════════════════════════════ */
.demo { background: var(--warm); }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.demo-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(44,24,16,.12);
}

.demo-card-featured {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(44,24,16,.12);
}
.demo-card-featured:hover { transform: translateY(-18px); }

.demo-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.demo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.demo-card:hover .demo-img-wrap img { transform: scale(1.06); }

.demo-overlay {
  position: absolute; inset: 0;
  background: rgba(44,24,16,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s;
}
.demo-card:hover .demo-overlay { background: rgba(44,24,16,.45); }

.demo-overlay .btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.demo-card:hover .demo-overlay .btn {
  opacity: 1;
  transform: none;
}

.demo-info {
  padding: 28px 32px 36px;
}

.demo-tag {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}

.demo-tag-gold { color: var(--gold); border-color: var(--gold-lt); }

.demo-info h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 6px;
}

.demo-info p {
  font-size: .82rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════ */
.pricing { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}

.pricing-card {
  background: var(--warm);
  padding: 48px 40px;
  position: relative;
  transition: box-shadow .3s;
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(44,24,16,.08);
}

.pricing-card-featured {
  background: var(--brown);
  padding: 64px 40px;
  color: var(--cream);
  z-index: 2;
}

.pricing-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--brown);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.pricing-tier {
  display: block;
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--brown);
  line-height: 1;
}

.pricing-card-featured .price-amount { color: var(--cream); }

.price-currency {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .1em;
}

.pricing-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-desc {
  color: rgba(250,247,242,.55);
  border-color: rgba(255,255,255,.1);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: var(--brown-md);
}

.pricing-card-featured .pricing-features li { color: rgba(250,247,242,.8); }

.pricing-features li span {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

.pricing-features li.disabled { opacity: .4; }
.pricing-features li.disabled span { color: var(--muted); }

.pricing-note {
  text-align: center;
  margin-top: 52px;
  font-size: .85rem;
  color: var(--muted);
}

.pricing-note a {
  color: var(--gold-dk);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color .3s;
}
.pricing-note a:hover { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how { background: var(--warm); }

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.how-step {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
}

.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 12px;
}

.step-content p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

.how-step-arrow {
  font-size: 1.5rem;
  color: var(--gold-lt);
  align-self: center;
  padding-top: 24px;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq { background: var(--cream); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--brown);
  cursor: pointer;
  transition: color .3s;
}

.faq-q:hover { color: var(--gold-dk); }

.faq-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}

.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s;
}

.faq-a.open { max-height: 300px; padding-bottom: 24px; }

.faq-a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
}

.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,.92) 0%, rgba(44,24,16,.7) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.cta-sub {
  font-size: .95rem;
  color: rgba(250,247,242,.65);
  line-height: 1.8;
  margin-bottom: 52px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 44px;
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group-full { grid-column: 1 / -1; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 300;
  letter-spacing: .03em;
  padding: 18px 20px;
  outline: none;
  transition: border-color .3s, background .3s;
  border-radius: 0;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,247,242,.32); }

.form-group select option { background: var(--brown); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,.55);
  background: rgba(255,255,255,.1);
}

.form-group input.invalid { border-color: #c0392b; }

.form-err {
  font-size: .7rem;
  color: #e88;
  opacity: 0;
  transition: opacity .3s;
  min-height: 1em;
}

.form-err.visible { opacity: 1; }

.form-group textarea { resize: vertical; min-height: 90px; }

/* Submit btn state */
#submitBtn { position: relative; }

.btn-loader {
  display: none;
  width: 16px; height: 16px;
  border: 1.5px solid rgba(44,24,16,.3);
  border-top-color: var(--brown);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.btn.loading .btn-text { opacity: 0; }
.btn.loading .btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.form-success.show { display: flex; }

.form-success span {
  font-size: 1.8rem;
  color: var(--gold);
}

.form-success p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--brown);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { color: var(--cream); margin-bottom: 20px; }

.footer-brand p {
  font-size: .85rem;
  color: rgba(250,247,242,.45);
  line-height: 1.75;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(250,247,242,.45);
  margin-bottom: 12px;
  transition: color .3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(250,247,242,.28);
}

.footer-ornament {
  font-size: .8rem;
  color: rgba(201,169,110,.35);
  letter-spacing: .5em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-badge { bottom: -16px; right: -12px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-visual { order: -1; }

  .demo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .demo-card-featured { transform: none; }
  .demo-card-featured:hover { transform: translateY(-6px); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card-featured { padding: 48px 40px; }

  .how-steps {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .how-step-arrow { transform: rotate(90deg); justify-self: center; padding: 0; }

  .footer-top { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .4s;
    z-index: 490;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    color: var(--muted) !important;
    padding: 14px clamp(20px, 5vw, 40px);
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: .75rem;
  }

  .nav-cta {
    margin: 12px clamp(20px, 5vw, 40px) 0 !important;
    width: calc(100% - 2 * clamp(20px, 5vw, 40px)) !important;
    display: block;
    text-align: center;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }

  .trust-sep { display: none; }
  .trust-inner { gap: 24px; }

  .features-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .about-badge { display: none; }

  .how-step { padding: 32px 24px; }

  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pricing-card { padding: 36px 28px; }
}
