/* ============================================================
   MediConnect — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ──── Design Tokens ──── */
:root {
  --primary:       #14B8A6;
  --primary-dark:  #0F766E;
  --primary-light: #CCFBF1;
  --primary-50:    #F0FDFA;
  --sky:           #0EA5E9;
  --sky-dark:      #0284C7;
  --sky-light:     #E0F2FE;
  --amber:         #F59E0B;
  --amber-dark:    #D97706;
  --emerald:       #10B981;
  --rose:          #F43F5E;
  --violet:        #8B5CF6;

  --bg-main:       #F8FFFE;
  --bg-mint:       #F0FDF9;
  --bg-sky:        #F0F9FF;
  --bg-white:      #FFFFFF;
  --footer-bg:     #0D3B38;

  --text-dark:     #0F172A;
  --text-mid:      #334155;
  --text-light:    #64748B;
  --text-muted:    #94A3B8;
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --border-light:  #F1F5F9;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.03);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.02);
  --shadow-xl:  0 25px 50px -12px rgba(0,0,0,.15);
  --shadow-teal: 0 10px 30px -8px rgba(20,184,166,.35);

  --nav-h: 72px;
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full: 9999px;

  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:    150ms;
  --dur:         250ms;
  --dur-slow:    400ms;
}

/* ──── Reset ──── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ──── Typography ──── */
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──── Layout Utilities ──── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; }

/* ──── Buttons ──── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r-full);
  box-shadow: var(--shadow-teal);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 40px -8px rgba(20,184,166,.5); }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700;
  padding: 12px 26px; border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r-full);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: all var(--dur) var(--ease-spring);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary); color: var(--primary); }

.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r-full);
  box-shadow: 0 8px 20px -4px rgba(245,158,11,.4);
  transition: all var(--dur) var(--ease-spring);
}
.btn-amber:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 35px -6px rgba(245,158,11,.55); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ──── Navbar ──── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled { border-color: var(--border); box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 8px; margin: auto; }
.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--text-mid); padding: 8px 14px; border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-50); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--dur) var(--ease); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
}

/* ──── Page Wrapper (accounts for fixed nav) ──── */
.page-content { padding-top: var(--nav-h); }

/* ──── Hero (Home) ──── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(160deg, #E8FDF8 0%, #F0F9FF 50%, #FAFFFE 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 8px 16px;
  font-size: .85rem; font-weight: 600; color: var(--text-mid);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.4)} 50%{box-shadow:0 0 0 6px rgba(16,185,129,0)} }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 800;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 20px;
}
.hero-subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-video { display: flex; align-items: center; gap: 12px; color: var(--text-mid); font-weight: 600; font-size: .95rem; transition: color var(--dur) var(--ease); }
.btn-video:hover { color: var(--primary); }
.play-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--primary);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.btn-video:hover .play-circle { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat-item { text-align: center; padding: 0 24px; }
.stat-item:first-child { padding-left: 0; }
.stat-num { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--text-dark); }
.stat-suffix { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.stat-label { display: block; font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-blob {
  position: absolute; width: 420px; height: 460px;
  background: linear-gradient(135deg, rgba(20,184,166,.2) 0%, rgba(14,165,233,.15) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphBlob 10s ease-in-out infinite;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0;
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  66%      { border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%; }
}
.hero-image-wrap { position: relative; z-index: 1; }
.hero-doctor-img {
  width: 380px; height: 460px; object-fit: cover;
  border-radius: 40% 40% 50% 50% / 30% 30% 50% 50%;
  box-shadow: var(--shadow-xl);
}

/* Floating cards */
.floating-card {
  position: absolute; background: var(--white);
  border-radius: var(--r); padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: float 3s ease-in-out infinite;
}
.card-appointment { top: 10%; right: -60px; animation-delay: 0s; }
.card-rating     { bottom: 15%; right: -50px; animation-delay: .8s; flex-direction: column; align-items: flex-start; gap: 4px; }
.card-online     { bottom: 10%; left: -60px; animation-delay: 1.4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.fc-icon { font-size: 1.5rem; }
.fc-title { font-size: .7rem; color: var(--text-muted); font-weight: 500; display: block; }
.fc-value { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.stars { color: var(--amber); font-size: .95rem; letter-spacing: 1px; }
.fc-sub { font-size: .72rem; color: var(--text-muted); }
.online-dot { width: 10px; height: 10px; background: var(--emerald); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
.card-online span { font-size: .85rem; font-weight: 600; }

/* Hero background decorations */
.hero-bg-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(20,184,166,.08) 0%, transparent 70%);
}
.hero-bg-circle-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg-circle-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: radial-gradient(circle,rgba(14,165,233,.07) 0%,transparent 70%); }

/* ──── Trust Bar ──── */
.trust-bar { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-bar .container { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--text-muted); opacity: .6; transition: opacity var(--dur) var(--ease); letter-spacing: -.02em; }
.trust-logo:hover { opacity: 1; }

/* ──── Features ──── */
.features { padding: 100px 0; background: var(--bg-white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--bg-main); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ──── How It Works ──── */
.how-it-works { padding: 100px 0; background: var(--bg-sky); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 22%; right: 22%; height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  border-radius: var(--r-full); z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: var(--shadow-teal);
  transition: transform var(--dur) var(--ease-spring);
}
.step-card:hover .step-number { transform: scale(1.1) rotate(-5deg); }
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.step-card p  { font-size: .9rem; color: var(--text-light); line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* ──── Stats Band ──── */
.stats-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--sky) 100%);
}
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-band-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-band-item:last-child { border-right: none; }
.stat-band-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  color: var(--white); display: block;
}
.stat-band-suffix { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: rgba(255,255,255,.7); }
.stat-band-label { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 500; margin-top: 6px; display: block; }

/* ──── Testimonials ──── */
.testimonials { padding: 100px 0; background: var(--bg-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--bg-mint); border: 1px solid rgba(20,184,166,.15);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.t-text { font-size: .95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-light); }
.t-name  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.t-role  { font-size: .8rem; color: var(--text-muted); }

/* ──── CTA Section ──── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--sky-light) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(20,184,166,.12) 0%, transparent 70%);
}
.cta-section::before { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-section::after  { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.cta-inner p  { font-size: 1.05rem; color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ──── Footer ──── */
.footer { background: var(--footer-bg); color: rgba(255,255,255,.75); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo { color: var(--primary-light); margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.footer-col li + li { margin-top: 10px; }
.footer-col a { font-size: .9rem; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .85rem; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all var(--dur) var(--ease-spring);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }

/* ──── Page Hero (Services / About) ──── */
.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #E8FDF8 0%, var(--bg-sky) 60%, #FAFFFE 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(20,184,166,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; color: var(--text-light); max-width: 580px; margin: 0 auto 36px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb span { color: var(--text-muted); }

/* ──── Services Grid ──── */
.services-section { padding: 100px 0; background: var(--bg-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 28px; }
.service-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: var(--r-full);
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.service-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-card-meta { display: flex; align-items: center; justify-content: space-between; }
.service-duration { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.service-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--primary-dark); }
.service-link { display: flex; align-items: center; gap: 4px; font-size: .85rem; font-weight: 700; color: var(--primary); transition: gap var(--dur) var(--ease); }
.service-link:hover { gap: 8px; }

/* ──── Pricing ──── */
.pricing-section { padding: 100px 0; background: var(--bg-sky); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 32px;
  position: relative; text-align: center;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.popular {
  border-color: var(--primary); background: linear-gradient(160deg, #F0FDFA 0%, var(--white) 100%);
  transform: scale(1.04);
  box-shadow: var(--shadow-teal);
}
.pricing-card.popular.visible:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  padding: 6px 20px; border-radius: var(--r-full); white-space: nowrap;
  text-transform: uppercase;
}
.pricing-plan  { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; }
.pricing-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.pricing-price sup { font-size: 1.4rem; vertical-align: top; margin-top: .4em; }
.pricing-period { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; }
.pricing-desc  { font-size: .88rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.6; }
.pricing-features { text-align: left; margin-bottom: 36px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.pricing-features li .cross { color: var(--text-muted); flex-shrink: 0; }
.pricing-card .btn-primary, .pricing-card .btn-outline { width: 100%; justify-content: center; }

/* ──── FAQ ──── */
.faq-section { padding: 100px 0; background: var(--bg-white); }
.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: var(--bg-white);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item.open { border-color: var(--primary-light); box-shadow: 0 4px 20px rgba(20,184,166,.1); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .98rem; font-weight: 700; color: var(--text-dark);
  transition: color var(--dur-fast) var(--ease);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--border-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; transition: all var(--dur) var(--ease-spring); color: var(--text-mid); font-weight: 700; }
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s var(--ease); }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 22px; font-size: .9rem; color: var(--text-light); line-height: 1.75; }

/* ──── About Hero Image Block ──── */
.about-hero-split {
  padding: 80px 0; background: var(--bg-white);
}
.about-hero-split .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text .section-tag { text-align: left; display: inline-block; }
.about-text h2 { text-align: left; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 20px; }
.about-text p  { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: .95rem; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
.about-img-badge {
  position: absolute; bottom: 28px; left: -28px;
  background: var(--white); border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.aib-icon { font-size: 1.8rem; }
.aib-num  { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); display: block; }
.aib-lbl  { font-size: .75rem; color: var(--text-muted); font-weight: 500; }

/* ──── Values ──── */
.values-section { padding: 100px 0; background: var(--bg-mint); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--r-lg); padding: 36px 24px; text-align: center;
  border: 1px solid var(--border-light);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-emoji { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.value-card p  { font-size: .85rem; color: var(--text-light); line-height: 1.7; }

/* ──── Timeline ──── */
.timeline-section { padding: 100px 0; background: var(--bg-white); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--sky) 100%);
  transform: translateX(-50%);
}
.timeline-item { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 60px; position: relative; }
.timeline-item.visible { opacity: 1; }
.timeline-item:nth-child(odd)  { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.tl-content { flex: 1; background: var(--bg-main); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.tl-dot {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-teal); position: relative; z-index: 1;
  margin-top: 12px;
}
.tl-year { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .8rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.tl-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.tl-content p  { font-size: .85rem; color: var(--text-light); line-height: 1.7; }

/* ──── Team ──── */
.team-section { padding: 100px 0; background: var(--bg-sky); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-img { width: 100%; height: 260px; object-fit: cover; object-position: top; transition: transform .5s var(--ease); }
.team-card:hover .team-img { transform: scale(1.04); }
.team-img-wrap { overflow: hidden; }
.team-body { padding: 24px; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: .83rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-bio  { font-size: .83rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.team-socials { display: flex; gap: 8px; }
.team-social {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-mint); border: 1px solid var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--primary);
  transition: all var(--dur) var(--ease-spring);
}
.team-social:hover { background: var(--primary); color: var(--white); transform: scale(1.1); }

/* ──── Partners ──── */
.partners-section { padding: 72px 0; background: var(--bg-white); border-top: 1px solid var(--border); }
.partners-wrap { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.partner-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text-muted); opacity: .5; transition: opacity var(--dur) var(--ease); }
.partner-logo:hover { opacity: .9; }

/* ──── Reveal animation helper ──── */
.reveal { transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──── Responsive ──── */
@media (max-width: 1024px) {
  .hero-container  { grid-template-columns: 1fr; text-align: center; }
  .hero-content    { order: 1; }
  .hero-visual     { order: 2; display: none; }
  .hero-stats      { justify-content: center; }
  .hero-actions    { justify-content: center; }
  .hero-subtitle   { margin-left: auto; margin-right: auto; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular.visible:hover { transform: translateY(-6px); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .about-hero-split .container { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .steps-grid::before { display: none; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .team-grid    { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-stats   { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item    { padding: 0 12px; }
  .timeline::before { left: 24px; }
  .timeline-item { flex-direction: column !important; padding-left: 64px; }
  .tl-dot { position: absolute; left: 0; }
}
