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

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.7;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 34, 56, 0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 700;
}
.nav-logo span { color: #c9a84c; font-size: 0.7rem; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
}
.nav-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 700;
}
.nav-links li a:hover,
.nav-links li a.active { color: #c9a84c; }
.nav-cta {
  background: #c9a84c;
  color: #1a3556 !important;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  border: 2px solid #c9a84c;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: #d9b85c !important;
  color: #0f2238 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.5);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 0.6rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c9a84c;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  margin-top: 64px;
  background: linear-gradient(135deg, #1a3556 0%, #0f2238 100%);
  color: #ffffff;
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero img.hero-logo {
  max-width: 540px;
  width: 82%;
  height: auto;
  margin: 0 auto 1.8rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.45);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
  line-height: 1.15;
}
.hero h1 .reg { font-size: 1rem; vertical-align: super; color: #c9a84c; }
.hero .tagline {
  font-size: 1.3rem;
  color: #c9a84c;
  margin-bottom: 1.6rem;
  font-style: italic;
  letter-spacing: 0.5px;
}
.hero .lead {
  font-size: 1.05rem;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 1.4rem;
  line-height: 1.7;
}
.hero .sub {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border: 1.5px solid #1a3556;
  color: #1a3556;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.25s;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border-radius: 4px;
}
.btn:hover { background: #1a3556; color: #fff; }
.btn-solid {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #1a3556;
}
.btn-solid:hover { background: #b8973a; border-color: #b8973a; color: #1a3556; }
.btn-light {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-light:hover { background: #ffffff; color: #1a3556; }
.btn-large { padding: 1.05rem 2.4rem; font-size: 0.95rem; }

/* ── Trust Badges ── */
.trust-strip {
  background: #f1f5f9;
  border-top: 3px solid #c9a84c;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.4rem 2rem;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #1a3556;
  font-weight: 700;
}
.trust-icon { font-size: 1.2rem; }

/* ── Sections ── */
section {
  padding: 5rem 2rem;
}
section.bg-light { background: #f1f5f9; }
section.bg-dark { background: #1a3556; color: #ffffff; }
section.bg-dark .section-title { color: #ffffff; }
section.bg-dark .section-label { color: #c9a84c; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  color: #c9a84c;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-align: center;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a3556;
  margin-bottom: 0.6rem;
  text-align: center;
  line-height: 1.25;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: #c9a84c;
  margin: 0 auto 2.5rem;
}

/* ── Stats ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #ffffff;
  border-top: 2px solid #c9a84c;
  border-bottom: 2px solid #c9a84c;
}
.stat {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #1a3556;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.stat-sub {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.4rem;
}
.stats-caption {
  text-align: center;
  font-style: italic;
  color: #64748b;
  padding: 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
}

/* ── Two Column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(26, 53, 86, 0.15);
}
.col-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a3556;
  margin-bottom: 1rem;
  font-weight: 600;
}
.col-text p { margin-bottom: 1.1rem; color: #334155; }
.col-text p:last-child { margin-bottom: 0; }

/* ── Cards (Consequences / Alternatives) ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cards.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
  border-top: 3px solid #c9a84c;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 53, 86, 0.12);
}
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a3556;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: #1a3556;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 3px solid #c9a84c;
}
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1a3556;
  margin-bottom: 0.5rem;
  font-weight: 600;
  min-height: 2.5rem;
}
.step p { font-size: 0.85rem; color: #475569; line-height: 1.55; }

/* ── Quote / Testimonial ── */
.studio-quote {
  border-left: 4px solid #c9a84c;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #1a3556;
  line-height: 1.65;
  border-radius: 4px;
}
.studio-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: #c9a84c;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.testimonial {
  background: #ffffff;
  padding: 1.8rem 1.6rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #c9a84c;
}
.testimonial blockquote {
  font-style: italic;
  color: #1e293b;
  margin: 0.8rem 0;
  line-height: 1.7;
  font-size: 0.96rem;
}
.testimonial blockquote::before { content: '\201C'; color: #c9a84c; font-size: 1.4rem; }
.testimonial blockquote::after { content: '\201D'; color: #c9a84c; font-size: 1.4rem; }
.t-headline {
  font-family: 'Playfair Display', serif;
  color: #1a3556;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.t-author {
  display: block;
  font-size: 0.78rem;
  color: #c9a84c;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.8rem;
}
.stars { color: #c9a84c; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.3rem; }

/* ── Feature List ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #1a3556;
  color: #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #1a3556;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.feature p { font-size: 0.9rem; color: #475569; }

/* ── Price Highlights ── */
.price-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.price-item {
  background: #ffffff;
  padding: 1.4rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.price-item-icon {
  font-size: 1.6rem;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}
.price-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1a3556;
  margin-bottom: 0.3rem;
}
.price-item p { font-size: 0.82rem; color: #64748b; }

/* ── FAQ ── */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.4rem 0;
}
.faq-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a3556;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.faq-item p { color: #334155; }

/* ── Target / Audience ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.audience-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e2e8f0;
}
.audience-card h3 {
  font-family: 'Playfair Display', serif;
  color: #1a3556;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* ── Story / About ── */
.story-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid #c9a84c;
  box-shadow: 0 4px 16px rgba(26, 53, 86, 0.08);
  margin-bottom: 2rem;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.fact {
  background: #f8fafc;
  padding: 1.2rem;
  border-radius: 6px;
}
.fact h4 {
  font-size: 0.78rem;
  color: #c9a84c;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.fact p { font-size: 0.9rem; color: #1a3556; line-height: 1.5; }

/* ── Final CTA ── */
.cta-banner {
  background: linear-gradient(135deg, #1a3556 0%, #0f2238 100%);
  color: #ffffff;
  padding: 4.5rem 2rem;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.cta-banner p {
  max-width: 700px;
  margin: 0 auto 1.6rem;
  color: #cbd5e1;
  font-size: 1rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.contact-info {
  background: #1a3556;
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  color: #c9a84c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.contact-info p { margin-bottom: 0.8rem; color: #cbd5e1; }
.contact-info a { color: #c9a84c; text-decoration: none; font-weight: 700; }
.contact-info a:hover { color: #d9b85c; }

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1e293b;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a84c;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ── */
footer {
  background: #0f2238;
  color: #cbd5e1;
  text-align: center;
  padding: 3rem 2rem 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: #c9a84c;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: block;
}
footer p { font-size: 0.85rem; margin-bottom: 0.4rem; }
footer a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 0.6rem;
  transition: color 0.2s;
}
footer a:hover { color: #c9a84c; }
.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e3a5f;
  font-size: 0.78rem;
  color: #64748b;
}

/* ── Disclaimer Box ── */
.disclaimer {
  background: #f1f5f9;
  border-left: 4px solid #94a3b8;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}
.disclaimer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1a3556;
  margin-bottom: 0.6rem;
}
.disclaimer p { font-size: 0.88rem; color: #475569; line-height: 1.65; }
.disclaimer ul { font-size: 0.88rem; color: #475569; margin-left: 1.5rem; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 900px;
  margin: 0 auto;
  background: #1a3556;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.cookie-banner p { font-size: 0.85rem; margin: 0; flex: 1; }
.cookie-banner em { color: #c9a84c; font-style: normal; font-weight: 700; }
.cookie-btns { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.cookie-btns a { color: #c9a84c; font-size: 0.78rem; text-decoration: underline; }

/* ── Lang toggle ── */
.lang-toggle {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-left: 1rem;
}
.lang-btn {
  font-size: 0.7rem;
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.lang-btn:hover { color: #c9a84c; }
.lang-active { color: #c9a84c; background: rgba(201, 168, 76, 0.1); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards.cards-4 { grid-template-columns: repeat(2, 1fr); }
  .price-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(15, 34, 56, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1.2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    text-align: center;
  }

  .hero { padding: 3rem 1.2rem 2.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1.1rem; }
  .hero img.hero-logo { max-width: 240px; }

  section { padding: 3rem 1.2rem; }
  .container { padding: 0; }

  .section-title { font-size: 1.8rem; }
  .two-col { grid-template-columns: 1fr; gap: 1.8rem; }
  .cards, .cards.cards-2, .cards.cards-4 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .price-highlights { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.1rem 0.6rem; border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid #e2e8f0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid #e2e8f0; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; word-break: break-word; }

  .trust-inner { flex-direction: column; gap: 0.8rem; align-items: flex-start; }

  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cta-banner h2 { font-size: 1.6rem; }
}
