/* ================================================
   Dr. Clemente d'Angelo — Fisioterapista OMPT
   Brand: #3E9FAC (teal) · #0C2D4E (navy) · #FFFCED (warm white)
   Font display: Nunito | Font body: Inter
   ================================================ */

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:        #3E9FAC;
  --teal-lt:     #5dbfcd;
  --teal-dk:     #2d7a86;
  --navy:        #0C2D4E;
  --navy-lt:     #133664;
  --warm:        #FFFCED;
  --warm-dk:     #f0eede;
  --white:       #ffffff;
  --text:        #0C2D4E;
  --text-mid:    #4a5568;
  --text-muted:  #718096;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;

  --sh-sm:   0 2px 10px rgba(12,45,78,.08);
  --sh-md:   0 8px 28px rgba(12,45,78,.12);
  --sh-lg:   0 20px 60px rgba(12,45,78,.16);
  --sh-teal: 0 8px 28px rgba(62,159,172,.35);

  --ease: .3s ease;
  --ease-lg: .6s ease;

  --font-d: 'Nunito', sans-serif;
  --font-b: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; background: var(--navy); overflow-x: hidden; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--warm);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

h1,h2,h3,h4 { font-family: var(--font-d); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: .95rem; font-weight: 600; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-family: var(--font-d); font-size: .88rem; font-weight: 700;
  cursor: pointer; transition: all var(--ease);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: var(--sh-teal);
}
.btn-primary:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(62,159,172,.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-nav {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 20px; border-radius: 100px;
  font-family: var(--font-d); font-size: .82rem; font-weight: 700;
  transition: all var(--ease);
}
.btn-nav:hover { background: var(--teal-dk); box-shadow: var(--sh-teal); }

/* ── SECTION HEADERS ────────────────────────────── */
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-tag {
  display: inline-block;
  background: rgba(62,159,172,.12); color: var(--teal);
  font-family: var(--font-d); font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.sec-header h2 { color: var(--navy); margin-bottom: 14px; }
.sec-header p  { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Dark section overrides */
.dark .sec-tag   { background: rgba(62,159,172,.18); color: var(--teal-lt); }
.dark .sec-header h2 { color: var(--white); }
.dark .sec-header p  { color: rgba(255,255,255,.55); }

/* ── NAVBAR ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 10px 0;
  background: #0C2D4E;
  transition: all var(--ease);
}
.nav.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 28px rgba(0,0,0,.3);
}
.nav .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 48px; width: auto; display: block;
  border-radius: var(--r-sm);
  transition: height var(--ease);
}
.nav.scrolled .logo-img { height: 38px; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  color: rgba(255,255,255,.8); font-family: var(--font-d);
  font-size: .82rem; font-weight: 500;
  transition: color var(--ease); position: relative;
}
.nav-menu a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width var(--ease);
}
.nav-menu a:not(.btn-nav):hover { color: var(--white); }
.nav-menu a:not(.btn-nav):hover::after { width: 100%; }
.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after { width: 100%; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy); display: flex;
  align-items: center; overflow: hidden;
  padding: 120px 0 80px;
}
/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,159,172,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,159,172,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Glow blobs */
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(62,159,172,.14), transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 10s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(62,159,172,.08), transparent 70%);
  bottom: -80px; left: -80px;
  animation: blobFloat 13s ease-in-out infinite reverse 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(20px,-30px) scale(1.05); }
}

.hero .container {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 72px;
}
.hero-content { flex: 1; }
.hero-motto-img {
  height: 140px; width: auto; display: block;
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  color: var(--white); font-weight: 800; margin-bottom: 20px;
  opacity: 0; transform: translateY(24px);
  animation: slideUp .7s ease .25s forwards;
}
.hero-logo-img {
  height: clamp(104px, 15.6vw, 169px); width: auto; display: block;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(24px);
  animation: slideUp .7s ease .25s forwards;
}
.hero-tagline {
  color: var(--teal-lt); font-family: var(--font-d);
  font-size: clamp(.9rem, 1.6vw, 1.1rem); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.5;
  margin-bottom: 10px;
  opacity: 0; transform: translateY(20px);
  animation: slideUp .7s ease .4s forwards;
}
.hero-sub {
  color: rgba(255,255,255,.45); font-size: .88rem;
  letter-spacing: .06em; margin-bottom: 44px;
  opacity: 0; transform: translateY(16px);
  animation: slideUp .7s ease .52s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px;
  opacity: 0; transform: translateY(16px);
  animation: slideUp .7s ease .64s forwards;
}
.hero-stats {
  display: flex; align-items: center; gap: 36px;
  opacity: 0; transform: translateY(16px);
  animation: slideUp .7s ease .78s forwards;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-d); font-size: 1.7rem;
  font-weight: 800; color: var(--white);
}
.hero-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 400; }
.hero-stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,.12); }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero image */
.hero-visual {
  flex-shrink: 0; width: 360px;
  opacity: 0; transform: translateX(30px);
  animation: slideIn .8s ease .3s forwards;
}
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap::before {
  content: '';
  position: absolute; inset: -14px;
  border: 2px solid rgba(62,159,172,.2);
  border-radius: var(--r-xl);
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .9; transform: scale(1.025); }
}
.hero-img-wrap img {
  width: 100%; height: 460px;
  object-fit: cover; object-position: center top;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.hero-badge-pill {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--white); color: var(--navy);
  font-family: var(--font-d); font-size: .78rem; font-weight: 700;
  padding: 12px 18px; border-radius: var(--r-md);
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: 8px;
}
.star-icon { color: #FFB800; font-size: .9rem; }

/* Scroll caret — desktop */
.scroll-caret {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  animation: caretBounce 1.8s ease-in-out infinite;
  opacity: .55;
}
.scroll-caret-arr {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
}
@keyframes caretBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .55; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Scroll arrow — mobile in-flow */
.hero-scroll-arrow {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: -10px;
  color: var(--teal-lt);
  margin-bottom: 2px;
  line-height: 0;
}
.hero-scroll-arrow svg {
  animation: arrowBounce 1.6s ease-in-out infinite;
  margin-top: -18px;
}
.hero-scroll-arrow svg:first-child {
  margin-top: 0;
}
.hero-scroll-arrow svg:nth-child(2) {
  animation-delay: .25s;
}
.hero-scroll-arrow svg:nth-child(3) {
  animation-delay: .5s;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0);   opacity: .45; }
  50%       { transform: translateY(5px); opacity: 1;   }
}

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.from-right { transform: translateX(40px); }
.reveal.visible    { opacity: 1; transform: translate(0); }

/* Stagger within grid containers */
.services-grid .s-card:nth-child(1) { transition-delay: 0s; }
.services-grid .s-card:nth-child(2) { transition-delay: .12s; }
.services-grid .s-card:nth-child(3) { transition-delay: .24s; }
.services-grid .s-card:nth-child(4) { transition-delay: .36s; }

.target-grid .t-card:nth-child(1) { transition-delay: 0s; }
.target-grid .t-card:nth-child(2) { transition-delay: .1s; }
.target-grid .t-card:nth-child(3) { transition-delay: .2s; }
.target-grid .t-card:nth-child(4) { transition-delay: .3s; }

.cred-item:nth-child(1) { transition-delay: 0s; }
.cred-item:nth-child(2) { transition-delay: .1s; }
.cred-item:nth-child(3) { transition-delay: .2s; }
.cred-item:nth-child(4) { transition-delay: .3s; }

/* ── ABOUT ──────────────────────────────────────── */
.about { background: var(--warm); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-lead {
  font-size: 1.12rem; font-weight: 500;
  color: var(--text); line-height: 1.75; margin-bottom: 16px;
}
.about-body {
  color: var(--text-mid); line-height: 1.8; margin-bottom: 32px;
}
.pillars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.pillar  { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(62,159,172,.1); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 { color: var(--navy); font-size: .9rem; margin-bottom: 4px; }
.pillar p  { color: var(--text-muted); font-size: .82rem; }

.blockq {
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  background: rgba(62,159,172,.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic; color: var(--text-mid);
  font-size: .92rem; line-height: 1.7;
}
.blockq cite {
  display: block; margin-top: 10px;
  font-style: normal; font-size: .78rem;
  font-weight: 700; color: var(--teal);
  font-family: var(--font-d); letter-spacing: .04em;
}

.creds-col { display: flex; flex-direction: column; gap: 32px; }
.creds-label {
  font-family: var(--font-d); font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.cred-list { display: flex; flex-direction: column; gap: 12px; }
.cred-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border-radius: var(--r-sm);
  padding: 14px 16px; border: 1px solid rgba(12,45,78,.06);
  box-shadow: var(--sh-sm); transition: transform var(--ease), box-shadow var(--ease);
}
.cred-item:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.cred-dot { flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); margin-top: 5px; }
.cred-item h4 { font-size: .88rem; color: var(--navy); margin-bottom: 3px; }
.cred-item p  { font-size: .78rem; color: var(--text-muted); }

.role-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.role-pill {
  background: var(--navy); color: rgba(255,255,255,.8);
  font-size: .78rem; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-sm);
}

/* ── SERVICES ───────────────────────────────────── */
.services { background: var(--navy); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.s-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 38px 34px;
  transition: all var(--ease-lg);
}
.s-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(62,159,172,.3);
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,.25);
}
.s-card.featured {
  background: rgba(62,159,172,.07);
  border-color: rgba(62,159,172,.22);
}
.s-badge {
  display: inline-block;
  background: var(--teal); color: var(--white);
  font-family: var(--font-d); font-size: .66rem; font-weight: 800;
  padding: 4px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 16px;
}
.s-card.featured { padding-top: 22px; }
.s-icon {
  width: 52px; height: 52px;
  background: rgba(62,159,172,.14); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-lt); margin-bottom: 18px;
  transition: all var(--ease);
}
.s-icon svg { width: 26px; height: 26px; }
.s-card:hover .s-icon { background: var(--teal); color: var(--white); }

.s-price {
  font-family: var(--font-d); font-size: 1.7rem;
  font-weight: 800; color: var(--teal-lt); margin-bottom: 10px;
}
.s-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.s-card > p {
  color: rgba(255,255,255,.58); font-size: .88rem;
  line-height: 1.7; margin-bottom: 18px;
}
.s-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.s-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.72); font-size: .83rem;
}
.s-features li::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px;
  border-radius: 50%; background: var(--teal);
}
.s-where {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: .78rem;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07);
}
.s-where svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── TARGET ─────────────────────────────────────── */
.target-section { background: var(--warm); }
.target-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-bottom: 44px;
}
.t-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px; border: 1px solid rgba(12,45,78,.06);
  box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: all var(--ease);
}
.t-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dk));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.t-card:hover::after { transform: scaleX(1); }
.t-num {
  font-family: var(--font-d); font-size: .66rem; font-weight: 800;
  color: var(--teal); opacity: .65; letter-spacing: .1em; margin-bottom: 14px;
}
.t-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.t-card p  { color: var(--text-mid); font-size: .88rem; line-height: 1.7; }

.philosophy-box {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--navy); border-radius: var(--r-lg);
  padding: 40px; color: var(--white);
}
.philo-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(62,159,172,.14); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-lt);
}
.philo-icon svg { width: 26px; height: 26px; }
.philo-q {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,.82); font-style: italic; margin-bottom: 10px;
}
.philo-auth {
  font-size: .82rem; color: var(--teal-lt);
  font-weight: 700; font-family: var(--font-d);
}

/* ── CONDITIONS / CATEGORY TABS ─────────────────── */
.conditions { background: var(--navy); }

/* Zone navigation tabs */
.cond-zone-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 40px;
}
.zone-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  padding: 10px 18px; border-radius: 100px;
  font-family: var(--font-d); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .22s ease;
}
.zone-btn:hover {
  background: rgba(62,159,172,.12);
  border-color: rgba(62,159,172,.4);
  color: var(--teal-lt);
}
.zone-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: var(--sh-teal);
}
.zone-btn .zb-icon { font-size: 1rem; }
.zone-btn .zb-count {
  font-size: .68rem; opacity: .7;
  background: rgba(255,255,255,.12);
  padding: 1px 6px; border-radius: 100px;
}
.zone-btn.active .zb-count { background: rgba(255,255,255,.25); opacity: 1; }

/* Conditions reveal panel */
.cond-zone-body {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  min-height: 160px;
  transition: all .3s ease;
}
.cond-zone-body.loading { opacity: 0; transform: translateY(8px); }
.czb-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.czb-icon {
  width: 44px; height: 44px;
  background: rgba(62,159,172,.14); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.czb-title {
  font-family: var(--font-d); font-size: 1.1rem;
  font-weight: 700; color: var(--white);
}
.czb-subtitle {
  font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 2px;
}
.czb-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.czb-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  padding: 6px 16px; border-radius: 100px;
  font-size: .84rem;
  transition: all .2s ease;
}
.czb-tag:hover {
  background: rgba(62,159,172,.18);
  border-color: rgba(62,159,172,.45);
  color: var(--teal-lt);
}

/* ── REVIEWS ────────────────────────────────────── */
.reviews { background: var(--warm); overflow: hidden; }
.reviews-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 16px;
}
.rev-stars { color: #FFB800; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-rating span { color: var(--text-mid); font-size: .88rem; }

.rev-track-wrap { overflow: hidden; margin: 0 -24px; padding: 8px 24px; }
.rev-track {
  display: flex; gap: 22px;
  transition: transform .52s cubic-bezier(.25,.46,.45,.94);
}
.rev-card {
  flex-shrink: 0; width: calc(33.333% - 16px);
  background: var(--white); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm);
  border: 1px solid rgba(12,45,78,.06);
}
.rev-card-stars { color: #FFB800; font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text {
  color: var(--text-mid); font-size: .88rem;
  line-height: 1.7; margin-bottom: 18px; font-style: italic;
}
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-d);
  font-weight: 800; font-size: .78rem; flex-shrink: 0;
}
.rev-name  { display: block; font-weight: 700; color: var(--navy); font-size: .88rem; }
.rev-date  { font-size: .74rem; color: var(--text-muted); }
.rev-verified { color: var(--teal); font-size: .72rem; font-weight: 600; }

.rev-nav {
  display: flex; align-items: center;
  justify-content: center; gap: 20px; margin-top: 40px;
}
.rev-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(12,45,78,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--ease); color: var(--navy);
}
.rev-btn svg { width: 17px; height: 17px; }
.rev-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.rev-dots { display: flex; gap: 7px; }
.rev-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(12,45,78,.15); cursor: pointer; transition: all var(--ease);
}
.rev-dot.on { background: var(--teal); width: 22px; border-radius: 4px; }

/* ── CONTACT ────────────────────────────────────── */
.contact { background: var(--warm); border-top: 1px solid rgba(12,45,78,.06); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 64px;
}
.contact-col h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 28px; }

.c-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px;
}
.c-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(62,159,172,.1); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.c-icon svg { width: 19px; height: 19px; }
.c-lbl {
  font-size: .68rem; color: var(--text-muted);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-family: var(--font-d); margin-bottom: 3px;
}
.c-val {
  font-size: .98rem; color: var(--navy); font-weight: 500;
  transition: color var(--ease);
}
.c-val:hover { color: var(--teal); }

.c-socials { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; align-items: center; }
.c-social {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 13px 18px; background: var(--white); width: 70%;
  border-radius: var(--r-sm); border: 1px solid rgba(12,45,78,.08);
  color: var(--navy); font-size: .88rem; font-weight: 500;
  transition: all var(--ease);
}
.c-social svg { width: 19px; height: 19px; color: var(--teal); }
.c-social:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateX(4px);
}
.c-social:hover svg { color: var(--teal-lt); }

.loc-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 18px 22px; margin-bottom: 14px;
  border: 1px solid rgba(12,45,78,.06); box-shadow: var(--sh-sm);
  transition: all var(--ease);
}
.loc-card:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.loc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.loc-head h4 { color: var(--navy); font-size: .95rem; }
.loc-online {
  background: rgba(62,159,172,.1); color: var(--teal);
  font-size: .65rem; font-weight: 800; padding: 3px 10px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .06em;
}
.loc-card p { font-size: .83rem; color: var(--text-mid); margin-bottom: 3px; }
.loc-hours { color: var(--teal) !important; font-weight: 600; }
.loc-note  { color: var(--text-muted) !important; font-size: .76rem !important; margin-top: 5px; }

.contact-cta {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: 48px;
  border-top: 1px solid rgba(12,45,78,.06);
}
.contact-cta-sub { margin-top: 16px; color: var(--text-mid); font-size: .88rem; }
.contact-cta-sub a { color: var(--teal); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 48px;
}
.f-logo-img { height: 64px; width: auto; display: block; margin: 0 auto 16px; }
.f-brand { display: flex; flex-direction: column; align-items: flex-start; }
.f-brand p { font-size: .88rem; line-height: 1.6; margin-bottom: 10px; }
.f-tagline { font-style: italic; font-size: .82rem !important; color: rgba(255,255,255,.38) !important; }
.f-col h4 {
  color: var(--white); font-family: var(--font-d);
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
  text-align: center;
}
.f-col a {
  display: block; color: rgba(255,255,255,.55);
  font-size: .88rem; margin-bottom: 9px; transition: color var(--ease);
  text-align: center;
}
.f-col a:hover { color: var(--teal-lt); }

.f-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.f-bottom p { font-size: .76rem; color: rgba(255,255,255,.3); }

/* ── MAP ─────────────────────────────────────────── */
.map-container { margin-bottom: 64px; }
.map-container > h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 20px; }
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); margin-bottom: 18px;
  border: 1px solid rgba(12,45,78,.08);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-locs { display: flex; flex-wrap: wrap; gap: 9px; }
.map-loc-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid rgba(12,45,78,.08);
  border-radius: 100px; padding: 7px 14px;
  color: var(--text-mid); font-size: .81rem;
  transition: all var(--ease);
}
.map-loc-link svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; }
.map-loc-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.map-loc-link:hover svg { color: var(--teal-lt); }

/* ── RESPONSIVE — TABLET ────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { gap: 48px; }
  .hero-visual      { width: 300px; }
  .hero-img-wrap img { height: 400px; }
  .about-grid       { gap: 52px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── RESPONSIVE — MOBILE ────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--navy); flex-direction: column;
    align-items: flex-start; justify-content: flex-start;
    padding: 80px 32px 40px;
    gap: 0; transition: right var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,.3); z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-menu a { display: block; padding: 15px 0; font-size: .98rem; }
  .nav-menu .btn-nav { margin-top: 18px; text-align: center; width: 100%; display: block; }

  /* Hero — centro tutto il testo */
  .hero { padding: 110px 0 80px; align-items: flex-start; }
  .hero .container { flex-direction: column; gap: 36px; }
  .hero-content { text-align: center; }
  .hero-logo-img { margin-left: auto; margin-right: auto; height: 90px; }
  .scroll-caret { display: none; }
  .hero-scroll-arrow { display: flex; margin-bottom: 8px; }
  .hero-sub { margin-bottom: 10px; }
.hero-ctas { justify-content: center; flex-direction: row; flex-wrap: wrap; }
  .hero-stats { justify-content: center; gap: 20px; }
  .hero-visual { width: 75%; max-width: 280px; margin: 0 auto; order: -1; }
  .hero-img-wrap img { height: 340px; object-position: top; }
  .hero-badge-pill { bottom: -16px; right: -8px; }
  .hero-stat-num { font-size: 1.3rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 44px; }

  /* Services — scroll orizzontale con snap */
  .services-grid {
    display: flex !important;
    overflow-x: auto;
    overflow-y: clip;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 16px;
    padding: 8px 24px 20px;
    margin: 0 -24px;
    scrollbar-width: none;
    cursor: grab;
  }
  .services-grid:active { cursor: grabbing; }
  .services-grid::-webkit-scrollbar { display: none; }
  .services-grid .s-card {
    flex: 0 0 82%;
    min-width: 270px;
    scroll-snap-align: center;
    border: 2px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .services-grid .s-card.snap-active {
    transform: scale(1.02);
    border-color: rgba(255,255,255,.7);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 8px 28px rgba(0,0,0,.2);
  }
  /* Scroll indicator dots per servizi */
  .services-grid::after {
    content: '';
    flex: 0 0 8px; /* spazio finale per vedere l'ultima card */
  }

  /* Target */
  .target-grid { grid-template-columns: 1fr; }
  .philosophy-box { flex-direction: column; gap: 18px; padding: 28px; }

  /* Conditions tabs — mobile */
  .cond-zone-body { padding: 24px 20px; }
  .zone-btn { padding: 8px 14px; font-size: .78rem; }

  /* Reviews */
  .rev-card { width: calc(78vw); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-col h3, .map-container > h3 { text-align: center; }
  .map-locs { justify-content: center; }
  .map-wrap iframe { height: 280px; }

  /* Target "Sei nel posto giusto se" — scroll orizzontale */
  .target-grid {
    display: flex !important;
    overflow-x: auto;
    overflow-y: clip;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 16px;
    padding: 8px 24px 16px;
    margin: 0 -24px 44px;
    scrollbar-width: none;
  }
  .target-grid::-webkit-scrollbar { display: none; }
  .target-grid .t-card {
    flex: 0 0 82%;
    min-width: 260px;
    scroll-snap-align: center;
    border: 2px solid transparent;
    transition: transform .3s ease, border-color .3s ease;
  }
  .target-grid .t-card.snap-active {
    transform: scale(1.02);
    border-color: var(--navy);
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .f-bottom { flex-direction: column; text-align: center; }
  .f-brand { text-align: center; align-items: center; }

  /* Text align */
  .about-lead, .about-body, .blockq { text-align: justify; }
  .t-card p, .philo-q, .s-card > p { text-align: justify; }
  .loc-card p { text-align: justify; }
}

@media (max-width: 480px) {
  .hero-stat-sep { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-img-wrap img { height: 300px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cond-zone-nav { gap: 7px; }
  .zone-btn .zb-count { display: none; }
}
