:root {
  --bg: #0d0f14;
  --bg-elevated: #161a22;
  --card: rgba(22, 26, 34, 0.85);
  --rose: #e8b4a0;
  --rose-bright: #f5d0c5;
  --gold: #c9a227;
  --text: #f0ece6;
  --muted: #a39e96;
  --border: rgba(232, 180, 160, 0.18);
  --radius: 12px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(232, 180, 160, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--rose); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rose-bright); }

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img { height: 40px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--rose); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--rose);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile nav */
.side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg-elevated);
  z-index: 1100;
  padding: 5rem 1.5rem 2rem;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
}

.side-menu.open { right: 0; }

.side-menu ul { list-style: none; }

.side-menu li { margin-bottom: 1.2rem; }

.side-menu a {
  color: var(--text);
  font-size: 1.1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Hero editorial */
.hero-editorial {
  padding: 5rem 1.5rem 4rem;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.3rem;
  color: #fff;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-main {
  background: linear-gradient(135deg, var(--rose), #d4a08c);
  color: #1a120f;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 180, 160, 0.3);
  color: #1a120f;
}

.btn-ghost {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(232, 180, 160, 0.08);
}

.hero-visual img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Sections */
.block {
  padding: 4rem 1.5rem;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--rose-bright);
  margin-bottom: 1rem;
  text-align: center;
}

.block-lead {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* Facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.fact {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}

.fact small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.3rem;
}

.fact strong {
  font-size: 1.05rem;
  color: var(--text);
}

/* Two column */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

.duo img {
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Steps */
.steps {
  counter-reset: s;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.steps li {
  counter-increment: s;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.steps li::before {
  content: counter(s);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: var(--rose);
  color: #1a120f;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lists */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: 700;
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  color: var(--rose);
  font-weight: 600;
  font-size: 0.88rem;
}

.data-table td:nth-child(2) {
  color: var(--gold);
  font-weight: 600;
}

/* Pros cons */
.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.panel h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.panel.good h3 { color: #86efac; }
.panel.bad h3 { color: #fca5a5; }

/* Audience cards */
.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.aud-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  transition: transform 0.2s;
}

.aud-card:hover { transform: translateY(-3px); }

.aud-card strong {
  display: block;
  color: var(--rose-bright);
  margin-bottom: 0.4rem;
}

/* FAQ */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.faq-row {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.7rem;
  background: var(--card);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.3rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-btn:hover { color: var(--rose); }

.faq-plus {
  font-size: 1.4rem;
  color: var(--rose);
  transition: transform 0.25s;
}

.faq-row.active .faq-plus { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Footer */
.bottom {
  background: #090b10;
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 2rem;
}

.bottom-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

.bottom-brand img { height: 36px; margin-bottom: 0.8rem; }

.bottom-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 260px;
}

.bottom-col h4 {
  color: var(--rose);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bottom-col ul { list-style: none; }

.bottom-col li { margin-bottom: 0.45rem; }

.bottom-col a {
  color: var(--muted);
  font-size: 0.9rem;
}

.copy {
  max-width: 1140px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Float */
.float-btn {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 900;
  box-shadow: 0 8px 28px rgba(232, 180, 160, 0.35);
}

/* Reveal */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.2rem 3rem;
  }
  .duo, .side-by-side {
    grid-template-columns: 1fr;
  }
  .bottom-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .block { padding: 3rem 1.1rem; }
  .facts { grid-template-columns: 1fr 1fr; }
}
