*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --first-color:#635FFF;
  --second-color:#FD7289;
  --forest:#EFEEFF;
  --forest-second:#fd72891f;
  --forest-mid:#4a47cc;
  --forest-dark:#2d2b99;
  --sage:#9B99FF;
  --sage-light:#c4c3ff;
  --pastel-green:#EAE9FF;
  --pastel-pink:#FCCCCC;
  --pastel-blue:#EAE9FF;
  --pastel-peach:#fdf0f0;
  --pastel-lavender:#f0efff;
  --pastel-mint:#EAE9FF;
  --cream:#F7F7FF;
  --cream-mid:#EDEDF5;
  --warm-white:#ffffff;
  --text:#000000;
  --text-mid:#2a2a3a;
  --text-muted:#6B6A7A;
  --border:#C8C7D4;
  --border-light:#EDEDF5;
  --white:#ffffff;
  --green-btn:#635FFF;
  --overlay-dark:rgba(10,10,30,0.72);
  --opacity-white:#ffffffc4;
}
html{scroll-behavior:smooth;}
body{background:var(--warm-white);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased; font-family: "Plus Jakarta Sans", sans-serif;}

.topbar{background:#000000;padding:8px 5%;display:flex;align-items:center;justify-content:center; gap:20px;}
.topbar span{font-size:12px;color:rgba(255,255,255,0.82);}
.topbar span strong{color:#FCCCCC;}
.topbar a{font-size:12px;color:#000000;font-weight:600;text-decoration:none;background:#FCCCCC;padding:5px 14px;border-radius:50px;transition:background .2s;}
.topbar a:hover{background:#f5b5b5;}

/* nav{ background:#00000042; padding: 10px; display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100; position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 50%);     width: 100%; max-width: 1200px; border-radius: 10px} */

nav {
  background: transparent;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  z-index: 100;
  isolation: isolate;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgb(100 95 255 / 14%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}
.nav-logo{font-size:24px;font-weight:700;color:var(--forest);text-decoration:none;letter-spacing:-0.2px; margin-left: 10px;}
.nav-links{display:flex;list-style:none;}
.nav-links a{text-decoration:none;font-size:14px;font-weight:500;padding:0 15px;display:flex;align-items:center;gap:4px;transition:color .2s;color:var(--text);}
.nav-links a:hover{color:var(--first-color);}

/* ── EXPLORE DROPDOWN ── */
.nav-has-dropdown{position:relative;}
/* padding-top bridges the gap so hover isn't lost when moving mouse down */
.nav-dropdown{
  position:absolute;top:100%;left:50%;transform:translateX(-50%);
  padding-top:12px;
  list-style:none;opacity:0;pointer-events:none;
  transition:opacity 0.18s,visibility 0.18s;
  visibility:hidden;
  z-index:200;min-width:210px;
}
.nav-dropdown-inner{
  background:white;border-radius:14px;
  box-shadow:0 12px 40px rgba(10,10,30,0.13);
  padding:6px;border:1px solid var(--border-light);
}
.nav-has-dropdown:hover .nav-dropdown{
  opacity:1;pointer-events:auto;visibility:visible;
}
.nav-dropdown li a{
  display:flex;align-items:center;
  padding:10px 14px;font-size:13px;font-weight:500;
  color:var(--text);text-decoration:none;border-radius:8px;
  transition:background 0.15s,color 0.15s;
}
.nav-dropdown li a:hover{background:var(--forest);color:var(--first-color);}
.nav-dropdown-icon{display:none;}
.nav-right{display:flex;gap:8px;align-items:center;}
.nav-right a{font-size:13px;text-decoration:none;font-weight:500;padding:0 8px;transition:color .2s;color:var(--text);}
.nav-right a:hover{color:var(--first-color);}
.btn-green{background:var(--green-btn);color:white;border:none;padding:9px 20px !important;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;transition:background .2s;letter-spacing:0.1px;}
.btn-green:hover{background:var(--forest-dark);}
.btn-ghost{background:transparent;color:var(--text);border:1.5px solid var(--border);padding:8px 18px;border-radius:8px;font-size:13px;font-weight:500;cursor:pointer;transition:all .2s;}
.btn-ghost:hover{border-color:var(--first-color);color:var(--first-color);background:var(--forest);}



.hero{background:var(--forest);padding:40px 28px 48px;display:flex;gap:40px;align-items:center;padding-top: 110px}
.hero-left{flex:0 0 40%;display:flex;flex-direction:column;}
.eyebrow{font-size:13px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(252,204,204,0.85);margin-bottom:10px;}
.hero-left h1{font-size:80px;font-weight:800;color: var(--first-color);line-height:1.08;letter-spacing:-1.5px;margin:0 0 12px;}
.hero-left h1 em{font-style:italic;color: var(--second-color);}
.hero-left p{font-size:15px;color:var(--text-muted);margin:0 0 22px;line-height:1.65;}
.hero-btns{display:flex;gap:8px;flex-wrap:wrap;}
.btn-g{    padding: 16px 31px;
    font-size: 15px;
    border-radius: 6px;
    background: var(--second-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;}

.btn-o{    background: transparent;
    color: var(--first-color);
    border: 1.5px solid var(--first-color);
    padding: 16px 48px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;}
.ec-grid{flex:1;display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:10px;}
.ec-card{height: 300px; border-radius:16px;overflow:hidden;position:relative;display:flex;flex-direction:column;justify-content:flex-end;background:#2d2b99;}
.video-wrap{position:absolute;inset:0;overflow:hidden;}
.video-wrap video{position:absolute;object-fit:cover;}
.card-0 .video-wrap video{top:0;left:0;width:200%;height:200%;}
.card-1 .video-wrap video{top:0;right:0;width:200%;height:200%;}
.card-2 .video-wrap video{bottom:0;left:0;width:200%;height:200%;}
.card-3 .video-wrap video{bottom:0;right:0;width:200%;height:200%;}
.ec-overlay{position:relative;z-index:2;padding:14px; background: rgb(30 28 120 / 21%);}
.ec-tag{font-size:10px;color:rgba(252,204,204,0.85);margin:0 0 4px;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;}
.ec-title{font-size:20px;font-weight:800;color:#fff;margin:0 0 10px;line-height:1.3;}
.ec-btn{    display: inline-block;
    padding: 9px 18px;
    border: 1.5px solid var(--second-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--second-color);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

.ec-btn:hover{
  background: var(--second-color);
  color: #fff;
  border: 1.5px solid var(--second-color);
}

.trust-strip{background:var(--cream);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light);padding:20px 5%;}
.trust-strip-inner{display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap;}
.trust-item{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-muted);font-weight:500;}
.trust-item svg{width:16px;height:16px;color:var(--sage);}

.features-strip{background:var(--pastel-green);border-bottom:1px solid var(--border-light);padding:32px 5%;}
.features-strip-inner{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:860px;margin:0 auto;text-align:center;}
.feat-item svg{width:28px;height:28px;color:var(--forest);margin-bottom:8px;}
.feat-item h4{font-size:13px;font-weight:600;color:var(--text);margin-bottom:3px;}
.feat-item p{font-size:12px;color:var(--text-muted);line-height:1.5;}

.eyebrow{font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--sage);margin-bottom:10px;}
section{padding:72px 5%;}

.quiz-strip{background:white;padding:64px 5%;}
.quiz-strip-inner{display:grid;grid-template-columns:1fr 0.6fr;gap:80px;align-items:stretch;max-width:1060px;margin:0 auto; align-items: center;}
.quiz-left h2{font-size:clamp(24px,3vw,36px);font-weight:700;color:var(--text);line-height:1.2;margin-bottom:14px;letter-spacing:-0.5px;}
.quiz-left p{font-size:14px;color:var(--text-muted);line-height:1.7;margin-bottom:22px;}
.quiz-checklist{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px;}
.quiz-checklist li{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text-mid);font-weight:500;}
.check-dot{width:18px;height:18px;background:var(--forest);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.check-dot svg{width:9px;height:9px;}
.quiz-img{width:100%;min-height:580px;border-radius:20px;overflow:hidden;position:relative;}
.qimg-bg{width:100%;height:100%;position:absolute;inset:0;background:linear-gradient(155deg,var(--pastel-green),var(--sage-light));display:flex;align-items:center;justify-content:center;}
.qimg-bg svg{width:120px;height:120px;opacity:0.35;}

.about-section{background:var(--pastel-mint);padding:56px 5%;}
.about-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;max-width:1060px;margin:0 auto;}
.about-left h3{font-size:22px;font-weight:700;color:var(--forest);margin-bottom:4px;}
.about-left h4{font-size:13px;color:var(--text-muted);font-weight:400;margin-bottom:18px;}
.about-left p,.about-right p{font-size:14px;color:var(--text-mid);line-height:1.75;margin-bottom:12px;}
.about-left a{font-size:13px;color:var(--forest);font-weight:600;text-decoration:underline;cursor:pointer;}

.marquee-section{background:var(--forest);padding:72px 5%;}
.marquee-inner{display:grid;grid-template-columns:280px 1fr;gap:60px;align-items:center;max-width:1060px;margin:0 auto;}
.marquee-left .eyebrow{color: var(--second-color);}
.marquee-left h2{font-size:28px;font-weight:700;color:var(--first-color);line-height:1.3;margin-bottom:18px;}
.marquee-left p{font-size:13px;color:#000;line-height:1.7;margin-bottom:24px;}
.btn-sage{background:transparent; border:1.5px solid var(--first-color); color: var(--first-color);padding:10px 20px;border-radius:50px;font-size:13px;font-weight:500;cursor:pointer;transition:all .2s;}
.btn-sage:hover{background:rgba(252,204,204,0.1);border-color:rgba(252,204,204,0.8);}
.marquee-right{display:flex;flex-direction:column;gap:2px;}
.marquee-word{font-size:clamp(28px,3.8vw,48px);font-weight:700;color: var(--black);line-height:1.15;opacity:0.12;transition:opacity .4s;}
.marquee-word.active{opacity:1;}

.pg{background:var(--second-color);color:#fff;}
.pg h1{color: #000}
.section{display:grid;grid-template-columns:1fr 1fr;min-height:560px;}
.section-l{padding:72px 48px;display:flex;flex-direction:column;justify-content:center;}
.tag{display:inline-flex;align-items:center;gap:8px;background:rgba(236, 235, 249, 0.12);border:1px solid rgba(5, 5, 5, 0.3);color:#000000;font-size:11px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;padding:6px 14px;border-radius:50px;margin-bottom:32px;width:fit-content;}
.tag-dot{width:5px;height:5px;border-radius:50%;background:#9B99FF;}
h1{font-size:46px;font-weight:800;line-height:1.08;letter-spacing:-0.03em;color:#fff;margin-bottom:22px;}
h1 em{font-style:normal;color:#FFF;}
.section-sub{font-size:15px;color:rgba(0, 0, 0, 0.641);line-height:1.8;max-width:380px;margin-bottom:44px;font-weight:400;}
.cta-row{display:flex;align-items:center;gap:24px;}
.cta-primary{background:#000;color:#ffffff;font-size:14px;font-weight:700;padding:15px 30px;border-radius:50px;border:none;cursor:pointer;letter-spacing:-0.01em;}
.cta-ghost{font-size:14px;color:rgba(0, 0, 0, 0.736);font-weight:500;cursor:pointer;display:flex;align-items:center;gap:6px;}
.section-stats{display:flex;gap:36px;margin-top:56px;padding-top:40px;border-top:1px solid rgba(255,255,255,0.07);}
.stat-val{font-size:26px;font-weight:800;color:#000000;letter-spacing:-0.03em;}
.stat-label{font-size:12px;color:rgba(0, 0, 0, 0.656);margin-top:3px;font-weight:400;}
.section-r{position:relative;overflow:hidden;background:#0a0a1a;}
.section-r img{width:100%;height:100%;object-fit:cover;opacity:0.5;display:block;}
.section-r-tint{position:absolute;inset:0;background:linear-gradient(to right, #f8dcdc42 0%, #ffffff00 40%);}
.rx-card{position:absolute;bottom:44px;right:32px;background:rgba(10,10,30,0.92);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:18px 20px;min-width:200px;backdrop-filter:blur(12px);}
.rx-label{font-size:10px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-bottom:8px;}
.rx-title{font-size:13px;font-weight:600;color:#fff;margin-bottom:4px;}
.rx-sub{font-size:12px;color:rgba(255,255,255,0.35);}
.rx-bar{height:3px;background:rgba(255,255,255,0.08);border-radius:2px;margin-top:12px;}
.rx-bar-fill{height:3px;width:65%;background:#FCCCCC;border-radius:2px;}
.steps{padding:0 48px 72px;background: var(--second-color);}
.steps-label{font-size:11px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:rgba(0, 0, 0, 0.25); padding: 20px 48px 12px;}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;background:transparent;padding: 0 48px 72px; margin-top: 30px;}
.step{background: rgba(255,255,255,0.22);padding:36px 32px;border-radius:18px;}
/* .step:hover{background: #eebebe;} */
.step-num{font-size:11px;font-weight:700;color:rgba(0, 0, 0, 0.15);letter-spacing:0.1em;margin-bottom:24px;}
.step-icon{width:42px;height:42px;border-radius:12px;background:rgba(0, 0, 0, 0.1);border:1px solid rgba(99,95,255,0.25);display:flex;align-items:center;justify-content:center;color:#9B99FF;font-size:20px;margin-bottom:20px;}
.step-title{font-size:15px;font-weight:700;color:#000000;margin-bottom:10px;line-height:1.3;letter-spacing:-0.01em;}
.step-body{font-size:13px;color:rgba(0, 0, 0, 1);line-height:1.75;}

.nurse-section{background:var(--white);padding:56px 5%;}
.nurse-inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;max-width:1060px;margin:0 auto;}
.nurse-text h2{font-size:clamp(22px,3vw,34px);font-weight:700;color:#000;line-height:1.25;margin-bottom:14px;letter-spacing:-0.3px;}
.nurse-text p{font-size:14px;color:rgba(0, 0, 0, 0.68);line-height:1.7;margin-bottom:20px;}
.nurse-img-box{border-radius:18px;height:340px;background:linear-gradient(155deg,#4a47cc,#2d2b99);position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.chat-bubble{position:absolute;top:18px;right:-12px;background:white;border-radius:14px;padding:12px 15px;max-width:185px;box-shadow:0 8px 28px rgba(0,0,0,0.14);}
.chat-bubble p{font-size:11px;color:var(--text);line-height:1.45;}
.chat-bubble span{font-size:10px;color:var(--text-muted);display:block;margin-top:5px;}

.pricing-section{background:var(--white);padding:72px 5%;}
.pricing-inner{max-width:1060px;margin:0 auto;}
.section-header{margin-bottom:48px;}
.section-header h2{font-size:clamp(26px,3.5vw,42px);font-weight:700;color:var(--text);line-height:1.2;letter-spacing:-0.6px;margin-top:6px;}
.section-header p{font-size:14px;color:var(--text-muted);margin-top:10px;max-width:460px;line-height:1.6;}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.price-card{border:1px solid var(--border-light);border-radius:16px;padding:28px 24px;background:white;transition:box-shadow .25s,transform .25s;}
.price-card:hover{box-shadow:0 10px 32px rgba(99,95,255,0.1);transform:translateY(-3px);}
.price-card.featured{border-color:var(--first-color);background:var(--first-color);}
.price-lbl{font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--text-muted);margin-bottom:6px;}
.price-card.featured .price-lbl{color:rgba(255,255,255,0.55);}
.price-amt{font-size:46px;font-weight:700;color:var(--text);line-height:1;margin-bottom:4px;}
.price-card.featured .price-amt{color:white;}
.price-name{font-size:12px;color:var(--text-muted);margin-bottom:16px;}
.price-card.featured .price-name{color:rgba(255,255,255,0.55);}
.price-desc{font-size:13px;color:var(--text-muted);line-height:1.6;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid var(--border-light);}
.price-card.featured .price-desc{color:rgba(255,255,255,0.68);border-bottom-color:rgba(255,255,255,0.12);}
.incl-lbl{font-size:10px;font-weight:600;letter-spacing:.8px;text-transform:uppercase;color:var(--text-muted);margin-bottom:12px;}
.price-card.featured .incl-lbl{color:rgba(255,255,255,0.45);}
.pfeatures{list-style:none;display:flex;flex-direction:column;gap:9px;margin-bottom:24px;}
.pfeatures li{display:flex;align-items:flex-start;gap:8px;font-size:13px;color:var(--text-mid);line-height:1.45;}
.price-card.featured .pfeatures li{color:rgba(255,255,255,0.85);}
.pfeatures li svg{flex-shrink:0;margin-top:2px;width:13px;height:13px;color:var(--sage);}
.price-card.featured .pfeatures li svg{color:rgba(255,255,255,0.6);}
.price-card .btn-green,.price-card .btn-ghost{width:100%;padding:12px;font-size:13px;border-radius:50px;text-align:center;}
.featured-cta{width:100%;padding:12px;font-size:13px;border-radius:50px;background: var(--second-color);color:#FFF;border:none;font-weight:700;cursor:pointer;transition:background .2s;}
.featured-cta:hover{background:#f5b5b5;}

.stats-section{background:var(--forest);padding:60px 5%;text-align:center;}
.stats-eyebrow{font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color: var(--first-color);margin-bottom:36px;}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:700px;margin:0 auto 32px;}
.stat-item strong{display:block;font-size:48px;font-weight:700;color:#000;line-height:1;margin-bottom:8px;}
.stat-item p{font-size:13px;color: #000;line-height:1.5;}

.products-section{background:var(--pastel-peach);padding:72px 5%;}
.products-inner{max-width:1060px;margin:0 auto;}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;}
.product-card{background:white;border-radius:18px;overflow:hidden;border:1px solid var(--border-light);transition:all .28s;cursor:pointer;}
.product-card:hover{transform:translateY(-6px);box-shadow:0 16px 44px rgba(99,95,255,0.12);}
.product-img{height:200px;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.pimg-1{background:linear-gradient(155deg,#EAE9FF 0%,#c4c3ff 40%,#9B99FF 70%,#7a78ee 100%);}
.pimg-2{background:linear-gradient(155deg,#fdf0f0 0%,#FCCCCC 40%,#f5b5b5 70%,#F08080 100%);}
.pimg-3{background:linear-gradient(155deg,#EAE9FF 0%,#b0aeff 40%,#8886ee 70%,#635FFF 100%);}
.product-img svg{width:72px;height:72px;opacity:0.4;}
.product-tag-pill{position:absolute;top:14px;left:14px;background:rgba(255,255,255,0.9);color:var(--forest);font-size:10px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:5px 12px;border-radius:50px;backdrop-filter:blur(4px);}
.product-body{padding:22px 20px 18px;}
.product-body h3{font-size:20px;font-weight:700;color:var(--text);margin-bottom:7px;line-height:1.2;letter-spacing:-0.2px;}
.product-body p{font-size:13px;color:var(--text-muted);line-height:1.65;margin-bottom:16px;}
.plist{list-style:none;display:flex;flex-direction:column;gap:7px;}
.plist li{display:flex;align-items:flex-start;gap:8px;font-size:12px;color:var(--text-mid);line-height:1.35;}
.plist li svg{flex-shrink:0;margin-top:2px;width:12px;height:12px;color:var(--sage);}
.product-footer{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;background:var(--cream);border-top:1px solid var(--border-light);}
.product-price-tag{font-size:11px;color:var(--text-muted);}
.product-price-tag strong{display:block;font-size:18px;color:var(--text);font-weight:700;line-height:1.1;}
.product-btn{background:var(--green-btn);color:white;border:none;padding:8px 16px;border-radius:50px;font-size:12px;font-weight:600;cursor:pointer;transition:background .2s;white-space:nowrap;}
.product-btn:hover{background:var(--forest-dark);}

.why-section{background:white;padding:72px 5%;}
.why-inner{max-width:1060px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;}
.why-left h2{font-size:clamp(24px,3vw,38px);font-weight:700;color:var(--text);line-height:1.2;letter-spacing:-0.5px;margin-top:6px;}
.why-cards{display:flex;flex-direction:column;gap:22px;}
.why-card{display:grid;grid-template-columns:60px 1fr;gap:14px;align-items:start;}
.wimg{width:60px;height:60px;border-radius:12px;display:flex;align-items:center;justify-content:center;}
.wimg-1{background:var(--pastel-green);}
.wimg-2{background:var(--pastel-pink);}
.wimg-3{background:var(--pastel-mint);}
.wimg svg{width:26px;height:26px;color:var(--forest);}
.why-card-text h4{font-size:14px;font-weight:600;color:var(--text);margin-bottom:4px;}
.why-card-text p{font-size:13px;color:var(--text-muted);line-height:1.6;}

.compare-section{background:var(--second-color);padding:72px 5%;}
.compare-inner{max-width:940px;margin:0 auto;}
.compare-inner h2{font-size:clamp(22px,3vw,34px);font-weight:700;color:#000;line-height:1.2;margin-bottom:36px;letter-spacing:-0.3px;}
.ctable{width:100%;border-collapse:collapse;}
.ctable th{padding:12px 20px;font-size:11px;font-weight:600;letter-spacing:.8px;text-transform:uppercase;text-align:left;color:#4a4a5a;}
.ctable th.col-us{color:#635FFF;}
.ctable td{padding:13px 20px;font-size:13px;border-top:1px solid rgba(0,0,0,0.06);vertical-align:middle;}
.ctable td.fcol{color:#000000;font-weight:500;}
.ctable td.ucol{background:rgba(99,95,255,0.08);}
.ctable td.tcol{color:rgba(0,0,0,0.35);}
.ck{color:#635FFF;font-size:17px;}
.cx{color:rgba(0,0,0,0.3);font-size:17px;}

.testimonials-section{background:var(--pastel-lavender);padding:72px 5%;}
.test-inner{max-width:1060px;margin:0 auto;}
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:44px;}
.test-card{background:white;border-radius:16px;padding:26px 22px;border:1px solid var(--border-light);transition:box-shadow .25s;}
.test-card:hover{box-shadow:0 8px 28px rgba(99,95,255,0.08);}
.stars{color:#F08080;font-size:13px;letter-spacing:2px;margin-bottom:12px;}
.test-card blockquote{font-size:13px;color:var(--text-mid);line-height:1.72;margin-bottom:18px;font-style:italic;}
.test-author{display:flex;align-items:center;gap:10px;}
.aav{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:white;flex-shrink:0;}
.av-a{background:var(--forest);}
.av-b{background:#4a47cc;}
.av-c{background:#F08080;}
.test-author strong{display:block;font-size:13px;font-weight:600;color:var(--text);}
.test-author span{font-size:11px;color:var(--text-muted);}
.test-cta{text-align:center;margin-top:44px;}

footer{background:#000000;padding:56px 5% 0;}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;gap:36px;padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,0.07);}
.footer-logo{font-size:26px;font-weight:700;color:white;display:block;margin-bottom:12px;}
.footer-brand p{font-size:12px;color:rgba(255,255,255,0.38);line-height:1.6;max-width:200px;margin-bottom:18px;}
.social-links{display:flex;gap:8px;}
.social-link{width:32px;height:32px;background:rgba(255,255,255,0.07);border-radius:8px;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .2s;}
.social-link:hover{background:rgba(255,255,255,0.14);}
.social-link svg{width:14px;height:14px;color:rgba(255,255,255,0.55);}
.footer-col h5{font-size:10px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,0.28);margin-bottom:14px;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px;}
.footer-col ul a{text-decoration:none;font-size:13px;color:rgba(255, 255, 255, 0.545);transition:color .2s;}
.footer-col ul a:hover{color:white;}
.footer-bottom{padding:18px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;}
.footer-bottom p,.footer-bottom a{font-size:11px;color:rgba(255,255,255,0.2);text-decoration:none;}
.footer-bottom a:hover{color:rgba(255,255,255,0.45);}

@keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}
.hero-intro>*{animation:fadeUp .65s ease both;}
.hero-intro>*:nth-child(1){animation-delay:.05s;}
.hero-intro>*:nth-child(2){animation-delay:.18s;}
.hero-intro>*:nth-child(3){animation-delay:.3s;}
.hero-intro>*:nth-child(4){animation-delay:.42s;}
.hero-card{animation:fadeUp .7s ease both;}
.hero-card:nth-child(1){animation-delay:.5s;}
.hero-card:nth-child(2){animation-delay:.62s;}
.hero-card:nth-child(3){animation-delay:.74s;}

@media(max-width:860px){
  .ec-grid{grid-template-columns:1fr 1fr;}
  .quiz-strip-inner,.about-inner,.nurse-inner,.why-inner{grid-template-columns:1fr;}
  .pricing-grid,.products-grid,.test-grid,.steps-grid{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:repeat(3,1fr);}
  .marquee-inner{grid-template-columns:1fr;}
  .features-strip-inner{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
  nav .nav-links{display:none;}
  .quiz-img,.nurse-img-box{display:none;}
  .section{grid-template-columns:1fr;}
  .section-r{display:none;}
}


.head{margin-bottom:52px;}
.eyebrow{font-size:11px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:#9B99FF;margin-bottom:14px;}
.title{font-size:44px;font-weight:800;color:#fff;letter-spacing:-0.03em;line-height:1.08;}
.title span{color:#9B99FF;}
.subtitle{font-size:15px;color:rgba(255,255,255,0.35);margin-top:14px;font-weight:400;line-height:1.7;max-width:480px;}

.table-wrap{border-radius:20px;overflow:hidden;border:1px solid rgba(255,255,255,0.07);}

.t-header{display:grid;grid-template-columns:1fr 220px 220px;background:rgba(255,255,255,0.03);}
.th{padding:18px 28px;font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.3);}
.th.polln-col{background:rgba(99,95,255,0.1);border-left:1px solid rgba(99,95,255,0.25);border-right:1px solid rgba(99,95,255,0.25);color:#9B99FF;display:flex;align-items:center;gap:8px;}
.th.polln-col .logo-dot{width:7px;height:7px;border-radius:50%;background:#9B99FF;}

.t-row{display:grid;grid-template-columns:1fr 220px 220px;border-top:1px solid rgba(255,255,255,0.06);}
.t-row:hover{background:rgba(255,255,255,0.02);}
.td{padding:20px 28px;display:flex;align-items:center;}
.td.feature-col{font-size:14px;color:rgba(255,255,255,0.7);font-weight:500;}
.td.polln-col{background:rgba(99,95,255,0.06);border-left:1px solid rgba(99,95,255,0.15);border-right:1px solid rgba(99,95,255,0.15);justify-content:center;}
.td.other-col{justify-content:center;}

.check{width:28px;height:28px;border-radius:50%;background:rgba(99,95,255,0.15);border:1px solid rgba(99,95,255,0.3);display:flex;align-items:center;justify-content:center;color:#9B99FF;font-size:14px;}
.cross{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.2);font-size:14px;}
.check-muted{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.35);font-size:14px;}

.t-footer{display:grid;grid-template-columns:1fr 220px 220px;border-top:1px solid rgba(255,255,255,0.06);background:rgba(255,255,255,0.02);}
.tf{padding:24px 28px;display:flex;align-items:center;}
.tf.polln-col{background:rgba(99,95,255,0.08);border-left:1px solid rgba(99,95,255,0.15);border-right:1px solid rgba(99,95,255,0.15);justify-content:center;}
.cta-btn{background:#635FFF;color:#ffffff;font-size:13px;font-weight:700;padding:12px 24px;border-radius:50px;border:none;cursor:pointer;letter-spacing:-0.01em;white-space:nowrap;}
.tf-label{font-size:12px;color:rgba(255,255,255,0.2);font-weight:500;}


.feedback-section { background: #fff; padding: 72px 5%; }
.feedback-inner { max-width: 1060px; margin: 0 auto; }

.feedback-header { margin-bottom: 48px; }
.feedback-header .eyebrow { color: #9B99FF; }
.feedback-header h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #000; line-height: 1.1; letter-spacing: -0.6px; margin-top: 6px; }
.feedback-header h2 em { font-style: italic; color: var(--forest); }
.feedback-header p { font-size: 14px; color: rgba(0, 0, 0, 0.45); margin-top: 10px; max-width: 380px; line-height: 1.6; }

.feedback-rating-row { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
.feedback-rating-row .stars { color: #F08080; font-size: 13px; letter-spacing: 2px; }
.feedback-rating-num { font-size: 13px; font-weight: 700; color: #000; }
.feedback-rating-label { font-size: 12px; color: rgba(0, 0, 0, 0.35); }

.feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }

.feedback-card { background: rgb(0 0 0 / 3%); border: 0.5px solid rgba(0, 0, 0, 0.1); border-radius: 20px; padding: 28px 24px; display: flex; flex-direction: column; gap: 20px; transition: background .25s, border-color .25s; }
.feedback-card:hover { background: rgba(0, 0, 0, 0.08); border-color: rgba(0, 0, 0, 0.25); }

.feedback-card-top { display: flex; align-items: center; justify-content: space-between; }
.feedback-verified { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; background: rgba(0, 0, 0, 0.12); color: #000000; border: 0.5px solid rgba(99,95,255,0.3); padding: 4px 10px; border-radius: 50px; }

.feedback-quote { font-size: 14px; color: rgba(0, 0, 0, 0.75); line-height: 1.75; font-style: italic; flex: 1; }
.feedback-quote::before { content: '\201C'; }
.feedback-quote::after { content: '\201D'; }

.feedback-divider { height: 0.5px; background: rgba(255,255,255,0.08); }

.feedback-author { display: flex; align-items: center; gap: 12px; }
.feedback-author strong { display: block; font-size: 13px; font-weight: 700; color: #000000; margin-bottom: 2px; }
.feedback-author span { font-size: 11px; color: rgba(0, 0, 0, 0.38); }
.feedback-tag-pill { display: inline-block; font-size: 10px; font-weight: 600; background: rgba(0, 0, 0, 0.12); color: #000000; border-radius: 50px; padding: 3px 10px; margin-top: 4px; }

.feedback-cta { display: flex; justify-content: center; gap: 12px; }
.feedback-cta .btn-green { padding: 14px 32px; font-size: 14px; border-radius: 50px; }
.feedback-cta .btn-ghost { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.15); padding: 13px 24px; border-radius: 50px; font-size: 14px; font-weight: 500; cursor: pointer; }