:root {
  --ink: #07111f;
  --navy: #0b1f3a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #38bdf8;
  --gold: #f59e0b;
  --green: #10b981;
  --text: #26364a;
  --muted: #64748b;
  --soft: #f5f8fc;
  --white: #ffffff;
  --border: #dbe4ef;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

body::selection { background: var(--blue); color: var(--white); }
.container { width: min(1160px, 92%); margin: 0 auto; }
.narrow { width: min(900px, 92%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; gap: .75rem; align-items: center; color: var(--ink); text-decoration: none; font-weight: 900; letter-spacing: -.03em; font-size: 1.18rem; }
.logo-mark { width: 42px; height: 42px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 12px 30px rgba(37,99,235,.28); }
.logo-accent { color: var(--blue); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.55rem; margin: 0; padding: 0; }
.nav-links a { color: #334155; text-decoration: none; font-weight: 800; font-size: .94rem; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--ink); color: var(--white) !important; padding: .72rem 1.1rem; border-radius: 999px; box-shadow: 0 12px 30px rgba(7,17,31,.18); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 7rem 0 5rem; background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 46%, #ffffff 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-bg-orb { position: absolute; border-radius: 999px; filter: blur(10px); opacity: .6; }
.orb-one { width: 320px; height: 320px; background: rgba(56,189,248,.24); top: -90px; right: 12%; }
.orb-two { width: 260px; height: 260px; background: rgba(37,99,235,.17); bottom: 5%; left: -70px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 3rem; align-items: center; }
.eyebrow { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin: 0 0 .8rem; }
.light-eyebrow { color: var(--cyan); }
h1, h2, h3 { color: var(--ink); line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.6rem); margin: 0 0 1.25rem; max-width: 860px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); margin: 0 0 1rem; }
h3 { font-size: 1.28rem; margin: 0 0 .65rem; }
.hero-text, .section-heading p, .muted-light { font-size: 1.08rem; color: var(--muted); max-width: 720px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 2.2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px; padding: .85rem 1.25rem; font-weight: 900; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); box-shadow: 0 16px 36px rgba(37,99,235,.28); }
.btn.ghost { color: var(--ink); background: rgba(255,255,255,.72); border-color: rgba(148,163,184,.35); }
.btn.outline { color: var(--blue); border-color: rgba(37,99,235,.35); background: var(--white); }
.btn.full { width: 100%; }

.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; max-width: 650px; }
.proof-row div { background: rgba(255,255,255,.78); border: 1px solid rgba(219,228,239,.95); border-radius: 20px; padding: 1rem; box-shadow: 0 12px 34px rgba(15,23,42,.06); }
.proof-row strong { display: block; color: var(--ink); font-size: 1.45rem; letter-spacing: -.04em; }
.proof-row span { display: block; color: var(--muted); font-size: .88rem; font-weight: 700; }

.hero-panel { background: rgba(255,255,255,.88); border: 1px solid rgba(219,228,239,.95); border-radius: 34px; box-shadow: var(--shadow); padding: 1.55rem; backdrop-filter: blur(18px); }
.panel-top { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-weight: 800; }
.panel-top p { margin: 0; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(16,185,129,.12); }
.progress-card { background: linear-gradient(135deg, #0b1f3a, #132f56); color: white; padding: 1.1rem; border-radius: 22px; margin: 1.25rem 0; }
.progress-head { display: flex; justify-content: space-between; gap: 1rem; font-weight: 800; font-size: .92rem; }
.progress-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.16); margin-top: .85rem; overflow: hidden; }
.progress-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--green)); }
.focus-list { display: grid; gap: .75rem; }
.focus-list div { display: flex; gap: .85rem; align-items: center; padding: .85rem; border: 1px solid var(--border); border-radius: 18px; background: #fbfdff; }
.focus-list span { color: var(--blue); font-weight: 900; }
.focus-list p { margin: 0; font-weight: 700; color: #334155; }
.mini-link { display: inline-block; margin-top: 1.15rem; color: var(--blue); font-weight: 900; text-decoration: none; }

.trust-strip { background: var(--ink); color: var(--white); padding: 1.05rem 0; }
.trust-content { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; font-weight: 900; font-size: .92rem; }
.trust-content span::before { content: "✓"; color: var(--cyan); margin-right: .45rem; }

.section { padding: 5.8rem 0; }
.section-heading { margin-bottom: 2.6rem; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.center p { margin-left: auto; margin-right: auto; }
.cards { display: grid; gap: 1.35rem; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.service-card, .price-card, .testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.55rem; box-shadow: 0 14px 40px rgba(15,23,42,.07); position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover, .price-card:hover, .testimonial:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(15,23,42,.12); }
.service-card.featured, .price-card.premium { border: 2px solid rgba(37,99,235,.55); background: linear-gradient(180deg, #ffffff, #f7fbff); }
.icon { width: 52px; height: 52px; display: grid; place-items: center; background: #eef6ff; border-radius: 17px; font-size: 1.45rem; margin-bottom: 1rem; }
.service-card ul { padding-left: 1.15rem; margin: 1rem 0 0; color: var(--muted); font-weight: 700; }
.badge { display: inline-flex; align-items: center; background: linear-gradient(135deg, var(--gold), #f97316); color: var(--white); padding: .38rem .72rem; border-radius: 999px; font-size: .78rem; font-weight: 900; margin-bottom: .9rem; }

.dark-section { background: radial-gradient(circle at top right, rgba(56,189,248,.2), transparent 30%), linear-gradient(135deg, #07111f, #0b1f3a); color: var(--white); }
.dark-section h2, .dark-section h3 { color: var(--white); }
.muted-light { color: #c7d2fe; }
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: start; }
.steps { display: grid; gap: 1rem; }
.step { display: flex; gap: 1rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 1.15rem; backdrop-filter: blur(12px); }
.step span { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(56,189,248,.16); color: var(--cyan); font-weight: 900; flex: 0 0 auto; }
.step p { margin: 0; color: #cbd5e1; }

.price { font-size: 3rem; line-height: 1; font-weight: 900; color: var(--ink); letter-spacing: -.06em; margin: .65rem 0 1rem; }
.soft-section { background: var(--soft); }
.testimonial p { font-size: 1.12rem; color: #334155; margin-top: 0; }
.testimonial p::before { content: "“"; color: var(--blue); font-size: 2.5rem; line-height: 0; vertical-align: -.35em; margin-right: .12rem; }
.testimonial strong { color: var(--ink); }

.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left; background: var(--white); border: 1px solid var(--border); padding: 1.15rem 1.25rem; font-weight: 900; color: var(--ink); border-radius: 18px; cursor: pointer; margin-top: .8rem; box-shadow: 0 10px 28px rgba(15,23,42,.05); }
.faq-question span { color: var(--blue); font-size: 1.25rem; }
.faq-answer { display: none; padding: 1rem 1.25rem 0; color: var(--muted); }
.faq-answer.open { display: block; }

.contact-section { background: linear-gradient(135deg, #08111f, #0b1f3a 60%, #12356a); color: var(--white); }
.contact-section h2 { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { margin-top: 1.5rem; padding: 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.06); }
.contact-info p { margin: .35rem 0; color: #e2e8f0; }
.contact-form { background: var(--white); color: var(--text); padding: 1.45rem; border-radius: 30px; display: grid; gap: 1rem; box-shadow: var(--shadow); }
.contact-form label { font-weight: 900; color: var(--ink); }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .4rem; border: 1px solid var(--border); border-radius: 16px; padding: .95rem 1rem; font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.footer { background: #050b14; color: #cbd5e1; padding: 1.45rem 0; font-size: .92rem; }
.footer-content { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; background: rgba(255,255,255,.98); flex-direction: column; align-items: stretch; padding: 1rem 2rem 2rem; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.active { display: flex; }
  .hero { padding: 5rem 0 3.5rem; }
  .hero-grid, .split-grid, .contact-grid, .cards.three, .cards.two { grid-template-columns: 1fr; }
  .proof-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.55rem; }
  .hero-buttons .btn { width: 100%; }
  .service-card, .price-card, .testimonial, .hero-panel, .contact-form { border-radius: 22px; }
}

/* Professional update: credential section, icon-free service cards, and expanded pricing */
.credential-section { background: linear-gradient(180deg, #ffffff, #f5f8fc); padding-top: 4.8rem; }
.credential-card { background: var(--white); border: 1px solid var(--border); border-radius: 34px; box-shadow: var(--shadow); padding: 2rem; display: grid; grid-template-columns: 1fr .95fr; gap: 2rem; align-items: center; }
.credential-card p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; max-width: 680px; }
.credential-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.credential-stats div { border: 1px solid var(--border); border-radius: 22px; padding: 1rem; background: #fbfdff; text-align: center; }
.credential-stats strong { display: block; color: var(--ink); font-size: 1.45rem; letter-spacing: -.04em; }
.credential-stats span { display: block; color: var(--muted); font-size: .88rem; font-weight: 800; }
.service-card { padding-top: 1.85rem; }
.service-card h3::before { content: ""; display: block; width: 42px; height: 4px; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--cyan)); margin-bottom: 1rem; }
.pricing-cards.five { grid-template-columns: repeat(5, 1fr); }
.pricing-cards.five .price-card { padding: 1.35rem; }
.pricing-cards.five .price { font-size: 2.45rem; }
@media (max-width: 1100px) { .pricing-cards.five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .credential-card, .credential-stats { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .pricing-cards.five { grid-template-columns: 1fr; } }

/* RxPass Academy pricing update */
.pricing-cards.seven { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.pricing-cards.seven .price-card { padding: 1.35rem; display: flex; flex-direction: column; }
.pricing-cards.seven .price { font-size: 2.35rem; margin-bottom: .35rem; }
.session-note { color: var(--blue); font-weight: 900; margin: 0 0 .85rem; font-size: .92rem; }
.price-card .btn { margin-top: auto; }
@media (max-width: 1180px) { .pricing-cards.seven { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-cards.seven { grid-template-columns: 1fr; } }
