

:root {
  --navy-deep: #050814;
  --navy: #070b18;
  --navy-mid: #0d1635;
  --navy-light: #162040;
  --teal: #2CE4C6;
  --teal-bright: #3FD5FF;
  --teal-dim: rgba(44, 228, 198, 0.15);
  --teal-glow: 0 0 30px rgba(44, 228, 198, 0.4);
  --white: #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --bg: var(--navy-deep);
  --text: var(--white);
  --text-light: var(--white-60);
  --shadow-teal: 0 20px 60px rgba(44, 228, 198, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-bright); }

::selection { background: var(--teal); color: var(--navy-deep); }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--white-10);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
.preloader-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--teal);
}
@keyframes spin { to { transform: rotate(360deg); } }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(5, 8, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(44, 228, 198, 0.2);
}
.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo span { color: var(--white-60); font-weight: 400; font-size: 0.85em; }
.logo strong { color: var(--teal); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.nav-links a {
  color: var(--white-80);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { margin-left: 16px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li + li { margin-top: 24px; }
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  box-shadow: var(--teal-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white-20);
}
.btn-outline:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}
.btn-text {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.btn-text:hover { gap: 8px; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 40px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050814 0%, #0d1635 50%, #050814 100%);
  overflow: hidden;
  will-change: transform;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(44,228,198,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(63,213,255,0.1) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: float2 10s ease-in-out infinite alternate;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px,30px) scale(1.1); }
}
@keyframes float2 {
  from { transform: translate(0,0); }
  to { transform: translate(40px,-40px); }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.12;
  animation: particleFloat 6s ease-in-out infinite;
}
.p1 { width:8px; height:8px; top:15%; left:8%; animation-duration:7s; }
.p2 { width:5px; height:5px; top:30%; left:25%; animation-duration:9s; animation-delay:1s; }
.p3 { width:10px; height:10px; top:60%; left:5%; animation-duration:8s; animation-delay:2s; }
.p4 { width:6px; height:6px; top:75%; left:80%; animation-duration:6.5s; animation-delay:0.5s; }
.p5 { width:4px; height:4px; top:20%; left:70%; animation-duration:10s; animation-delay:3s; }
.p6 { width:7px; height:7px; top:50%; left:50%; animation-duration:8.5s; animation-delay:1.5s; }
@keyframes particleFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.12; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.25; }
}

.heartbeat-line {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  width: 100%;
  height: 80px;
  opacity: 0.15;
}
.ecg-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawECG 3s ease forwards, pulseECG 3s 3s ease-in-out infinite;
}
@keyframes drawECG {
  to { stroke-dashoffset: 0; }
}
@keyframes pulseECG {
  0%,100% { opacity: 0.15; }
  50% { opacity: 0.35; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
}
.hero-left { flex: 1; }
.hero-right { flex: 0 0 auto; width: 380px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--white-80);
  margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.dot.pulse { animation: dotPulse 1.5s ease-in-out infinite; }
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(44,228,198,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(44,228,198,0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badge-pill {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--white-80);
}

.hero-card-mockup {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(44,228,198,0.25);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), var(--teal-glow);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}
.card-icon { font-size: 2rem; }
.card-title { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.card-sub { font-size: 0.75rem; color: var(--white-60); }
.card-status {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
}
.upcoming-visit {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}
.visit-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
  font-weight: 600;
}
.visit-info { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.visit-doc { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.visit-spec { font-size: 0.75rem; color: var(--white-60); }
.visit-date { font-size: 0.8rem; color: var(--white-80); margin-bottom: 10px; }
.visit-type-badge {
  display: inline-block;
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(44,228,198,0.3);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}
.card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.card-stat {
  background: var(--white-05);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.cs-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
}
.cs-label {
  display: block;
  font-size: 0.6rem;
  color: var(--white-60);
  line-height: 1.3;
  margin-top: 2px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 20px 40px;
  margin-top: 48px;
  max-width: 1280px;
  width: 100%;
}
.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: var(--white-60);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--white-10);
  flex-shrink: 0;
  margin: 0 8px;
}

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white-60);
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.scroll-arrow:hover { color: var(--teal); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section { padding: 100px 0; position: relative; }
.section:nth-child(even) { background: var(--navy); }
.section:nth-child(odd) { background: var(--navy-deep); }

.services { background: var(--navy-mid) !important; }
.how-it-works { background: var(--navy) !important; }
.agent-section { background: var(--navy-mid) !important; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.section-title span, .section-title em {
  color: var(--teal);
  font-style: normal;
}
.section-sub {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-sub { margin-bottom: 40px; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}
.about-feature-item:hover {
  border-color: rgba(44,228,198,0.3);
  background: var(--teal-dim);
  transform: translateX(4px);
}
.feature-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.about-feature-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-feature-item p { font-size: 0.85rem; color: var(--white-60); margin: 0; }

.about-visual { display: flex; align-items: center; justify-content: center; }
.about-stats-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(44,228,198,0.2);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-card);
}
.asc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.asc-icon { font-size: 2rem; }
.asc-title { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.asc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.asc-label { font-size: 0.85rem; color: var(--white-60); }
.asc-value { font-size: 0.95rem; font-weight: 700; color: var(--teal); }
.asc-bar {
  height: 6px;
  background: var(--white-10);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}
.asc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 3px;
  animation: barGrow 1.5s var(--ease) forwards;
  transform-origin: left;
}
@keyframes barGrow { from { width: 0 !important; } }
.asc-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.asc-badge {
  background: var(--teal-dim);
  border: 1px solid rgba(44,228,198,0.3);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.specialty-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.specialty-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(44,228,198,0.4);
  box-shadow: 0 20px 60px rgba(44,228,198,0.12), var(--shadow-card);
  background: rgba(44,228,198,0.05);
}
.scard-icon { font-size: 2.5rem; line-height: 1; }
.specialty-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.specialty-card p { font-size: 0.85rem; color: var(--white-60); line-height: 1.6; flex: 1; }

.terminy { background: var(--navy-deep) !important; }
.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
}
.appt-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--white-05);
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.appt-row:last-child { border-bottom: none; }
.appt-row:hover { background: rgba(44,228,198,0.05); }
.appt-icon { font-size: 1.5rem; text-align: center; }
.appt-doc { display: flex; flex-direction: column; gap: 2px; }
.appt-name { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.appt-spec { font-size: 0.75rem; color: var(--white-60); }
.appt-date, .appt-time {
  font-size: 0.85rem;
  color: var(--white-80);
  white-space: nowrap;
  font-weight: 500;
}
.appt-type {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.appt-type.stacjonarna {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(44,228,198,0.3);
}
.appt-type.teleporada {
  background: rgba(63,213,255,0.12);
  color: var(--teal-bright);
  border: 1px solid rgba(63,213,255,0.3);
}
.btn-reserve {
  background: transparent;
  border: 1px solid rgba(44,228,198,0.4);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-reserve:hover {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: var(--teal-glow);
}

.pricing { background: var(--navy) !important; }
.pricing-pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-pkg {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-pkg:hover {
  transform: translateY(-4px);
  border-color: rgba(44,228,198,0.3);
}
.pricing-pkg.featured {
  border-color: var(--teal);
  background: rgba(44,228,198,0.06);
  box-shadow: 0 0 60px rgba(44,228,198,0.15), var(--shadow-card);
  transform: scale(1.03);
}
.pricing-pkg.featured:hover { transform: scale(1.03) translateY(-4px); }
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.pkg-name { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.pkg-price { font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.pkg-price span { font-size: 0.85rem; font-weight: 400; color: var(--white-60); }
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pkg-features li { font-size: 0.87rem; color: var(--white-80); }

.team { background: var(--navy-deep) !important; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44,228,198,0.3);
  box-shadow: var(--shadow-teal);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: var(--navy-deep);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-spec {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}
.team-bio { font-size: 0.82rem; color: var(--white-60); line-height: 1.6; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% / 3 + 80px);
  right: calc(50% / 3 + 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  opacity: 0.3;
}
.step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: var(--navy-deep);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(44,228,198,0.3);
  flex-shrink: 0;
}
.step-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.step-item p { font-size: 0.87rem; color: var(--white-60); line-height: 1.6; max-width: 280px; }

.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.agent-left .section-sub { margin-bottom: 28px; }
.agent-left p { color: var(--white-60); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.agent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.agent-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-80);
}
.af-icon { font-size: 1.2rem; flex-shrink: 0; }

.chat-mockup {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white-05);
  border-bottom: 1px solid var(--white-10);
}
.chat-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.chat-status { font-size: 0.75rem; color: var(--teal); }
.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--teal-dim);
  border: 1px solid rgba(44,228,198,0.2);
  color: var(--white-80);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--teal);
  color: var(--navy-deep);
  align-self: flex-end;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--white-10);
  background: var(--white-05);
}
.chat-input {
  flex: 1;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--white-60);
  font-size: 0.85rem;
  font-family: inherit;
}
.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(44,228,198,0.3);
  color: var(--teal);
  cursor: not-allowed;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials { background: var(--navy) !important; }
.slider-wrapper {
  position: relative;
  overflow: hidden;
}
#slider {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tc-stars { font-size: 1.3rem; color: var(--teal); letter-spacing: 2px; }
.tc-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white-80);
  font-style: italic;
  flex: 1;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: var(--navy-deep);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.95rem; color: var(--white); font-weight: 700; }
.tc-author span { font-size: 0.8rem; color: var(--white-60); }
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  background: var(--white-05);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-arrow:hover {
  border-color: var(--teal);
  background: var(--teal-dim);
  color: var(--teal);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--white-20);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

.contact { background: var(--navy-mid) !important; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: -0.03em;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-80);
}
.contact-detail a { color: var(--white-80); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--teal); }
.cd-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-detail small { color: var(--white-60); font-size: 0.8em; }
.opening-hours { margin-bottom: 24px; }
.opening-hours h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.opening-hours table { width: 100%; border-collapse: collapse; }
.opening-hours td {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--white-80);
  border-bottom: 1px solid var(--white-05);
}
.opening-hours td:last-child { text-align: right; font-weight: 600; }
.closed { color: var(--white-60); font-weight: 400 !important; font-style: italic; }

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}
.contact-form-wrap .section-label { margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--white-60); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-80); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,228,198,0.15);
  background: rgba(44,228,198,0.05);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
#contactForm .btn { width: 100%; margin-top: 8px; }

.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(44,228,198,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; font-size: 1.2rem; display: flex; }
.footer-brand p { font-size: 0.85rem; color: var(--white-60); line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--white-60); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--white-60);
}
.footer-bottom a { color: var(--teal); text-decoration: none; }

.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(7, 11, 24, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(44,228,198,0.3);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.sticky-bar.on { transform: translateY(0); }
.sticky-content { display: flex; align-items: center; gap: 12px; }
.sticky-icon { font-size: 1.5rem; flex-shrink: 0; }
.sticky-text { font-size: 0.88rem; color: var(--white-80); }
.sticky-text strong { color: var(--teal); }
.sticky-sub { display: block; font-size: 0.78rem; color: var(--white-60); margin-top: 2px; }
.sticky-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sticky-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  background: var(--white-05);
  color: var(--white-60);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.sticky-close:hover { border-color: var(--teal); color: var(--teal); }

.mobile-cta-fixed {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(44,228,198,0.4);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .agent-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .pricing-pkgs { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-pkg.featured { transform: none; }
  .pricing-pkg.featured:hover { transform: translateY(-4px); }
  .about-grid { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .hero-content { flex-direction: column; gap: 40px; }
  .hero-right { width: 100%; max-width: 400px; }
  .hero-stats { padding: 16px 20px; }
  .stat-num { font-size: 1.6rem; }
  .appt-row { grid-template-columns: 36px 1fr auto auto; gap: 10px; }
  .appt-date, .appt-time { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 20px 60px; }
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-sub { margin-bottom: 40px; }
  .specialty-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 0; padding: 16px; }
  .stat-item { flex: 0 0 50%; padding: 12px 0; }
  .stat-divider { display: none; }
  .testimonial-card { padding: 28px 24px; }
  .tc-text { font-size: 0.95rem; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
  .sticky-bar { flex-direction: column; text-align: center; gap: 12px; padding: 16px; }
  .mobile-cta-fixed { display: inline-flex; }
  .hero-right { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .appt-row { grid-template-columns: 1fr auto; }
  .appt-icon { display: none; }
  .appt-type { display: none; }
}

@media (max-width: 768px) {
  .sticky-bar.on ~ .mobile-cta-fixed {
    display: none;
  }
}
