/* 
 * Nano Slim - Stylesheet System (Premium Light Theme)
 * Modern, Clean, Organic Biotech Aesthetics
 */

:root {
  /* Premium Light Theme Colors */
  --bg-main: #f8fafc;
  --bg-surface: rgba(255, 255, 255, 0.75);
  --bg-surface-solid: #ffffff;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(2, 132, 199, 0.15);
  
  --primary: #0284c7; /* Sky blue / Cyan key brand color */
  --primary-glow: rgba(2, 132, 199, 0.25);
  --accent-purple: #7c3aed; /* Neon-ish purple */
  --accent-purple-glow: rgba(124, 58, 237, 0.2);
  
  --text-primary: #0f172a;   /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #64748b;     /* Slate 500 */
  --success: #059669;        /* Emerald 600 */
  
  /* Fonts */
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Figtree', sans-serif;
  
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Soft Premium Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 10px 30px -5px rgba(2, 132, 199, 0.12), 0 0 15px rgba(124, 58, 237, 0.05);
}

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

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
a:hover {
  color: var(--accent-purple);
}

/* Gradients and Special Text */
.hl-grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-glow {
  position: absolute;
  filter: blur(140px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.4), 0 0 15px rgba(124, 58, 237, 0.2);
  color: #ffffff;
}

.btn-primary:hover::after {
  opacity: 0.15;
}

.btn-outline {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px var(--border-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
}

/* Disclosure / Notification Bar */
.disclosure-bar {
  background: linear-gradient(90deg, #7c3aed 0%, #0284c7 100%);
  color: #ffffff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1001;
  position: relative;
}

/* Header */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-mark {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--primary-glow);
}

.logo:hover {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
}

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

/* Menu toggle for mobile */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.04) 0%, rgba(124, 58, 237, 0.02) 40%, rgba(0,0,0,0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.05);
  border: 1px solid rgba(2, 132, 199, 0.15);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.checklist {
  list-style: none;
  margin-bottom: 40px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.checklist li strong {
  color: var(--text-primary);
}

.check-ic {
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  margin-top: 2px;
}

.price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 16px;
  display: inline-flex;
  box-shadow: var(--shadow-sm);
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.25rem;
}

.price-new {
  color: var(--text-primary);
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.price-badge {
  background: #f43f5e;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 4px 10px;
  border-radius: 8px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, rgba(124, 58, 237, 0.08) 50%, rgba(0,0,0,0) 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.08)) drop-shadow(0 5px 10px rgba(2, 132, 199, 0.05));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Trust Elements Section */
.trust-band-section {
  padding: 45px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.01);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--primary);
}

.trust-item strong {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Section Headings */
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.section-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* Benefit Cards Grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 132, 199, 0.2);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(2, 132, 199, 0.05);
  border: 1px solid rgba(2, 132, 199, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Feature Spotlight Split Block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}

.split-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 30px;
}

.media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-3x4 {
  aspect-ratio: 3 / 4;
}
.media-4x3 {
  aspect-ratio: 4 / 3;
}
.media-1x1 {
  aspect-ratio: 1 / 1;
}

/* Table styling */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.dose-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.dose-table th, .dose-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.dose-table th {
  background: #f1f5f9;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dose-table tbody tr:last-child td {
  border-bottom: none;
}

.dose-table tbody tr:hover td {
  background: #f8fafc;
  color: var(--text-primary);
}

.dose-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* Dynamic Stats Grid */
.bigstat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.bigstat {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 40px 24px;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bigstat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.bigstat b {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(2, 132, 199, 0.05);
}

.bigstat span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* Steps Block */
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 10px;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.steps-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 30px;
}

/* Interactive Calculator Container */
.uuno {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: 28px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.calc-row {
  margin-bottom: 28px;
}

.calc-row label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.calc-row label span {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #e2e8f0;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--primary-glow);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-check-label {
  flex-direction: row !important;
  align-items: center;
  cursor: pointer;
}

.calc-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.uxmw {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 32px 0 16px 0;
  padding: 16px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.05);
  border: 1px dashed rgba(2, 132, 199, 0.2);
}

.calc-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Testimonials / Reviews */
.testimonial-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

/* FAQ Section */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.ulwc {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 8px;
}

.uqzl {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.uqzl:hover {
  color: var(--primary);
}

.uqzl i {
  display: inline-block;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.ujzg {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.faq-more {
  text-align: center;
  margin-top: 40px;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-top: 1px solid rgba(2, 132, 199, 0.1);
  border-bottom: 1px solid rgba(2, 132, 199, 0.1);
  text-align: center;
  padding: 80px 0;
}

.cta-inner h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-inner p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-inner p s {
  color: var(--text-muted);
}

.cta-inner p strong {
  color: var(--text-primary);
  font-size: 1.35rem;
}

/* Order Section Layout */
.order-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.order-product-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-title {
  font-size: 2.25rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.panel-sub {
  color: var(--text-secondary);
  font-size: 1rem;
}

.umcq {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.umcq img {
  width: 100%;
  display: block;
}

.order-guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-guarantees li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.order-guarantees li i {
  color: var(--success);
  font-size: 1.125rem;
}

.order-form-wrap {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.ujqm h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-lead {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px !important;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.1);
  background: #ffffff;
}

.phone-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 10px;
}

/* Custom Select Dropdown in site style */
.custom-select {
  position: relative;
  width: 100%;
}

.select-trigger {
  width: 100%;
  padding: 14px 14px 14px 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-select.open .select-trigger {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.1);
}

.select-trigger i {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.custom-select.open .select-trigger i {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  padding: 6px;
  z-index: 1010;
  display: none;
  flex-direction: column;
  gap: 2px;
}

.custom-select.open .select-options {
  display: flex;
  animation: selectFadeIn 0.2s ease-out;
}

.select-options .option {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-options .option:hover {
  background: rgba(2, 132, 199, 0.05);
  color: var(--primary);
}

.select-options .option.selected {
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  font-weight: 600;
}

@keyframes selectFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  cursor: pointer;
}

/* Honeypot field (anti-bot) */
.ufzx {
  display: none !important;
}

/* Form Errors */
.ufjo {
  display: block;
  font-size: 0.75rem;
  color: #f43f5e;
  margin-top: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-group.has-error .ufjo {
  max-height: 30px;
  opacity: 1;
}

.form-group.has-error input {
  border-color: #f43f5e;
}

.order-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Footer styling (Dark Footer for Premium Contrast) */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 40px 0;
  background: #090c15; /* Dark Slate to anchor site bottom */
  color: #94a3b8; /* Light Slate Gray text */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-pay {
  font-size: 0.75rem;
  color: #64748b;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-col ul a:hover {
  color: #ffffff;
}

.footer-col p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.footer-legal-links {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-legal-links a {
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer-legal-links a:hover {
  color: #94a3b8;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748b;
}

/* Cookie banner style (Dark glass on light body) */
.uhia {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  z-index: 1002;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
  display: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: #e2e8f0;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner-actions .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}

.cookie-banner-actions .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-banner-actions .btn-ghost {
  color: #94a3b8;
}
.cookie-banner-actions .btn-ghost:hover {
  color: #ffffff;
}

/* Cookie Settings Modal */
.urzl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  backdrop-filter: blur(5px);
}

.uein {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 28px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.uein h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.uein p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 20px;
}

.cookie-toggle h4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cookie-toggle p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.back-to-top:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--primary-glow);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* Reveal Scroll Utility */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Info Pages general layout (about, return policy, terms, privacy etc.) */
.info-page-hero {
  padding: 80px 0 40px 0;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, #edf2f7 0%, #f8fafc 100%);
  text-align: center;
}

.info-page-hero h1 {
  color: var(--text-primary);
  font-size: 2.75rem;
}

.info-content {
  padding: 60px 0 100px 0;
  max-width: 800px;
  margin: 0 auto;
}

.info-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px 0;
  color: var(--text-primary);
}

.info-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.info-content ul, .info-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-secondary);
}

.info-content li {
  margin-bottom: 8px;
}

.thankyou-section {
  min-height: calc(100vh - var(--header-height) - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.thankyou-inner {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.thankyou-icon {
  font-size: 4.5rem;
  color: var(--success);
}

.thankyou-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.thankyou-steps {
  list-style: none;
  padding: 0;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.thankyou-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.thankyou-steps li i {
  color: var(--primary);
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-eyebrow {
    margin: 0 auto 24px auto;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .checklist {
    max-width: 500px;
    margin: 0 auto 40px auto;
    text-align: left;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .split-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bigstat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .order-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  /* Mobile Hamburger to X Animation */
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }
  
  .hero-visual img {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .order-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .uuno {
    padding: 24px;
  }
  
  .order-layout {
    padding: 24px;
  }
  
  .order-form-wrap {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .dose-table th, .dose-table td {
    padding: 12px 14px;
    font-size: 0.8125rem;
  }
  
  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .disclosure-bar {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }
  
  .hero-title {
    font-size: 2.125rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .uuno {
    padding: 16px;
  }
  
  .order-layout {
    padding: 16px;
  }
  
  .order-form-wrap {
    padding: 16px;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  .benefit-card {
    padding: 24px;
  }
}
