*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --emerald: #556B5D;
  --emerald-deep: #2F4A3C;
  --emerald-mid: #728F80;
  --gold: #C6A86A;
  --gold-light: #D9C090;
  --gold-pale: #F2EAD8;
  --cream: #F6F1E8;
  --cream-dark: #ECE4D8;
  --white: #FFFFFF;
  --text-dark: #232323;
  --text-mid: #3C4A43;
  --text-light: #5C6A62;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', sans-serif;
}
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: var(--sans); background: var(--cream); color: var(--text-dark); overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--emerald-deep); border-radius: 3px; }

/* ─── LOGO SVG inline ─── */
.logo-mark svg { display: block; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 241, 232, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(85,107,93,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
/* Logo mark */
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--emerald-deep);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-text em { color: var(--gold); font-style: italic; }
.logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  color: rgba(47,74,60,0.5);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(43,43,43,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--emerald-deep);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0; right: 0;
  z-index: 998;
  background: rgba(246, 241, 232, 0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(85,107,93,0.15);
  flex-direction: column;
  padding: 12px 24px 24px;
  box-shadow: 0 16px 40px rgba(47,74,60,0.12);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(43,43,43,0.75);
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(85,107,93,0.1);
}
.mobile-menu .mobile-menu-cta {
  margin-top: 16px;
  background: var(--emerald-deep);
  color: var(--gold);
  text-align: center;
  border: none;
  border-radius: 30px;
  padding: 16px;
  font-weight: 500;
}
.nav-cta {
  background: var(--emerald-deep);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--emerald);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47,74,60,0.25);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #F6F1E8 0%, #ECE4D8 100%);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(85,107,93,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(198,168,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border: 1.5px solid rgba(85,107,93,0.15);
  border-radius: 50%;
  animation: rotate 90s linear infinite;
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 480px; height: 480px;
  border: 1.5px solid rgba(198,168,106,0.12);
  border-radius: 50%;
  animation: rotate 120s linear infinite reverse;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--emerald-deep);
}
.hero-name {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero-name em { color: var(--gold-light); font-style: italic; display: block; }
.hero-title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(43,43,43,0.5);
  margin-bottom: 36px;
}
.hero-desc {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(43,43,43,0.75);
  max-width: 460px;
  margin-bottom: 48px;
  font-style: italic;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.hero-badge {
  border: 1px solid rgba(85,107,93,0.25);
  color: var(--emerald);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  background: rgba(198,168,106,0.06);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.btn-gold {
  display: inline-block;
  background: var(--emerald-deep);
  color: var(--gold);
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47,74,60,0.25);
}
.btn-outline {
  color: rgba(43,43,43,0.6);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(85,107,93,0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { color: var(--gold-light); border-color: var(--gold); }
.hero-scroll-link {
  color: rgba(43,43,43,0.5);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll-link:hover { color: var(--gold); }
.hero-freenote {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 18px;
  letter-spacing: 0.3px;
}
.hero-freenote::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  animation: fadeUp 1s 0.3s ease both;
}
.photo-frame-wrap {
  position: relative;
  width: 420px;
  height: 570px;
  flex-shrink: 0;
  z-index: 2;
  margin-right: 40px;
}
.photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 220px 220px 28px 28px;
  display: block;
  filter: saturate(0.95) brightness(1.02);
  box-shadow: 0 24px 60px rgba(47,74,60,0.18);
}
.photo-frame-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #F6F1E8 0%, transparent 100%);
  border-radius: 0 0 28px 28px;
  pointer-events: none;
}
.photo-ring {
  position: absolute;
  top: -20px; right: -20px;
  width: 130px; height: 130px;
  border: 1.5px solid rgba(198,168,106,0.28);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.photo-shadow-shape {
  position: absolute;
  bottom: -12px; left: -12px;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(85,107,93,0.1) 0%, rgba(47,74,60,0.06) 100%);
  border-radius: 220px 220px 28px 28px;
  z-index: -2;
}
.photo-badge {
  position: absolute;
  bottom: 60px;
  left: 40px;
  background: rgba(47,74,60,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198,168,106,0.3);
  padding: 16px 22px;
  border-radius: 14px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.photo-badge .badge-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.photo-badge .badge-label {
  font-size: 10px;
  font-family: var(--sans);
  color: rgba(246,241,232,0.55);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--emerald-deep);
  padding: 28px 60px;
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.trust-label {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(246,241,232,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ─── ABOUT ─── */
.about {
  background: #F6F1E8;
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.section-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--emerald-deep);
}
.about-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--emerald);
  margin-bottom: 32px;
}
.about-heading em { font-style: italic; color: var(--gold); }

/* Photo in about */
.about-photo-frame {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,168,106,0.15);
  box-shadow: 0 20px 60px rgba(47,74,60,0.12);
  background: #F6F1E8;
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(246,241,232,0.3), transparent);
  pointer-events: none;
}
/* Gold decorative ring */
.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -24px; right: -24px;
  width: 160px; height: 160px;
  border: 1.5px solid rgba(198,168,106,0.22);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.about-photo-icon {
  font-size: 100px;
  opacity: 0.12;
}
.about-photo-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(246,241,232,0.92);
  border: 1px solid rgba(198,168,106,0.3);
  padding: 8px 18px;
  border-radius: 24px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--emerald-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.about-quote-block {
  background: linear-gradient(135deg, #556B5D 0%, #2F4A3C 100%);
  padding: 36px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.about-quote-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: var(--serif);
  font-size: 100px;
  color: rgba(198,168,106,0.18);
  line-height: 1;
}
.about-quote-block p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.about-quote-block cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}
.about-text p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 18px;
  font-weight: 300;
}
.about-text p strong { color: var(--emerald); font-weight: 500; }
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.detail-chip {
  background: var(--white);
  border: 1px solid rgba(85,107,93,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-chip-icon {
  width: 32px; height: 32px;
  background: rgba(198,168,106,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.detail-chip-text {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--emerald);
  font-weight: 400;
  line-height: 1.4;
}
.about-bio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(198,168,106,0.4);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.about-bio-link:hover { color: var(--emerald); border-color: var(--emerald); }

/* ─── SERVICES ─── */
.services {
  background: linear-gradient(160deg, #F6F1E8 0%, #ECE4D8 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border: 1px solid rgba(198,168,106,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services-heading {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
}
.services-heading em { font-style: italic; color: var(--gold-light); }
.services-intro {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(43,43,43,0.55);
  max-width: 280px;
  line-height: 1.7;
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.outcomes-section { padding: 100px 60px; }
.service-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(85,107,93,0.15);
  border-radius: 24px;
  padding: 44px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  background: rgba(255,255,255,1);
  border-color: rgba(85,107,93,0.3);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 60px; height: 60px;
  border: 1px solid rgba(85,107,93,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 28px;
  background: rgba(85,107,93,0.07);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(43,43,43,0.6);
  font-weight: 300;
  margin-bottom: 28px;
}
.service-tags-list { display: flex; flex-wrap: wrap; gap: 7px; }
.s-tag {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--emerald);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(85,107,93,0.2);
  background: rgba(85,107,93,0.06);
}

/* ─── HOW IT WORKS ─── */
.how {
  background: #FFFFFF;
  padding: 120px 60px;
}
.how-inner { max-width: 900px; margin: 0 auto; }
.how-heading {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--emerald);
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.15;
}
.how-heading em { font-style: italic; color: var(--gold); }
.steps-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
}
.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-size: 22px;
  opacity: 0.45;
  margin-top: -40px;
}
.step-box {
  background: var(--white);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(85,107,93,0.08);
  transition: all 0.3s;
}
.step-box:hover {
  border-color: rgba(198,168,106,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(85,107,93,0.09);
}
.step-number {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  color: rgba(198,168,106,0.22);
  line-height: 1;
  margin-bottom: 16px;
}
.step-box h4 { font-family: var(--serif); font-size: 22px; color: var(--emerald); margin-bottom: 12px; }
.step-box p { font-family: var(--sans); font-size: 13px; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* ─── PRICING ─── */
.pricing {
  background: #F6F1E8;
  padding: 120px 60px;
}
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-heading {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--emerald);
  margin-bottom: 12px;
  line-height: 1.15;
}
.pricing-heading em { font-style: italic; color: var(--gold); }
.pricing-sub { font-family: var(--sans); font-size: 14px; color: var(--text-light); font-weight: 300; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  border-radius: 28px;
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card.light { background: var(--cream); border: 1px solid rgba(85,107,93,0.09); }
.price-card.dark { background: linear-gradient(135deg, #556B5D 0%, #2F4A3C 100%); }
.price-card.dark::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(198,168,106,0.13);
  border-radius: 50%;
}
.price-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card.light .price-label { color: var(--text-light); }
.price-card.dark .price-label { color: rgba(246,241,232,0.45); }
.price-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 28px;
}
.price-card.light .price-title { color: var(--emerald); }
.price-card.dark .price-title { color: var(--cream); }
.price-amount { margin-bottom: 8px; }
.price-currency { font-family: var(--serif); font-size: 28px; color: var(--gold); vertical-align: super; font-weight: 300; }
.price-num { font-family: var(--serif); font-size: 72px; font-weight: 300; line-height: 1; color: var(--gold); }
.price-duration {
  font-family: var(--sans);
  font-size: 12px;
  margin-bottom: 32px;
}
.price-card.light .price-duration { color: var(--text-light); }
.price-card.dark .price-duration { color: rgba(246,241,232,0.4); }
.price-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.price-card.light .price-btn { background: linear-gradient(135deg, #556B5D 0%, #2F4A3C 100%); color: var(--gold); }
.price-card.light .price-btn:hover { background: var(--emerald); transform: translateY(-2px); }
.price-card.dark .price-btn { background: var(--gold); color: var(--emerald-deep); }
.price-card.dark .price-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: #ECE4D8;
  padding: 120px 60px;
}
.testi-header { margin-bottom: 64px; display: flex; justify-content: space-between; align-items: flex-end; }
.testi-heading { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--emerald); line-height: 1.15; }
.testi-heading em { font-style: italic; color: var(--gold); }
.testi-note { font-family: var(--sans); font-size: 12px; color: var(--text-light); max-width: 200px; text-align: right; line-height: 1.6; font-weight: 300; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 30px;
  border: 1px solid rgba(85,107,93,0.06);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198,168,106,0.3);
  box-shadow: 0 16px 48px rgba(85,107,93,0.07);
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text { font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.75; color: var(--text-dark); margin-bottom: 22px; }
.testi-divider { height: 1px; background: rgba(85,107,93,0.07); margin-bottom: 18px; }
.testi-author { font-family: var(--sans); font-size: 12px; color: var(--text-light); letter-spacing: 0.5px; }
.testi-service { font-family: var(--sans); font-size: 11px; color: var(--gold); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, #556B5D 0%, #2F4A3C 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  border: 1px solid rgba(198,168,106,0.09);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(198,168,106,0.07);
  border-radius: 50%;
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-tag::before, .cta-tag::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: rgba(198,168,106,0.35);
}
.cta-heading {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-heading em { font-style: italic; color: var(--gold-light); }
.cta-text {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(246,241,232,0.6);
  line-height: 1.8;
  margin-bottom: 52px;
  font-weight: 300;
}
.cta-form { display: flex; flex-direction: column; gap: 12px; max-width: 460px; margin: 0 auto 32px; }
.cta-row { display: flex; gap: 12px; }
.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(198,168,106,0.22);
  border-radius: 12px;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: all 0.3s;
  font-weight: 300;
}
.cta-input::placeholder { color: rgba(246,241,232,0.3); }
.cta-input:focus { border-color: rgba(198,168,106,0.55); background: rgba(255,255,255,0.1); }
.cta-submit {
  width: 100%;
  background: var(--emerald-deep);
  color: var(--gold);
  padding: 17px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.cta-submit:hover {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47,74,60,0.25);
}
.cta-messengers { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cta-messenger {
  border: 1px solid rgba(198,168,106,0.22);
  color: rgba(246,241,232,0.6);
  padding: 10px 18px;
  border-radius: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s;
  cursor: pointer;
}
.cta-messenger:hover {
  border-color: rgba(198,168,106,0.55);
  color: var(--gold-light);
  background: rgba(85,107,93,0.07);
}

/* ─── FOOTER ─── */
footer {
  background: #2F4A3C;
  padding: 44px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(198,168,106,0.15);
}
.footer-logo { font-family: var(--serif); font-size: 18px; color: #F6F1E8; letter-spacing: 2px; text-decoration: none; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-copy { font-family: var(--sans); font-size: 12px; color: rgba(246,241,232,0.45); text-align: center; font-weight: 300; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; }
.footer-links a { font-family: var(--sans); font-size: 12px; color: rgba(246,241,232,0.5); text-decoration: none; letter-spacing: 0.5px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ─── CERTIFICATES ─── */
.certs {
  background: var(--cream);
  padding: 100px 60px;
  position: relative;
}
.certs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.certs-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--emerald);
  line-height: 1.15;
}
.certs-heading em { font-style: italic; color: var(--gold); }
.certs-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-light);
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
  font-weight: 300;
}
/* Carousel wrapper */
.certs-carousel-wrap {
  position: relative;
}
.certs-carousel {
  overflow: hidden;
  border-radius: 4px;
}
.certs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.cert-card {
  background: var(--white);
  border: 1px solid rgba(85,107,93,0.09);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}
.cert-card:hover {
  border-color: rgba(198,168,106,0.4);
  box-shadow: 0 16px 48px rgba(85,107,93,0.1);
}
.cert-card.cert-hidden { display: none !important; }
.certs-showall {
  background: none;
  border: 1px solid rgba(85,107,93,0.35);
  color: var(--emerald);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.certs-showall:hover { border-color: var(--gold); color: var(--gold); }
.cert-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.cert-image.bg-1 { background: linear-gradient(135deg, #556B5D 0%, #728F80 100%); }
.cert-image.bg-2 { background: linear-gradient(135deg, #2F4A3C 0%, #556B5D 100%); }
.cert-image.bg-3 { background: linear-gradient(135deg, #3A4A3C 0%, #556B5D 100%); }
.cert-image.bg-4 { background: linear-gradient(135deg, #728F80 0%, #556B5D 100%); }
.cert-image.bg-5 { background: linear-gradient(135deg, #4A5A52 0%, #728F80 100%); }
.cert-image.bg-6 { background: linear-gradient(135deg, #2F4A3C 0%, #4A6B5A 100%); }
.cert-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.2) 100%);
}
.cert-stamp {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  background: var(--emerald-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 1;
}
.cert-body { padding: 20px 22px 24px; }
.cert-issuer {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cert-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--emerald);
  line-height: 1.3;
  margin-bottom: 10px;
}
.cert-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}
.cert-year {
  display: inline-block;
  margin-top: 12px;
  background: rgba(198,168,106,0.1);
  border: 1px solid rgba(198,168,106,0.25);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5px;
}
/* Carousel controls */
.certs-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.certs-dots {
  display: flex;
  gap: 8px;
}
.certs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(85,107,93,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.certs-dot.active {
  background: var(--emerald-deep);
  width: 24px;
  border-radius: 4px;
}
.certs-arrows {
  display: flex;
  gap: 10px;
}
.certs-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(85,107,93,0.15);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--emerald);
  transition: all 0.3s;
}
.certs-arrow:hover {
  background: linear-gradient(135deg, #556B5D 0%, #2F4A3C 100%);
  color: var(--cream);
  border-color: var(--emerald);
}
.certs-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.certs-arrow:disabled:hover {
  background: var(--white);
  color: var(--emerald);
  border-color: rgba(85,107,93,0.15);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9998; width: calc(100% - 48px); max-width: 720px;
  background: #2F4A3C; border: 1px solid rgba(198,168,106,0.2);
  border-radius: 20px; padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  animation: slideUp 0.5s 0.8s ease both;
}
@keyframes slideUp {
  from { opacity:0; transform:translateX(-50%) translateY(20px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.cookie-icon { font-size:22px; flex-shrink:0; }
.cookie-text { flex:1; font-family:var(--sans); font-size:13px; color:rgba(246,241,232,0.75); line-height:1.55; font-weight:300; }
.cookie-text a { color:var(--gold); text-decoration:underline; text-underline-offset:2px; }
.cookie-btns { display:flex; gap:10px; flex-shrink:0; }
.cookie-accept { background:var(--gold); color:var(--emerald-deep); border:none; padding:10px 20px; border-radius:10px; font-family:var(--sans); font-size:12px; font-weight:500; cursor:pointer; white-space:nowrap; transition:all 0.3s; }
.cookie-accept:hover { background:var(--gold-light); }
.cookie-decline { background:transparent; color:rgba(246,241,232,0.45); border:1px solid rgba(246,241,232,0.15); padding:10px 16px; border-radius:10px; font-family:var(--sans); font-size:12px; cursor:pointer; white-space:nowrap; transition:all 0.3s; }
.cookie-decline:hover { color:rgba(246,241,232,0.75); }
@media (max-width:600px) {
  .cookie-banner { flex-direction:column; align-items:flex-start; bottom:80px; }
  .cookie-btns { width:100%; }
  .cookie-accept, .cookie-decline { flex:1; text-align:center; }
}
/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 24px 40px; }
  .hero-name { font-size: 48px; }
  .hero-visual { display: flex; padding-top: 8px; padding-bottom: 16px; }
  .photo-frame-wrap { width: 240px; height: 320px; margin-right: 0; }
  .photo-real { border-radius: 130px 130px 22px 22px; }
  .photo-shadow-shape { border-radius: 130px 130px 22px 22px; }
  .photo-ring { width: 80px; height: 80px; top: -12px; right: -12px; }
  .photo-badge { bottom: 16px; left: 8px; padding: 11px 15px; }
  .photo-badge .badge-num { font-size: 22px; }
  .grid-2 { grid-template-columns: 1fr; }
  .outcomes-section { padding: 80px 24px; }
  .about { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .services { padding: 80px 24px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .how { padding: 80px 24px; }
  .steps-row { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .pricing { padding: 80px 24px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 380px; }
  .testimonials { padding: 80px 24px; }
  .testi-header { flex-direction: column; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 24px; }
  .certs { padding: 80px 24px; }
  .certs-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .certs-note { text-align: left; }
  .cert-card { flex: 0 0 calc(50% - 10px); }
  
  footer { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .footer-links { justify-content: center; }
  .cta-row { flex-direction: column; }
}

/* ─── ДОДАНО: перемикач мов ─── */
.lang-switch { display:flex; align-items:center; gap:2px; border:1px solid rgba(85,107,93,0.25); border-radius:20px; padding:3px; }
.lang-switch a { font-family:var(--sans); font-size:11px; font-weight:500; letter-spacing:1px; color:rgba(43,43,43,0.55); text-decoration:none; padding:4px 10px; border-radius:14px; transition:all .25s; }
.lang-switch a.active { background:var(--emerald-deep); color:var(--gold); }
.lang-switch a:not(.active):hover { color:var(--emerald-deep); }
.mobile-menu .lang-switch { align-self:flex-start; margin-top:14px; border-color:rgba(85,107,93,0.35); }

/* ─── Контакти у CTA ─── */
.cta-messengers a.cta-messenger { text-decoration:none; }
.cta-direct { margin-top:22px; display:flex; gap:24px; justify-content:center; flex-wrap:wrap; }
.cta-direct a { font-family:var(--sans); font-size:14px; color:var(--gold-light); text-decoration:none; letter-spacing:.4px; border-bottom:1px solid rgba(198,168,106,0.35); padding-bottom:2px; transition:color .25s; }
.cta-direct a:hover { color:var(--gold); }
.form-status { display:none; margin-top:16px; font-family:var(--sans); font-size:14px; padding:12px 18px; border-radius:12px; }
.form-status.ok { display:block; background:rgba(198,168,106,0.15); color:var(--gold-light); border:1px solid rgba(198,168,106,0.4); }
.form-status.err { display:block; background:rgba(180,60,60,0.18); color:#f1c0c0; border:1px solid rgba(180,60,60,0.4); }
.hp-field { position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }

/* ─── Футер: соцмережі ─── */
.footer-social { display:flex; gap:14px; justify-content:center; margin:6px 0 2px; }
.footer-social a { font-family:var(--sans); font-size:12px; letter-spacing:1px; color:rgba(246,241,232,0.6); text-decoration:none; border:1px solid rgba(246,241,232,0.18); border-radius:20px; padding:7px 16px; transition:all .25s; }
.footer-social a:hover { color:var(--gold); border-color:var(--gold); }

/* ─── Внутрішні сторінки (біографія, юридичні) ─── */
.page-wrap { max-width:860px; margin:0 auto; padding:140px 24px 90px; }
.page-wrap h1 { font-family:var(--serif); font-size:clamp(34px,5vw,52px); font-weight:300; color:var(--emerald-deep); line-height:1.15; margin-bottom:10px; }
.page-wrap h1 em { font-style:italic; color:var(--gold); }
.page-sub { font-family:var(--sans); font-size:13px; letter-spacing:2px; text-transform:uppercase; color:var(--text-light); margin-bottom:36px; }
.page-wrap h2 { font-family:var(--serif); font-size:26px; font-weight:400; color:var(--emerald); margin:38px 0 14px; }
.page-wrap p, .page-wrap li { font-family:var(--sans); font-size:15.5px; font-weight:300; color:var(--text-mid); line-height:1.85; margin-bottom:16px; }
.page-wrap ul { padding-left:22px; margin-bottom:16px; }
.bio-hero { display:grid; grid-template-columns:340px 1fr; gap:46px; align-items:start; margin-bottom:30px; }
.bio-photo { width:100%; border-radius:170px 170px 24px 24px; box-shadow:0 24px 60px rgba(47,74,60,0.18); display:block; }
.bio-quote { background:rgba(198,168,106,0.08); border-left:3px solid var(--gold); border-radius:0 14px 14px 0; padding:20px 24px; margin:26px 0; font-style:italic; }
.bio-quote p { margin:0; color:var(--emerald); }
.page-back { display:inline-block; margin-top:34px; font-family:var(--sans); font-size:13px; letter-spacing:1px; text-transform:uppercase; color:var(--emerald); text-decoration:none; border:1px solid rgba(85,107,93,0.35); border-radius:30px; padding:12px 26px; transition:all .3s; }
.page-back:hover { border-color:var(--gold); color:var(--gold); }
@media (max-width:760px){ .bio-hero { grid-template-columns:1fr; } .bio-photo { max-width:300px; margin:auto; } }
a:focus-visible, button:focus-visible, input:focus-visible { outline:2px solid var(--gold); outline-offset:2px; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1!important;transform:none!important;} *{animation:none!important;} }

/* Цитата у hero біографії — на темному тлі робимо світлий текст */
.bio-hero .about-quote-block { background:rgba(246,241,232,0.07); border-left:3px solid var(--gold); }
.bio-hero .about-quote-block p { color:var(--cream); }
.bio-hero .about-quote-block cite { color:var(--gold-light); }
.bio-hero .about-quote-block { background:#2F4A3C; padding:22px 26px; border-radius:0 14px 14px 0; }

/* ─────────────────────────────────────────────
   ВИПРАВЛЕННЯ МОБІЛЬНОЇ ВЕРСІЇ
   Селектори достатньо специфічні, щоб перекрити
   базові .services-grid.grid-2 (repeat(2,1fr)).
   ───────────────────────────────────────────── */
@media (max-width: 760px) {
  /* Картки в один стовпчик — симетрично, рівна ширина */
  .services-grid,
  .services-grid.grid-2,
  .how .services-grid.grid-2,
  .outcomes-section .services-grid.grid-2 {
    grid-template-columns: 1fr !important;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Щоб довгий текст не розпирав колонку */
  .step-box, .service-card, .testi-card, .price-card { min-width: 0; }

  /* Панель довіри: рівна сітка 2×2 без перекосів */
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    padding: 26px 20px;
  }

  /* Сертифікати: на вузькому екрані — по одному, щоб не вилазили */
  .cert-card { flex: 0 0 100% !important; }

  /* Менші відступи всередині карток на мобільному */
  .step-box { padding: 28px 22px; }
  .service-card { padding: 32px 24px; }

  /* Захист від горизонтального «зсуву» на iOS Safari:
     декоративні кола та карусель не повинні створювати прокрутку вбік */
  section, footer, .trust-bar, .hero { overflow-x: hidden; }
  .certs { overflow: hidden; }
  /* Гарантуємо однакові горизонтальні поля секцій */
  .about, .services, .how, .outcomes-section,
  .testimonials, .certs, .pricing, .cta-section {
    padding-left: 20px; padding-right: 20px;
  }
  /* Збалансовані вертикальні відступи секцій */
  .about, .services, .how, .outcomes-section,
  .testimonials, .certs, .pricing, .cta-section {
    padding-top: 56px; padding-bottom: 56px;
  }
  .about { gap: 32px; }
  .about-details { margin-top: 28px; }
  .about-bio-link { margin-top: 8px; }
}

@media (max-width: 760px) {
  /* На мобільному в шапці лишаємо тільки перемикач мов і бургер;
     велику CTA-кнопку ховаємо — вона є в меню-бургері */
  .nav-cta { display: none; }
  .nav-right { gap: 10px; }
  /* Відступи з урахуванням «безпечної зони» iPhone (заокруглені кути/виріз) */
  nav {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .logo-text { font-size: 18px; letter-spacing: 0.5px; }
  .logo-sub { font-size: 8.5px; letter-spacing: 1px; }
  .logo-mark { width: 34px; height: 34px; }
  .logo-mark svg { width: 34px; height: 34px; }
  .nav-logo { gap: 10px; }
  /* Бургер: компактніший, але зручний для натискання; не вилазить за край */
  .nav-burger { width: 34px; height: 34px; padding: 7px; flex-shrink: 0; }
  /* Лого не повинно тіснити праву частину */
  .nav-logo { min-width: 0; flex-shrink: 1; }
  .nav-right { flex-shrink: 0; }

  /* Hero: дії стовпчиком, кнопка на всю ширину й по центру —
     щоб не було перекосу «велика кнопка зліва, лінк притиснутий справа» */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-actions .btn-gold { width: 100%; text-align: center; padding: 16px 24px; }
  .hero-actions .hero-scroll-link { text-align: center; }
}

@media (max-width: 420px) {
  .trust-bar { gap: 20px 8px; padding: 24px 14px; }
  .trust-num { font-size: 26px; }
  .step-box h4 { font-size: 20px; }
  .how-heading { font-size: 34px; }
  .logo-text { font-size: 16px; letter-spacing: 0; }
  .logo-sub { font-size: 8px; letter-spacing: 0.5px; }
  /* щоб гарантовано лишався відступ праворуч від бургера */
  .nav-right { gap: 8px; }
  .lang-switch a { padding: 4px 8px; font-size: 10px; }
}

/* ─────────────────────────────────────────────
   ПОКРАЩЕННЯ ЧИТАБЕЛЬНОСТІ
   Темніший текст + трохи щільніший шрифт для
   основного (sans-serif) тексту, щоб не напружувати очі.
   Великі декоративні serif-заголовки не чіпаємо.
   ───────────────────────────────────────────── */
.hero-desc,
.section-desc,
.service-card p,
.step-box p,
.about-content p,
.about p,
.pricing-sub,
.testi-note,
.testi-text,
.faq-answer,
.outcomes-section p,
.whom-card p,
.state-card p,
.cta-text,
.page-wrap p,
.page-wrap li,
.footer-copy {
  font-weight: 400;
}

/* Описи під заголовками секцій — трохи темніші за замовчуванням */
.service-card p,
.step-box p,
.pricing-sub,
.testi-note {
  color: var(--text-mid);
}

/* Трохи більший міжрядковий інтервал для основного тексту — легше читати */
.service-card p,
.step-box p,
.about p,
.page-wrap p,
.cta-text,
.outcomes-section p {
  line-height: 1.75;
}

/* Невеликі підписи-«eyebrow» над заголовками робимо помітнішими */
.section-tag {
  color: var(--emerald-deep);
}

/* Світлий текст на темному (смарагдовому) тлі — робимо менш прозорим,
   щоб краще читався у секції «результат», цінах і футері */
.outcomes-section p { color: rgba(246,241,232,0.92) !important; }
.outcomes-section h4 { color: var(--cream) !important; }
.price-card.dark .price-label { color: rgba(246,241,232,0.75) !important; }
.footer-copy { color: rgba(246,241,232,0.78) !important; }
.footer-social a { color: rgba(246,241,232,0.85); }
.cta-text { color: rgba(246,241,232,0.9); }
.cookie-text { color: rgba(246,241,232,0.9); }

/* ─────────────────────────────────────────────
   ВИРАЗНІШИЙ ТЕКСТ У ХЕДЕРІ
   ───────────────────────────────────────────── */
/* Пункти меню — щільніший шрифт і насиченіший колір */
.nav-links a {
  color: var(--emerald-deep);
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }

/* Підпис під логотипом (ВАЛЕНТИНА ДИЧИНСЬКА) — темніший */
.logo-sub { color: var(--emerald-deep); opacity: 0.85; }

/* Перемикач мов — неактивна мова тепер чітко видима */
.lang-switch a { color: var(--emerald-deep); font-weight: 600; }
.lang-switch a:not(.active) { color: rgba(47,74,60,0.75); }
.lang-switch a:not(.active):hover { color: var(--emerald-deep); }

/* Кнопка «Безкоштовна розмова» у меню вже контрастна (золотий текст
   на смарагді) — лишаємо. Бургер робимо трохи темнішим. */
.nav-burger span { background: var(--emerald-deep); }

/* ─── Один CTA у Hero: другорядне посилання під кнопкою ─── */
.hero-scroll-sub {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--emerald);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.25s, color 0.25s;
}
.hero-scroll-sub:hover { opacity: 1; color: var(--gold); }

/* ─── Reassurance під формою заявки ─── */
.cta-reassure {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(246,241,232,0.88);
  text-align: center;
}
