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

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

/* ── TOKENS ── */
:root {
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #18151e;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.58);
  --border: rgba(255,255,255,0.10);
  --grad: linear-gradient(90deg, #FF7A50 0%, #FFB800 100%);
  --gold: #FFB800;
  --gold-dim: rgba(255,184,0,0.15);
  --max-w: 1180px;
  --pad-sm: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24,21,30,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad-sm);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { width: 42px; height: 42px; }
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; display: block; }

.nav-lang { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-lang a { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); text-decoration: none; text-transform: uppercase; transition: color 0.15s; }
.nav-lang a:hover { color: #fff; }
.nav-lang-active { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-links a:hover  { color: #fff; }
.nav-links a.active { color: var(--gold); }

.nav-socials { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

.nav-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.nav-social:hover { opacity: 0.82; transform: scale(1.06); }
.nav-social svg { width: 17px; height: 17px; fill: #18151e; }
/* Instagram stroke-based icon: svg[stroke] targets only Instagram (only icon with stroke attr on <svg>) */
.nav-social svg[stroke] rect,
.nav-social svg[stroke] circle:not([fill]) { fill: none; }
/* Same fix for footer Instagram */
.social-icon-circle svg[stroke] rect,
.social-icon-circle svg[stroke] circle:not([fill]) { fill: none; }

/* ── HERO ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--pad-sm) 100px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero .lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.62;
}

/* ── PAGE HERO ── */
.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad-sm) 80px;
}

.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 720px;
}

.page-hero .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.62;
}

/* ── BUTTONS ── */
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover  { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark    { background: var(--grad); color: #fff; border: 2px solid transparent; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold-dim); opacity: 1; }

/* ── LAYOUT ── */
.section    { max-width: var(--max-w); margin: 0 auto; padding: 90px var(--pad-sm); }
.section-sm { max-width: var(--max-w); margin: 0 auto; padding: 60px var(--pad-sm); }

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── HEADINGS ── */
h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

h3 { font-size: 19px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }

/* ── PROSE ── */
.prose p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; max-width: 600px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { opacity: 0.75; }
.prose h2 { font-size: 22px; font-weight: 700; margin-top: 48px; margin-bottom: 16px; letter-spacing: -0.01em; color: #fff; }
.prose strong { color: #fff; font-weight: 700; }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }

.step-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding-top: 3px; }
.step-body h3 { font-size: 17px; margin-bottom: 6px; }
.step-body p  { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: none; margin-bottom: 0; }

/* ── FORMAT CARDS ── */
.format-cards { display: flex; flex-direction: column; }

.format-card {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.format-card:last-child { border-bottom: 1px solid var(--border); }
.format-card h3 { margin-bottom: 8px; }
.format-card p  { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: none; margin-bottom: 0; }

.format-meta { font-size: 12px; font-weight: 600; color: var(--muted); line-height: 1.85; white-space: nowrap; text-align: right; }

/* ── DISCLAIMER ── */
.disclaimer {
  border: 1px solid var(--border);
  padding: 28px 30px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.disclaimer p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; max-width: none; }
.disclaimer p:last-child { margin-bottom: 0; }

/* ── TAG LIST ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag { border: 1px solid var(--border); padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--muted); }

/* ── LINK-SM ── */
.link-sm {
  font-size: 12px; font-weight: 700; color: var(--gold);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: opacity 0.15s;
}
.link-sm:hover { opacity: 0.7; }

/* ── PLACEHOLDER ── */
.placeholder-block {
  max-width: var(--max-w); margin: 0 auto;
  padding: 120px var(--pad-sm); text-align: center;
}
.placeholder-block p { font-size: 18px; color: var(--muted); margin-top: 16px; max-width: none; }

/* ── TESTIMONIALS ── */
.testimonials { display: flex; flex-direction: column; }

.testimonial { padding: 36px 0; border-top: 1px solid var(--border); }
.testimonial:last-child { border-bottom: 1px solid var(--border); }

.testimonial-text { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; max-width: 700px; }
.testimonial-author { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }

/* ── CTA FINAL ── */
.cta-final { background: rgba(255,255,255,0.025); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-final .section { text-align: center; }

.cta-final p.lead-lg { font-size: clamp(22px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.cta-final p.sub     { font-size: 17px; color: var(--muted); margin-bottom: 44px; }
.cta-final .cta-row  { justify-content: center; }

/* ── SOCIALS SECTION ── */
.socials-section { max-width: var(--max-w); margin: 0 auto; padding: 80px var(--pad-sm); }

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

.social-item {
  display: flex; align-items: center; gap: 22px;
  padding: 36px 0; text-decoration: none;
  border-top: 1px solid var(--border);
  transition: opacity 0.15s;
}
.social-item:hover { opacity: 0.72; }

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

.social-icon-circle {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.social-icon-circle svg { width: 26px; height: 26px; fill: #fff; }

.s-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.s-yt { background: #ff0000; }
.s-fb { background: #1877f2; }
.s-tg { background: #2aabee; }
.s-li { background: #0077b5; }

.social-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.social-url   { font-size: 15px; font-weight: 600; color: #fff; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 22px var(--pad-sm);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --pad-sm: 20px; }
  nav { grid-template-columns: auto 1fr; }
  .nav-links { justify-content: flex-end; gap: 24px; }
  .nav-socials { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .social-item:nth-child(odd)  { padding-right: 30px; }
  .social-item:nth-child(even) { padding-left:  30px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero   { padding: 70px var(--pad-sm) 60px; }
  .section { padding: 60px var(--pad-sm); }
  .socials-grid { grid-template-columns: 1fr; }
  .social-item:nth-child(odd)  { padding-right: 0; border-right: none; }
  .social-item:nth-child(even) { padding-left: 0; }
  .social-item { border-top: 1px solid var(--border) !important; }
  .social-item:last-child { border-bottom: 1px solid var(--border) !important; }
  .format-card { grid-template-columns: 1fr; }
  .format-meta { text-align: left; }
  .cta-row { flex-direction: column; }
  .btn { text-align: center; width: 100%; }
  .step { grid-template-columns: 40px 1fr; }
}
