/* ========================================
   BACK TO ME CIRCLE — Landing Page Styles
   Design: Modern Wellness, Soft Professional
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Literata:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Surfaces */
  --surface: #fff8f2;
  --surface-dim: #dfd9d3;
  --surface-container-low: #f9f2ed;
  --surface-container: #f3ede7;
  --surface-container-high: #ede7e1;
  --surface-container-highest: #e7e1dc;
  --surface-white: #ffffff;

  /* Brand */
  --primary: #4f6052;
  --primary-container: #67796a;
  --on-primary: #ffffff;

  /* Text */
  --on-surface: #1d1b18;
  --on-surface-variant: #434843;
  --outline: #737872;
  --outline-variant: #c3c8c1;

  /* Semantic */
  --inverse-surface: #33302c;
  --inverse-on-surface: #f6f0ea;

  /* Spacing */
  --container-max: 1200px;
  --gutter: 24px;
  --margin-desktop: 64px;
  --margin-mobile: 20px;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft: 0 2px 16px rgba(79,96,82,0.06);
  --shadow-card: 0 4px 24px rgba(79,96,82,0.07);
  --shadow-elevated: 0 8px 32px rgba(79,96,82,0.09);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-surface);
  background-color: var(--surface);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3 { font-family: 'Literata', serif; color: var(--on-surface); }
h1 { font-size: 48px; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 32px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 24px; font-weight: 500; line-height: 1.35; }
p { color: var(--on-surface-variant); line-height: 1.6; }

.label-sm {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

section {
  padding-top: 88px;
  padding-bottom: 88px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--on-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background-color: var(--primary-container);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--on-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-sm:hover {
  background-color: var(--primary-container);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--on-primary);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-white:hover {
  background-color: var(--surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* ========================================
   1. HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface);
  border-bottom: 1px solid var(--surface-container-highest);
}

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

.header-logo {
  font-family: 'Literata', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--on-surface);
  white-space: nowrap;
}

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--primary); }
.header-nav .btn-primary-sm { color: var(--on-primary); }
.header-nav .btn-primary-sm:hover { color: var(--on-primary); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========================================
   2. HERO SECTION
   ======================================== */
.hero {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 80px;
  background-color: var(--surface);
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--outline);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--on-surface-variant);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-cta-group { text-align: center; }

.hero-offer {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--outline);
  font-weight: 500;
}

/* ========================================
   3. PAIN POINTS (Maybe you look fine...)
   ======================================== */
.pain-points {
  background-color: var(--surface-container-low);
}

.pain-points h2 {
  text-align: center;
  margin-bottom: 20px;
}

.pain-intro {
  text-align: center;
  font-size: 17px;
  color: var(--on-surface-variant);
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-closing {
  text-align: center;
  font-size: 17px;
  color: var(--on-surface-variant);
  margin-top: 48px;
  line-height: 1.65;
}

.pain-card {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--surface-container-highest);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pain-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  opacity: 0.7;
}

.pain-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--on-surface);
}

.pain-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-surface-variant);
}

/* ========================================
   4. NOT JUST ANOTHER GROUP
   ======================================== */
.not-another-group {
  background-color: var(--surface);
}

.nag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nag-content h2 { margin-bottom: 24px; }

.nag-content > p,
.nag-closing {
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-surface-variant);
  margin-bottom: 32px;
}

.nag-closing {
  margin-top: 28px;
  margin-bottom: 0;
}

.nag-list { display: flex; flex-direction: column; gap: 16px; }

.nag-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-surface-variant);
}

.nag-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.nag-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.nag-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ========================================
   5. WHAT'S INCLUDED
   ======================================== */
.whats-included {
  background-color: var(--surface-container-low);
}

.wi-header {
  margin-bottom: 48px;
}

.wi-header h2 { margin-bottom: 0; }

.wi-subtitle {
  font-size: 16px;
  color: var(--on-surface-variant);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.wi-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.wi-link:hover { opacity: 0.7; }

.wi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.wi-card {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  border: 1px solid var(--surface-container-highest);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wi-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.wi-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}

.wi-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wi-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-surface-variant);
}

/* ========================================
   6. MEET THE FOUNDER
   ======================================== */
.meet-founder {
  background-color: var(--surface);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.founder-content h2 {
  margin-bottom: 20px;
}

.founder-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--on-surface-variant);
  margin-bottom: 16px;
}

.founder-signature {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--surface-container-highest);
}

.founder-signature strong {
  display: block;
  font-family: 'Literata', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.founder-signature span {
  font-size: 13px;
  color: var(--outline);
}

/* ========================================
   7. THIS SPACE IS FOR YOU IF...
   ======================================== */
.for-you {
  background-color: var(--surface-container-low);
}

.for-you h2 {
  text-align: center;
  margin-bottom: 48px;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--surface-white);
  border: 1px solid var(--surface-container-highest);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.chip:hover {
  background-color: var(--surface-container);
  border-color: var(--outline-variant);
  transform: translateY(-1px);
}

/* ========================================
   8. PRICING
   ======================================== */
.pricing {
  background-color: var(--surface-container);
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--surface-container-highest);
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--surface-container-low);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.pricing-title {
  font-family: 'Literata', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--on-surface);
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: 'Literata', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card .btn-primary {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
}

.pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--outline);
}

/* ========================================
   9. TESTIMONIALS
   ======================================== */
.testimonials {
  background-color: var(--surface);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface-container-low);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--surface-container-highest);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-surface-variant);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--outline);
}

/* ========================================
   10. FAQ
   ======================================== */
.faq {
  background-color: var(--surface-container-low);
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-container-highest);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-soft); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--outline);
  transition: transform 0.3s ease;
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-surface-variant);
}

/* ========================================
   11. FINAL CTA
   ======================================== */
.final-cta {
  background-color: var(--primary);
  text-align: center;
}

.final-cta h2 {
  color: var(--on-primary);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 36px;
}

.final-cta .btn-white { margin-bottom: 16px; }

.final-cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ========================================
   12. LOGOS / CERTIFICATIONS
   ======================================== */
.certifications {
  background-color: var(--surface);
  padding-top: 56px;
  padding-bottom: 56px;
}

.cert-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--outline);
  margin-bottom: 32px;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.cert-logos img:hover { opacity: 1; }

/* ========================================
   13. FOOTER
   ======================================== */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--surface-container-highest);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left strong {
  display: block;
  font-family: 'Literata', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.footer-left span {
  font-size: 13px;
  color: var(--outline);
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  font-size: 13px;
  color: var(--outline);
  transition: color 0.2s ease;
}

.footer-right a:hover { color: var(--primary); }

/* ========================================
   RESPONSIVE — Tablet (768px)
   ======================================== */
@media (max-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .wi-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding-left: var(--margin-mobile); padding-right: var(--margin-mobile); }
  section { padding-top: 56px; padding-bottom: 56px; }

  h1 { font-size: 34px; line-height: 1.2; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  /* Header */
  .header-nav { display: none; }
  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px var(--margin-mobile);
    border-bottom: 1px solid var(--surface-container-highest);
    gap: 20px;
    box-shadow: var(--shadow-card);
  }
  .header-cta-mobile { display: block !important; }
  .header-nav .btn-primary-sm { display: none; }
  .header-nav.active .btn-primary-sm { display: inline-flex; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .hero { padding-top: 48px; padding-bottom: 56px; }
  .hero h1 { max-width: 100%; }
  .hero-subtitle { font-size: 16px; }

  /* Pain Points */
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Not Another Group */
  .nag-grid { grid-template-columns: 1fr; gap: 40px; }
  .nag-image-wrapper { order: -1; }
  .nag-image-wrapper img { height: 320px; }

  /* What's Included */
  .wi-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wi-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Founder */
  .founder-card { grid-template-columns: 1fr; }
  .founder-image img { height: 360px; }
  .founder-content { padding: 36px 28px; }

  /* Chips */
  .chips-grid { gap: 10px; }
  .chip { font-size: 13px; padding: 10px 18px; }

  /* Pricing */
  .pricing-card { max-width: 100%; padding: 36px 28px; }
  .pricing-amount { font-size: 48px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-right { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .wi-grid { grid-template-columns: 1fr; }
  .cert-logos { gap: 24px; }
  .cert-logos img { height: 48px; }
}

/* ========================================
   LEGAL & CONTACT PAGES
   ======================================== */

/* Page hero for secondary pages */
.page-hero {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 48px;
  background-color: var(--surface);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero .page-subtitle {
  font-size: 15px;
  color: var(--outline);
  font-weight: 500;
}

/* Legal page content */
.legal-content {
  padding-top: 0;
  padding-bottom: 88px;
  background-color: var(--surface);
}

.legal-content .container {
  max-width: 900px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--on-surface);
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-surface-variant);
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-surface-variant);
  margin-bottom: 6px;
  list-style: disc;
}

.legal-note {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--surface-container-low);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-container-highest);
}

.legal-note p {
  font-size: 14px;
  font-style: italic;
  color: var(--outline);
  margin-bottom: 0;
}

/* Contact page */
.contact-content {
  padding-top: 0;
  padding-bottom: 88px;
  background-color: var(--surface);
}

.contact-content .container {
  max-width: 640px;
}

.contact-card {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--surface-container-highest);
  text-align: center;
}

.contact-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--on-surface-variant);
  margin-bottom: 16px;
}

.contact-email {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--on-primary);
  transform: translateY(-1px);
}

.contact-disclaimer {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--surface-container-highest);
}

.contact-disclaimer p {
  font-size: 13px;
  color: var(--outline);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Inner page header nav adjustments */
.header-nav-inner a {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: color 0.2s ease;
}

.header-nav-inner a:hover {
  color: var(--primary);
}

/* Responsive for legal/contact */
@media (max-width: 768px) {
  .page-hero { padding-top: 48px; padding-bottom: 32px; }
  .legal-content { padding-bottom: 56px; }
  .contact-content { padding-bottom: 56px; }
  .contact-card { padding: 36px 24px; }
  .legal-section h2 { font-size: 22px; }
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
  border: 1px solid var(--surface-container-highest);
  border-radius: var(--radius-full);
  padding: 2px;
  background: var(--surface-container-low);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--outline);
  border-radius: var(--radius-full);
  transition: background-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}

.lang-switcher a:hover {
  color: var(--on-surface);
  background: var(--surface-container);
}

.lang-switcher a.active {
  background: var(--primary);
  color: var(--on-primary);
}

.lang-switcher a.active:hover {
  background: var(--primary-container);
  color: var(--on-primary);
}

.lang-flag {
  font-size: 13px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    margin-right: auto;
    order: -1;
    margin-bottom: 12px;
  }

  .header-inner {
    position: relative;
  }

  .lang-switcher-mobile {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    border: none;
    background: transparent;
    gap: 4px;
  }

  .lang-switcher-mobile a {
    padding: 4px 8px;
    font-size: 11px;
  }
}
