/* ============================================================
   HIRE ME NOW — styles.css
   Aesthetic: Editorial luxury meets warm human coaching
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: Deep ink navy, warm amber gold, cream parchment
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0C1B33;
  --navy-mid:   #162444;
  --navy-light: #1E3256;
  --gold:       #C9922A;
  --gold-light: #E8B655;
  --gold-pale:  #F5E4C0;
  --cream:      #FAF7F2;
  --cream-dark: #F0EAE0;
  --white:      #FFFFFF;
  --ink:        #0C1B33;
  --muted:      #5A6880;
  --border:     rgba(12,27,51,0.12);
  --border-gold: rgba(201,146,42,0.3);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --section-py: 100px;
  --radius: 4px;
  --radius-lg: 12px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-arrow::after { content: '→'; font-size: 16px; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  border: 1px solid rgba(232,182,85,0.4);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: all 0.18s !important;
}
.nav-cta:hover { background: rgba(232,182,85,0.12) !important; border-color: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.2s; }
.nav-mobile { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    background: var(--navy-mid);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-mobile.open { display: block; }
  .nav-mobile a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.04em;
  }
  .nav-mobile a:last-child { border-bottom: none; color: var(--gold-light); margin-top: 8px; }
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(201,146,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative lines */
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.025) 39px,
    rgba(255,255,255,0.025) 40px
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 20px 0 40px;
  font-weight: 300;
  line-height: 1.65;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }
@media (max-width: 600px) { .trust-divider { display: none; } }

/* ── SECTIONS ── */
section { padding: var(--section-py) 0; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.65;
  font-weight: 300;
}

/* ── PAIN POINTS (Why people get stuck) ── */
.pain-section { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.pain-card {
  background: var(--white);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.22s;
}
.pain-card:last-child { border-right: none; }
.pain-card:hover { background: var(--cream); }
.pain-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 18px;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── METHOD ── */
.method-section { background: var(--navy); }
.method-section .section-heading { color: var(--white); }
.method-section .section-label { color: var(--gold-light); }
.method-section .section-sub { color: rgba(255,255,255,0.55); }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.method-step { padding: 0 24px; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.4);
  background: rgba(201,146,42,0.08);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.method-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.method-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

@media (max-width: 768px) {
  .method-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .method-steps::before { display: none; }
}
@media (max-width: 480px) {
  .method-steps { grid-template-columns: 1fr; }
}

/* ── WHO WE SUPPORT ── */
.who-section { background: var(--cream); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.22s;
}
.who-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(12,27,51,0.08); }
.who-emoji { font-size: 28px; margin-bottom: 14px; }
.who-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.who-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── SERVICES PREVIEW ── */
.services-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.22s;
  background: var(--white);
}
.pricing-card:hover { border-color: var(--navy); box-shadow: 0 16px 48px rgba(12,27,51,0.1); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--gold);
  background: var(--navy);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-card.featured h3 { color: var(--white); }
.pricing-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin: 10px 0 6px;
  font-family: var(--font-display);
}
.pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-features {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 32px;
}
.pricing-card.featured .pricing-features { border-color: rgba(255,255,255,0.12); }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.7); }
.pricing-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(201,146,42,0.12);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 10px;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream-dark); overflow: hidden; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--gold-pale);
  font-weight: 300;
}
.stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--navy); line-height: 1.65; font-style: italic; margin-bottom: 20px; font-family: var(--font-display); font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.author-meta { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ── JULIA SECTION ── */
.julia-section { background: var(--white); }
.julia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.julia-visual {
  position: relative;
}
.julia-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.julia-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.julia-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--gold-light);
}
.julia-photo-placeholder span { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.julia-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,146,42,0.3);
}
.julia-accent strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 600; }
.julia-accent span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.julia-content .tag { display: block; }
.julia-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px;
}
.julia-content p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-weight: 300; }
.cred-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.cred-badge {
  border: 1px solid var(--border-gold);
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.lang-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.lang-tag {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .julia-inner { grid-template-columns: 1fr; gap: 48px; }
  .julia-visual { max-width: 400px; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201,146,42,0.12) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 40px; font-weight: 300; }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-email { font-size: 13px; color: var(--gold-light); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 49px,
    rgba(255,255,255,0.015) 49px,
    rgba(255,255,255,0.015) 50px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 560px; font-weight: 300; }

/* ── SERVICES PAGE ── */
.service-packages { background: var(--white); }
.service-package {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-package:last-child { border-bottom: none; }
.service-package.reverse { direction: rtl; }
.service-package.reverse > * { direction: ltr; }
.service-package-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
}
.service-package-visual.dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.08);
}
.pkg-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
  color: rgba(12,27,51,0.06);
  position: absolute;
  top: 20px; right: 28px;
}
.service-package-visual.dark .pkg-num { color: rgba(255,255,255,0.04); }
.pkg-price-big {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.pkg-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.service-package-visual.dark .pkg-label { color: rgba(255,255,255,0.4); }
.pkg-features { display: flex; flex-direction: column; gap: 12px; }
.pkg-feature { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.5; }
.service-package-visual.dark .pkg-feature { color: rgba(255,255,255,0.6); }
.pkg-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.service-content p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.pkg-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .service-package { grid-template-columns: 1fr; gap: 36px; }
  .service-package.reverse { direction: ltr; }
}

/* ── ADDONS ── */
.addons-section { background: var(--cream); }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.2s;
}
.addon-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.addon-icon { font-size: 22px; margin-bottom: 12px; }
.addon-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.addon-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.3;
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ── ABOUT PAGE ── */
.about-hero-body { background: var(--cream); padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  position: relative;
}
.about-initials-lg {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-light);
  font-weight: 300;
}
.about-photo span { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
.about-content h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-content .role { font-size: 15px; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; display: block; }
.about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 300px; aspect-ratio: 1; } }

.values-section { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  border-top: 3px solid var(--gold);
  padding: 36px 28px;
  background: var(--cream);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.value-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

.team-section { background: var(--cream-dark); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 56px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
  margin: 0 auto 16px;
  font-weight: 300;
}
.team-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-card .team-role { font-size: 12px; color: var(--gold); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.team-langs { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.team-lang { background: var(--cream-dark); font-size: 11px; color: var(--muted); padding: 3px 10px; border-radius: 100px; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--cream); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 38px; font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 15px; flex-shrink: 0; }
.contact-detail-text h4 { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text p { font-size: 15px; color: var(--navy); font-weight: 400; }
.trust-msg { background: var(--gold-pale); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); padding: 16px 20px; margin-top: 32px; font-size: 14px; color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
textarea { resize: vertical; min-height: 110px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235A6880'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.btn-submit { width: 100%; padding: 16px; font-size: 15px; justify-content: center; }

.calendly-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 28px;
}
.calendly-placeholder h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.calendly-placeholder p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Breadcrumb ── */
.breadcrumb { background: var(--navy-mid); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.breadcrumb-inner { display: flex; gap: 8px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); }
.breadcrumb-inner a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-inner span { color: var(--gold-light); }

/* ── Comparison table ── */
.compare-section { background: var(--cream); padding: 72px 0; }
.compare-table-wrap { overflow-x: auto; margin-top: 48px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--navy); color: var(--white); font-weight: 500; letter-spacing: 0.04em; font-size: 13px; }
.compare-table thead th:first-child { color: rgba(255,255,255,0.5); }
.compare-table tbody tr:nth-child(even) td { background: var(--white); }
.compare-table tbody tr:hover td { background: var(--gold-pale); }
.compare-table td:first-child { color: var(--navy); font-weight: 500; }
.compare-table .check { color: var(--gold); font-size: 16px; }
.compare-table .dash { color: var(--border); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: fadeUp 0.7s ease both; }
.hero-badge { animation-delay: 0s; }
.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-ctas { animation-delay: 0.3s; }
