*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f4f4f7;
  color: #1c1c2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Top bar ── */
.topbar {
  height: 5px;
  background: linear-gradient(90deg, #b8963e, #d4af6a, #b8963e);
}

/* ── Site nav ── */
.nav {
  background: #1c1c2e;
  border-bottom: 1px solid rgba(212,175,106,0.25);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.nav-logo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: #d4af6a; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 8px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #c8c8da;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-links a.active { color: #d4af6a; }
.nav-links a.nav-demo { color: #d4af6a; }
.nav-links a.nav-cta {
  background: #b8963e;
  color: #fff;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: #a07c2e; color: #fff; }
@media (max-width: 560px) {
  .nav-inner { justify-content: center; }
  .nav-links a.nav-demo { display: none; }
}

/* ── Hero ── */
.hero {
  background: #1c1c2e;
  color: #fff;
  padding: 56px 24px 52px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: #b8963e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 span { color: #d4af6a; }
.hero p {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: #b0b0c8;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn-gold {
  background: #b8963e;
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: #a07c2e; }
.btn-outline {
  background: transparent;
  color: #d4af6a;
  border: 1.5px solid #d4af6a;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: rgba(212,175,106,0.12); }

/* ── Hero pricing strip ── */
.hero-pricing {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 30px;
  padding: 14px 26px;
  background: rgba(184,150,62,0.12);
  border: 1px solid rgba(212,175,106,0.4);
  border-radius: 10px;
}
.hero-pricing .price {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}
.hero-pricing .price b { color: #d4af6a; }
.hero-pricing .price small {
  font-size: 0.62em;
  font-weight: 500;
  color: #b0b0c8;
}
.hero-pricing .price-divider {
  width: 1px;
  height: 28px;
  background: rgba(212,175,106,0.4);
}
.hero-pricing .price-note {
  font-size: 0.78rem;
  color: #d4af6a;
  font-weight: 600;
}
@media (max-width: 480px) {
  .hero-pricing .price-divider { display: none; }
}

/* ── Inner-page hero (Contact / FAQ) ── */
.page-hero {
  background: #1c1c2e;
  color: #fff;
  padding: 44px 24px 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero h1 span { color: #d4af6a; }
.page-hero p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #b0b0c8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Pricing card ── */
.pricing-card {
  background: linear-gradient(135deg, #20203a 0%, #1c1c2e 100%);
  border: 1.5px solid #b8963e;
  border-radius: 12px;
  padding: 36px 40px;
  margin-bottom: 36px;
  text-align: center;
  color: #fff;
}
.pricing-card .section-label { color: #d4af6a; margin-bottom: 18px; }
.pricing-card .tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 22px;
}
.pricing-tier {
  flex: 1 1 200px;
  max-width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,106,0.3);
  border-radius: 10px;
  padding: 24px 20px;
}
.pricing-tier .amount {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #d4af6a;
  line-height: 1;
}
.pricing-tier .amount small {
  font-size: 0.42em;
  font-weight: 500;
  color: #9898b8;
}
.pricing-tier .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
}
.pricing-tier .sub {
  font-size: 0.82rem;
  color: #9898b8;
  margin-top: 4px;
  line-height: 1.5;
}
.pricing-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 24px;
}
.pricing-perks span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e8e8f0;
}
.pricing-perks span::before {
  content: '✓';
  color: #d4af6a;
  font-weight: 700;
  margin-right: 6px;
}

/* ── Main card ── */
.main {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  width: 100%;
  flex: 1;
}

.section-label {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8963e;
  margin-bottom: 24px;
}

/* ── Feature grid ── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-block { margin-bottom: 32px; }
.feat-block h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1c1c2e;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #eaebee;
}
.feat-block ul {
  list-style: none;
  padding: 0;
}
.feat-block li {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.85;
}
.feat-block li::before {
  content: '✓';
  color: #b8963e;
  font-weight: 700;
  margin-right: 7px;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid #dde0e8;
  margin: 36px 0;
}

/* ── CTA box ── */
.cta-box {
  background: #1c1c2e;
  color: #fff;
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 600px) { .cta-box { padding: 28px 24px; flex-direction: column; text-align: center; } }
.cta-box h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cta-box p {
  font-size: 0.88rem;
  color: #9898b8;
  line-height: 1.6;
}
.cta-box p a { color: #d4af6a; text-decoration: none; font-weight: 600; }
.cta-box p a:hover { text-decoration: underline; }

/* ── Demo note ── */
.demo-note {
  background: #fff;
  border: 1px solid #eaebee;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
}
.demo-note strong { color: #1c1c2e; }
.demo-note a { color: #b8963e; font-weight: 600; text-decoration: none; }
.demo-note a:hover { text-decoration: underline; }

/* ── Coming soon ── */
.coming-soon {
  background: #fff;
  border: 1px solid #eaebee;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 0;
}
.coming-soon h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8963e;
  margin-bottom: 16px;
}
.coming-soon ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.coming-soon li {
  background: #f4f4f7;
  border: 1px solid #dde0e8;
  border-radius: 20px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #444;
  padding: 5px 14px;
}
.coming-soon li::before {
  content: '⏳ ';
  font-size: 0.75rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

.contact-intro h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.1rem;
  color: #1c1c2e;
  margin-bottom: 12px;
}
.contact-intro p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #444;
}
.contact-detail a { color: #b8963e; text-decoration: none; font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }

.contact-card {
  background: #fff;
  border: 1px solid #eaebee;
  border-radius: 12px;
  padding: 28px 28px 30px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.field label .opt { color: #9ca3af; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: #1c1c2e;
  background: #fafafc;
  border: 1px solid #d8dae0;
  border-radius: 7px;
  padding: 11px 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #b8963e;
  box-shadow: 0 0 0 3px rgba(184,150,62,0.15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit {
  width: 100%;
  background: #b8963e;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  padding: 13px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-submit:hover { background: #a07c2e; }

.alert {
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.alert-success { background: #ecfdf3; border: 1px solid #abefc6; color: #067647; }
.alert-error   { background: #fef3f2; border: 1px solid #fecdca; color: #b42318; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #eaebee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: #b8963e;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: #b8963e; }
.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}
.faq-answer a { color: #b8963e; text-decoration: none; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }
.faq-cta { text-align: center; margin-top: 32px; }
.faq-cta p { font-size: 0.9rem; color: #555; margin-bottom: 14px; }

/* ── Footer ── */
.site-footer {
  background: #1c1c2e;
  color: #b0b0c8;
  margin-top: auto;
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 20px; } }
.footer-logo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: #d4af6a; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: #9898b8; max-width: 320px; }
.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af6a;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: #b0b0c8;
  text-decoration: none;
  font-size: 0.86rem;
  padding: 4px 0;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.7;
}
.footer-bottom a { color: #9898b8; text-decoration: none; }
.footer-bottom a:hover { color: #d4af6a; }

/* ── Pricing service note ── */
.pricing-note {
  font-size: 0.76rem;
  color: #9898b8;
  margin-top: 16px;
  line-height: 1.6;
}
.pricing-note a { color: #d4af6a; text-decoration: none; font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ── Legal / Terms ── */
.legal { max-width: 720px; margin: 0 auto; }
.legal .tldr {
  background: #fff;
  border: 1px solid #eaebee;
  border-left: 3px solid #b8963e;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
}
.legal .tldr strong { color: #1c1c2e; }
.legal .updated { font-size: 0.8rem; color: #9ca3af; margin-bottom: 26px; }
.legal h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  color: #1c1c2e;
  margin: 30px 0 10px;
}
.legal p { font-size: 0.9rem; color: #555; line-height: 1.75; margin-bottom: 12px; }
.legal ul { margin: 0 0 12px; padding-left: 20px; }
.legal li { font-size: 0.9rem; color: #555; line-height: 1.75; margin-bottom: 6px; }
.legal a { color: #b8963e; text-decoration: none; font-weight: 600; }
.legal a:hover { text-decoration: underline; }
