/* -------------------------------------------------------------
 * WELLNEXIS - Hungarian Light & Orange Visual Comfort Theme
 * ------------------------------------------------------------- */

:root {
  /* Clean Light Theme Backgrounds */
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFBF5;
  --bg-card-alt: #F1F5F9;
  --bg-card-warm: #FFF7ED;

  /* Orange Accent System */
  --orange-primary: #FF6B00;
  --orange-hover: #E05D00;
  --orange-dark: #C2410C;
  --orange-light: #FFF7ED;
  --orange-border: #FDBA74;
  --orange-glow: rgba(255, 107, 0, 0.22);
  --orange-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%);
  --orange-gradient-soft: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);

  /* Secondary Accents */
  --teal-accent: #0D9488;
  --teal-light: #F0FDFA;
  --teal-border: #99F6E4;
  --green-accent: #16A34A;
  --gold-accent: #F59E0B;

  /* High Contrast Typography */
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --border-color: #E2E8F0;
  --border-active: #FF6B00;

  /* Fonts */
  --font-heading: "Outfit", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Radius & Elevation */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 20px 40px rgba(255, 107, 0, 0.12);
  --shadow-glow-orange: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-body);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #FF6B00 0%, #0D9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.color-muted { color: var(--text-muted); }

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #FF6B00 0%, #FF8800 100%);
  color: #FFFFFF;
  padding: 9px 15px;
  font-size: 0.88rem;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.2);
}

.announcement-bar strong {
  color: #FFF;
  font-weight: 800;
}

.announcement-link {
  background: #FFFFFF;
  color: var(--orange-primary);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.announcement-link:hover {
  background: #FFF7ED;
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
 * HEADER & NAV - ULTRA-CLEAN & NON-WRAPPING
 * ------------------------------------------------------------- */
.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  position: sticky;
  top: 40px;
  z-index: 999;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-primary), #FF9E00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: var(--shadow-glow-orange);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--orange-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 16px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
}

.nav-menu a:hover {
  color: var(--orange-primary);
  background: #FFF7ED;
}

.nav-btn {
  background: linear-gradient(135deg, var(--orange-primary), #FF8800);
  color: #FFFFFF;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-glow-orange);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* Notice Banner */
.notice-banner {
  background: #FFF7ED;
  border-bottom: 1px solid var(--orange-border);
  padding: 10px 0;
  font-size: 0.84rem;
  text-align: center;
  color: var(--text-body);
  line-height: 1.5;
}

/* Hero Section */
.hero {
  padding: 50px 0 40px;
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF7ED;
  border: 1px solid var(--orange-border);
  color: var(--orange-primary);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2.65rem;
  line-height: 1.22;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 26px;
  line-height: 1.75;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
}

.hero-feat-item:hover {
  border-color: var(--orange-border);
  transform: translateY(-2px);
}

.hero-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFF7ED;
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange-primary), #FF8800);
  color: #FFFFFF;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-glow-orange);
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-hover), #FF7700);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-subtle);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--bg-card-warm);
  border-color: var(--orange-border);
  color: var(--orange-primary);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: #FFF7ED;
  border: 1px solid var(--orange-border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange-primary);
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-img-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.hero-img-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.hero-badge-floating {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid var(--orange-border);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
}

/* Sections */
.section {
  padding: 65px 0;
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.section-subtitle {
  color: var(--orange-primary);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Interactive Card & Quiz */
.interactive-card {
  background: #FFFFFF;
  border: 2px solid var(--orange-border);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
}

.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: #F1F5F9;
  border-radius: var(--radius-pill);
  margin-bottom: 25px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--orange-gradient);
  width: 33%;
  transition: width 0.4s ease;
}

.quiz-question-box {
  margin-bottom: 25px;
}

.quiz-question-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-q-num {
  background: var(--orange-primary);
  color: #FFFFFF;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quiz-opt-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  user-select: none;
}

.quiz-opt-card:hover {
  background: #FFF7ED;
  border-color: var(--orange-border);
  transform: translateY(-2px);
}

.quiz-opt-card.selected {
  background: #FFF7ED;
  border: 2px solid var(--orange-primary);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
}

.quiz-opt-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: inline-block;
}

.quiz-opt-card.selected .quiz-opt-radio {
  border-color: var(--orange-primary);
  background: var(--orange-primary);
}

.quiz-opt-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.quiz-opt-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.quiz-result-card {
  display: none;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
  border: 2px solid var(--orange-primary);
  border-radius: var(--radius-lg);
  padding: 25px;
  text-align: center;
  margin-top: 25px;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-score-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-glow-orange);
}

.quiz-score-val {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.quiz-score-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* 20-20-20 Eye Gym */
.eye-gym-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.gym-timer-box {
  text-align: center;
  background: #FFF7ED;
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
}

.gym-timer-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 4px solid var(--orange-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow-orange);
}

.gym-timer-circle.active {
  animation: pulseTimer 1s infinite alternate;
}

.gym-timer-seconds {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
}

.gym-timer-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.gym-instruction {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  min-height: 48px;
  margin-bottom: 18px;
}

.btn-gym-start {
  background: var(--orange-primary);
  color: #FFFFFF;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-glow-orange);
}

.btn-gym-start:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Tabs & Comparison */
.ingredient-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-body);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-subtle);
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--orange-border);
  background: #FFF7ED;
}

.tab-btn.active {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow-orange);
}

.tab-content-panel {
  display: none;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.3s ease;
}

.tab-content-panel.active {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.comparison-toggle-box {
  display: inline-flex;
  background: #F1F5F9;
  padding: 5px;
  border-radius: var(--radius-pill);
  margin-bottom: 25px;
}

.comp-btn {
  background: none;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.comp-btn.active {
  background: var(--orange-primary);
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(255, 107, 0, 0.25);
}

.comp-card-view {
  display: none;
}

.comp-card-view.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeIn 0.3s ease;
}

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

.exercise-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.exercise-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-border);
  box-shadow: var(--shadow-card-hover);
}

.exercise-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.25);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.exercise-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.exercise-text {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* -------------------------------------------------------------
 * CERTIFICATES SECTION & MODAL (Google Ads Trust & Authority)
 * ------------------------------------------------------------- */
.cert-section {
  background: #FFFFFF;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cert-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cert-card:hover {
  background: #FFF7ED;
  border-color: var(--orange-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.cert-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFF7ED;
  border: 2px solid var(--orange-border);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.cert-card:hover .cert-icon-wrap {
  transform: scale(1.08);
}

.cert-card h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.cert-badge-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-primary);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Certificate Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-card {
  background: #FFFFFF;
  border: 2px solid var(--orange-border);
  border-radius: var(--radius-xl);
  padding: 35px 30px;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
}

/* -------------------------------------------------------------
 * ORDER & CONSULTATION SECTION (Photo of Offer + Specialist Call)
 * ------------------------------------------------------------- */
.order-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFF7ED 100%);
  padding: 75px 0;
}

.order-unified-card {
  background: #FFFFFF;
  border: 2px solid var(--orange-primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 15px 45px rgba(255, 107, 0, 0.12);
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.order-badge-specialist {
  position: absolute;
  top: -15px;
  right: 35px;
  background: linear-gradient(135deg, var(--orange-primary), #FF8800);
  color: #FFFFFF;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-glow-orange);
  white-space: nowrap;
}

.order-consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.order-product-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFBF5;
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
}

.order-product-img-wrap {
  width: 100%;
  max-width: 320px;
  margin-bottom: 15px;
}

.order-product-img-wrap img {
  width: 100%;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.order-product-price-box {
  background: #FFFFFF;
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  margin-bottom: 15px;
  width: 100%;
}

.order-product-price-val {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--orange-primary);
  display: block;
}

.order-product-price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.order-consultation-bullets {
  list-style: none;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-body);
}

.order-consultation-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.order-consultation-bullets i {
  color: var(--orange-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.order-form-col {
  display: flex;
  flex-direction: column;
}

.order-form-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.order-form-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.specialist-call-notice {
  background: #FFF7ED;
  border-left: 3px solid var(--orange-primary);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  color: var(--text-main);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-family: var(--font-body);
  transition: all 0.25s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.form-input.is-valid {
  border-color: var(--green-accent) !important;
  background-color: #F0FDF4 !important;
}

.form-input.is-invalid {
  border-color: #DC2626 !important;
  background-color: #FEF2F2 !important;
}

.phone-error-msg {
  display: none;
  color: #DC2626;
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 600;
}

.phone-success-msg {
  display: none;
  color: var(--green-accent);
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 600;
}

.btn-submit-order {
  width: 100%;
  background: linear-gradient(135deg, var(--orange-primary), #FF8800);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 1.12rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-glow-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-order:hover {
  background: linear-gradient(135deg, var(--orange-hover), #FF7700);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.45);
}

.form-guarantee-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  text-align: center;
}

.guarantee-badge-item {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.guarantee-badge-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

/* -------------------------------------------------------------
 * GOOGLE ADS HEALTHCARE COMPLIANCE DISCLAIMER BOX
 * ------------------------------------------------------------- */
.compliance-disclaimer-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 45px 0 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.compliance-disclaimer-card h5 {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  user-select: none;
}

.faq-question:hover {
  color: var(--orange-primary);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--orange-primary);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
}

.faq-item.open {
  border-color: var(--orange-border);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.08);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: #0F172A;
  border-top: 4px solid var(--orange-primary);
  padding: 55px 0 30px;
  color: #94A3B8;
  font-size: 0.88rem;
}

.footer h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 35px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: #64748B;
}

/* Floating Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

.cookie-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--orange-primary);
  color: #FFFFFF;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-cookie-accept:hover {
  background: var(--orange-hover);
}

/* Thank you page & Legal */
.thankyou-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F8FAFC;
}

.thankyou-card {
  background: #FFFFFF;
  border: 2px solid var(--orange-primary);
  border-radius: var(--radius-xl);
  padding: 45px 35px;
  max-width: 680px;
  margin: 45px auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.12);
}

.thankyou-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #FFF7ED;
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.thankyou-order-info {
  background: #FFF7ED;
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 22px 0;
  text-align: left;
}

.article-container {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 45px;
  box-shadow: var(--shadow-card);
}

.article-content p {
  color: var(--text-body);
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.75;
}

.article-content h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin: 28px 0 12px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseTimer {
  from { transform: scale(1); box-shadow: 0 0 12px rgba(255, 107, 0, 0.2); }
  to { transform: scale(1.04); box-shadow: 0 0 25px rgba(255, 107, 0, 0.4); }
}

/* Responsive */
@media (max-width: 1040px) {
  .nav-menu {
    gap: 10px;
  }
  .nav-menu a {
    font-size: 0.84rem;
    padding: 3px 4px;
  }
  .nav-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 992px) {
  .hero-grid, .order-consultation-grid, .eye-gym-wrapper, .tab-content-panel.active {
    grid-template-columns: 1fr;
  }
  .exercises-grid, .comp-card-view.active, .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quiz-options-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .exercises-grid, .comp-card-view.active, .cert-grid {
    grid-template-columns: 1fr;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .order-unified-card {
    padding: 24px 16px;
  }
}
