/* ================================================
   CARE COVE LIMITED — VSL v5
   Deep Purple + Gold | Premium Care Sector
   Van Media inspired hero
================================================ */

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

:root {
  --p-dark:   #140a2e;
  --p-main:   #3d2278;
  --p-mid:    #5535a0;
  --p-light:  #8b6cc7;
  --p-pale:   #ede8f8;
  --p-xpale:  #f5f2fc;
  --gold:     #c9a84c;
  --gold-lt:  #e8c97a;
  --gold-pale:#fdf3d8;
  --white:    #ffffff;
  --off:      #f7f5fb;
  --text:     #1a1028;
  --text-mid: #4e4368;
  --text-lt:  #8878a8;
  --border:   rgba(93,53,160,0.13);
  --b-gold:   rgba(201,168,76,0.28);
  --sh:       0 6px 28px rgba(20,10,46,0.13);
  --sh-lg:    0 16px 56px rgba(20,10,46,0.2);
  --r:        14px;
  --r-lg:     22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.18; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.02rem; font-weight: 700; }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.22s ease;
}

/* Shine sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:active { transform: scale(0.96) !important; transition: transform 0.1s; }

/* Purple */
.btn-primary {
  background: linear-gradient(135deg, var(--p-main), var(--p-mid));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61,34,120,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(61,34,120,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, #b8922e 0%, var(--gold) 50%, var(--gold-lt) 100%);
  color: var(--p-dark);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(201,168,76,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-large { padding: 20px 52px; font-size: 1.06rem; border-radius: 10px; }

/* Nav button */
.btn-nav {
  background: linear-gradient(135deg, var(--p-main), var(--p-mid));
  color: var(--white) !important;
  padding: 11px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(61,34,120,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav::before { display: none; }
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,34,120,0.45);
}
.btn-nav span { transition: transform 0.2s ease; }
.btn-nav:hover span { transform: translateX(3px); }

/* Hero button circle icon */
.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(20,10,46,0.2);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn-hero:hover .btn-circle {
  transform: translateX(4px);
  background: rgba(20,10,46,0.35);
}

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 70px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(93,53,160,0.1);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(20,10,46,0.1); }

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 46px; width: auto; object-fit: contain; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--p-main), var(--gold));
  border-radius: 2px;
  transition: width 0.28s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--p-main); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ===================================================
   HERO — Van Media inspired
=================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--p-dark);
  padding-top: 70px; /* navbar height */
}

/* Dot grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-gold {
  width: 560px; height: 560px;
  top: -160px; left: -180px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 65%);
  animation: orbDrift 9s ease-in-out infinite;
}
.orb-purple {
  width: 640px; height: 640px;
  bottom: 60px; right: -200px;
  background: radial-gradient(circle, rgba(139,108,199,0.22) 0%, transparent 65%);
  animation: orbDrift 12s ease-in-out 2.5s infinite reverse;
}
.orb-mid {
  width: 320px; height: 320px;
  top: 45%; left: 38%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  animation: orbDrift 7s ease-in-out 1s infinite;
}

/* Hero body */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 44px;
  backdrop-filter: blur(8px);
}

.badge-pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,168,76,0.6);
  animation: pulse 2.2s ease infinite;
  flex-shrink: 0;
}

/* Headline — BIG like Van Media */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  gap: 4px;
}

.title-line {
  display: block;
  font-size: clamp(3.2rem, 9vw, 7rem);
  color: var(--white);
  letter-spacing: -0.03em;
}

.title-gold {
  color: var(--white);
}

.title-gold em {
  font-style: italic;
  color: var(--gold-lt);
  position: relative;
  display: inline-block;
}

/* Animated underline swoosh on "Scaling." */
.title-gold em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), rgba(232,201,122,0));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: swoosh 0.9s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.08rem;
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 48px;
}

.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 72px; }
.btn-hero { font-size: 1.05rem; }

.cta-reassure {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* Social proof shelf */
.hero-shelf {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px 0;
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.shelf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 36px;
}
.shelf-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1;
}
.shelf-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.shelf-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ===================================================
   TICKER STRIP
=================================================== */
.ticker {
  background: linear-gradient(135deg, #b8922e 0%, var(--gold) 50%, var(--gold-lt) 100%);
  padding: 15px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 0;
  will-change: transform;
}

.ticker-inner span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--p-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}

.ticker-inner i {
  font-style: normal;
  color: var(--p-mid);
  font-size: 0.55rem;
  opacity: 0.5;
}

/* ===================================================
   VIDEO SECTION
=================================================== */
.video-section {
  background: var(--off);
  padding: 110px 0 100px;
  text-align: center;
}

.video-section h2 { max-width: 740px; margin: 0 auto 52px; color: var(--p-dark); }

.video-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 2px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.video-wrap:hover { transform: translateY(-6px); box-shadow: 0 24px 72px rgba(20,10,46,0.25); }

.video-placeholder {
  background: linear-gradient(140deg, var(--p-dark) 0%, var(--p-mid) 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
}

.play-rings { position: relative; width: 92px; height: 92px; flex-shrink: 0; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 50%;
  font-size: 1.9rem;
  color: var(--p-dark);
  box-shadow: 0 8px 40px rgba(201,168,76,0.55);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  z-index: 1;
}
.video-placeholder:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 14px 56px rgba(201,168,76,0.7);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  inset: 0;
  animation: ringPulse 2.5s ease-out infinite;
}
.ring-2 { animation-delay: 0.7s; border-color: rgba(201,168,76,0.25); }
.ring-3 { animation-delay: 1.4s; border-color: rgba(201,168,76,0.12); }

.video-placeholder > p { color: rgba(255,255,255,0.45); font-size: 0.86rem; letter-spacing: 0.04em; }
.video-note { margin-top: 22px; font-size: 0.83rem; color: var(--text-lt); }

/* ===================================================
   PAIN SECTION
=================================================== */
.pain-section {
  background: linear-gradient(155deg, var(--p-dark) 0%, #100628 100%);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pain-section::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 90px solid rgba(201,168,76,0.04);
  pointer-events: none;
}
.pain-section h2 { color: var(--white); max-width: 720px; margin: 0 auto 64px; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,108,199,0.16);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.07);
}
.pain-icon { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.pain-card h3 { color: var(--white); margin-bottom: 10px; font-size: 0.97rem; line-height: 1.4; }
.pain-card p { color: rgba(255,255,255,0.5); font-size: 0.86rem; line-height: 1.75; }

/* ===================================================
   SOLUTION SECTION
=================================================== */
.solution-section {
  background: var(--off);
  padding: 110px 0;
  text-align: center;
}
.solution-section h2 { color: var(--p-dark); max-width: 720px; margin: 0 auto 20px; }
.solution-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.88;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p-main), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
  border-color: rgba(93,53,160,0.2);
}
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--p-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { color: var(--p-dark); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.75; }

/* animate-up: only service & testimonial cards */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   FOUNDER — Redesigned with timeline + interactive widget
=================================================== */
.founder-section {
  background: var(--p-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Background texture */
.founder-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Gold glow top-right */
.founder-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
}

/* Top header */
.founder-top {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.founder-top h2 { color: var(--white); margin-bottom: 16px; }
.founder-intro {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Two column layout */
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ---- TIMELINE ---- */
.founder-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical line */
.founder-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--p-light), rgba(139,108,199,0.1));
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 36px 0;
  cursor: default;
  position: relative;
}

.tl-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-main), var(--p-mid));
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.tl-dot span {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.timeline-item:hover .tl-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-color: var(--gold);
  transform: scale(1.1);
}
.timeline-item:hover .tl-dot span { color: var(--p-dark); }

.tl-content {
  padding-top: 8px;
  transition: transform 0.25s ease;
}
.timeline-item:hover .tl-content { transform: translateX(4px); }

.tl-content h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.timeline-item:hover .tl-content h4 { color: var(--gold-lt); }

.tl-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}

/* ---- WIDGET ---- */
.founder-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,108,199,0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}
.founder-widget:hover { border-color: rgba(201,168,76,0.3); }

/* Tabs */
.widget-tabs {
  display: flex;
  border-bottom: 1px solid rgba(139,108,199,0.15);
  background: rgba(0,0,0,0.15);
}

.wtab {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.42);
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}
.wtab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transition: transform 0.28s ease;
}
.wtab:hover { color: rgba(255,255,255,0.75); }
.wtab.active { color: var(--gold-lt); }
.wtab.active::after { transform: scaleX(1); }

/* Panels */
.widget-panel {
  display: none;
  padding: 28px;
  animation: panelIn 0.3s ease both;
}
.widget-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Credentials grid */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,108,199,0.12);
  border-radius: 10px;
  padding: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.cred-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.cred-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cred-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.cred-item span { font-size: 0.74rem; color: rgba(255,255,255,0.42); line-height: 1.4; }

/* Difference table */
.diff-table { display: flex; flex-direction: column; gap: 0; }

.diff-header {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 0;
  padding: 0 8px 12px;
  border-bottom: 1px solid rgba(139,108,199,0.2);
  margin-bottom: 4px;
  align-items: center;
}
.diff-header span:first-child { font-size: 0; } /* empty spacer */
.diff-col-bad {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
  hyphens: auto;
}
.diff-col-good {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
  hyphens: auto;
}

.diff-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: center;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s ease;
  border-radius: 6px;
}
.diff-row:hover { background: rgba(255,255,255,0.03); }

.diff-row span:first-child { font-size: 0.85rem; color: rgba(255,255,255,0.72); font-weight: 500; }
.diff-no { text-align: center; color: rgba(255,80,80,0.7); font-size: 1.1rem; font-weight: 700; }
.diff-yes { text-align: center; color: #4ade80; font-size: 1.1rem; font-weight: 700; }

/* Approach list */
.approach-list { display: flex; flex-direction: column; gap: 20px; }

.approach-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139,108,199,0.1);
  border-radius: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.approach-item:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
  transform: translateX(4px);
}

.approach-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--p-dark);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.approach-item strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 5px; }
.approach-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* Widget CTA */
.widget-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-top: 1px solid rgba(139,108,199,0.15);
  background: rgba(0,0,0,0.12);
}
.widget-cta span { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

/* ===================================================
   TESTIMONIALS
=================================================== */
.proof-section {
  background: linear-gradient(155deg, var(--p-dark) 0%, #100628 100%);
  padding: 110px 0;
  text-align: center;
}
.proof-section h2 { color: var(--white); max-width: 640px; margin: 0 auto 64px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(139,108,199,0.16);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 18px;
  font-size: 7rem;
  font-family: 'Playfair Display', serif;
  color: rgba(201,168,76,0.09);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.085);
}

.t-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card > p {
  color: rgba(255,255,255,0.76);
  font-size: 0.93rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--p-dark);
  font-weight: 800;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.t-author strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 2px; }
.t-author span { color: rgba(255,255,255,0.4); font-size: 0.76rem; }

/* ===================================================
   CTA SECTION
=================================================== */
.cta-section {
  background: linear-gradient(140deg, var(--p-main) 0%, var(--p-dark) 100%);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-ring-1 {
  width: 540px; height: 540px;
  bottom: -220px; right: -160px;
  border: 80px solid rgba(201,168,76,0.05);
}
.cta-ring-2 {
  width: 320px; height: 320px;
  top: -120px; left: -80px;
  border: 55px solid rgba(139,108,199,0.08);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); max-width: 700px; margin: 0 auto 20px; }
.cta-section p { color: rgba(255,255,255,0.68); max-width: 590px; margin: 0 auto 48px; font-size: 1.04rem; line-height: 1.85; }

.cta-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
}
.cta-list li { color: rgba(255,255,255,0.72); font-size: 0.88rem; font-weight: 500; }

/* ===================================================
   FAQ
=================================================== */
.faq-section { background: var(--off); padding: 110px 0; text-align: center; }
.faq-section h2 { color: var(--p-dark); margin-bottom: 64px; }
.faq-list { max-width: 760px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--p-dark); cursor: pointer; text-align: left; gap: 16px;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--p-mid); }
.faq-q span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--p-pale);
  color: var(--p-main);
  font-size: 1.1rem; font-weight: 400;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}
.faq-q.open span { transform: rotate(45deg); background: var(--p-main); color: var(--white); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; }
.faq-a.open { max-height: 320px; padding-bottom: 24px; }
.faq-a p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.85; }

/* ===================================================
   FOOTER
=================================================== */
.footer { background: var(--p-dark); padding: 68px 0 32px; text-align: center; }
.footer-body {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; margin-bottom: 44px;
}
.footer-logo-pill {
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 10px 24px;
  display: inline-block;
}
.footer-logo { height: 46px; width: auto; object-fit: contain; display: block; }
.footer p { color: rgba(255,255,255,0.42); font-size: 0.86rem; max-width: 400px; line-height: 1.7; }

/* Navbar tenders link — highlighted */
.nav-tenders-link {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
  animation: tendersBlink 3s ease infinite;
}
.nav-tenders-link::after {
  background: var(--gold) !important;
}
.nav-tenders-link:hover { color: var(--gold-lt) !important; }

@keyframes tendersBlink {
  0%, 80%, 100% { opacity: 1; }
  90% { opacity: 0.6; }
}

/* ===================================================
   TENDER PROMO BANNER
=================================================== */
.tender-promo {
  background: linear-gradient(135deg, var(--p-dark) 0%, #1e0f4a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tender-promo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tender-promo::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.tender-promo-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tender-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tender-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
  animation: livePulse 1.8s ease infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.6; transform:scale(1.3); }
}

.tender-promo-left h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tender-promo-left p {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 520px;
}

.tender-promo-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* Right side cards */
.tender-promo-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tender-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(139,108,199,0.2);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}

.tender-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.35);
  background: rgba(255,255,255,0.08);
}

.tender-stat-card.highlight {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.tender-stat-card.highlight:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

.tsc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.tsc-body strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.3;
}

.tsc-body span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .tender-promo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tender-promo-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .tender-promo-right {
    grid-template-columns: 1fr;
  }
  .tender-promo-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 6px;
}

.nav-social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  flex-shrink: 0;
}

/* LinkedIn brand blue */
.nav-social-icon.nav-linkedin {
  background: #0077B5;
  color: #ffffff;
}
.nav-social-icon.nav-linkedin:hover {
  background: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,119,181,0.4);
}

/* TikTok black */
.nav-social-icon.nav-tiktok {
  background: #010101;
  color: #ffffff;
}
.nav-social-icon.nav-tiktok:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Footer social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer-social.linkedin {
  background: #0077B5;
  color: #ffffff;
}
.footer-social.linkedin:hover {
  background: #005fa3;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,119,181,0.5);
}

.footer-social.tiktok {
  background: #010101;
  color: #ffffff;
}
.footer-social.tiktok:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.footer .footer-copy {
  border-top: 1px solid rgba(139,108,199,0.13);
  padding-top: 28px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.24);
  text-align: center !important;
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* ===================================================
   KEYFRAMES
=================================================== */
@keyframes orbDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(28px,-18px) scale(1.04); }
  66%       { transform: translate(-18px,14px) scale(0.97); }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

@keyframes swoosh {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 1; }
  100% { transform: scale(1.9);  opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   PAGE LOAD ANIMATIONS
=================================================== */
[data-anim="fade-down"] { animation: fadeDown 0.7s ease both; }
[data-anim="fade-up"]   { animation: fadeUp 0.7s ease both; }

[data-delay="0.15"] { animation-delay: 0.15s; }
[data-delay="0.3"]  { animation-delay: 0.3s; }
[data-delay="0.45"] { animation-delay: 0.45s; }
[data-delay="0.6"]  { animation-delay: 0.6s; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .pain-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .founder-layout { grid-template-columns: 1fr; gap: 48px; }
  .founder-widget { max-width: 600px; }
}

@media (max-width: 680px) {
  .navbar { height: 62px; }
  .hero { padding-top: 62px; }
  .nav-links { display: none; }
  .title-line { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .hero-shelf { flex-wrap: wrap; padding: 20px 16px; gap: 12px; }
  .shelf-item { padding: 0 16px; }
  .shelf-sep { display: none; }
  .pain-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .founder-stats { grid-template-columns: 1fr 1fr; }
  .cta-list { flex-direction: column; align-items: center; }
  .btn-large { padding: 17px 36px; font-size: 0.96rem; }
}

@media (max-width: 420px) {
  .hero-sub { font-size: 0.94rem; }
  .founder-stats { grid-template-columns: 1fr; }
}
