/* ===========================
   YIRA.AI — DESIGN SYSTEM
   =========================== */
:root {
  --blue: #3B5BDB;
  --blue-dark: #2C46C7;
  --blue-light: #4C6EF5;
  --blue-pale: #EEF2FF;
  --blue-mid: #748FFC;
  --pulse: #10B981;
  --pulse-light: #D1FAE5;
  --clinx: #F59E0B;
  --clinx-light: #FEF3C7;
  --med: #8B5CF6;
  --med-light: #EDE9FE;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --dark-3: #334155;
  --mid: #64748B;
  --light: #94A3B8;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(59,91,219,0.08);
  --shadow-lg: 0 16px 48px rgba(59,91,219,0.14);
  --shadow-dark: 0 20px 60px rgba(15,23,42,0.25);
  --font: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,91,219,0.3); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--blue-pale); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-pulse { background: var(--pulse); color: var(--white); border-color: var(--pulse); margin-top: 24px; }
.btn-pulse:hover { background: #059669; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,185,129,0.3); }
.btn-clinx { background: var(--clinx); color: var(--white); border-color: var(--clinx); margin-top: 24px; }
.btn-clinx:hover { background: #D97706; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
.btn-med { background: var(--med); color: var(--white); border-color: var(--med); margin-top: 24px; }
.btn-med:hover { background: #7C3AED; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,92,246,0.3); }

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-label.light { background: rgba(255,255,255,0.15); color: var(--white); }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800;
  line-height: 1.2; color: var(--dark); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem; color: var(--mid); max-width: 580px;
  margin: 0 auto 48px; line-height: 1.75;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); height: 72px;
}
.nav-inner { display: flex; align-items: center; gap: 40px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 36px; width: auto; max-width: 140px; border-radius: 0; object-fit: contain; }
.logo-text { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links li { position: relative; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--dark-3); padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-pale); }
.chevron { font-size: 0.65rem; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 8px; min-width: 290px; box-shadow: var(--shadow-lg); z-index: 100;
}
.dropdown:hover .dropdown-menu { display: flex; flex-direction: column; gap: 4px; }
.dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; color: var(--dark); }
.dropdown-menu a:hover { background: var(--bg); }
.dropdown-menu a strong { display: block; font-weight: 600; font-size: 0.88rem; }
.dropdown-menu a small { color: var(--mid); font-size: 0.75rem; font-weight: 400; }
.dd-icon { font-size: 1.3rem; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; flex-shrink: 0; }
.pulse-icon { background: var(--pulse-light); }
.clinx-icon { background: var(--clinx-light); }
.med-icon { background: var(--med-light); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ===========================
   HERO — SPLIT LAYOUT
   =========================== */
.hero {
  padding: 120px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #EEF2FF 0%, #F8FAFC 60%, #F0FDF4 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #3B5BDB12 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,91,219,0.1), transparent 70%); top: -100px; left: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.08), transparent 70%); bottom: 0; right: -50px; }

.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-left { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  color: var(--blue); margin-bottom: 24px; box-shadow: 0 2px 12px rgba(59,91,219,0.08);
}
.badge-dot { width: 8px; height: 8px; background: var(--pulse); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.3); } }
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.1;
  color: var(--dark); margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-subtitle { font-size: 1.05rem; color: var(--mid); margin-bottom: 36px; line-height: 1.75; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 28px; box-shadow: var(--shadow);
  width: fit-content;
}
.stat { text-align: center; padding: 0 20px; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-label { display: block; font-size: 0.72rem; color: var(--mid); margin-top: 3px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero right - image frame */
.hero-right { position: relative; }
.hero-img-frame { position: relative; border-radius: 24px; overflow: visible; }
.hero-main-img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 24px; box-shadow: var(--shadow-dark);
}
.hero-float-card {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px; display: flex; align-items: center;
  gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card .float-icon { font-size: 1.4rem; }
.hero-float-card strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.hero-float-card span { display: block; font-size: 0.7rem; color: var(--mid); }
.pulse-float { bottom: 32px; left: -32px; animation-delay: 0s; }
.clinx-float { top: 32px; right: -24px; animation-delay: 1s; }
.med-float { bottom: 120px; right: -28px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===========================
   TRUSTED
   =========================== */
.trusted { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.trusted-label { text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.trusted-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.logo-pill { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 8px 20px; font-size: 0.82rem; font-weight: 600; color: var(--dark-3); }

/* ===========================
   AI ENGINE
   =========================== */
.ai-engine { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
.ai-engine-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(59,91,219,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 50%),
                    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px;
}
.engine-layout { display: flex; flex-direction: column; align-items: center; gap: 40px; margin-top: 56px; }
.engine-center { }
.engine-core {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(59,91,219,0.4); position: relative;
}
.engine-core::before {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px dashed rgba(59,91,219,0.35); animation: spin 20s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.engine-core-inner { text-align: center; }
.engine-logo { width: 52px; height: 52px; border-radius: 0; margin: 0 auto 6px; object-fit: contain; }
.engine-label { display: block; color: var(--white); font-weight: 700; font-size: 0.82rem; }
.engine-sublabel { display: block; color: rgba(255,255,255,0.5); font-size: 0.7rem; }
.engine-products { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.engine-product-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 20px 24px; min-width: 260px;
  transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.engine-product-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.pulse-card:hover { border-color: rgba(16,185,129,0.4); box-shadow: 0 0 24px rgba(16,185,129,0.15); }
.clinx-card:hover { border-color: rgba(245,158,11,0.4); box-shadow: 0 0 24px rgba(245,158,11,0.15); }
.med-card:hover { border-color: rgba(139,92,246,0.4); box-shadow: 0 0 24px rgba(139,92,246,0.15); }
.ep-icon { font-size: 2rem; flex-shrink: 0; }
.ep-content strong { display: block; color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.ep-content span { display: block; color: #94A3B8; font-size: 0.78rem; margin-bottom: 8px; }
.ep-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: rgba(255,255,255,0.06); color: #64748B; }
.engine-capabilities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 680px; }
.cap-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #94A3B8; padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }

/* ===========================
   PRODUCTS — IMAGE + TEXT ROWS
   =========================== */
.products { padding: 100px 0; background: var(--bg); }
.product-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-bottom: 80px; padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.product-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.product-row.reverse { direction: rtl; }
.product-row.reverse > * { direction: ltr; }

.product-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.pulse-badge { background: var(--pulse-light); color: #065F46; }
.clinx-badge { background: var(--clinx-light); color: #92400E; }
.med-badge { background: var(--med-light); color: #5B21B6; }

.product-title { font-size: 1.75rem; font-weight: 800; line-height: 1.25; color: var(--dark); margin-bottom: 14px; }
.product-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.product-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--dark-3); }
.feat-check { width: 20px; height: 20px; background: var(--pulse-light); color: var(--pulse); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.clinx-check { background: var(--clinx-light); color: var(--clinx); }
.med-check { background: var(--med-light); color: var(--med); }
.product-audience { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.audience-label { font-size: 0.72rem; font-weight: 600; color: var(--light); text-transform: uppercase; letter-spacing: 0.07em; }
.audience-tag { background: var(--blue-pale); color: var(--blue); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.clinx-tag { background: var(--clinx-light); color: #92400E; }
.med-tag { background: var(--med-light); color: #5B21B6; }

/* Product image with overlay card */
.product-image { position: relative; }
.prod-img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-dark); }
.prod-overlay-card {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(15,23,42,0.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px 20px;
}

/* ===========================
   VISUAL CARD COMPONENTS
   =========================== */
.vc-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 600; margin-bottom: 12px; }
.pulse-vc-header { color: var(--pulse); }
.clinx-vc-header { color: var(--clinx); }
.med-vc-header { color: var(--med); }
.vc-live { font-size: 0.7rem; }
.clinx-live { color: var(--clinx); }
.med-live { color: var(--med); }
.vc-stats { display: flex; justify-content: space-around; background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px; }
.vc-stat { text-align: center; }
.vc-num { display: block; font-size: 1.3rem; font-weight: 800; color: var(--white); }
.vc-lbl { display: block; font-size: 0.65rem; color: #64748B; margin-top: 2px; }
.vc-alert-list { display: flex; flex-direction: column; gap: 6px; }
.vc-alert { padding: 7px 10px; border-radius: 7px; font-size: 0.72rem; font-weight: 500; }
.vc-alert.green { background: rgba(16,185,129,0.12); color: #6EE7B7; }
.vc-alert.yellow { background: rgba(245,158,11,0.12); color: #FCD34D; }
.vc-alert.blue { background: rgba(59,91,219,0.12); color: var(--blue-mid); }

/* ===========================
   IMPACT
   =========================== */
.impact { padding: 100px 0; background: var(--white); }
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.impact-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px; text-align: left; transition: all 0.3s; }
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.impact-num { font-size: 2.6rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.impact-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.impact-desc { font-size: 0.83rem; color: var(--mid); line-height: 1.6; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { padding: 100px 0; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; text-align: left; transition: all 0.3s; }
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-quote { font-size: 3.5rem; line-height: 1; color: var(--blue-pale); font-family: Georgia, serif; margin-bottom: 4px; }
.testi-card p { font-size: 0.93rem; color: var(--dark-3); line-height: 1.75; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 0.75rem; color: var(--mid); }

/* ===========================
   CTA
   =========================== */
.cta-section { padding: 80px 0; background: var(--white); }
.cta-card { background: linear-gradient(135deg, var(--blue) 0%, #1E3A8A 100%); border-radius: 28px; padding: 72px; text-align: center; position: relative; overflow: hidden; }
.cta-orb { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); top: -100px; right: -100px; border-radius: 50%; pointer-events: none; }
.cta-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.cta-contact-row { display: flex; gap: 28px; justify-content: center; font-size: 0.83rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.83rem; color: #64748B; line-height: 1.7; margin: 14px 0 18px; }
.footer-logo { height: 32px; width: auto; max-width: 120px; border-radius: 0; object-fit: contain; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #64748B; font-size: 0.82rem; transition: all 0.2s; }
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.82rem; color: #64748B; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-mid); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: #475569; flex-wrap: wrap; gap: 8px; }

/* ===========================
   PRODUCT PAGE STYLES
   =========================== */
.product-hero {
  padding: 140px 0 0; position: relative; overflow: hidden;
}
.product-hero-inner { position: relative; z-index: 1; }

/* Hero image banner */
.product-hero-banner {
  width: 100%; height: 420px; object-fit: cover;
  display: block; margin-top: 60px;
}

/* Pulse hero */
.hero-pulse { background: linear-gradient(180deg, #ECFDF5 0%, var(--white) 100%); }
.hero-pulse .product-hero-badge { background: var(--pulse-light); color: #065F46; }
/* Clinx hero */
.hero-clinx { background: linear-gradient(180deg, #FFFBEB 0%, var(--white) 100%); }
.hero-clinx .product-hero-badge { background: var(--clinx-light); color: #92400E; }
/* MedSense hero */
.hero-med { background: linear-gradient(180deg, #F5F3FF 0%, var(--white) 100%); }
.hero-med .product-hero-badge { background: var(--med-light); color: #5B21B6; }

.product-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; padding: 8px 18px;
  border-radius: 100px; margin-bottom: 22px;
}
.product-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.02em;
  color: var(--dark);
}
.product-hero-title .g { color: var(--pulse); }
.hero-clinx .product-hero-title .g { color: var(--clinx); }
.hero-med .product-hero-title .g { color: var(--med); }
.product-hero-sub { font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; line-height: 1.75; color: var(--mid); }
.product-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.product-hero-text { text-align: center; padding-bottom: 60px; }

/* Stats strip */
.stats-strip { padding: 48px 0; }
.stats-strip-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px; }
.strip-stat { text-align: center; }
.strip-num { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.strip-lbl { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Feature section */
.feature-section { padding: 80px 0; background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 30px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* How it works */
.how-section { padding: 80px 0; background: var(--white); text-align: center; }
.steps-row { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--white); margin: 0 auto 16px; }
.step h4 { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 0.8rem; color: var(--mid); line-height: 1.55; }

/* Product image strip */
.product-img-strip { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; margin-bottom: 48px; display: block; box-shadow: var(--shadow-dark); }

/* ANIMATION UTILITIES */
.animate-ready { opacity:0; transform:translateY(24px); transition:opacity 0.5s ease,transform 0.5s ease; }
.animate-in { opacity:1; transform:translateY(0); }
.animate-ready:nth-child(2){transition-delay:0.1s} .animate-ready:nth-child(3){transition-delay:0.2s} .animate-ready:nth-child(4){transition-delay:0.3s} .animate-ready:nth-child(5){transition-delay:0.4s} .animate-ready:nth-child(6){transition-delay:0.5s}
.navbar.scrolled{box-shadow:0 4px 24px rgba(0,0,0,0.08);background:rgba(255,255,255,0.99)}
.nav-mobile-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)} .nav-mobile-toggle.active span:nth-child(2){opacity:0} .nav-mobile-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.form-msg{padding:12px 16px;border-radius:10px;font-size:0.9rem;font-weight:500;margin-top:16px} .form-msg.success{background:#D1FAE5;color:#065F46} .form-msg.error{background:#FEE2E2;color:#991B1B}
.alignleft{float:left;margin:0 24px 16px 0} .alignright{float:right;margin:0 0 16px 24px} .aligncenter{display:block;margin:0 auto 16px}
.wp-caption{max-width:100%} .wp-caption-text{font-size:0.82rem;color:#64748B;text-align:center;margin-top:6px}
