/* ============================================
   SuperCell RX — Brand Stylesheet
   Colors: Black #000, Navy #1F3D57, Cyan #7ACCE8
   ============================================ */

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

:root {
  --black: #000000;
  --navy: #1F3D57;
  --navy-dark: #162d42;
  --navy-light: #2a5070;
  --cyan: #7ACCE8;
  --cyan-dim: #5bb8d9;
  --cyan-glow: rgba(122,204,232,0.15);
  --silver: #A8B2BD;
  --silver-light: #C8CED6;
  --white: #F0F4F8;
  --bg-dark: #0A0E13;
  --bg-card: #111820;
  --bg-card-hover: #182230;
  --border: rgba(122,204,232,0.12);
  --border-light: rgba(168,178,189,0.15);
  --text-primary: #E8ECF0;
  --text-secondary: #8A96A3;
  --text-muted: #5A6670;
  --radius: 6px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan-dim); }

img { max-width: 100%; display: block; }

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 48px;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,14,19,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px 8px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-brand:hover {
  background: rgba(122, 204, 232, 0.08);
  padding: 8px 12px;
}

.nav-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(122, 204, 232, 0.1));
  transition: filter 0.3s ease;
}

.nav-brand:hover .nav-logo {
  filter: drop-shadow(0 0 16px rgba(122, 204, 232, 0.25));
}

.rx-accent {
  color: var(--cyan);
}

.nav-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  transition: color 0.2s ease;
}

.nav-brand:hover .nav-wordmark {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  transition: background 0.2s !important;
  border: 1px solid var(--navy-light) !important;
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  color: var(--white) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 32px;
  max-width: 860px;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(122,204,232,0.05);
}

.badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy-light);
}

.btn-primary:hover {
  background: var(--navy-light);
  color: var(--white);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--navy-dark);
  border: 1px solid var(--cyan);
}

.btn-cyan:hover {
  background: var(--cyan-dim);
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(122,204,232,0.05);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 15px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
  background: rgba(31,61,87,0.06);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item { text-align: left; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 56px;
}

/* ============ CARDS GRID ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--bg-card);
  padding: 44px 36px;
  border-radius: 2px;
  position: relative;
  transition: background 0.3s;
}

.card:hover {
  background: var(--bg-card-hover);
}

.card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(122,204,232,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ TAG ============ */
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(122,204,232,0.25);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

.tag-ruo {
  color: #F59E0B;
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.08);
}

/* ============ PRODUCT PAGE ============ */
.product-hero {
  padding: 140px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-image-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(31,61,87,0.2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.product-image-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(122,204,232,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.product-visual {
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-visual svg {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.product-visual-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
}

.product-visual-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.product-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.product-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.product-buy-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  margin-bottom: 16px;
}

.product-disclaimer-inline {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table td {
  padding: 14px 0;
  font-size: 14px;
}

.specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 45%;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.specs-table td:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============ PRODUCT SECTIONS ============ */
.product-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.product-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.product-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan-glow);
  border: 1px solid rgba(122,204,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--cyan);
}

/* ============ COA SECTION ============ */
.coa-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 32px;
}

.coa-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.coa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.coa-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(122,204,232,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.coa-item svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  fill: var(--cyan);
}

.coa-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.coa-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 160px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ============ ABOUT PAGE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  list-style: none;
}

.about-values li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-values li:last-child {
  border-bottom: none;
}

.about-value-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
  width: 32px;
}

.about-value-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-value-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============ COA VERIFICATION PAGE ============ */
.coa-verify-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
}

.coa-verify-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.coa-verify-form input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  margin-bottom: 20px;
}

.coa-verify-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

.coa-verify-form input::placeholder {
  color: var(--text-muted);
}

.coa-result {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  display: none;
}

.coa-result.show { display: block; }

.coa-result.success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
}

.coa-result.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
}

/* ============ DISCLAIMER BAR ============ */
.disclaimer-bar {
  background: rgba(245,158,11,0.06);
  border-top: 1px solid rgba(245,158,11,0.15);
  border-bottom: 1px solid rgba(245,158,11,0.15);
  padding: 16px 48px;
}

.disclaimer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #D4A020;
  line-height: 1.5;
}

.disclaimer-bar-inner svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

/* ============ FULL LEGAL DISCLAIMER ============ */
.legal-disclaimer {
  background: var(--bg-card);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}

.legal-disclaimer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F59E0B;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-disclaimer p,
.legal-disclaimer ul {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-disclaimer ul {
  padding-left: 20px;
}

.legal-disclaimer ul li {
  margin-bottom: 4px;
}

/* ============ CLOSING CTA ============ */
.closing {
  text-align: center;
  padding: 120px 48px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing h2 em {
  font-style: normal;
  color: var(--cyan);
}

.closing p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(122, 204, 232, 0.08));
  transition: filter 0.3s ease;
}

.footer-brand:hover img {
  filter: drop-shadow(0 0 8px rgba(122, 204, 232, 0.15));
}

.footer-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--cyan);
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ ORDER CONFIRMED ============ */
.order-confirmed {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.order-confirmed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 560px;
}

.order-confirmed svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.order-confirmed h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.order-confirmed p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .coa-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav {
    padding: 12px 24px;
    min-height: 72px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,14,19,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding: 120px 24px 80px; }
  .stats-bar { padding: 40px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section { padding: 72px 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .product-hero { padding: 100px 24px 60px; }
  .product-section { padding: 60px 24px; }
  .page-header { padding: 110px 24px 48px; }
  .closing { padding: 80px 24px; }
  .disclaimer-bar { padding: 12px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .container, .container-narrow { padding: 0 24px; }
  .coa-grid { grid-template-columns: 1fr; }
  .coa-verify-form { padding: 32px; }
  .legal-disclaimer { padding: 24px; }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 32px; }
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: 2px;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card:hover {
  background: var(--bg-card-hover);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--navy-dark) 0%, rgba(31,61,87,0.4) 100%);
  border: 1px solid rgba(122,204,232,0.3);
  border-radius: var(--radius);
}

.pricing-card.featured::before {
  content: 'NEW PATIENT PROMO';
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(122,204,232,0.1);
  border: 1px solid rgba(122,204,232,0.2);
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 4px;
}

.pricing-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.pricing-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-includes {
  list-style: none;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-includes li {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5 2 6' stroke='%237ACCE8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  margin-top: 1px;
}

.pricing-sourcing-note {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-sourcing-note strong {
  color: #F59E0B;
}

.pricing-wellness-disclaimer {
  background: rgba(122,204,232,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ FORMS & DOCUMENTS PAGE ============ */
.forms-section {
  padding: 80px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.doc-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(122,204,232,0.3);
  transform: translateY(-2px);
  color: inherit;
}

.doc-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(122,204,232,0.08);
  border: 1px solid rgba(122,204,232,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.doc-card-icon svg {
  width: 22px;
  height: 22px;
}

.doc-card-body {
  flex: 1;
}

.doc-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.doc-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.doc-download-arrow {
  color: var(--cyan);
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s;
}

.doc-card:hover .doc-download-arrow {
  opacity: 1;
}

/* Footer docs column */
.footer-col .doc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col .doc-link:hover {
  color: var(--cyan);
}

.footer-col .doc-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-section { padding: 60px 24px; }
  .doc-grid { grid-template-columns: 1fr; }
  .forms-section { padding: 60px 24px; }
}
