/* 
 * BioCoreClub - Premium Reconstitution & Reconstitution Research Peptides CSS
 * Aesthetic: Deep Biotech Dark Theme with Glowing Cyan and Emerald Accents
 */



:root {
  --bg-primary: #080C14;
  --bg-secondary: #0F1624;
  --bg-tertiary: #172237;
  --bg-card: rgba(15, 22, 36, 0.7);
  --accent-cyan: #00F2FE;
  --accent-emerald: #10B981;
  --accent-purple: #8B5CF6;
  --accent-gradient: linear-gradient(135deg, #00F2FE 0%, #10B981 100%);
  --accent-gradient-hover: linear-gradient(135deg, #10B981 0%, #00F2FE 100%);
  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-dark: #111827;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.25);
  --font-sans: 'Outfit', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --glow-cyan: 0 0 25px rgba(0, 242, 254, 0.35);
  --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.35);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Orbs */
body::before, body::after {
  content: '';
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
}

body::before {
  top: 10%;
  left: -10%;
  background: var(--accent-cyan);
}

body::after {
  bottom: 20%;
  right: -10%;
  background: var(--accent-emerald);
}

/* Typography & General Elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header / Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-fast);
}

.logo span {
  color: var(--text-main);
  -webkit-text-fill-color: var(--text-main);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-nav {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-fast);
}

.cta-nav:hover {
  background: var(--accent-cyan);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* Sections */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-emerald);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-weight: 400;
}

.vsl-container {
  max-width: 850px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-lg), var(--glow-cyan);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition-normal);
}

.vsl-container:hover {
  border-color: rgba(0, 242, 254, 0.4);
}

/* Wistia Responsive Wrapper */
.wistia_responsive_padding {
  background-color: #000;
}

.hero-ctas {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  box-shadow: 0 4px 25px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Science & Mechanism Section */
.science {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.science-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.science-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-fast);
}

.science-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
}

.science-card:hover::before {
  background: var(--accent-cyan);
}

.science-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.science-card.green .science-card-icon {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}
.science-card.green:hover::before {
  background: var(--accent-emerald);
}

.science-card.purple .science-card-icon {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
}
.science-card.purple:hover::before {
  background: var(--accent-purple);
}

.science-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.science-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Research Highlights / Clinical Info */
.clinical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 6rem;
  align-items: center;
}

.clinical-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.clinical-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.clinical-list {
  list-style: none;
}

.clinical-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.clinical-list li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.clinical-stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.clinical-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Complete Reconstitution Kit Section */
.kit-section {
  background: var(--bg-primary);
  position: relative;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.kit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.kit-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.kit-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.02);
}

.kit-icon {
  width: 45px;
  height: 45px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

.kit-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.kit-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.reconstitution-guide {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.reconstitution-guide h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reconstitution-guide h3 svg {
  color: var(--accent-cyan);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card {
  display: flex;
  gap: 1rem;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 1px solid var(--accent-cyan);
  box-shadow: var(--shadow-md), var(--glow-cyan);
  background: rgba(15, 22, 36, 0.85);
}

.pricing-card.popular:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 242, 254, 0.5);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-gradient);
  color: var(--text-dark);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-top: 1rem;
}

.price-currency {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-amount {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.pricing-features li svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
}

.pricing-card.popular .pricing-features li svg {
  color: var(--accent-cyan);
}

.pricing-card.max .pricing-features li svg {
  color: var(--accent-emerald);
}

.pricing-footer {
  margin-top: auto;
}

.pricing-footer .btn {
  width: 100%;
}

/* FAQ Section */
.faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  padding-right: 1.5rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.faq-icon svg {
  transition: transform var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon svg {
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  border-top: 0 solid var(--border-color);
}

.faq-item.active .faq-answer {
  border-top-width: 1px;
}

.faq-answer-inner {
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Modals Root Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 1.75rem 2.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.modal-body {
  padding: 2.25rem;
  max-height: 70vh;
  overflow-y: auto;
}

/* Text Legal Modals */
.legal-modal .modal-container {
  max-width: 800px;
}

.legal-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-text h4 {
  color: var(--text-main);
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.legal-text h4:first-child {
  margin-top: 0;
}

.legal-text p {
  margin-bottom: 1rem;
}

.legal-text ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
}

/* Form Styles for Order Modal */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: var(--bg-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.indicator-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.indicator-step.active {
  color: var(--accent-cyan);
}

.indicator-step.completed {
  color: var(--accent-emerald);
}

.indicator-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.indicator-step.active .indicator-dot {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
}

.indicator-step.completed .indicator-dot {
  border-color: var(--accent-emerald);
  background: var(--accent-emerald);
  color: var(--text-dark);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.form-control {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

#card-element {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

#card-element.StripeElement--focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

#card-element.StripeElement--invalid {
  border-color: #EF4444;
}

.form-control.error {
  border-color: #EF4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.error-message {
  color: #EF4444;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.25rem;
  display: none;
}

.form-control.error + .error-message {
  display: block;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-actions .btn {
  flex: 1;
}

/* Selected Plan Info Card in Modal */
.selected-plan-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.summary-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-cyan);
}

/* Success View */
.checkout-success-view {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 75px;
  height: 75px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
  font-size: 2.25rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--glow-emerald);
}

.checkout-success-view h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.checkout-success-view p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 2rem auto;
}

/* Trust / Conversion Section */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-badge svg {
  color: var(--accent-cyan);
}

/* Disclaimers & Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem 2rem;
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer-info h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-link-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-link-btn:hover {
  color: var(--accent-cyan);
}

.footer-email-link {
  color: var(--accent-cyan);
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-email-link:hover {
  text-decoration: underline;
}

.disclaimer-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.disclaimer-box h5 {
  color: var(--accent-emerald);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .clinical-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .kit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .nav-links {
    display: none; /* simple hidden layout on mobile for neatness */
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .kit-list {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}
