/* ============================================
   LA'I DIGITAL — GLOBAL STYLES
   ============================================ */

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

:root {
  --navy: #0D1F3C;
  --navy-deep: #081428;
  --teal: #1A6B72;
  --teal-light: #2A8B94;
  --teal-mist: rgba(26, 107, 114, 0.15);
  --stone: #C4B5A0;
  --stone-light: #E8E0D5;
  --cream: #F7F5F2;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --white: #FFFFFF;
  --text-dark: #0D1F3C;
  --text-mid: #4A5568;
  --text-light: #8A96A8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --max-width: 1160px;
  --section-pad: 120px;
  --section-pad-sm: 72px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-soft: 0 4px 32px rgba(13, 31, 60, 0.08);
  --shadow-card: 0 8px 48px rgba(13, 31, 60, 0.12);
  --shadow-strong: 0 16px 64px rgba(13, 31, 60, 0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--navy); color: var(--cream); }
.section--dark p { color: rgba(247, 245, 242, 0.75); }
.section--teal { background: var(--teal); color: var(--white); }
.section--stone { background: var(--stone-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 245, 242, 0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(13, 31, 60, 0.3);
}
.btn--outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.8);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta { margin-left: 16px; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 20, 40, 0.9) 0%,
    rgba(13, 31, 60, 0.7) 50%,
    rgba(26, 107, 114, 0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 100px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 300;
  font-style: italic;
}
.hero h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(247, 245, 242, 0.8);
  margin-bottom: 48px;
  max-width: 560px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__proof {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 242, 0.5);
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 245, 242, 0.1);
}

/* ── STATS BAR ── */
.stats {
  background: var(--teal);
  padding: 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats__item {
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(247, 245, 242, 0.2);
}
.stats__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.7);
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--cream);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.problem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.problem__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(26, 107, 114, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.problem__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.problem__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.problem__content h2 { margin-bottom: 24px; }
.problem__content p { margin-bottom: 20px; }
.problem__content p strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── AGITATION SECTION ── */
.agitation {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.agitation::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 107, 114, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.agitation__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.agitation__inner h2 { color: var(--white); margin-bottom: 32px; }
.agitation__inner p { margin-bottom: 20px; }
.agitation__inner p:last-of-type { margin-bottom: 0; }

/* ── SOLUTION SECTION ── */
.solution {
  background: var(--cream);
}
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution__content h2 { margin-bottom: 24px; }
.solution__content p { margin-bottom: 20px; }
.solution__highlight {
  margin-top: 40px;
  padding: 32px;
  background: var(--navy);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.solution__highlight p {
  color: rgba(247, 245, 242, 0.85);
  font-size: 1.15rem;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
}
.solution__highlight strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.solution__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SERVICES SECTION ── */
.services {
  background: var(--stone-light);
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.services__header h2 { margin-bottom: 16px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}
.service-card__body {
  padding: 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card__tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-card__body p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}
.service-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  padding-top: 20px;
  border-top: 1px solid var(--stone-light);
}

/* ── OBJECTIONS SECTION ── */
.objections {
  background: var(--navy);
}
.objections__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.objections__header h2 { color: var(--white); margin-bottom: 16px; }
.objections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(247, 245, 242, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.objection-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(13, 31, 60, 0.6);
  transition: var(--transition);
}
.objection-item:hover { background: rgba(26, 107, 114, 0.15); }
.objection-item__q,
.objection-item__a {
  padding: 36px 40px;
}
.objection-item__q {
  border-right: 1px solid rgba(247, 245, 242, 0.06);
}
.objection-item__q p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(247, 245, 242, 0.7);
  margin: 0;
}
.objection-item__a p {
  font-size: 0.95rem;
  color: rgba(247, 245, 242, 0.85);
  margin: 0;
}

/* ── PRICING SECTION ── */
.pricing {
  background: var(--cream);
}
.pricing__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.pricing__header h2 { margin-bottom: 16px; }
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid rgba(13, 31, 60, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing__tab {
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-mid);
  transition: var(--transition);
  font-family: var(--font-body);
}
.pricing__tab.active {
  background: var(--navy);
  color: var(--white);
}
.pricing__panel { display: none; }
.pricing__panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.price-card--featured {
  border-color: var(--teal);
  background: var(--navy);
  color: var(--white);
}
.price-card--featured .price-card__tier,
.price-card--featured .price-card__price,
.price-card--featured .price-card__label { color: var(--white); }
.price-card--featured p { color: rgba(247, 245, 242, 0.7); }
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}
.price-card__tier {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card__price span {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 400;
}
.price-card__label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.price-card__setup {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--stone-light);
}
.price-card--featured .price-card__setup {
  border-color: rgba(247, 245, 242, 0.1);
  color: rgba(247, 245, 242, 0.6);
}
.pricing__note {
  text-align: center;
  max-width: 680px;
  margin: 48px auto 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── WHY LAʻI SECTION ── */
.why {
  position: relative;
  overflow: hidden;
}
.why__bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/images/about-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.why__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(13,31,60,0.92) 100%);
}
.why__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why__left h2 { color: var(--white); margin-bottom: 24px; }
.why__left p { margin-bottom: 20px; }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  padding: 28px;
  background: rgba(247, 245, 242, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 245, 242, 0.08);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(26, 107, 114, 0.15);
  border-color: rgba(26, 107, 114, 0.3);
}
.why-item__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.why-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.9rem;
  color: rgba(247, 245, 242, 0.65);
  margin: 0;
}

/* ── FINAL CTA ── */
.cta-final {
  background: var(--teal);
  text-align: center;
}
.cta-final h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-final p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}
.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-final__fine {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 245, 242, 0.08);
  margin-bottom: 40px;
}
.footer__brand img { height: 32px; margin-bottom: 20px; }
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(247, 245, 242, 0.5);
  max-width: 280px;
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(247, 245, 242, 0.55);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(247, 245, 242, 0.3);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(247, 245, 242, 0.3);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: rgba(247, 245, 242, 0.7); }

/* ── FAQ PAGE ── */
.faq-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
}
.faq-hero h1 { color: var(--white); margin-bottom: 16px; }
.faq-hero p { color: rgba(247, 245, 242, 0.65); max-width: 480px; margin: 0 auto; }

.faq-section {
  position: relative;
  padding: var(--section-pad) 0;
}
.faq-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/images/faq-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.faq-section__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(13, 31, 60, 0.1);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  gap: 24px;
}
.faq-item__q h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  flex: 1;
}
.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(13, 31, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--teal);
  font-size: 1.2rem;
}
.faq-item.open .faq-item__icon {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p {
  padding-bottom: 28px;
  font-size: 1rem;
}

/* ── BOOKING PAGE ── */
.booking-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
}
.booking-hero h1 { color: var(--white); margin-bottom: 16px; }
.booking-hero p { color: rgba(247, 245, 242, 0.65); max-width: 520px; margin: 0 auto; }

.booking-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.booking-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.booking-info h3 { margin-bottom: 20px; }
.booking-info p { margin-bottom: 16px; font-size: 0.95rem; }
.booking-info__list {
  list-style: none;
  margin-top: 32px;
}
.booking-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13,31,60,0.08);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.booking-info__list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-calendar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-card);
  min-height: 600px;
}
.booking-calendar iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--radius-md);
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/images/about-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,20,40,0.85) 0%, rgba(13,31,60,0.7) 100%);
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.about-hero h1 { color: var(--white); margin-bottom: 24px; }
.about-hero p { color: rgba(247,245,242,0.75); font-size: 1.1rem; }

.about-story {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story h2 { margin-bottom: 28px; }
.about-story p { margin-bottom: 20px; }

.about-values {
  padding: var(--section-pad) 0;
  background: var(--navy);
}
.about-values__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}
.about-values__header h2 { color: var(--white); margin-bottom: 16px; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 40px 32px;
  background: rgba(247,245,242,0.04);
  border: 1px solid rgba(247,245,242,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(26,107,114,0.12);
  border-color: rgba(26,107,114,0.25);
}
.value-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--teal-light);
  opacity: 0.5;
  margin-bottom: 20px;
  line-height: 1;
}
.value-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.92rem;
  color: rgba(247,245,242,0.6);
  margin: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .problem__grid,
  .solution__grid,
  .why__content,
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing__panel.active {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .objections__grid { grid-template-columns: 1fr; }
  .objection-item { grid-template-columns: 1fr; }
  .objection-item__q { border-right: none; border-bottom: 1px solid rgba(247,245,242,0.06); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .booking-section__inner { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.2rem; }
  .services__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; }
  .stats__item + .stats__item::before { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about-values__grid { grid-template-columns: 1fr; }
}
