/* ============================================================
   GALADENT — page section layout
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 1280px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px 14px 12px 26px;
  border-radius: var(--r-pill);
  background: rgba(2, 50, 44, 0.55);
  border: 1px solid var(--white-10);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: background var(--d-base), box-shadow var(--d-base), border-color var(--d-base);
}
.nav--scrolled {
  background: rgba(2, 50, 44, 0.92);
  box-shadow: 0 18px 50px -18px rgba(2, 50, 44, 0.6);
  border-color: var(--white-18);
}
.nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
  display: grid; place-items: center; color: var(--teal-night);
  font-family: var(--serif); font-weight: 700; font-size: 21px; line-height: 1;
  box-shadow: 0 4px 14px -4px rgba(212,175,55,0.6);
}
.nav__word {
  font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: 0.04em;
  color: var(--white); line-height: 1;
}
.nav__word b { color: var(--gold-bright); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative; color: var(--white-70); font-size: 14.5px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.005em; transition: color var(--d-fast); white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 360ms var(--ease-luxe);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__rating { display: flex; align-items: center; gap: 7px; color: var(--white-90); font-size: 13.5px; font-weight: 600; }
.nav__rating .stars svg { width: 14px; height: 14px; }

.burger { display: none; width: 44px; height: 44px; border: 0; background: var(--white-06); border: 1px solid var(--white-18); border-radius: 12px; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--white); transition: transform var(--d-base) var(--ease-out), opacity var(--d-fast); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.burger.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--teal-deep);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 40px;
  opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity var(--d-base), transform var(--d-base);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { color: var(--white); font-family: var(--serif); font-size: clamp(32px, 9vw, 52px); font-weight: 600; text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--white-10); }
.mobile-menu a:last-of-type { border: 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(10,91,81,0.55), transparent 55%),
    radial-gradient(80% 70% at 12% 100%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(165deg, var(--teal-deep) 0%, var(--teal-night) 100%);
  overflow: hidden; isolation: isolate;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -8%; top: -16%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 64%); filter: blur(20px);
}
.hero__inner { position: relative; z-index: 2; padding: 130px 0 90px; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.35fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--white); font-size: var(--display); line-height: 0.96; font-weight: 500; }
.hero h1 .serif-it { color: var(--gold-bright); }
.hero__lead { color: var(--white-70); max-width: 540px; margin-top: 28px; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 40px; }
.hero__phone { display: flex; flex-direction: column; line-height: 1.2; }
.hero__phone span { color: var(--white-55); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.hero__phone a { color: var(--white); font-family: var(--serif); font-size: 26px; font-weight: 600; text-decoration: none; letter-spacing: 0.01em; }
.hero__phone a:hover { color: var(--gold-bright); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--white-10); }
.hero__trust-item { display: flex; align-items: center; gap: 10px; color: var(--white-70); font-size: 14px; font-weight: 500; }
.hero__trust-item i { color: var(--gold-bright); }
.hero__trust-item b { color: var(--white); font-weight: 600; }

/* Hero side card */
.hero__card {
  position: relative; padding: 32px; border-radius: var(--r-2xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid var(--white-18); backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6);
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.hero__score { display: flex; align-items: baseline; gap: 10px; }
.hero__score b { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.hero__score-meta { color: var(--white-70); font-size: 13px; }
.hero__score-meta .stars svg { width: 14px; height: 14px; }
.hero__rows { display: flex; flex-direction: column; gap: 2px; }
.hero__row { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--white-10); color: var(--white-90); font-size: 14.5px; }
.hero__row:last-child { border-bottom: 0; }
.hero__row i { color: var(--gold-bright); flex: none; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--white-55); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll .mouse { width: 22px; height: 36px; border: 1.5px solid var(--white-25, rgba(255,255,255,0.25)); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; background: var(--gold-bright); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s var(--ease-out) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0;transform:translate(-50%,10px);} 100%{opacity:0;} }

/* ---------- PARTNERS / STATS ---------- */
.partners { background: var(--white); border-bottom: 1px solid var(--border-faint); }
.partners__inner { padding: 38px 0; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: space-between; }
.partners__label { color: var(--ink-faint); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.partners__logos { display: flex; align-items: center; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.partners__logo { font-family: var(--serif); font-size: clamp(18px, 2vw, 26px); font-weight: 600; color: var(--ink); letter-spacing: 0.02em; opacity: 0.55; transition: opacity var(--d-base), color var(--d-base); }
.partners__logo:hover { opacity: 1; color: var(--teal); }

.stats { background: var(--paper-deep); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: clamp(56px,7vw,88px) 0; }
.stat { text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(46px, 5.5vw, 78px); font-weight: 600; color: var(--teal); line-height: 1; letter-spacing: -0.01em; }
.stat__num .suf { color: var(--gold-deep); }
.stat__label { margin-top: 12px; color: var(--ink-soft); font-size: 14px; letter-spacing: 0.02em; }
.stat + .stat { border-left: 1px solid var(--border-soft); }

/* ---------- SECTION HEADER ---------- */
.sec-head { max-width: 760px; }
.sec-head.centered { margin: 0 auto; text-align: center; }
.sec-head h2 { margin-top: 20px; color: var(--ink); }
.sec-head .lead { margin-top: 22px; }
.on-teal .sec-head h2 { color: var(--white); }

/* ---------- SERVICES ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 64px; }
.svc {
  padding: 36px 32px 30px; border-radius: var(--r-xl); background: var(--white);
  border: 1px solid var(--border-soft); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; min-height: 280px;
  transition: transform var(--d-base) var(--ease-out), box-shadow var(--d-base) var(--ease-out), border-color var(--d-base);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--gold-line); }
.svc__icon {
  width: 58px; height: 58px; border-radius: 15px; flex: none; display: grid; place-items: center;
  background: linear-gradient(155deg, var(--teal), var(--teal-deep)); color: var(--gold-bright);
  box-shadow: 0 10px 24px -8px rgba(4,74,66,0.5); margin-bottom: 24px;
}
.svc__icon i { width: 26px; height: 26px; }
.svc h3 { font-size: 28px; color: var(--ink); }
.svc p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.svc__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-faint); }
.svc__price { font-size: 13px; color: var(--ink-faint); }
.svc__price b { font-family: var(--serif); font-size: 24px; color: var(--teal); font-weight: 600; }
.svc__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-soft); display: grid; place-items: center; color: var(--teal); transition: all var(--d-base) var(--ease-out); }
.svc:hover .svc__arrow { background: var(--gold); border-color: var(--gold); color: var(--teal-night); transform: rotate(-45deg); }

/* ---------- WHY (split) ---------- */
.why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.why__media { position: relative; }
.why__media image-slot { width: 100%; height: 540px; border-radius: var(--r-2xl); box-shadow: var(--shadow-lift); }
.why__badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--white); border-radius: var(--r-lg);
  padding: 22px 26px; box-shadow: var(--shadow-lift); display: flex; align-items: center; gap: 16px; border: 1px solid var(--border-soft);
}
.why__badge .ring { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-tint); color: var(--gold-deep); }
.why__badge b { font-family: var(--serif); font-size: 30px; color: var(--teal); display: block; line-height: 1; }
.why__badge span { font-size: 12.5px; color: var(--ink-soft); }
.why__list { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.why__item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-faint); }
.why__item:last-child { border-bottom: 0; }
.why__item .chk { width: 30px; height: 30px; border-radius: 50%; flex: none; background: var(--teal); color: var(--gold-bright); display: grid; place-items: center; margin-top: 2px; }
.why__item .chk i { width: 17px; height: 17px; }
.why__item h4 { font-size: 21px; color: var(--ink); margin-bottom: 5px; }
.why__item p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ---------- IMPLANT FEATURE (dark) ---------- */
.feature { background: linear-gradient(165deg, var(--teal) 0%, var(--teal-night) 100%); color: var(--white); overflow: hidden; isolation: isolate; }
.feature__glow { position: absolute; width: 50vw; height: 50vw; max-width: 620px; max-height: 620px; left: -10%; bottom: -20%; background: radial-gradient(circle, rgba(212,175,55,0.14), transparent 62%); filter: blur(10px); z-index: 0; }
.feature__inner { position: relative; z-index: 1; }
.feature__top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: end; }
.feature h2 { color: var(--white); }
.feature h2 .serif-it { color: var(--gold-bright); }
.feature__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.fcard { padding: 32px 28px; border-radius: var(--r-xl); background: var(--white-06); border: 1px solid var(--white-18); backdrop-filter: blur(10px); position: relative; overflow: hidden; }
.fcard--feat { background: linear-gradient(165deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04)); border-color: var(--gold-line); }
.fcard__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); font-weight: 600; }
.fcard h4 { color: var(--white); font-size: 26px; margin: 14px 0 16px; }
.fcard__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.fcard__price b { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.fcard__price span { color: var(--white-55); font-size: 14px; }
.fcard ul { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--white-10); display: flex; flex-direction: column; gap: 11px; }
.fcard li { display: flex; gap: 11px; color: var(--white-70); font-size: 14px; }
.fcard li i { color: var(--gold-bright); flex: none; width: 17px; height: 17px; margin-top: 2px; }
.fcard__ribbon { position: absolute; top: 18px; right: -34px; transform: rotate(45deg); background: var(--gold); color: var(--teal-night); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 40px; text-transform: uppercase; }

/* ---------- PROCESS ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; counter-reset: step; }
.proc { position: relative; padding-top: 30px; }
.proc::before { content: ""; position: absolute; top: 38px; left: 0; right: 0; height: 1px; background: var(--border-soft); z-index: 0; }
.proc:last-child::before { right: 50%; }
.proc:first-child::before { left: 50%; }
.proc__num {
  position: relative; z-index: 1; width: 76px; height: 76px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--gold-line); display: grid; place-items: center; font-family: var(--serif);
  font-size: 32px; font-weight: 600; color: var(--gold-deep); margin: 0 auto 26px;
}
.proc h4 { text-align: center; font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.proc p { text-align: center; color: var(--ink-soft); font-size: 14px; line-height: 1.55; padding: 0 6px; }

/* ---------- BEFORE / AFTER ---------- */
.ba-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.ba {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-2xl); overflow: hidden; cursor: ew-resize;
  box-shadow: var(--shadow-lift); user-select: none; border: 1px solid var(--border-soft);
}
.ba__layer { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__before { background: linear-gradient(155deg, #5a6b66, #3a4744); }
.ba__after { background: linear-gradient(155deg, var(--teal-soft), var(--teal-deep)); width: 50%; overflow: hidden; border-right: 2px solid var(--gold); }
.ba__after .ba__inner { width: 100vw; max-width: 760px; }
.ba__label { position: absolute; top: 18px; padding: 7px 16px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; backdrop-filter: blur(6px); }
.ba__label--b { left: 18px; background: rgba(0,0,0,0.4); color: var(--white); }
.ba__label--a { right: 18px; background: var(--gold); color: var(--teal-night); }
.ba__smile { font-family: var(--serif); font-size: clamp(40px, 7vw, 72px); color: rgba(255,255,255,0.85); font-style: italic; }
.ba__after .ba__smile { color: var(--gold-bright); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-50%); z-index: 3; }
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23044a42' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 6 3 12l6 6M15 6l6 6-6 6'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- PRICING ---------- */
.pricing { background: var(--paper-deep); }
.price-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 56px 0 44px; }
.price-tab {
  padding: 12px 24px; border-radius: var(--r-pill); border: 1px solid var(--border-soft); background: var(--white);
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all var(--d-base) var(--ease-out);
}
.price-tab:hover { border-color: var(--gold-line); color: var(--ink); }
.price-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: var(--shadow-teal); }
.price-panel { display: none; }
.price-panel.active { display: block; animation: fadeUp 460ms var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.price-list { max-width: 880px; margin: 0 auto; background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--border-soft); box-shadow: var(--shadow-card); overflow: hidden; }
.price-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 22px 30px; border-bottom: 1px solid var(--border-faint); transition: background var(--d-fast); }
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: var(--teal-tint); }
.price-row__name { font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.price-row__sub { margin-top: 7px; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.price-row__sub span { font-size: 13px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px; }
.price-row__sub span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
.price-row__val { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--teal); white-space: nowrap; flex: none; }
.price-row__val .u { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); font-weight: 500; }
.price-row--hot { background: linear-gradient(90deg, var(--gold-tint), transparent); }
.price-row--hot .price-row__val { color: var(--gold-deep); }
.price-note { max-width: 880px; margin: 22px auto 0; text-align: center; color: var(--ink-faint); font-size: 13px; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.google-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--r-2xl); padding: 44px; box-shadow: var(--shadow-card); text-align: center; }
.google-card__score { font-family: var(--serif); font-size: 92px; font-weight: 600; color: var(--teal); line-height: 1; }
.google-card .stars { justify-content: center; margin: 8px 0 14px; }
.google-card .stars svg { width: 22px; height: 22px; }
.google-card__meta { color: var(--ink-soft); font-size: 15px; }
.google-card__brand { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-faint); display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-card); }
.quote .stars { margin-bottom: 16px; }
.quote .stars svg { width: 16px; height: 16px; }
.quote p { font-size: 16px; line-height: 1.6; color: var(--ink); font-family: var(--serif); font-style: italic; }
.quote__by { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--teal), var(--teal-deep)); color: var(--gold-bright); display: grid; place-items: center; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.quote__by b { display: block; font-family: var(--sans); font-size: 14.5px; color: var(--ink); }
.quote__by span { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.member { text-align: center; }
.member image-slot { width: 100%; height: 360px; border-radius: var(--r-xl); box-shadow: var(--shadow-card); }
.member h4 { margin-top: 22px; font-size: 24px; color: var(--ink); }
.member__role { color: var(--gold-deep); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 56px auto 0; }
.faq { border-bottom: 1px solid var(--border-soft); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 4px; text-align: left; font-family: var(--serif); font-size: clamp(20px, 2vw, 27px); font-weight: 600; color: var(--ink); }
.faq__ic { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-soft); display: grid; place-items: center; color: var(--teal); transition: all var(--d-base) var(--ease-out); }
.faq__ic i { width: 19px; height: 19px; }
.faq.open .faq__ic { background: var(--gold); border-color: var(--gold); color: var(--teal-night); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--d-slow) var(--ease-luxe); }
.faq.open .faq__a { max-height: 340px; }
.faq__a p { padding: 0 60px 30px 4px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* ---------- CONTACT (dark) ---------- */
.contact { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-night) 100%); color: var(--white); overflow: hidden; isolation: isolate; }
.contact__glow { position: absolute; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; right: -8%; top: -14%; background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 62%); filter: blur(14px); }
.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.contact h2 { color: var(--white); }
.contact h2 .serif-it { color: var(--gold-bright); }
.contact__phone { margin: 36px 0; }
.contact__phone span { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 10px; }
.contact__phone a { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 72px); font-weight: 600; color: var(--white); text-decoration: none; letter-spacing: 0.01em; }
.contact__phone a:hover { color: var(--gold-bright); }
.contact__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.contact__info { background: var(--white-06); border: 1px solid var(--white-18); border-radius: var(--r-2xl); padding: 38px; backdrop-filter: blur(14px); }
.cinfo { display: flex; gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--white-10); }
.cinfo:last-child { border-bottom: 0; padding-bottom: 0; }
.cinfo:first-child { padding-top: 0; }
.cinfo__ic { width: 44px; height: 44px; border-radius: 12px; flex: none; background: var(--gold-tint); color: var(--gold-bright); display: grid; place-items: center; }
.cinfo b { display: block; color: var(--white); font-size: 15.5px; margin-bottom: 3px; }
.cinfo span { color: var(--white-70); font-size: 14px; line-height: 1.5; }

/* ---------- FOOTER ---------- */
.footer { background: var(--teal-night); color: var(--white-70); padding: 80px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--white-10); }
.footer__brand .nav__word { font-size: 30px; }
.footer__brand p { margin-top: 18px; max-width: 300px; color: var(--white-55); font-size: 14.5px; line-height: 1.6; }
.footer__col h5 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: var(--white-70); font-size: 14.5px; text-decoration: none; margin-bottom: 12px; transition: color var(--d-fast); }
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 30px; font-size: 13px; color: var(--white-55); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--white-18); display: grid; place-items: center; color: var(--white-70); transition: all var(--d-base) var(--ease-out); }
.footer__socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--teal-night); }
.footer__socials i { width: 18px; height: 18px; }

/* ---------- FLOATING CALL ---------- */
.fab { position: fixed; bottom: 22px; right: 22px; z-index: 90; display: none; }
.fab a { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); display: grid; place-items: center; color: var(--teal-night); box-shadow: 0 14px 36px -8px rgba(212,175,55,0.6); }
.fab a i { width: 26px; height: 26px; }

/* ============================================================
   Responsive
   ============================================================ */
/* Navbar: collapse rating first, then links, before they can overflow */
@media (max-width: 1120px) {
  .nav__links { gap: 22px; }
  .nav__rating { display: none; }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .nav { padding: 10px 12px 10px 22px; }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why__media image-slot { height: 420px; }
  .feature__top { grid-template-columns: 1fr; gap: 28px; }
  .ba-wrap { grid-template-columns: 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .feature__cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .stat:nth-child(3) { border-left: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav { padding: 9px 9px 9px 18px; gap: 10px; }
  .nav__word { font-size: 21px; }
  .nav__mark { width: 31px; height: 31px; font-size: 19px; }
  .nav__right { gap: 9px; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .proc::before { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .fab { display: block; }
  .stat + .stat { border-left: 0; }
  .hero__inner { padding-top: 110px; }
}
@media (max-width: 540px) {
  .svc-grid, .stats__grid, .footer__top { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--border-soft); padding-top: 28px; }
  .wrap, .wrap-wide { padding: 0 20px; }
  .price-row { flex-direction: column; gap: 10px; padding: 20px 22px; }
  .proc-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact__phone a { font-size: clamp(30px, 9vw, 48px); }
  .why__badge { left: 0; bottom: -20px; padding: 16px 20px; }
  .section-pad { padding: 72px 0; }
  .contact__info { padding: 28px; }
  .hero__phone a { font-size: 22px; }
}
@media (max-width: 400px) {
  .nav__btn-label { display: none; }
  .nav .btn--gold.btn--sm { padding: 11px 14px; }
  .nav__word { font-size: 19px; }
}
