:root {
  --navy:#06263d;
  --navy-dark:#041c2c;
  --sky:#0ea5e9;
  --cyan:#22d3ee;
  --cyan-light:#67e8f9;
  --bg:#eef9ff;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --amber:#f59e0b;
  --shadow:0 20px 50px rgba(2,32,71,.08);
  --shadow-lg:0 24px 60px rgba(2,32,71,.14);
  --radius:28px;
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  font-family:Inter, system-ui, Arial, sans-serif;
  background:linear-gradient(to bottom,#eef9ff,#f8fcff,#dbeafe);
  color:var(--text);
  line-height:1.7;
}

img {
  max-width:100%;
  display:block;
}

a {
  transition:.3s ease;
}

.container {
  width:min(1320px,92%);
  margin:auto;
}

/* HEADER */
header {
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(6,38,61,.92);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.nav-wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  position:relative;
}

.logo {
  display:flex;
  align-items:center;
  gap:14px;
  color:white;
  text-decoration:none;
  font-size:32px;
  font-weight:800;
  letter-spacing:.24em;
}

.logo img {
  height:58px;
  filter:drop-shadow(0 4px 14px rgba(0,0,0,.28));
}

nav {
  display:flex;
  gap:34px;
}

nav a {
  color:white;
  text-decoration:none;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:600;
}

nav a:hover {
  color:var(--cyan-light);
}

/* BUTTONS */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 30px;
  border-radius:20px;
  text-decoration:none;
  font-weight:800;
  box-shadow:var(--shadow);
  border:none;
  cursor:pointer;
}

.primary {
  background:linear-gradient(135deg,var(--cyan),var(--cyan-light));
  color:var(--navy);
}

.light {
  background:white;
  color:var(--navy);
}

.btn:hover {
  transform:translateY(-3px);
}

/* MOBILE NAV */
.hamburger {
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:34px;
  cursor:pointer;
}

/* HERO */
.hero {
  background:linear-gradient(135deg,var(--navy-dark),#082f49 45%,#0f766e 100%);
  color:white;
  padding:130px 0 110px;
}

.hero-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:center;
}

.hero-logo {
  height:96px;
  margin-bottom:24px;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,.25));
}

.eyebrow {
  text-transform:uppercase;
  letter-spacing:.35em;
  color:#a5f3fc;
  margin-bottom:10px;
  font-size:14px;
}

.hero h1 {
  font-size:clamp(76px,11vw,132px);
  line-height:.95;
  margin-bottom:10px;
}

.hero h2 {
  font-size:clamp(30px,4vw,46px);
  font-weight:300;
  margin-bottom:22px;
}

.hero p {
  font-size:20px;
  max-width:640px;
}

.google-rating {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:26px 0 34px;
  padding:14px 22px;
  border-radius:20px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fde68a;
  text-decoration:none;
  font-weight:800;
}

.specializations {
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(18px);
  padding:44px;
  border-radius:32px;
}

.specializations h3 {
  font-size:34px;
  margin-bottom:22px;
}

.specializations ul {
  list-style:none;
}

.specializations li {
  padding:14px 0;
  font-size:20px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

/* GLOBAL SECTIONS */
section {
  padding:110px 0;
}

.section-title {
  font-size:clamp(44px,6vw,64px);
  text-align:center;
  margin-bottom:18px;
  line-height:1.1;
}

.section-subtitle {
  max-width:820px;
  margin:0 auto 70px;
  text-align:center;
  color:var(--muted);
  font-size:20px;
}

/* TEAM */
.team-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
}

.team-card {
  background:white;
  border-radius:32px;
  padding:36px;
  box-shadow:var(--shadow);
  text-align:center;
  transition:.35s ease;
}

.team-card:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}

.team-card img {
  width:100%;
  max-width:280px;
  height:280px;
  margin:0 auto 24px;
  object-fit:cover;
  border-radius:26px;
}

.team-card h3 {
  font-size:34px;
  margin-bottom:8px;
}

.team-card .role {
  color:#0369a1;
  font-weight:700;
  margin-bottom:12px;
}

.team-card .rating {
  display:inline-block;
  padding:10px 16px;
  border-radius:18px;
  background:#fef3c7;
  color:#b45309;
  font-weight:800;
  margin-bottom:18px;
}

.team-card p {
  color:var(--muted);
  margin-bottom:18px;
}

.profile-link {
  color:#0369a1;
  text-decoration:none;
  font-weight:800;
}

/* THERAPIES */
.therapies-section {
  background:rgba(255,255,255,.65);
}

.therapy-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.card {
  background:white;
  border-radius:32px;
  padding:36px;
  box-shadow:var(--shadow);
  transition:.35s ease;
}

.card:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}

.therapy-card h3 {
  font-size:28px;
  margin-bottom:14px;
}

.therapy-card p {
  color:var(--muted);
}

/* PRICING */
.pricing-section {
  background:linear-gradient(135deg,var(--navy-dark),#082f49);
  color:white;
}

.pricing-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.pricing-section .card {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}

.pricing-section h3 {
  font-size:30px;
  margin-bottom:20px;
}

.pricing-section ul {
  list-style:none;
}

.pricing-section li {
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* FAQ */
.faq-item {
  background:white;
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
  margin-bottom:22px;
}

.faq-item h3 {
  margin-bottom:12px;
  font-size:24px;
}

.faq-item p {
  color:var(--muted);
}

/* CONTACT */
.contact-section {
  background:linear-gradient(135deg,#f0f9ff,#ecfeff);
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:start;
}

.contact-box h2 {
  font-size:56px;
  margin-bottom:28px;
}

.contact-box p {
  font-size:20px;
  margin-bottom:12px;
}

.map-box {
  background:white;
  padding:12px;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.map-box iframe {
  width:100%;
  min-height:420px;
  border:0;
  border-radius:18px;
}

/* COOKIE BANNER */
.cookie-banner {
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:1300;
  background:rgba(6,38,61,.96);
  color:white;
  padding:22px;
  border-top:1px solid rgba(255,255,255,.08);
}

.cookie-wrap {
  width:min(1320px,92%);
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

/* FOOTER */
footer {
  background:var(--navy-dark);
  color:white;
  text-align:center;
  padding:54px 20px;
}

.footer-links {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:24px;
  margin-top:18px;
}

.footer-links a {
  color:#bae6fd;
  text-decoration:none;
}

.footer-links a:hover {
  color:white;
}

/* FLOATING CTA */
.floating-cta {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1200;
  background:linear-gradient(135deg,var(--cyan),var(--cyan-light));
  color:var(--navy);
  padding:18px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 18px 40px rgba(14,165,233,.35);
}

.floating-cta:hover {
  transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:980px) {
  .hamburger {
    display:block;
  }

  nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(4,28,44,.98);
    flex-direction:column;
    padding:24px;
  }

  nav.active {
    display:flex;
  }

  .desktop-cta {
    display:none;
  }

  .hero-grid,
  .team-grid,
  .therapy-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns:1fr;
  }

  .cookie-wrap {
    flex-direction:column;
    align-items:flex-start;
  }

  .floating-cta {
    left:16px;
    right:16px;
    bottom:16px;
    justify-content:center;
    text-align:center;
  }
  
}

/* Terapie page */
.therapies-page {
    padding: 60px 0;
}

.therapy-detail {
    margin-bottom: 40px;
}

.therapy-detail:last-child {
    margin-bottom: 0;
}

section[id] {
    scroll-margin-top: 120px;
}


/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.96);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner a {
    color: #c7a17a;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #e6c7a3;
}

.cookie-btn {
    background: #c7a17a;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #b38b63;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

.privacy-policy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  color: var(--text-color);
  font-family: var(--font-primary);
  line-height: 1.8;
}

.privacy-policy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.15);
  letter-spacing: -0.02em;
}

.privacy-policy h2:not(:first-child) {
  margin-top: 4rem;
}

.privacy-policy h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--secondary-color);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.privacy-policy p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.privacy-policy ul {
  margin: 1rem 0 1.75rem 1.5rem;
  padding: 0;
}

.privacy-policy li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  padding-left: 0.35rem;
}

.privacy-policy a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-policy a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.privacy-policy strong {
  color: var(--secondary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 100px 18px 50px;
    border-radius: 24px;
  }

  .privacy-policy h2:not(:first-child) {
    margin-top: 3rem;
  }

  .privacy-policy h3 {
    margin: 2rem 0 0.8rem;
  }

  .privacy-policy p,
  .privacy-policy li {
    font-size: 0.98rem;
  }
}