/* ==========================================================================
   GNANAM FOUNDATION - Alcohol, Drug & Psychiatric De-Addiction Centre
   Stylesheet: HTML5 + CSS3 only. Mobile-first. No frameworks.
   Palette derived from the official logo: cyan ring, magenta heart, navy word.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand - navy (wordmark) */
  --navy-900: #0a1838;
  --navy-800: #102a5c;
  --navy-700: #17386f;
  --navy-600: #24518f;

  /* Brand - cyan (ring + caring hands) */
  --cyan-700: #0b7d95;
  --cyan-600: #0e93ae;
  --cyan-500: #17b4d1;
  --cyan-400: #35cde6;
  --cyan-200: #a8e7f2;
  --cyan-100: #dff5fa;
  --cyan-50:  #f0fafd;

  /* Brand - coral / rose (heart + FOUNDATION) */
  --coral-600: #e23f58;
  --coral-500: #f2556b;
  --coral-200: #ffc9d1;
  --coral-100: #ffe7ea;
  --rose-600:  #be2f5c;

  /* Surfaces & ink */
  --white:    #ffffff;
  --bg-soft:  #f5fafd;
  --bg-mist:  #edf6fa;
  --ink:      #14213d;
  --ink-2:    #4a5a75;
  --ink-3:    #7a8aa3;
  --line:     #e2ecf3;
  --line-2:   #cfe0eb;

  /* Semantic */
  --success: #10876a;
  --danger:  #d13a4b;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--cyan-500) 0%, var(--navy-600) 100%);
  --grad-deep:  linear-gradient(140deg, var(--navy-800) 0%, var(--navy-900) 55%, #0d2f56 100%);
  --grad-warm:  linear-gradient(135deg, var(--coral-500) 0%, var(--rose-600) 100%);
  --grad-cool:  linear-gradient(135deg, var(--cyan-400) 0%, var(--cyan-600) 100%);

  /* Typography */
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-h1:   clamp(2.05rem, 1.25rem + 3.5vw, 3.9rem);
  --fs-h2:   clamp(1.7rem, 1.2rem + 2.1vw, 2.7rem);
  --fs-h3:   clamp(1.12rem, 1.02rem + 0.45vw, 1.35rem);
  --fs-lead: clamp(1rem, 0.96rem + 0.3vw, 1.16rem);
  --fs-sm:   0.9rem;
  --fs-xs:   0.8rem;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  36px;
  --r-full: 999px;

  /* Shadows (navy-tinted, soft) */
  --sh-xs: 0 1px 2px rgba(16, 42, 92, .06);
  --sh-sm: 0 2px 8px rgba(16, 42, 92, .06);
  --sh-md: 0 8px 24px rgba(16, 42, 92, .08);
  --sh-lg: 0 18px 42px rgba(16, 42, 92, .10);
  --sh-xl: 0 30px 70px rgba(16, 42, 92, .14);
  --sh-cyan: 0 14px 30px rgba(23, 180, 209, .28);
  --sh-coral: 0 14px 30px rgba(226, 63, 88, .26);

  /* Motion */
  --t-fast: .18s cubic-bezier(.4, 0, .2, 1);
  --t: .28s cubic-bezier(.4, 0, .2, 1);
  --t-slow: .55s cubic-bezier(.22, .8, .3, 1);

  /* Layout */
  --wrap: 1180px;
  --gutter: 1.25rem;
  --header-h: 74px;
  --section-y: clamp(3.5rem, 2rem + 6vw, 6.5rem);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

/* Prevent grid/flex children from refusing to shrink below their content's
   intrinsic width (the #1 cause of silent mobile horizontal overflow). */
* { min-width: 0; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  color: var(--navy-800);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.3; }

p { text-wrap: pretty; }

a { color: var(--cyan-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--coral-600); }

img, svg, video { display: block; max-width: 100%; height: auto; }

ul, ol { list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

strong, b { font-weight: 700; color: var(--navy-800); }

::selection { background: var(--cyan-200); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--navy-800);
  color: var(--white);
  padding: .8rem 1.4rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
  transition: top var(--t);
}
.skip-link:focus { top: 0; color: var(--white); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid { display: grid; gap: 1.25rem; }

.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--mist { background: var(--bg-mist); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

/* Section heading block */
.head { max-width: 46rem; margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.25rem); }
.head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cyan-100);
  color: var(--cyan-700);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral-500);
}
.eyebrow--warm { background: var(--coral-100); color: var(--rose-600); }
.eyebrow--warm::before { background: var(--cyan-500); }
.eyebrow--onDark { background: rgba(255,255,255,.12); color: var(--cyan-200); }

.head p, .lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  margin-top: 1rem;
}

/* Highlighted word inside a heading */
.mark { color: var(--cyan-600); position: relative; }
.mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .3em;
  background: var(--coral-200);
  opacity: .45;
  border-radius: var(--r-full);
  z-index: -1;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--navy-800);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: -.01em;
  line-height: 1.2;
  padding: .95rem 1.6rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t),
              color var(--t), border-color var(--t);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary { background: var(--grad-warm); box-shadow: var(--sh-coral); }
.btn--primary:hover { box-shadow: 0 18px 38px rgba(226, 63, 88, .34); }

.btn--brand { background: var(--grad-cool); box-shadow: var(--sh-cyan); }
.btn--brand:hover { box-shadow: 0 18px 38px rgba(23, 180, 209, .36); }

.btn--navy { background: var(--navy-800); box-shadow: var(--sh-md); }
.btn--navy:hover { background: var(--navy-700); }

.btn--outline { background: transparent; color: var(--navy-800); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--cyan-500); color: var(--cyan-700); background: var(--cyan-50); }

.btn--ghostLight {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.42);
  backdrop-filter: blur(6px);
}
.btn--ghostLight:hover { background: #fff; color: var(--navy-800); border-color: #fff; }

.btn--white { background: #fff; color: var(--navy-800); box-shadow: var(--sh-lg); }
.btn--white:hover { color: var(--cyan-700); }

.btn--wa { background: #25d366; box-shadow: 0 14px 30px rgba(37, 211, 102, .3); }
.btn--wa:hover { background: #1fbe5a; }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.02rem; }
.btn--sm { padding: .68rem 1.15rem; font-size: .87rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--cyan-700);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. TOP BAR
   -------------------------------------------------------------------------- */
.topbar {
  display: none;
  background: var(--grad-deep);
  color: rgba(255,255,255,.82);
  font-size: var(--fs-xs);
}
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: var(--cyan-200); }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 1.4rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 14px; height: 14px; color: var(--cyan-400); flex: none; }
.topbar__reg {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(23,180,209,.16);
  border: 1px solid rgba(23,180,209,.3);
  color: var(--cyan-200);
  font-weight: 700;
  letter-spacing: .03em;
  padding: .2rem .7rem;
  border-radius: var(--r-full);
}
@media (min-width: 1024px) { .topbar { display: block; } }

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), background var(--t);
}
.header.is-stuck { box-shadow: var(--sh-md); background: rgba(255,255,255,.97); }
.header.is-stuck .header__inner { min-height: calc(var(--header-h) - 12px); }
.header.is-stuck .brand__mark { transform: scale(.92); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: min-height var(--t);
  gap: 1rem;
  min-height: var(--header-h);
}

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand:hover { color: inherit; }
.brand__mark { width: 46px; height: 46px; flex: none; transition: transform var(--t); }
.brand:hover .brand__mark { transform: scale(1.06) rotate(-3deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -.02em;
}
.brand__name em { font-style: normal; color: var(--coral-500); }
.brand__tag {
  font-size: .555rem;
  font-weight: 700;
  letter-spacing: .095em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: .2rem;
}

/* Desktop nav */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .1rem; }
.nav__link {
  display: block;
  position: relative;
  padding: .55rem .7rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-700);
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem;
  bottom: .26rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--cyan-700); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy-800); font-weight: 700; }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: .6rem; }
.header__call { display: none; align-items: center; gap: .55rem; }
.header__call-ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cyan-100);
  color: var(--cyan-700);
  flex: none;
}
.header__call-ico svg { width: 18px; height: 18px; }
.header__call-txt { display: flex; flex-direction: column; line-height: 1.15; }
.header__call-label {
  font-size: .63rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ink-3);
}
.header__call-num { font-size: .93rem; font-weight: 800; color: var(--navy-800); }
.header__cta { display: none; }

/* Hamburger */
.burger {
  width: 46px; height: 46px;
  display: grid; place-items: center; align-content: center;
  gap: 5px;
  border-radius: var(--r-md);
  background: var(--cyan-50);
  border: 1px solid var(--line);
  transition: background var(--t);
}
.burger:hover { background: var(--cyan-100); }
.burger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform var(--t), opacity var(--t-fast), width var(--t);
}
.burger span:nth-child(2) { width: 14px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }

/* Mobile drawer */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(10, 24, 56, .45);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 960;
  width: min(88vw, 340px);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(10, 24, 56, .2);
  transform: translateX(102%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.drawer__close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-mist);
  color: var(--navy-800);
  flex: none;
  transition: background var(--t), transform var(--t), color var(--t);
}
.drawer__close:hover { background: var(--coral-100); color: var(--coral-600); transform: rotate(90deg); }
.drawer__close svg { width: 18px; height: 18px; }

.drawer__nav { padding: .6rem .7rem 0; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .92rem 1rem;
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast), padding-left var(--t-fast), color var(--t-fast);
}
.drawer__link:last-child { border-bottom: 0; }
.drawer__link svg {
  width: 15px; height: 15px;
  color: var(--cyan-500);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.drawer__link:hover, .drawer__link.is-active {
  background: var(--cyan-50);
  color: var(--cyan-700);
  padding-left: 1.3rem;
}
.drawer__link:hover svg, .drawer__link.is-active svg { opacity: 1; transform: translateX(0); }

.drawer__foot { margin-top: auto; padding: 1.15rem; display: grid; grid-template-columns: 1fr; gap: .6rem; }
.drawer__contact {
  background: var(--bg-mist);
  border-radius: var(--r-lg);
  padding: 1rem 1.05rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  margin-top: .3rem;
}
.drawer__contact a, .drawer__contact span {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.drawer__contact svg { width: 15px; height: 15px; color: var(--cyan-600); flex: none; margin-top: .22rem; }

@media (min-width: 1024px) {
  :root { --header-h: 82px; }
  .nav { display: block; }
  .burger { display: none; }
  .header__cta { display: inline-flex; }
  .brand__mark { width: 52px; height: 52px; }
  .brand__name { font-size: 1.28rem; }
  .brand__tag { font-size: .6rem; }
}
@media (min-width: 1280px) {
  .header__call { display: flex; }
  .nav__link { padding-inline: .9rem; font-size: .94rem; }
  .nav__link::after { left: .9rem; right: .9rem; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  padding-block: clamp(2.75rem, 1.5rem + 5vw, 5.5rem) clamp(3.5rem, 2rem + 6vw, 6rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 40rem at 88% -10%, rgba(23,180,209,.20), transparent 62%),
    radial-gradient(46rem 34rem at -8% 105%, rgba(242,85,107,.14), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(16,42,92,.09) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  opacity: .5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 1.5rem + 5vw, 3.5rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: .3rem;
  gap: .55rem;
  max-width: 100%;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--cyan-200);
  box-shadow: var(--sh-sm);
  color: var(--navy-800);
  font-size: .78rem;
  font-weight: 700;
  padding: .5rem .95rem .5rem .5rem;
  border-radius: var(--r-lg);
  margin-bottom: 1.35rem;
}
.hero__badge svg { width: 22px; height: 22px; color: var(--cyan-600); flex: none; }
.hero__badge b { color: var(--rose-600); }

.hero h1 { margin-bottom: 1.1rem; }
.hero h1 span { display: block; }
.hero__lead {
  font-size: var(--fs-lead);
  max-width: 34rem;
  color: var(--ink-2);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-2);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--cyan-600); flex: none; }
.hero__trust b { color: var(--navy-800); font-weight: 800; }

/* Hero media */
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 6px solid #fff;
  aspect-ratio: 5 / 4;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,24,56,.42) 100%);
}
.hero__blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .55;
}
.hero__blob--1 {
  width: 52%; aspect-ratio: 1;
  top: -7%; right: -9%;
  background: radial-gradient(circle at 30% 30%, var(--cyan-400), var(--cyan-600));
}
.hero__blob--2 {
  width: 34%; aspect-ratio: 1;
  bottom: -6%; left: -7%;
  background: radial-gradient(circle at 30% 30%, var(--coral-500), var(--rose-600));
  opacity: .38;
}

/* Floating helpline card over the hero image */
.hero__card {
  position: absolute;
  left: 50%;
  bottom: -1.6rem;
  transform: translateX(-50%);
  width: min(100% - 2rem, 20rem);
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: .85rem 1.05rem;
}
.hero__card-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-cool);
  color: #fff;
  flex: none;
  box-shadow: var(--sh-cyan);
}
.hero__card-ico svg { width: 20px; height: 20px; }
.hero__card-txt { line-height: 1.25; min-width: 0; }
.hero__card-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink-3);
}
.hero__card-num {
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -.01em;
}
.hero__card-num:hover { color: var(--cyan-700); }

/* Small live pill on the frame */
.hero__pill {
  position: absolute;
  top: 1rem; left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.94);
  border-radius: var(--r-full);
  padding: .38rem .8rem;
  font-size: .72rem;
  font-weight: 800;
  color: var(--navy-800);
  box-shadow: var(--sh-sm);
  z-index: 2;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22,163,74,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

@media (min-width: 640px) {
  .hero__card { left: auto; right: -.75rem; bottom: -1.75rem; transform: none; }
}
@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero__media { margin-bottom: 1rem; }
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.04fr .96fr; }
}

/* --------------------------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2rem, 1.4rem + 2.5vw, 3rem);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .5rem;
}
.trust__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--cyan-50);
  color: var(--cyan-700);
  border: 1px solid var(--cyan-100);
  flex: none;
}
.trust__ico svg { width: 21px; height: 21px; }
.trust__item:nth-child(even) .trust__ico {
  background: var(--coral-100);
  color: var(--rose-600);
  border-color: var(--coral-200);
}
.trust__t { display: block; font-weight: 800; color: var(--navy-800); font-size: .95rem; line-height: 1.25; }
.trust__s { display: block; font-size: .8rem; color: var(--ink-3); }

@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* --------------------------------------------------------------------------
   9. ABOUT
   -------------------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.25rem, 1.5rem + 4vw, 4rem); align-items: center; }

.about__media { position: relative; }
.about__img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 3;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--sub {
  display: none;
  position: absolute;
  right: -1.25rem;
  bottom: -2rem;
  width: 46%;
  aspect-ratio: 1;
  border: 6px solid #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.about__deco {
  position: absolute;
  z-index: -1;
  inset: auto auto -1.5rem -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(circle, rgba(23,180,209,.5) 1.5px, transparent 1.5px) 0 0 / 16px 16px;
  opacity: .5;
}
.about__seal {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: .7rem .95rem;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.about__seal img { width: 34px; height: 34px; flex: none; }
.about__seal span { line-height: 1.2; font-size: .72rem; color: var(--ink-3); font-weight: 600; }
.about__seal b { display: block; font-size: .85rem; color: var(--navy-800); }

.about__points { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.75rem; }
.about__point { display: flex; gap: .85rem; align-items: flex-start; }
.about__point-ico {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cyan-100);
  color: var(--cyan-700);
  flex: none;
  margin-top: .15rem;
}
.about__point-ico svg { width: 16px; height: 16px; }
.about__point h3 { font-size: 1rem; margin-bottom: .15rem; }
.about__point p { font-size: .9rem; margin: 0; }

.about__quote {
  margin-top: 1.9rem;
  padding: 1.15rem 1.35rem;
  background: var(--bg-mist);
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .95rem;
  color: var(--ink-2);
}
.about__quote strong { display: block; margin-top: .5rem; font-size: .87rem; }
.about__quote span { color: var(--ink-3); font-weight: 600; font-size: .8rem; }

@media (min-width: 768px) {
  .about__points { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__img--sub { display: block; }
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: .95fr 1.05fr; }
}

/* --------------------------------------------------------------------------
   10. SERVICES
   -------------------------------------------------------------------------- */
.services__grid { grid-template-columns: 1fr; }
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--cyan-200); }

.svc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,24,56,0) 45%, rgba(10,24,56,.55) 100%);
}
.svc-card__num {
  position: absolute; top: .85rem; right: .85rem; z-index: 1;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em;
  color: #fff; background: rgba(16,42,92,.55);
  backdrop-filter: blur(4px);
  padding: .3rem .6rem; border-radius: var(--r-full);
}

.svc-card__ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-lg);
  background: var(--grad-cool);
  color: #fff;
  box-shadow: var(--sh-cyan);
  margin: -1.9rem 1.25rem 0;
  position: relative;
  z-index: 1;
}
.svc-card:nth-child(3n+2) .svc-card__ico { background: var(--grad-warm); box-shadow: var(--sh-coral); }
.svc-card:nth-child(3n+3) .svc-card__ico { background: var(--navy-800); box-shadow: var(--sh-md); }
.svc-card__ico svg { width: 24px; height: 24px; }

.svc-card__body { padding: 1.1rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { margin-bottom: .5rem; }
.svc-card__body p { font-size: .92rem; margin-bottom: 1.1rem; flex: 1; }

@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why { position: relative; overflow: hidden; background: var(--grad-deep); color: rgba(255,255,255,.86); }
.why::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50rem 30rem at 100% 0%, rgba(23,180,209,.22), transparent 60%),
    radial-gradient(40rem 26rem at 0% 100%, rgba(242,85,107,.18), transparent 60%);
}
.why__inner { position: relative; z-index: 1; }
.why h2 { color: #fff; }
.why .head p { color: rgba(255,255,255,.72); }

.why__grid { grid-template-columns: 1fr; }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.why-card__ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(23,180,209,.22);
  color: var(--cyan-200);
  border: 1px solid rgba(23,180,209,.35);
  margin-bottom: 1rem;
}
.why-card__ico svg { width: 22px; height: 22px; }
.why-card h3 { color: #fff; font-size: 1.04rem; margin-bottom: .4rem; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.68); margin: 0; }

@media (min-width: 768px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   12. RECOVERY PROCESS
   -------------------------------------------------------------------------- */
.process__grid {
  grid-template-columns: 1fr;
  gap: 1.75rem;
  counter-reset: step;
  position: relative;
}
.process-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.process-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.process-card__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cyan-100);
  -webkit-text-stroke: 1.5px var(--cyan-400);
  line-height: 1;
  margin-bottom: .75rem;
  font-variant-numeric: tabular-nums;
}
.process-card__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #fff;
  box-shadow: var(--sh-coral);
  margin-bottom: 1rem;
}
.process-card__ico svg { width: 20px; height: 20px; }
.process-card h3 { margin-bottom: .4rem; }
.process-card p { font-size: .88rem; margin: 0; }

.process__arrow {
  display: none;
  position: absolute;
  z-index: 2;
  color: var(--cyan-400);
}

@media (min-width: 768px) {
  .process__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .process__grid { position: relative; }
  .process__grid::before {
    content: "";
    position: absolute;
    top: 3.05rem;
    left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--cyan-300, #7fdcec) 0 10px, transparent 10px 18px);
    opacity: .6;
    z-index: 0;
  }
  .process-card { z-index: 1; }
}

/* --------------------------------------------------------------------------
   13. CTA BAND
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--grad-warm);
  color: #fff;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.35) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: .18;
}
.cta__inner { position: relative; z-index: 1; max-width: 42rem; margin-inline: auto; text-align: center; }
.cta h2 { color: #fff; margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,.92); font-size: var(--fs-lead); }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   14. GALLERY
   -------------------------------------------------------------------------- */
.gallery__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--sh-sm);
  cursor: zoom-in;
}
.gallery__item:nth-child(3n+1) { aspect-ratio: 4 / 5; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery__item:hover img { transform: scale(1.09); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,24,56,.68) 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: .85rem; right: .85rem; bottom: .8rem;
  color: #fff; font-size: .82rem; font-weight: 700;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--t), transform var(--t);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__zoom {
  position: absolute; top: .7rem; right: .7rem;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--navy-800);
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__zoom svg { width: 15px; height: 15px; }
.gallery__item:hover .gallery__zoom { opacity: 1; }

@media (min-width: 768px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  display: grid; place-items: center;
  background: rgba(8, 16, 36, .92);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t);
  padding: 1.25rem;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { position: relative; max-width: min(90vw, 1000px); max-height: 86vh; }
.lightbox__figure img {
  max-width: 100%; max-height: 86vh;
  width: auto; height: auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__cap {
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: .88rem;
  margin-top: .85rem;
}
.lightbox__counter {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 700;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem .85rem;
  border-radius: var(--r-full);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  transition: background var(--t-fast);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.24); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testi__grid { grid-template-columns: 1fr; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-card__stars { display: flex; gap: .2rem; color: #f5a623; margin-bottom: 1rem; }
.testi-card__stars svg { width: 16px; height: 16px; }
.testi-card__quote { font-size: .96rem; color: var(--ink-2); flex: 1; margin-bottom: 1.4rem; }
.testi-card__quote::before { content: open-quote; }
.testi-card__quote::after { content: close-quote; }
.testi-card__person { display: flex; align-items: center; gap: .8rem; }
.testi-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-cool);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  flex: none;
}
.testi-card:nth-child(even) .testi-card__avatar { background: var(--grad-warm); }
.testi-card__name { font-weight: 800; color: var(--navy-800); font-size: .92rem; }
.testi-card__role { font-size: .8rem; color: var(--ink-3); }

@media (min-width: 768px) { .testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi__grid { grid-template-columns: repeat(3, 1fr); } }

.testi__note {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: .82rem;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   16. CONTACT
   -------------------------------------------------------------------------- */
.contact__grid { grid-template-columns: 1fr; gap: 2rem; }

.contact__info {
  background: var(--grad-deep);
  color: rgba(255,255,255,.85);
  border-radius: var(--r-2xl);
  padding: clamp(1.75rem, 1.4rem + 1.8vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.contact__info::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40rem 26rem at 100% 0%, rgba(23,180,209,.25), transparent 60%);
}
.contact__info > * { position: relative; z-index: 1; }
.contact__info h3 { color: #fff; font-size: 1.3rem; margin-bottom: .3rem; }
.contact__info > p.lead { color: rgba(255,255,255,.7); margin-top: 0; margin-bottom: 1.6rem; font-size: .95rem; }

.contact__list { display: grid; grid-template-columns: 1fr; gap: 1.15rem; margin-bottom: 1.75rem; }
.contact__row { display: flex; gap: .9rem; align-items: flex-start; }
.contact__row-ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--cyan-200);
  flex: none;
}
.contact__row-ico svg { width: 19px; height: 19px; }
.contact__row h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; font-weight: 700; }
.contact__row a, .contact__row p { color: rgba(255,255,255,.82); font-size: .93rem; margin: 0; line-height: 1.55; }
.contact__row a:hover { color: var(--cyan-200); }
.contact__row a + a { display: block; margin-top: .15rem; }

.contact__quick { display: flex; flex-wrap: wrap; gap: .65rem; }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(1.75rem, 1.4rem + 1.8vw, 2.5rem);
  box-shadow: var(--sh-md);
}
.contact__form h3 { margin-bottom: .35rem; }
.contact__form > p { font-size: .9rem; margin-bottom: 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .84rem; font-weight: 700; color: var(--navy-800); }
.form-field label .req { color: var(--coral-600); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-md);
  padding: .8rem .95rem;
  font-size: .94rem;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  background: #fff;
  box-shadow: 0 0 0 4px var(--cyan-100);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: .78rem; color: var(--ink-3); }
.form-error {
  font-size: .78rem;
  color: var(--danger);
  min-height: 1em;
  display: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--danger); background: #fff5f5; }
.form-field.has-error .form-error { display: block; }

.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--ink-2); }
.form-consent input { width: 17px; height: 17px; margin-top: .15rem; accent-color: var(--cyan-600); flex: none; }

.form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #eafaf3; color: var(--success); border: 1px solid #b9ecd9; }
.form-status.is-error { background: #fdecec; color: var(--danger); border: 1px solid #f6c6ca; }

@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: .82fr 1.18fr; }
}

/* Map */
.map {
  margin-top: 2rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 340px; border: 0; display: block; }
.map__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
}
.map__bar p { margin: 0; font-size: .88rem; color: var(--ink-2); }
.map__bar strong { color: var(--navy-800); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.66); }
.footer a { color: rgba(255,255,255,.66); }
.footer a:hover { color: var(--cyan-300, #7fdcec); }

.footer__top { padding-block: clamp(3rem, 2rem + 4vw, 4.5rem) 2.5rem; }
.footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }

.footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 44px; height: 44px; }
.footer__brand strong { display: block; color: #fff; font-size: 1.1rem; font-weight: 800; }
.footer__brand span { display: block; font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .2rem; }

.footer__desc { font-size: .89rem; line-height: 1.7; max-width: 30rem; margin-bottom: 1.4rem; }
.footer__reg {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700;
  background: rgba(23,180,209,.14);
  border: 1px solid rgba(23,180,209,.3);
  color: var(--cyan-200);
  padding: .35rem .8rem;
  border-radius: var(--r-full);
  margin-bottom: 1.4rem;
}
.footer__social { display: flex; gap: .6rem; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer__social a:hover { background: var(--cyan-600); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
  color: #fff; font-size: .92rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1.2rem;
}
.footer__col ul { display: grid; grid-template-columns: 1fr; gap: .75rem; }
.footer__col ul a { font-size: .89rem; display: inline-flex; align-items: center; gap: .5rem; }
.footer__col ul a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-500); flex: none; }

.footer__contact { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .89rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--cyan-400); flex: none; margin-top: .18rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.4rem;
}
.footer__bottom-inner {
  display: flex; flex-direction: column; gap: .75rem;
  align-items: center; text-align: center;
  font-size: .82rem;
}
.footer__bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.footer__bottom-links a { font-size: .82rem; }

@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* --------------------------------------------------------------------------
   18. FLOATING ACTION BUTTONS
   -------------------------------------------------------------------------- */
.fab-stack {
  display: none;
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 800;
  flex-direction: column;
  gap: .75rem;
}
.fab {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--sh-lg);
  transition: transform var(--t-fast), box-shadow var(--t);
  position: relative;
}
.fab:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
.fab svg { width: 26px; height: 26px; }
.fab--wa { background: #25d366; }
.fab--call { background: var(--grad-warm); }
.fab__tip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--navy-900);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .75rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.fab:hover .fab__tip { opacity: 1; }

/* Floating circular buttons: tablet and up. Mobile uses the fixed bottom action bar instead. */
@media (min-width: 768px) {
  .fab-stack { display: flex; }
}
@media (min-width: 1024px) {
  .fab-stack { right: 1.75rem; bottom: 1.75rem; gap: .9rem; }
  .fab { width: 60px; height: 60px; }
}

/* --------------------------------------------------------------------------
   19. PAGE HERO (inner pages: About / Services / Gallery / Contact)
   -------------------------------------------------------------------------- */
.pagehero {
  position: relative;
  overflow: hidden;
  background: var(--grad-deep);
  color: rgba(255,255,255,.85);
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 5.5rem) clamp(2.5rem, 1.8rem + 3vw, 4rem);
  text-align: center;
}
.pagehero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(46rem 30rem at 85% -10%, rgba(23,180,209,.24), transparent 60%),
    radial-gradient(36rem 26rem at 5% 110%, rgba(242,85,107,.18), transparent 60%);
}
.pagehero__inner { position: relative; z-index: 1; max-width: 42rem; margin-inline: auto; }
.pagehero h1 { color: #fff; margin-bottom: .9rem; }
.pagehero p { color: rgba(255,255,255,.75); font-size: var(--fs-lead); }
.breadcrumb {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   20. MISC COMPONENTS (stats, team, FAQ, page CTAs)
   -------------------------------------------------------------------------- */
.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; text-align: center; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  box-shadow: var(--sh-sm);
}
.stat__num { font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.3rem); font-weight: 800; color: var(--cyan-700); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--ink-3); font-weight: 600; margin-top: .5rem; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.values__grid { grid-template-columns: 1fr; }
.value-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: var(--r-lg); transition: background var(--t); }
.value-card:hover { background: var(--bg-mist); }
.value-card__ico {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cyan-100); color: var(--cyan-700);
}
.value-card__ico svg { width: 20px; height: 20px; }
.value-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.value-card p { font-size: .89rem; margin: 0; }
@media (min-width: 768px) { .values__grid { grid-template-columns: 1fr 1fr; } }

.team__grid { grid-template-columns: 1fr; }
.team-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-sm); text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.team-card__media { aspect-ratio: 4/3.4; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 1.25rem; }
.team-card__body h3 { font-size: 1rem; margin-bottom: .2rem; }
.team-card__role { font-size: .82rem; color: var(--cyan-700); font-weight: 700; margin-bottom: .6rem; }
.team-card__body p { font-size: .85rem; margin: 0; }
@media (min-width: 768px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }

.faq { max-width: 46rem; margin-inline: auto; display: grid; grid-template-columns: 1fr; gap: .9rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; font-weight: 700; color: var(--navy-800); font-size: .96rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__plus {
  width: 28px; height: 28px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--cyan-100); color: var(--cyan-700);
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq-item[open] .faq-item__plus { transform: rotate(45deg); background: var(--grad-warm); color: #fff; }
.faq-item__plus svg { width: 14px; height: 14px; }
.faq-item__body { padding: 0 1.3rem 1.2rem; font-size: .9rem; color: var(--ink-2); }

.pagecta {
  background: var(--bg-mist);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  text-align: center;
}
.pagecta h2 { margin-bottom: .75rem; }
.pagecta .btn-row { justify-content: center; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL ANIMATIONS (subtle, respects reduced motion)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,.8,.3,1), transform .6s cubic-bezier(.22,.8,.3,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .27s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .33s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .39s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: .51s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .brand__mark, .hero__dot { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   22. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .header, .topbar, .fab-stack, .drawer, .drawer-scrim, .lightbox { display: none !important; }
}

/* Alternating service detail rows (reuses .about__grid pattern) */
.svc-detail { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.svc-detail:nth-child(even) { background: var(--bg-soft); }
.svc-detail__grid { grid-template-columns: 1fr; gap: clamp(2rem, 1.5rem + 3vw, 3.25rem); align-items: center; }
.svc-detail__img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4/3; }
.svc-detail__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail__list { display: grid; grid-template-columns: 1fr; gap: .6rem; margin-top: 1.25rem; }
.svc-detail__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.svc-detail__list svg { width: 18px; height: 18px; color: var(--cyan-600); flex: none; margin-top: .15rem; }
@media (min-width: 768px) {
  .svc-detail__grid { grid-template-columns: 1fr 1fr; }
  .svc-detail__grid--rev .svc-detail__img { order: 2; }
}

/* Icon-based avatar variant for team cards without a real photo on file */
.team-card__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cool);
}
.team-card__initials {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   23. MOBILE FIXED ACTION BAR (mobile only, <768px)
   -------------------------------------------------------------------------- */
.mobile-actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 850;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(16,42,92,.10);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-actionbar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .6rem .4rem;
  min-height: 60px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy-800);
  border-right: 1px solid var(--line);
  transition: background var(--t-fast);
}
.mobile-actionbar__btn:last-child { border-right: 0; }
.mobile-actionbar__btn:active { background: var(--bg-mist); }
.mobile-actionbar__btn svg { width: 21px; height: 21px; }
.mobile-actionbar__btn--call svg { color: var(--coral-600); }
.mobile-actionbar__btn--wa svg { color: #25d366; }
.mobile-actionbar__btn--loc svg { color: var(--cyan-700); }

/* Reserve space so page content and the sticky footer never sit under the bar */
body.has-mobile-actionbar { padding-bottom: 66px; }

@media (min-width: 768px) {
  .mobile-actionbar { display: none; }
  body.has-mobile-actionbar { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   24. BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 82px;
  z-index: 790;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t), background var(--t-fast);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--cyan-700); color: #fff; }
.back-to-top svg { width: 19px; height: 19px; }

@media (min-width: 768px) {
  /* Sits beside the floating call/WhatsApp stack, not stacked above it */
  .back-to-top { right: calc(1.1rem + 56px + .75rem); bottom: 1.1rem; width: 48px; height: 48px; }
}
@media (min-width: 1024px) {
  .back-to-top { right: calc(1.75rem + 60px + .9rem); bottom: 1.75rem; }
}

/* --------------------------------------------------------------------------
   25. SERVICE DETAIL MODAL
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 16, 36, .55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  width: min(100%, 560px);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  transform: translateY(18px) scale(.98);
  transition: transform var(--t);
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__media { position: relative; aspect-ratio: 16/9; border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__close {
  position: absolute;
  top: .85rem; right: .85rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy-800);
  box-shadow: var(--sh-sm);
  transition: background var(--t-fast), transform var(--t-fast);
}
.modal__close:hover { background: #fff; transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }
.modal__ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--r-lg);
  background: var(--grad-cool);
  color: #fff;
  box-shadow: var(--sh-cyan);
  margin: -1.9rem auto 0 1.5rem;
  position: relative;
}
.modal__ico svg { width: 26px; height: 26px; }
.modal__body { padding: 1rem 1.5rem 1.75rem; }
.modal__body h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.modal__body > p { font-size: .95rem; margin-bottom: 1.1rem; }
.modal__benefits { display: grid; grid-template-columns: 1fr; gap: .55rem; margin-bottom: 1.5rem; }
.modal__benefits li { display: flex; gap: .55rem; align-items: flex-start; font-size: .89rem; color: var(--ink-2); }
.modal__benefits svg { width: 17px; height: 17px; color: var(--cyan-600); flex: none; margin-top: .15rem; }
.modal__actions { display: flex; flex-wrap: wrap; gap: .65rem; }

/* --------------------------------------------------------------------------
   26. TESTIMONIALS SLIDER (dynamic, swipeable, responsive cards-per-view)
   -------------------------------------------------------------------------- */
.testi-slider { position: relative; }
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track > .testi-card { scroll-snap-align: start; }

.testi-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.testi-slider__arrow {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line-2);
  color: var(--navy-800);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  flex: none;
}
.testi-slider__arrow:hover { background: var(--cyan-50); border-color: var(--cyan-400); color: var(--cyan-700); }
.testi-slider__arrow svg { width: 18px; height: 18px; }
.testi-slider__dots { display: flex; align-items: center; gap: .5rem; }
.testi-slider__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-2);
  transition: background var(--t-fast), transform var(--t-fast), width var(--t-fast);
}
.testi-slider__dot.is-active { background: var(--coral-500); width: 24px; border-radius: var(--r-full); }

@media (min-width: 768px) { .testi-track { grid-auto-columns: calc(50% - .625rem); } }
@media (min-width: 1024px) { .testi-track { grid-auto-columns: calc(33.333% - .834rem); } }
