/* Neuro Serge Official DTC Brand Store Stylesheet - v3 */
:root {
  --color-primary: #005598;
  --color-primary-dark: #003c6c;
  --color-primary-light: #2fb3c5;
  --color-accent-cyan: #2fb3c5;
  --color-accent-orange: #ff5e14;
  --color-accent-gold: #ff9800;
  --color-accent-amber: #f59e0b;
  --color-dark-bg: #081a2e;
  --color-dark-card: #0e223d;
  --color-dark-border: #1a385c;
  --color-light-bg: #f2f7fc;
  --color-light-surface: #ffffff;
  --color-text-main: #1c2733;
  --color-text-muted: #536479;
  --color-text-light: #f8fafc;
  --color-success: #10b981;
  --color-success-dark: #059669;
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 18px rgba(0,85,152,0.08);
  --shadow-lg: 0 14px 32px rgba(0,85,152,0.12);
  --shadow-glow: 0 0 28px rgba(47,179,197,0.45);
  --shadow-orange-glow: 0 10px 30px rgba(255,94,20,0.45);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--color-text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.onl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.onl-container-narrow {
  max-width: 960px;
}

/* TOP ANNOUNCEMENT BAR */
.onl-topbar {
  background: linear-gradient(90deg, #061527 0%, #003c6c 50%, #061527 100%);
  color: #e2f1fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(47,179,197,0.3);
  text-transform: uppercase;
}

/* HEADER & NAVIGATION */
.onl-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.onl-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.onl-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.onl-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #005598 0%, #0e223d 100%);
  border: 2px solid #2fb3c5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0,85,152,0.25);
}

.onl-logo-text {
  display: flex;
  flex-direction: column;
}

.onl-logo-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #005598;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.onl-logo-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff5e14;
  letter-spacing: 1px;
}

.onl-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.onl-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
}

.onl-nav-links a:hover {
  color: #005598;
}

.onl-nav-btn {
  background: linear-gradient(135deg, #ff5e14 0%, #ff8800 100%);
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(255,94,20,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.onl-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,94,20,0.5);
}

.onl-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #005598;
  cursor: pointer;
}

/* HERO SECTION */
.onl-hero {
  background: radial-gradient(circle at 75% 20%, #153a61 0%, #081a2e 70%, #05101d 100%);
  color: #ffffff;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.onl-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, #ffffff, transparent);
  opacity: 0.1;
}

.onl-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.onl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,179,197,0.15);
  border: 1px solid rgba(47,179,197,0.4);
  color: #5eead4;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.onl-hero-tag span {
  color: #ff9800;
}

.onl-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.onl-hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.05);
  padding: 14px 18px;
  border-left: 3px solid #2fb3c5;
  border-radius: 0 8px 8px 0;
}

.onl-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.onl-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #f1f5f9;
}

.onl-badge-item i, .onl-badge-item .onl-icon-tick {
  color: #2fb3c5;
  font-weight: 900;
}

.onl-hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.onl-hero-image-wrap img {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  max-height: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.onl-hero-stock {
  margin-top: 14px;
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.onl-stock-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 0.6; transform: scale(0.9); }
}

/* GIANT CTA BUTTONS */
.onl-btn-giant {
  display: block;
  background: linear-gradient(135deg, #ff5e14 0%, #ff8800 100%);
  color: #ffffff;
  text-align: center;
  padding: 18px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-orange-glow);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: pulse-subtle 2.5s infinite;
}

.onl-btn-giant:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 36px rgba(255,94,20,0.6);
  background: linear-gradient(135deg, #ff6b26 0%, #ffa11c 100%);
}

.onl-btn-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 4px;
  opacity: 0.95;
}

@keyframes pulse-subtle {
  0% { box-shadow: 0 0 0 0 rgba(255,94,20,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255,94,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,94,20,0); }
}

/* ENTITY FACTSHEET / KEY FACTS */
.onl-facts-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 28px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.onl-facts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.onl-facts-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #005598;
}

.onl-facts-badge {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.onl-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.onl-fact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: 8px;
}

.onl-fact-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}

.onl-fact-value {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

/* BATCH AUTHENTICITY VERIFIER */
.onl-verifier-section {
  background: linear-gradient(180deg, #f0f6fc 0%, #ffffff 100%);
  padding: 45px 0;
  border-bottom: 1px solid #e2e8f0;
}

.onl-verifier-card {
  background: #ffffff;
  border: 2px solid #005598;
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.onl-verifier-info h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #005598;
  margin-bottom: 4px;
}

.onl-verifier-info p {
  font-size: 14px;
  color: #64748b;
}

.onl-verifier-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 420px;
}

.onl-verifier-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #0f172a;
  outline: none;
}

.onl-verifier-btn {
  background: #005598;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.onl-verifier-btn:hover {
  background: #003c6c;
}

.onl-verifier-result {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #059669;
  display: none;
}

/* SECTION COMMONS */
.onl-section {
  padding: 65px 0;
}

.onl-section-alt {
  background-color: #f8fafc;
}

.onl-sec-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.onl-sec-tag {
  color: #ff5e14;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.onl-sec-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #005598;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.onl-sec-header p {
  font-size: 16px;
  color: #475569;
}

/* DOCTOR SECTION */
.onl-doctor-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 36px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.onl-doctor-img {
  width: 100%;
  max-width: 240px;
  border-radius: 50%;
  border: 4px solid #005598;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.onl-doctor-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #005598;
  margin-bottom: 4px;
}

.onl-doctor-title {
  font-size: 15px;
  font-weight: 700;
  color: #ff5e14;
  margin-bottom: 16px;
}

.onl-doctor-quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 14px;
}

/* INGREDIENTS GRID */
.onl-ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.onl-ing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.onl-ing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #2fb3c5;
}

.onl-ing-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.onl-ing-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #005598;
  margin-bottom: 10px;
}

.onl-ing-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}

/* PRICING & PACKAGES TABLE (CONVERSION ENGINE) */
.onl-pricing-wrap {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 10%, #0d2847 0%, #081a2e 100%);
  color: #ffffff;
}

.onl-pricing-wrap .onl-sec-header h2 {
  color: #ffffff;
}

.onl-pricing-wrap .onl-sec-header p {
  color: #94a3b8;
}

.onl-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.onl-price-card {
  background: #ffffff;
  color: #1e293b;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.onl-price-card.onl-card-popular {
  background: #ffffff;
  border: 3px solid #ff5e14;
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(255,94,20,0.35);
  z-index: 2;
}

.onl-ribbon-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff5e14 0%, #ff8800 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255,94,20,0.4);
}

.onl-price-head h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #005598;
  margin-bottom: 4px;
}

.onl-price-supply {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 14px;
}

.onl-price-img {
  width: auto;
  max-width: 100%;
  max-height: 190px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 16px;
}

.onl-price-main {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: #005598;
  line-height: 1;
}

.onl-price-main span {
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
}

.onl-price-savings {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  margin: 10px 0 16px;
}

.onl-price-features {
  list-style: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  text-align: left;
  margin-bottom: 22px;
  padding: 0 10px;
}

.onl-price-features li {
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.onl-price-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 900;
}

.onl-price-total {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-top: 12px;
}

.onl-price-total del {
  color: #94a3b8;
  margin-right: 4px;
}

.onl-price-total strong {
  color: #0f172a;
  font-size: 16px;
}

.onl-cards-accepted {
  margin: 14px auto 0;
  max-width: 220px;
}

/* GUARANTEE STRIP */
.onl-guarantee-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 50px;
  box-shadow: var(--shadow-lg);
  color: #1e293b;
}

.onl-guarantee-img {
  width: 160px;
  margin: 0 auto;
}

.onl-guarantee-text h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #005598;
  margin-bottom: 8px;
}

.onl-guarantee-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* RESELLER SHIELDING & COMPARISON SECTION */
.onl-table-wrap {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.onl-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.onl-compare-table th {
  background: #005598;
  color: #ffffff;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.onl-compare-table th.onl-th-highlight {
  background: #ff5e14;
}

.onl-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14.5px;
  color: #334155;
}

.onl-compare-table tr:last-child td {
  border-bottom: none;
}

.onl-compare-table tr:nth-child(even) td {
  background: #f8fafc;
}

.onl-compare-feature {
  font-weight: 700;
  color: #0f172a;
}

.onl-val-good {
  font-weight: 700;
  color: #059669;
}

.onl-val-bad {
  color: #dc2626;
  font-weight: 600;
}

/* HOW TO ORDER STEPS */
.onl-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.onl-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.onl-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #005598 0%, #2fb3c5 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,85,152,0.3);
}

.onl-step-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #005598;
  margin-bottom: 8px;
}

.onl-step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* REVIEWS GRID */
.onl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.onl-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.onl-review-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 10px;
}

.onl-review-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.onl-review-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.onl-reviewer-meta {
  font-size: 12.5px;
  font-weight: 700;
  color: #005598;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onl-verified-tag {
  color: #059669;
  font-weight: 600;
  font-size: 11.5px;
}

/* FAQ ACCORDION */
.onl-faq-list {
  max-width: 860px;
  margin: 30px auto 0;
}

.onl-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.onl-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #005598;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.onl-faq-question:hover {
  background: #f8fafc;
}

.onl-faq-icon {
  font-size: 20px;
  color: #2fb3c5;
  transition: transform 0.3s;
}

.onl-faq-item.active .onl-faq-icon {
  transform: rotate(45deg);
}

.onl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  background: #fafcff;
}

.onl-faq-answer p {
  padding-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}

/* FOOTER */
.onl-footer {
  background: #061527;
  color: #94a3b8;
  padding: 50px 0 30px;
  font-size: 13.5px;
  border-top: 1px solid #1a385c;
}

.onl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
}

.onl-footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.onl-footer-brand p {
  line-height: 1.6;
  margin-bottom: 14px;
}

.onl-footer-links h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.onl-footer-links ul {
  list-style: none;
}

.onl-footer-links li {
  margin-bottom: 8px;
}

.onl-footer-links a {
  color: #94a3b8;
  transition: color 0.2s;
}

.onl-footer-links a:hover {
  color: #2fb3c5;
}

.onl-footer-disclaimer {
  border-top: 1px solid #132a45;
  border-bottom: 1px solid #132a45;
  padding: 24px 0;
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

.onl-footer-copy {
  text-align: center;
  font-size: 12.5px;
  color: #64748b;
}

/* SECONDARY PAGES STYLES */
.onl-page-header {
  background: linear-gradient(135deg, #005598 0%, #081a2e 100%);
  color: #ffffff;
  padding: 45px 0;
  text-align: center;
}

.onl-page-header h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 8px;
}

.onl-legal-body {
  padding: 50px 0 70px;
  background: #ffffff;
}

.onl-legal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
}

.onl-legal-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #005598;
  margin: 28px 0 12px;
}

.onl-legal-card h2:first-child {
  margin-top: 0;
}

.onl-legal-card p {
  margin-bottom: 14px;
  color: #334155;
  font-size: 15px;
}

.onl-legal-card ul {
  margin: 12px 0 18px 24px;
  color: #334155;
  font-size: 15px;
}

.onl-legal-card li {
  margin-bottom: 6px;
}

/* CONTACT PAGE */
.onl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 20px;
}

.onl-contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
}

.onl-contact-form .onl-form-group {
  margin-bottom: 16px;
}

.onl-contact-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.onl-contact-form input, .onl-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14.5px;
  font-family: var(--font-body);
  outline: none;
}

.onl-contact-form textarea {
  height: 120px;
  resize: vertical;
}

.onl-contact-btn {
  background: #005598;
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.onl-contact-btn:hover {
  background: #003c6c;
}

/* -------------------------------------------------------------
   MANDATORY MOBILE RESPONSIVENESS & ZERO HORIZONTAL SCROLL
   ------------------------------------------------------------- */
@media (max-width: 992px) {
  .onl-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .onl-hero-image-wrap {
    order: -1;
  }
  .onl-hero-image-wrap img {
    max-height: 320px;
  }
  .onl-hero-lede {
    border-left: none;
    border-top: 3px solid #2fb3c5;
    border-radius: 0 0 8px 8px;
  }
  .onl-hero-stock {
    justify-content: center;
  }
  .onl-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .onl-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .onl-price-card.onl-card-popular {
    transform: none;
  }
  .onl-ing-grid, .onl-steps-grid, .onl-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .onl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .onl-doctor-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .onl-guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .onl-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #e2e8f0;
  }
  .onl-nav-links.active {
    display: flex;
  }
  .onl-menu-toggle {
    display: block;
  }
  .onl-hero h1 {
    font-size: 28px;
  }
  .onl-btn-giant {
    font-size: 17px;
    padding: 16px 20px;
  }
  .onl-hero-badges {
    grid-template-columns: 1fr;
  }
  .onl-facts-grid {
    grid-template-columns: 1fr;
  }
  .onl-verifier-card {
    flex-direction: column;
    text-align: center;
  }
  .onl-verifier-form {
    width: 100%;
    max-width: 100%;
  }
  .onl-ing-grid, .onl-steps-grid, .onl-reviews-grid, .onl-contact-grid, .onl-footer-grid {
    grid-template-columns: 1fr;
  }
  .onl-legal-card {
    padding: 22px 18px;
  }

  /* MANDATORY: TABLE TO CARD TRANSFORMATION (ZERO HORIZONTAL SCROLL) */
  .onl-table-wrap {
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .onl-compare-table {
    display: block;
  }
  .onl-compare-table thead {
    display: none;
  }
  .onl-compare-table tbody {
    display: block;
  }
  .onl-compare-table tr {
    display: block;
    background: #ffffff !important;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
  }
  .onl-compare-table td {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 14px;
  }
  .onl-compare-table td:last-child {
    border-bottom: none;
  }
  .onl-compare-table td::before {
    font-weight: 700;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
  }
  .onl-compare-table td:nth-child(1)::before {
    content: "Feature Criterion:";
  }
  .onl-compare-table td:nth-child(2)::before {
    content: "Official Store (.net):";
    color: #005598;
  }
  .onl-compare-table td:nth-child(3)::before {
    content: "Amazon / 3rd Party:";
    color: #dc2626;
  }
}
