/* Physiotec Redesign — Shared Stylesheet */
/* Brand: #002147 (navy) · #003366 · #0B4179 · Accent: #1a7fd4 · Sky: #5bbfff */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #002147;
  --navy-mid:    #003366;
  --navy-light:  #0B4179;
  --accent:      #1a7fd4;
  --accent-lt:   #2990e8;
  --sky:         #5bbfff;
  --sky-dim:     #b8d4ef;
  --cream:       #e8f3fc;
  --warm-grey:   #d4e8f7;
  --mid-grey:    #6B7280;
  --dark-text:   #1a2433;
  --white:       #ffffff;
  --font-sans:   'Plus Jakarta Sans', sans-serif;
  --font-serif:  'DM Serif Display', serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --radius:      .875rem;
  --radius-lg:   1.5rem;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--dark-text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ─────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.tag {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 2rem; margin-bottom: .75rem;
  background: rgba(11,65,121,.1); color: var(--navy-light);
}
.tag-accent { background: rgba(26,127,212,.12); color: var(--accent); }
.tag-sky    { background: rgba(91,191,255,.15); color: var(--sky); }
.tag-light  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

.section-label { font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mid-grey); display: block; margin-bottom: .65rem; }
.section-label-light { color: var(--sky-dim); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.12; color: var(--navy); margin-bottom: 1rem; }
.section-title-light { color: var(--white); }
.section-sub { color: var(--mid-grey); font-size: 1rem; line-height: 1.75; }
.section-sub-light { color: rgba(255,255,255,.6); }

/* ─── Reveal animations ───────────────────────── */
.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ─── Navigation ──────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: background .4s, padding .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(0,33,71,.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: .75rem 0; box-shadow: 0 2px 32px rgba(0,0,0,.25);
}
#nav.solid { background: var(--navy); padding: .85rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-logo img { height: 68px; filter: none; background: none; border-radius: 0; padding: 0; }
.nav-logo span { font-weight: 700; font-size: 1.05rem; color: var(--white); letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a { color: rgba(255,255,255,.75); font-size: .94rem; font-weight: 500; padding: .5rem .8rem; border-radius: .5rem; transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: rgba(255,255,255,.1); border: none;
  border-radius: .5rem; cursor: pointer; padding: .5rem;
}
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 1px; }

/* ─── Mobile menu ──────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; opacity: .85; transition: opacity .2s; }
.mobile-menu a:hover { opacity: 1; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.1);
  border: none; color: white; font-size: 1.4rem; width: 44px; height: 44px;
  border-radius: .5rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem; border: none;
  border-radius: .6rem; font-family: var(--font-sans); font-weight: 600; cursor: pointer;
  transition: all .2s var(--ease-out); white-space: nowrap; text-decoration: none;
  font-size: .92rem; padding: .65rem 1.25rem;
}
.btn-ghost   { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.35); }
.btn-wa      { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe5c; }
.btn-accent  { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,127,212,.35); }
.btn-primary { background: var(--navy-light); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,65,121,.3); }
.btn-white   { background: var(--white); color: var(--navy-light); font-weight: 800; box-shadow: 0 8px 32px rgba(0,0,0,.18); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: var(--white); font-weight: 700; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-fpz-nav { background: rgba(91,191,255,.15); color: var(--sky); border: 1px solid rgba(91,191,255,.25); }
.btn-fpz-nav:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: .75rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; border-radius: .875rem; }

/* ─── Page Hero ───────────────────────────────── */
.page-hero {
  padding-top: 80px; min-height: 52vh; background: var(--navy);
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 35%, rgba(0,51,102,.55) 100%);
}
.page-hero-inner { position: relative; z-index: 2; padding: 4.5rem 0 3.5rem; width: 100%; }
.page-breadcrumb {
  display: flex; align-items: center; gap: .5rem; font-size: .8rem;
  color: rgba(255,255,255,.4); margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { color: rgba(255,255,255,.2); }
.page-hero-eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sky-dim); margin-bottom: .85rem; display: block; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; color: var(--white); margin-bottom: 1.1rem; }
.page-hero-title em { font-style: italic; color: var(--sky); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.72; max-width: 540px; }

/* ─── Shared Section CTA ─────────────────────── */
.cta-section {
  padding: 7rem 0; background: var(--navy-light); position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,191,255,.18) 0%, transparent 60%);
}
.cta-section-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta-section h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 2.9rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.75; margin-bottom: 2.25rem; }
.cta-section-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FPZ Widget ─────────────────────────────── */
.fpz-widget-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; display: none; }
.fpz-widget-wrap.open { display: block; }
.fpz-widget-wrap iframe {
  display: block; border: 0;
  width: min(420px, calc(100vw - 4rem)); height: min(620px, calc(100vh - 9rem));
  background: #fff; border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
@media (max-width: 600px) {
  .fpz-widget-wrap { bottom: 1rem; right: 1rem; }
  .fpz-widget-wrap iframe { width: calc(100vw - 2rem); height: calc(100vh - 7rem); }
}
.fpz-close {
  position: absolute; top: -.5rem; right: -.5rem; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); border: 2px solid rgba(255,255,255,.2); color: white; font-size: .8rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.fpz-close:hover { background: var(--accent); }

/* ─── Footer ─────────────────────────────────── */
#footer { background: var(--navy); padding: 5rem 0 2.5rem; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: .5rem; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.6); transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--navy-light); color: var(--white); }
.footer-col h4 { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer-col li + li { margin-top: .55rem; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; font-size: .84rem; }
.footer-credit { justify-self: center; text-align: center; color: rgba(255,255,255,.35); white-space: nowrap; }
.footer-credit a { color: rgba(255,255,255,.55); font-weight: 700; transition: color .2s; }
.footer-credit a:hover { color: rgba(255,255,255,.85); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-self: end; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }
@media (max-width: 700px) {
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: .75rem; }
  .footer-bottom-links { justify-self: center; justify-content: center; }
}

/* ─── Team Card & Overlay ────────────────────── */
.team-photo { position: relative; }
.team-card-hint {
  position: absolute; top: .75rem; right: .75rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--navy-light);
  opacity: 0; transform: scale(.75);
  transition: opacity .25s, transform .25s var(--ease-out);
  box-shadow: 0 2px 10px rgba(0,0,0,.18); pointer-events: none;
}
.team-card:hover .team-card-hint { opacity: 1; transform: scale(1); }

/* Overlay backdrop */
.team-overlay-bd {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,18,42,.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
}
.team-overlay-bd.open { opacity: 1; pointer-events: all; }

/* Overlay box */
.team-overlay-box {
  background: var(--white); border-radius: 1.75rem; overflow: hidden;
  width: 100%; max-width: 880px; max-height: 92vh;
  display: grid; grid-template-columns: 360px 1fr; position: relative;
  transform: scale(.93) translateY(28px);
  transition: transform .45s var(--ease-out);
  box-shadow: 0 48px 120px rgba(0,0,0,.55);
}
.team-overlay-bd.open .team-overlay-box { transform: scale(1) translateY(0); }

/* Photo column */
.tov-photo { position: relative; background: var(--navy); min-height: 500px; }
.tov-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.tov-photo-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,18,42,.92) 100%); }
.tov-photo-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.75rem; }
.tov-name { font-family: var(--font-serif); font-size: 1.65rem; color: var(--white); line-height: 1.15; margin-bottom: .3rem; }
.tov-role { font-size: .77rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sky-dim); }

/* Close button */
.tov-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.4);
  border: none; color: white; font-size: .95rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; backdrop-filter: blur(4px);
}
.tov-close:hover { background: var(--accent); }

/* Content column */
.tov-body { padding: 2.25rem 2rem; overflow-y: auto; max-height: 92vh; }
.tov-section { margin-bottom: 1.75rem; }
.tov-label { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid-grey); display: block; margin-bottom: .65rem; }
.tov-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tov-tag { font-size: .83rem; font-weight: 600; padding: .28rem .7rem; border-radius: 2rem; background: rgba(11,65,121,.08); color: var(--navy-light); border: 1px solid rgba(11,65,121,.1); }
.tov-tag-spec { background: rgba(26,127,212,.1); color: var(--accent); border-color: rgba(26,127,212,.15); }
.tov-story { font-size: .97rem; color: #3a3a4a; line-height: 1.85; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,.07); margin-bottom: 1.75rem; }
.tov-hobbies { display: flex; flex-wrap: wrap; gap: .45rem; }
.tov-hobby { font-size: .87rem; font-weight: 600; padding: .38rem .85rem; border-radius: 2rem; background: var(--cream); color: var(--navy); border: 1px solid rgba(0,0,0,.07); }

/* Mobile */
@media (max-width: 700px) {
  .team-overlay-bd { padding: 0; align-items: flex-end; }
  .team-overlay-box { grid-template-columns: 1fr; border-radius: 1.5rem 1.5rem 0 0; max-height: 95vh; }
  .tov-photo { min-height: 260px; max-height: 300px; }
  .tov-body { max-height: 55vh; }
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .page-hero { min-height: 44vh; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-section-btns { flex-direction: column; align-items: center; }
}

/* ─── Lucide Icons ──────────────────────────────── */
/* Base inline icon – inherits 1em = parent font-size */
.lc-icon { display: inline-block; width: 1.15em; height: 1.15em; vertical-align: -.2em; flex-shrink: 0; }

/* Large section icon containers */
.method-card-icon .lc-icon, .pillar-icon .lc-icon,
.diag-card-icon .lc-icon, .tech-feature-icon .lc-icon { width: 2.1rem; height: 2.1rem; vertical-align: middle; }
.value-icon .lc-icon { width: 2.75rem; height: 2.75rem; vertical-align: middle; }

/* Medium icon containers */
.natur-card-icon .lc-icon, .natur-small-card-icon .lc-icon,
.hero-badge-icon .lc-icon, .partner-card-icon .lc-icon { width: 1.6rem; height: 1.6rem; vertical-align: middle; }

/* Small containers */
.info-card-icon .lc-icon { width: 1.35rem; height: 1.35rem; vertical-align: middle; }
.dir-method-icon .lc-icon { width: 1.2rem; height: 1.2rem; vertical-align: -.15rem; }
.sub-nav-icon .lc-icon { width: .95rem; height: .95rem; vertical-align: -.06rem; }
.lc-icon.map-big { width: 3rem; height: 3rem; }
.map-icon .lc-icon { width: 3rem; height: 3rem; vertical-align: middle; }

/* Buttons */
.btn .lc-icon, .btn-cta-primary .lc-icon { width: 1em; height: 1em; vertical-align: -.1em; }
.filter-btn .lc-icon { width: .9em; height: .9em; vertical-align: -.08em; margin-right: .2em; }

/* Social SVG icons */
.social-svg { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
.footer-social a .social-svg { width: 17px; height: 17px; }

