/* ============================================================
   TRANSITION ET VIE — Natalia Starikova
   CSS Global Premium
   ============================================================ */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --violet:       #6720E0;
  --violet-dark:  #4C3D64;
  --violet-light: #8B5CF6;
  --green:        #05AD7B;
  --green-hover:  #049968;
  --green-sage:   #DDECE5;
  --white:        #FFFFFF;
  --text:         #473E3E;
  --text-light:   #6B6060;
  --text-muted:   #9E9393;
  --bg-main:      #FAF8F6;
  --bg-secondary: #F3ECE8;
  --lavender:     #E9E0F8;
  --lavender-mid: #D4C4F0;
  --border:       #E8E0E0;
  --border-light: #F0E8E8;

  /* Hero gradient */
  --hero-gradient: linear-gradient(217deg, #4C3D64 30%, #D6A2D0 96%);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(103, 32, 224, 0.06);
  --shadow-md:  0 4px 24px rgba(103, 32, 224, 0.10);
  --shadow-lg:  0 8px 40px rgba(103, 32, 224, 0.14);
  --shadow-card: 0 2px 20px rgba(71, 62, 62, 0.08);

  /* Typography */
  --font-title:  'Playfair Display', 'Lora', Georgia, serif;
  --font-body:   'Montserrat', 'Helvetica Neue', sans-serif;
  --font-art:    'Lora', Georgia, serif;

  /* Spacing */
  --section-py: 96px;
  --section-px: 24px;
  --container-max: 1200px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 76px;
}

/* Pages with page-hero don't need extra padding since hero handles it */
body:has(.hero) {
  padding-top: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--violet);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1.15rem; }

p {
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 400;
}

.text-muted { color: var(--text-muted); font-size: 0.9rem; }

.serif-italic {
  font-family: var(--font-art);
  font-style: italic;
  font-weight: 400;
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section--lavender {
  background-color: var(--lavender);
}

.section--sage {
  background-color: var(--green-sage);
}

.section--white {
  background-color: var(--white);
}

.section--dark {
  background: var(--hero-gradient);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p,
.section--dark .lead {
  color: rgba(255,255,255,0.88);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-sage);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--green));
  border-radius: var(--radius-full);
  margin: 20px auto 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Grid helpers */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn--primary {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(5, 173, 123, 0.25);
}

.btn--primary:hover {
  background-color: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 6px 28px rgba(5, 173, 123, 0.38);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-violet {
  background-color: transparent;
  color: var(--violet);
  border-color: var(--violet);
}

.btn--outline-violet:hover {
  background-color: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-green {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--outline-green:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  background-color: var(--bg-secondary);
  border-color: var(--lavender-mid);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn--stripe {
  background: linear-gradient(135deg, #635BFF, #8B7FFF);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(99, 91, 255, 0.28);
  gap: 10px;
}

.btn--stripe:hover {
  background: linear-gradient(135deg, #5249e5, #7A70F0);
  box-shadow: 0 6px 28px rgba(99, 91, 255, 0.40);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card--lavender {
  background: var(--lavender);
  border-color: var(--lavender-mid);
}

.card--sage {
  background: var(--green-sage);
  border-color: #C8DDD5;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card-icon--green {
  background: var(--green-sage);
}

/* ── Badge / Pill ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.badge--violet {
  background: var(--lavender);
  color: var(--violet);
  border-color: var(--lavender-mid);
}

.badge--green {
  background: var(--green-sage);
  color: var(--green);
  border-color: #C8DDD5;
}

.badge--alt {
  background: var(--bg-secondary);
  color: var(--text-light);
  border-color: var(--border);
}

/* Tool pills for method */
.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--lavender);
  color: var(--violet);
  border: 1px solid var(--lavender-mid);
  transition: var(--transition-fast);
}

.pill:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

/* ── Stats bar ── */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  margin-top: 48px;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── Navigation ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 246, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(250, 248, 246, 0.98);
  border-bottom-color: var(--border-light);
  box-shadow: 0 2px 20px rgba(71, 62, 62, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-style: italic;
  font-family: var(--font-title);
  font-weight: 700;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--violet);
  letter-spacing: 0.01em;
}

.nav-logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--violet);
  background-color: var(--lavender);
}

.nav-link svg,
.nav-link .nav-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 4px);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-dropdown a:hover {
  background: var(--lavender);
  color: var(--violet);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  background: var(--lavender);
  color: var(--violet);
}

.nav-mobile .nav-mobile-section {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 16px 8px;
}

.nav-mobile .btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ── Footer ── */
#site-footer {
  background: #2D2438;
  color: rgba(255,255,255,0.82);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand .nav-logo-name,
.footer-brand .nav-logo-mark {
  color: var(--white);
}

.footer-brand .nav-logo-tagline {
  color: rgba(255,255,255,0.5);
}

.footer-description {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ── Sticky CTA (mobile) ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 12px 20px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(71, 62, 62, 0.12);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-main));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  color: #E8D5F5;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  aspect-ratio: 3/4;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

/* Hero image — real photo */
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  border: 4px solid rgba(255,255,255,0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.30), 0 0 0 8px rgba(255,255,255,0.06);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-badge--tl {
  top: 4%;
  left: -20px;
}

.hero-badge--br {
  bottom: 8%;
  right: -20px;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-badge-text .label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
  display: block;
}

.hero-badge-text .value {
  font-size: 0.9rem;
  color: var(--violet);
  font-weight: 700;
  display: block;
  line-height: 1.4;
}

/* ── Problem section ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-card:hover {
  border-color: var(--lavender-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.problem-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--violet);
}

.problem-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.problem-cta-box {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--lavender);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lavender-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.problem-cta-box p {
  font-size: 1.05rem;
  color: var(--violet);
  font-weight: 500;
  max-width: 580px;
  font-style: italic;
}

/* ── Offer cards ── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  border-color: var(--lavender-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.offer-card--featured {
  border-color: var(--violet);
  background: linear-gradient(135deg, var(--lavender), var(--white));
}

.offer-card--featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.offer-card--collective {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green-sage), var(--white));
}

.offer-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.offer-card--collective .offer-number {
  background: var(--green-sage);
  color: var(--green);
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.offer-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.offer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.offer-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.offer-meta-item i {
  color: var(--green);
  width: 16px;
  text-align: center;
}

.offer-price {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 4px;
}

.offer-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.offer-card .btn {
  width: 100%;
  justify-content: center;
}

/* Stripe block */
.stripe-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  justify-content: center;
}

.stripe-info i {
  color: #635BFF;
  font-size: 0.85rem;
}

/* ── Method pillars ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pillar-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-mid);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--lavender-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar-card h4 {
  font-size: 1.05rem;
  color: var(--violet);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Not / Is block */
.is-not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.is-block, .not-block {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid;
}

.is-block {
  background: var(--green-sage);
  border-color: #C8DDD5;
}

.not-block {
  background: #FFF5F5;
  border-color: #F5CBCB;
}

.is-block h4 {
  color: var(--green);
  margin-bottom: 16px;
}

.not-block h4 {
  color: #C0392B;
  margin-bottom: 16px;
}

.is-block li, .not-block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  line-height: 1.6;
}

.is-block li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.not-block li::before {
  content: '✕';
  color: #C0392B;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Why Natalia ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--lavender-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h5 {
  color: var(--violet);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--lavender-mid);
}

.faq-item.open {
  border-color: var(--lavender-mid);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition-fast);
}

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

.faq-item.open .faq-question {
  background: var(--lavender);
}

.faq-q-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
}

.faq-item.open .faq-q-text {
  color: var(--violet);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
}

.faq-item.open .faq-icon {
  background: var(--violet);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--lavender-mid));
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 74px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}

.timeline-dot-inner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--violet);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--lavender-mid);
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-mid);
}

.timeline-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
  display: block;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.timeline-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-content ul li {
  font-size: 0.87rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}

.timeline-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-size: 0.8rem;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  font-family: var(--font-title);
  color: var(--lavender-mid);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.testimonial-theme {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-sage);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--hero-gradient);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-reassurance-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.cta-reassurance-item i {
  color: var(--green);
}

/* ── Contact form ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 24px; }

.contact-info .lead { margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--violet);
  flex-shrink: 0;
}

.contact-detail h5 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--violet);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(103, 32, 224, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23473E3E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--violet);
  margin-top: 1px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--hero-gradient);
  padding: 120px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-main));
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb-sep {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb-current {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ── About photo-text ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.about-photo {
  position: relative;
}

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

.about-photo-placeholder {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--lavender), var(--bg-secondary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-light);
}

.about-photo-placeholder span {
  font-family: var(--font-title);
  font-size: 1rem;
  font-style: italic;
  color: var(--violet);
  text-align: center;
  padding: 0 20px;
}

.about-photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border-light);
}

.about-photo-badge .years {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--violet);
  line-height: 1;
}

.about-photo-badge .years-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.about-content h2 { margin-bottom: 20px; }
.about-content .lead { margin-bottom: 24px; }
.about-content p { margin-bottom: 18px; }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.value-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
}

/* ── Credentials ── */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.credential-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.credential-item:hover {
  border-color: var(--lavender-mid);
  box-shadow: var(--shadow-md);
}

.credential-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--violet);
  background: var(--lavender);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  height: fit-content;
  flex-shrink: 0;
}

.credential-content h5 {
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.credential-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Blog grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--lavender), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
}

.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.45;
  color: var(--text);
  font-family: var(--font-body);
}

.blog-card h3:hover { color: var(--violet); }

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* ── Page about tabs ── */
.page-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 48px;
}

.page-tab {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition-fast);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.page-tab:hover { color: var(--violet); }

.page-tab.active {
  color: var(--violet);
  border-bottom-color: var(--violet);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Mission / Vision blocks ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.mv-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid;
  position: relative;
  overflow: hidden;
}

.mv-card--mission {
  background: var(--lavender);
  border-color: var(--lavender-mid);
}

.mv-card--vision {
  background: var(--green-sage);
  border-color: #C8DDD5;
}

.mv-card .mv-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.mv-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { display: none; }
  .hero-content { max-width: 100%; }

  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 400px; margin: 0 auto; }

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

  .grid-4, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --section-px: 20px; }

  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3, .credentials-grid, .form-row,
  .is-not-grid, .mv-grid { grid-template-columns: 1fr; }

  .problem-grid, .offers-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }

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

  .stats-bar { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .cta-banner { padding: 48px 28px; }

  .problem-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta { display: block; }

  body { padding-bottom: 80px; }

  .section-header { margin-bottom: 40px; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  .contact-form { padding: 32px 24px; }

  .timeline::before { left: 20px; }
  .timeline-dot { width: 44px; }
  .timeline-dot-inner { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .why-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }

  .page-tabs { flex-wrap: wrap; }
}

/* ── Utility classes ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 { color: var(--green); margin-bottom: 10px; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Print */
@media print {
  .nav-hamburger, .sticky-cta, #site-header { display: none; }
  body { padding-top: 0; }
}
