/* ===================================================
   Synthstart — Global Styles
   =================================================== */

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

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

:root {
  --brand:       #1B5E7B;
  --brand-dark:  #144A63;
  --brand-light: #E8F4FA;
  --accent:      #E8622A;
  --accent-dark: #C94E1B;
  --text:        #1C1F2A;
  --text-muted:  #5A6070;
  --bg:          #FFFFFF;
  --bg-alt:      #F5F7FB;
  --bg-dark:     #0E1E2C;
  --border:      #DDE3EC;
  --white:       #FFFFFF;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --transition:  .22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Golos Text', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */

h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: .3em .9em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ===================================================
   LAYOUT
   =================================================== */

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

/* ===================================================
   BUTTONS
   =================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85em 2em;
  border-radius: var(--radius);
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,98,42,.30);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1em 2.5em;
  font-size: 1.1rem;
}

/* ===================================================
   HEADER / NAV
   =================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
}

.logo svg {
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--brand); }

.nav-cta { display: flex; align-items: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===================================================
   HERO
   =================================================== */

.hero {
  background: linear-gradient(135deg, #0E1E2C 0%, #1B3D52 60%, #1B5E7B 100%);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,94,123,.4) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .3em .9em;
  font-size: .82rem;
  font-weight: 500;
  color: #CBD5E1;
  margin-bottom: 1.4rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero h1 em {
  font-style: normal;
  color: #FBA65C;
}

.hero-sub {
  font-size: 1.1rem;
  color: #A8C4D4;
  margin-bottom: 2rem;
  max-width: 440px;
}

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

.hero-note {
  font-size: .82rem;
  color: #7A9CB0;
  margin-top: .9rem;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-img-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  padding: .7rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-img-badge strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}

.hero-img-badge span {
  font-size: .78rem;
  color: var(--text-muted);
}

.hero-img-badge .icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================================================
   PAIN POINTS
   =================================================== */

.pain {
  background: var(--bg-alt);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pain-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.pain-card:hover { box-shadow: var(--shadow-md); }

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FEF3EC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}

.pain-card h3 {
  font-size: 1.05rem;
  margin-bottom: .55rem;
  font-family: 'Golos Text', sans-serif;
  font-weight: 600;
}

.pain-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pain-answer {
  margin-top: 2.5rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

.pain-answer-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pain-answer p {
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: .95;
}

.pain-answer p strong { font-weight: 700; }

/* ===================================================
   OUTCOMES / BENEFITS
   =================================================== */

.outcomes { text-align: center; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
  text-align: left;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.3rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.outcome-item:hover { border-color: var(--brand); }

.outcome-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
  font-family: 'Unbounded', sans-serif;
}

.outcome-text h4 {
  font-size: .98rem;
  font-weight: 600;
  font-family: 'Golos Text', sans-serif;
  margin-bottom: .3rem;
}

.outcome-text p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */

.process {
  background: var(--bg-alt);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Unbounded', sans-serif;
}

.step-content h4 {
  font-family: 'Golos Text', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.step-content p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================
   FOR WHOM
   =================================================== */

.for-whom { text-align: center; }

.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.whom-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--border);
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.whom-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.whom-card .emoji {
  font-size: 2rem;
  margin-bottom: .9rem;
  display: block;
}

.whom-card h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Golos Text', sans-serif;
  margin-bottom: .4rem;
}

.whom-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================
   WHAT YOU GET
   =================================================== */

.get { background: var(--bg-alt); }

.get-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.get-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.get-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
}

.get-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.get-item-text {
  font-size: .95rem;
  line-height: 1.55;
}

.get-item-text strong {
  font-weight: 600;
  display: block;
  margin-bottom: .1rem;
}

.get-item-text span {
  color: var(--text-muted);
  font-size: .88rem;
}

.get-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===================================================
   FAQ
   =================================================== */

.faq { text-align: center; }

.faq-list {
  margin-top: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-alt); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: transform .3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}

.faq-answer-inner {
  padding: 0 1.3rem 1.2rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ===================================================
   LEAD FORM
   =================================================== */

.lead-form-section {
  background: linear-gradient(135deg, #0E1E2C 0%, #1B3D52 50%, #1B5E7B 100%);
  color: #fff;
  text-align: center;
}

.lead-form-section .section-label {
  background: rgba(255,255,255,.13);
  color: #A8C4D4;
  border: 1px solid rgba(255,255,255,.15);
}

.lead-form-section .section-title { color: #fff; }

.lead-form-section .section-sub { color: #A8C4D4; }

.lead-form {
  margin-top: 2.2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: left;
}

.form-group label {
  font-size: .88rem;
  font-weight: 500;
  color: #A8C4D4;
}

.form-group input,
.form-group select {
  padding: .85em 1.1em;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group select option { color: var(--text); background: #fff; }

.form-group input::placeholder { color: rgba(255,255,255,.35); }

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,.5);
}

.form-consent {
  font-size: .8rem;
  color: rgba(168,196,212,.75);
  text-align: center;
  line-height: 1.5;
}

.form-consent a {
  color: rgba(168,196,212,.95);
  text-decoration: underline;
}

.lead-form .btn-primary { width: 100%; justify-content: center; }

/* ===================================================
   FOOTER
   =================================================== */

.site-footer {
  background: var(--bg-dark);
  color: #7A9CB0;
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo { color: #A8C4D4; margin-bottom: .8rem; }

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: #556B7A;
}

.footer-links-col h5 {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4A6070;
  margin-bottom: 1rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-links-col a {
  font-size: .88rem;
  color: #556B7A;
  transition: color var(--transition);
}

.footer-links-col a:hover { color: #A8C4D4; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .7rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: #3D5060;
  line-height: 1.6;
}

/* ===================================================
   COOKIE BANNER
   =================================================== */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--bg-dark);
  color: #A8C4D4;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  max-width: 680px;
  width: calc(100% - 2.5rem);
  transition: opacity .4s, transform .4s;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-text {
  font-size: .88rem;
  line-height: 1.55;
  flex: 1;
}

.cookie-text a { color: #A8C4D4; text-decoration: underline; }

.cookie-actions { display: flex; gap: .7rem; flex-shrink: 0; }

.btn-cookie {
  padding: .55em 1.2em;
  border-radius: 8px;
  font-family: 'Golos Text', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition);
}

.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
}
.btn-cookie-accept:hover { background: var(--accent-dark); }

.btn-cookie-decline {
  background: rgba(255,255,255,.08);
  color: #7A9CB0;
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.13); color: #A8C4D4; }

/* ===================================================
   LEGAL PAGES
   =================================================== */

.legal-hero {
  background: var(--bg-alt);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: .6rem;
}

.legal-hero p {
  color: var(--text-muted);
  font-size: .95rem;
}

.legal-body {
  padding: 3.5rem 0 5rem;
  max-width: 720px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.2rem;
  margin: 2rem 0 .7rem;
  color: var(--brand);
}

.legal-body h2:first-of-type { margin-top: 0; }

.legal-body p {
  margin-bottom: .9rem;
  line-height: 1.75;
  color: var(--text);
  font-size: .97rem;
}

.legal-body ul {
  padding-left: 1.3rem;
  margin-bottom: .9rem;
}

.legal-body li {
  margin-bottom: .45rem;
  line-height: 1.65;
  font-size: .97rem;
  color: var(--text);
}

/* ===================================================
   SUCCESS PAGE
   =================================================== */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  text-align: center;
  padding: 2rem;
}

.success-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
}

.success-card h1 {
  font-size: 1.6rem;
  margin-bottom: .7rem;
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ===================================================
   FINAL CTA
   =================================================== */

.final-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.final-cta .section-title { margin-bottom: 1.5rem; }

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.1rem;
    box-shadow: var(--shadow-md);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-img-wrap { order: -1; }
  .hero { padding: 4rem 0 5rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .whom-grid { grid-template-columns: 1fr; }
  .get-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .nav-cta { display: none; }
  .cookie-banner { flex-direction: column; gap: .9rem; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie { flex: 1; text-align: center; }
  .hero-img-badge { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
