/* ============================================================
   ThriveCRS — style.css  (v2 — Refreshed Template)
   Brand colors from logo: Blue #1565C0  Green #43A047
   ============================================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1565C0;
  --blue-mid:    #1E88E5;
  --blue-light:  #E3F2FD;
  --blue-dark:   #0D47A1;
  --green:       #43A047;
  --green-light: #E8F5E9;
  --green-dark:  #2E7D32;
  --dark:   #0F1B2D;
  --dark-2: #1C2B3A;
  --dark-3: #2D3F55;
  --mid:    #5A6A7E;
  --muted:  #8FA0B4;
  --border: #DDE6F0;
  --bg:     #F4F8FC;
  --white:  #FFFFFF;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --r-sm: 6px; --r: 12px; --r-lg: 20px; --r-xl: 32px;
  --sh-xs: 0 1px 4px rgba(21,101,192,.08);
  --sh-sm: 0 2px 12px rgba(21,101,192,.10);
  --sh:    0 6px 28px rgba(21,101,192,.13);
  --sh-lg: 0 16px 52px rgba(21,101,192,.16);
  --sh-xl: 0 28px 80px rgba(0,0,0,.18);
  --ease: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.bg-alt     { background: var(--bg); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800;
  line-height: 1.22; color: var(--dark); margin-bottom: 14px; letter-spacing: -.02em;
}
.section-subtitle { font-size: 1.05rem; color: var(--mid); line-height: 1.8; max-width: 640px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 100px;
  font-size: .93rem; font-weight: 600;
  transition: all var(--ease); white-space: nowrap; border: 2px solid transparent;
}
.btn-blue  { background: var(--blue); color: var(--white); box-shadow: 0 4px 18px rgba(21,101,192,.30); }
.btn-blue:hover  { background: var(--blue-dark); box-shadow: 0 8px 28px rgba(21,101,192,.42); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 18px rgba(67,160,71,.28); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline-blue  { border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.85); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--r); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-inner p { font-size: 1.4rem; font-weight: 800; color: var(--blue); margin-top: 18px; letter-spacing: .06em; }
.dna-loader { display: flex; gap: 5px; align-items: center; justify-content: center; }
.dna-loader span { width: 9px; height: 36px; border-radius: 4px; animation: dnaWave 1.2s ease-in-out infinite; }
.dna-loader span:nth-child(odd)  { background: var(--blue); }
.dna-loader span:nth-child(even) { background: var(--green); }
.dna-loader span:nth-child(1) { animation-delay: 0s; }
.dna-loader span:nth-child(2) { animation-delay: .12s; }
.dna-loader span:nth-child(3) { animation-delay: .24s; }
.dna-loader span:nth-child(4) { animation-delay: .36s; }
.dna-loader span:nth-child(5) { animation-delay: .48s; }
@keyframes dnaWave { 0%,100%{transform:scaleY(.35);opacity:.5} 50%{transform:scaleY(1.1);opacity:1} }

/* ============================================================
   NAVBAR — white, logo prominent
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); border-bottom: 2px solid var(--border);
  transition: box-shadow var(--ease), border-color var(--ease);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(21,101,192,.13); border-color: transparent; }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}

/* LOGO — big image only */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 82px; width: auto; object-fit: contain; display: block; }
.logo-text { display: none; }   /* hidden — image carries the brand */

/* nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: var(--dark-3);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: all var(--ease); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-link.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 10px 24px; border-radius: 100px;
  margin-left: 10px; font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--sh-sm); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--ease); }
.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); }

/* ============================================================
   HERO — diagonal split
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 110px 0 80px; overflow: hidden;
  background: var(--dark);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, #0D2B5E 0%, #1565C0 50%, #0A3D2B 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 65% 100%, 0 88%);
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 34px 34px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(67,160,71,.16); border: 1px solid rgba(67,160,71,.38);
  color: #A5D6A7; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(67,160,71,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(67,160,71,.3)} 50%{box-shadow:0 0 0 7px rgba(67,160,71,.08)} }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.16;
  color: var(--white); letter-spacing: -.02em; margin-bottom: 22px;
}
.hero-title .accent { color: #66BB6A; }
.hero-subtitle {
  font-size: clamp(.95rem, 1.6vw, 1.08rem); color: rgba(255,255,255,.7);
  line-height: 1.85; margin-bottom: 40px; max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.trust-label { font-size: .78rem; color: rgba(255,255,255,.42); font-weight: 500; white-space: nowrap; }
.trust-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72); padding: 4px 11px; border-radius: 6px;
}
/* right panel */
.hero-stats-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl); padding: 36px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-block {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 24px 16px; text-align: center;
  transition: background var(--ease);
}
.stat-block:hover { background: rgba(255,255,255,.1); }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; display: block; }
.stat-num .suffix { color: #66BB6A; font-size: 2rem; }
.stat-block p { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.35); font-size: .7rem;
  animation: floatY 2.2s ease-in-out infinite;
}
.scroll-mouse { width: 20px; height: 32px; border: 2px solid rgba(255,255,255,.22); border-radius: 10px; position: relative; }
.scroll-wheel {
  width: 3px; height: 7px; background: rgba(255,255,255,.42); border-radius: 2px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: wheelMove 1.8s ease-in-out infinite;
}
@keyframes floatY   { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes wheelMove{ 0%,100%{opacity:1;transform:translateX(-50%) translateY(0)} 50%{opacity:.3;transform:translateX(-50%) translateY(8px)} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip { background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--blue-dark)); padding: 12px 0; overflow: hidden; }
.marquee-track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  font-size: .76rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.marquee-track span { color: var(--white); }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-card-main {
  background: linear-gradient(145deg, var(--blue-light), #C5E1F7);
  border-radius: var(--r-xl); min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-card-main img { width: 82%; }
.about-float-stat {
  position: absolute; background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 16px 20px; text-align: center;
}
.about-float-stat.top-right  { top: 20px; right: -14px; }
.about-float-stat.bottom-left{ bottom: -14px; left: -14px; }
.about-float-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--blue); line-height: 1; }
.about-float-stat span { font-size: .73rem; color: var(--muted); font-weight: 500; }
.about-float-stat .green { color: var(--green); }
.about-visual::after {
  content: ''; position: absolute; bottom: -22px; right: -22px;
  width: 150px; height: 150px; border: 3px solid var(--green-light); border-radius: 50%; z-index: -1;
}
.about-content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }
.about-content > p { color: var(--mid); line-height: 1.85; margin-bottom: 14px; }
.feat-list { margin: 26px 0 34px; display: flex; flex-direction: column; gap: 18px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.feat-icon.blue-bg  { background: var(--blue-light); color: var(--blue); }
.feat-icon.green-bg { background: var(--green-light); color: var(--green); }
.feat-icon svg { width: 21px; height: 21px; }
.feat-item strong { display: block; font-weight: 600; margin-bottom: 3px; font-size: .97rem; }
.feat-item p { font-size: .88rem; color: var(--mid); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 26px; position: relative; overflow: hidden; transition: all var(--ease);
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--svc-color, var(--blue)); border-radius: 0 2px 2px 0;
  transform: scaleY(0); transform-origin: top; transition: transform var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 50px; height: 50px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: color-mix(in srgb, var(--svc-color, var(--blue)) 10%, transparent);
  color: var(--svc-color, var(--blue));
}
.svc-icon svg { width: 25px; height: 25px; }
.svc-card h3 { font-size: 1.03rem; font-weight: 700; margin-bottom: 10px; }
.svc-card > p { font-size: .87rem; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.svc-tag { font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 4px; background: var(--bg); color: var(--mid); }
.svc-link { font-size: .85rem; font-weight: 700; color: var(--svc-color, var(--blue)); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--ease); }
.svc-link:hover { gap: 10px; }

/* ============================================================
   THERAPEUTIC AREAS
   ============================================================ */
.ta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ta-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 18px 22px; text-align: center; transition: all var(--ease);
}
.ta-card:hover { border-color: var(--blue); box-shadow: var(--sh); transform: translateY(-4px); }
.ta-icon {
  font-size: 2rem; width: 56px; height: 56px;
  background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.ta-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.ta-card p  { font-size: .81rem; color: var(--mid); line-height: 1.6; }

/* ============================================================
   PHASES — horizontal stepper
   ============================================================ */
.phases-stepper {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.phases-stepper::before {
  content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); z-index: 0;
}
.phase-step { text-align: center; position: relative; z-index: 1; padding: 0 14px; }
.phase-bubble {
  width: 70px; height: 70px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.25rem; font-weight: 900; color: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-light); transition: transform var(--ease);
}
.phase-step:nth-child(2) .phase-bubble { border-color: #2196F3; color: #2196F3; box-shadow: 0 0 0 6px #E3F2FD; }
.phase-step:nth-child(3) .phase-bubble { border-color: #4CAF50; color: #4CAF50; box-shadow: 0 0 0 6px #E8F5E9; }
.phase-step:nth-child(4) .phase-bubble { border-color: var(--green); color: var(--green); box-shadow: 0 0 0 6px var(--green-light); }
.phase-step:hover .phase-bubble { transform: scale(1.1); }
.phase-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.phase-step p  { font-size: .82rem; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.phase-chips   { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.phase-chip { font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 4px; background: var(--blue-light); color: var(--blue); }

/* ============================================================
   WHY US
   ============================================================ */
.why-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-content > p { color: var(--mid); line-height: 1.8; margin: 14px 0 30px; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-dot {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.why-point strong { display: block; font-weight: 700; margin-bottom: 3px; }
.why-point p { font-size: .88rem; color: var(--mid); margin: 0; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cert-tile {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 18px; text-align: center; transition: all var(--ease);
}
.cert-tile:hover { border-color: var(--blue); box-shadow: var(--sh); transform: translateY(-3px); }
.cert-badge {
  font-size: 1.05rem; font-weight: 900; color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: inline-block; padding: 8px 16px; border-radius: var(--r-sm);
  margin-bottom: 8px; letter-spacing: .04em;
}
.cert-tile:nth-child(3) .cert-badge,
.cert-tile:nth-child(5) .cert-badge { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.cert-tile p { font-size: .78rem; color: var(--mid); font-weight: 500; }
.cert-grid .cert-tile:last-child { grid-column: 1 / -1; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; transition: all var(--ease); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.team-card-top { height: 110px; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); position: relative; }
.team-card:nth-child(2) .team-card-top { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.team-card:nth-child(3) .team-card-top { background: linear-gradient(135deg, #6A1B9A, #AB47BC); }
.team-card:nth-child(4) .team-card-top { background: linear-gradient(135deg, #E65100, #FF7043); }
.team-avatar {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--white); box-shadow: 0 4px 16px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 800; color: var(--blue);
}
.team-card:nth-child(2) .team-avatar { color: var(--green); }
.team-card:nth-child(3) .team-avatar { color: #7B1FA2; }
.team-card:nth-child(4) .team-avatar { color: #E64A19; }
.team-card-body { padding: 38px 20px 26px; text-align: center; }
.team-card-body h4 { font-size: .98rem; font-weight: 700; margin-bottom: 4px; }
.team-role { display: block; font-size: .73rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.team-card:nth-child(2) .team-role { color: var(--green); }
.team-card:nth-child(3) .team-role { color: #7B1FA2; }
.team-card:nth-child(4) .team-role { color: #E64A19; }
.team-card-body p { font-size: .83rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(155deg, var(--dark) 0%, #0D2B5E 55%, #0A3D2B 100%); }
.testimonials .section-tag { color: #A5D6A7; background: rgba(67,160,71,.2); }
.testimonials .section-title { color: var(--white); }
.t-slider { position: relative; overflow: hidden; }
.t-track  { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.t-card {
  flex: 0 0 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px);
  border-radius: var(--r-xl); padding: 52px 58px; position: relative;
}
.t-quote { font-size: 5rem; line-height: 1; color: var(--green); opacity: .32; font-family: Georgia, serif; position: absolute; top: 18px; left: 34px; }
.t-card > p { font-size: 1.07rem; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.85; margin-bottom: 34px; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.t-author strong { display: block; color: var(--white); font-size: .93rem; }
.t-author span   { font-size: .79rem; color: rgba(255,255,255,.5); }
.t-stars { margin-top: 16px; color: #FDD835; font-size: 1.05rem; letter-spacing: 3px; }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.t-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all var(--ease); }
.t-btn:hover { background: var(--blue); border-color: var(--blue); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: all var(--ease); }
.t-dot.active { background: var(--green); width: 22px; border-radius: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ci-icon.blue-bg  { background: var(--blue-light); }
.ci-icon.green-bg { background: var(--green-light); }
.ci-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.ci-item p { font-size: .89rem; color: var(--mid); line-height: 1.7; margin: 0; }
.form-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px 38px; box-shadow: var(--sh-lg); }
.form-panel h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 26px; }
.form-panel h3 span { color: var(--blue); }
.cf { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .81rem; font-weight: 600; color: var(--dark-3); }
.fg input, .fg select, .fg textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: inherit; font-size: .92rem; color: var(--dark); background: var(--white);
  outline: none; transition: border-color var(--ease), box-shadow var(--ease);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,.11); }
.fg input.error, .fg textarea.error { border-color: #EF4444; }
.f-err { font-size: .77rem; color: #EF4444; display: none; }
.f-err.show { display: block; }
.fg textarea { resize: vertical; min-height: 108px; }
.f-check { flex-direction: row !important; align-items: center; gap: 10px !important; }
.f-check input { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--blue); }
.f-check label { font-size: .85rem; color: var(--mid); }
.f-check a { color: var(--blue); text-decoration: underline; }
.f-success { display: none; background: var(--green-light); border: 1px solid rgba(67,160,71,.3); border-radius: var(--r); padding: 14px 18px; color: var(--green-dark); font-weight: 600; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.62); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 54px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .87rem; line-height: 1.8; margin-bottom: 22px; }
.f-social { display: flex; gap: 10px; }
.f-soc-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.62); transition: all var(--ease); }
.f-soc-link:hover { background: var(--blue); color: var(--white); }
.footer-col h5 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; color: rgba(255,255,255,.52); transition: color var(--ease); }
.footer-col a:hover { color: #66BB6A; }
.footer-bottom { padding: 20px 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: .77rem; color: rgba(255,255,255,.32); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white); font-size: 1.1rem; box-shadow: var(--sh);
  opacity: 0; visibility: hidden; transition: all var(--ease); z-index: 900;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — Mobile, Tablet, Desktop, Large/TV
   ============================================================ */

/* ── 4K / TV (2560px+) ──────────────────────────────────── */
@media (min-width: 2560px) {
  :root { font-size: 20px; }
  .container { max-width: 1800px; }
  .nav-container { max-width: 1800px; height: 120px; }
  .logo-img { height: 100px; }
  .section { padding: 130px 0; }
  .hero-inner { max-width: 1800px; }
}

/* ── Large Desktop / TV (1600px) ────────────────────────── */
@media (min-width: 1600px) and (max-width: 2559px) {
  .container { max-width: 1440px; }
  .nav-container { max-width: 1440px; }
  .hero-inner { max-width: 1440px; }
  .section { padding: 110px 0; }
}

/* ── Tablet Landscape (1024px) ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .ta-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .phases-stepper { grid-template-columns: 1fr 1fr; gap: 36px; }
  .phases-stepper::before { display: none; }
  .about-grid, .why-wrapper { grid-template-columns: 1fr; gap: 52px; }
  .contact-wrap   { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* hero: single column, show stats below */
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: block; }           /* keep stats panel visible */
  .hero-stats-panel { grid-template-columns: repeat(4, 1fr); padding: 24px 20px; }

  /* about: float stats stay inside on tablet */
  .about-float-stat.top-right  { right: 10px; }
  .about-float-stat.bottom-left { left: 10px; }
}

/* ── Tablet Portrait / Large Mobile (768px) ─────────────── */
@media (max-width: 768px) {

  /* Navbar */
  .nav-container { height: 82px; padding: 0 20px; }
  .logo-img      { height: 62px; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(80vw, 300px); height: 100vh;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 100px 26px 32px; gap: 2px;
    box-shadow: var(--sh-xl);
    transition: right var(--ease);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 13px 14px; color: var(--dark-3); font-size: 1rem; border-radius: var(--r); }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { background: var(--blue-light); }
  .nav-link.nav-cta {
    margin-left: 0; margin-top: 14px;
    display: inline-flex; width: auto;
    background: var(--blue); color: var(--white);
  }
  .hamburger { display: flex; }

  /* Sections */
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero { padding: 96px 0 52px; }
  .hero-inner { padding: 0 18px; gap: 32px; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-subtitle { font-size: .95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-stats-panel { grid-template-columns: 1fr 1fr; padding: 20px 16px; gap: 14px; }
  .stat-num { font-size: 2.2rem; }
  .hero-scroll { display: none; } /* hide scroll indicator on mobile */

  /* Hero clip-path simplified for mobile */
  .hero::before { clip-path: none; }

  /* About — keep float stats inside card bounds */
  .about-card-main { min-height: 260px; }
  .about-float-stat.top-right  { top: 10px;  right: 10px; }
  .about-float-stat.bottom-left { bottom: 10px; left: 10px; }
  .about-visual::after { display: none; } /* remove decorative ring */

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Therapeutic Areas */
  .ta-grid { grid-template-columns: 1fr 1fr; }

  /* Phases */
  .phases-stepper { grid-template-columns: 1fr; gap: 24px; }
  .phase-bubble { width: 56px; height: 56px; font-size: 1.1rem; box-shadow: none; }

  /* Why Us */
  .cert-grid { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .t-card { padding: 36px 22px 28px; }
  .t-quote { font-size: 3.5rem; top: 12px; left: 18px; }
  .t-card > p { font-size: .95rem; }

  /* Contact form */
  .form-panel { padding: 32px 22px; }
  .f-row { grid-template-columns: 1fr; gap: 12px; }

  /* Footer */
  .footer { padding: 52px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { height: 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Mobile (480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
  .logo-img { height: 54px; }
  .nav-container { height: 76px; }

  .hero { padding: 88px 0 44px; }
  .hero-badge { font-size: .68rem; padding: 6px 14px; }
  .hero-stats-panel { grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 12px; }
  .stat-num { font-size: 1.9rem; }
  .stat-num .suffix { font-size: 1.5rem; }
  .stat-block p { font-size: .68rem; }

  .ta-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-grid .cert-tile:last-child { grid-column: auto; }
  .phases-stepper { grid-template-columns: 1fr; }

  .t-card { padding: 28px 18px; border-radius: var(--r-lg); }
  .form-panel { padding: 26px 16px; border-radius: var(--r-lg); }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  /* stack trust badges */
  .trust-badges { gap: 6px; }
  .trust-badge  { font-size: .65rem; padding: 3px 8px; }

  /* footer */
  .footer-grid { gap: 24px; }
}

/* ── Small Mobile (360px) ───────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-inner { padding: 0 14px; }
  .logo-img   { height: 46px; }
  .nav-container { height: 70px; padding: 0 14px; }
  .nav-links  { padding: 90px 18px 28px; }
  .hero-title { font-size: 1.7rem; }
  .hero-stats-panel { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ta-grid    { grid-template-columns: 1fr; }
  .btn        { padding: 12px 22px; font-size: .88rem; }
}
