/* ═══════════════════════════════════════════════════════════════
   NCLSWL - HEARING AIDS AFFILIATE WEBSITE
   Unique Healthcare Design - Teal & Warm Coral Theme
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* Unique Teal & Coral Healthcare Theme */
  --bg-primary: #f8fdfc;
  --bg-secondary: #ffffff;
  --bg-accent: #e8f6f3;
  --teal-dark: #0d7377;
  --teal-main: #14a3a8;
  --teal-light: #32c5d2;
  --teal-pale: #c8e6e8;
  --coral-main: #e8785a;
  --coral-dark: #d4634a;
  --coral-light: #f5a08e;
  --text-dark: #1a3a3a;
  --text-body: #4a5f5f;
  --text-muted: #7a9090;
  --white: #ffffff;
  --border: rgba(13, 115, 119, 0.12);
  --border-hover: rgba(13, 115, 119, 0.3);
  --shadow-sm: 0 2px 12px rgba(13, 115, 119, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 115, 119, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 115, 119, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 50px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, button, section, header, footer, nav, article, aside, main, form, input, label, textarea, select, option, table, tr, td, th, iframe, figure, figcaption, blockquote, pre, code, video, audio { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-accent); }
::-webkit-scrollbar-thumb { background: var(--teal-main); border-radius: 4px; }

::selection { background: var(--teal-pale); color: var(--teal-dark); }

.ncl-link { text-decoration: none; color: inherit; transition: var(--transition); }
.ncl-img { max-width: 100%; display: block; }
.ncl-btn { cursor: pointer; border: none; font-family: var(--font-body); }
.ncl-list { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   PRELOADER - "Loading..." 3 seconds
   ═══════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-main) 50%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content {
  text-align: center;
}
.preloader-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-scale 1.5s ease-in-out infinite;
}
.preloader-icon svg { width: 36px; height: 36px; color: var(--white); }
.preloader-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fade-pulse 1.5s ease-in-out infinite;
}
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
@keyframes fade-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER - Modern Healthcare Style
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.affiliate-bar {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.75rem;
  text-align: center;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(13, 115, 119, 0.15);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--coral-main); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-main);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--teal-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--coral-main); font-weight: 600; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--teal-dark);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu .nav-link { font-size: 1.2rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral-main), var(--coral-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 120, 90, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 120, 90, 0.4);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--teal-dark);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - Split Layout with Wave
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: var(--white);
}
.hero-wave::before {
  content: '';
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  height: 140px;
  background: var(--bg-primary);
  border-radius: 0 0 50% 50%;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-main);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral-main);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 120, 90, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(232, 120, 90, 0); }
}
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal-main);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  color: var(--coral-main);
  position: relative;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-up 4s ease-in-out infinite;
}
.hero-float-card.f1 { bottom: -30px; left: -40px; }
.hero-float-card.f2 { top: 30px; right: -30px; animation-delay: 1.5s; }
@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 24px; height: 24px; color: var(--teal-main); }
.float-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.float-value { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text-dark); }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.trust-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 26px; height: 26px; color: var(--teal-main); }
.trust-text { flex: 1; }
.trust-label { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.trust-sub { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT SECTION
   ═══════════════════════════════════════════════════════════════ */
.product-section {
  padding: 100px 0;
  background: var(--white);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral-main);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gallery-wrapper { position: relative; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-accent);
  box-shadow: var(--shadow-md);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.gallery-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover {
  border-color: var(--coral-main);
  box-shadow: 0 4px 15px rgba(232, 120, 90, 0.2);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-details {}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-accent);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral-main);
}
.product-price-note { font-size: 0.85rem; color: var(--text-muted); }
.product-description {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}
.features-list { margin-bottom: 32px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg { width: 14px; height: 14px; color: var(--teal-main); }
.feature-text { font-size: 0.95rem; color: var(--text-body); }
.product-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-main), var(--coral-main));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 30px; height: 30px; color: var(--teal-main); }
.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.feature-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.stats-row {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-main));
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star { color: #ffc107; font-size: 1.1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-main), var(--coral-main));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.author-name { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.author-date { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  background: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--teal-dark); }
.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-toggle svg { width: 16px; height: 16px; color: var(--teal-main); }
.faq-item.active .faq-toggle { background: var(--coral-main); transform: rotate(180deg); }
.faq-item.active .faq-toggle svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 22px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-main) 50%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  border-radius: 50%;
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title em { font-style: normal; color: var(--coral-light); }
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  padding: 70px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-link:hover { color: var(--teal-light); padding-left: 4px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-copy span { color: var(--teal-light); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text {
  font-size: 0.9rem;
  color: var(--text-body);
  flex: 1;
  line-height: 1.6;
}
.cookie-text a { color: var(--teal-dark); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.cookie-accept {
  background: linear-gradient(135deg, var(--teal-main), var(--teal-dark));
  color: var(--white);
}
.cookie-accept:hover {
  box-shadow: 0 6px 20px rgba(13, 115, 119, 0.3);
  transform: translateY(-2px);
}
.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-reject:hover {
  border-color: var(--text-muted);
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW PAGE
   ═══════════════════════════════════════════════════════════════ */
.review-hero {
  padding: 140px 0 70px;
  background: var(--bg-accent);
  text-align: center;
}
.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.rating-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--coral-main);
}
.rating-meta { text-align: left; }
.rating-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.rating-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.review-body { padding: 70px 0; }
.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.review-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-pale);
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.pros-box, .cons-box {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 26px;
}
.pros-box { border: 1px solid var(--teal-pale); }
.cons-box { border: 1px solid rgba(232, 120, 90, 0.3); }
.pros-title, .cons-title {
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-title { color: var(--teal-dark); }
.cons-title { color: var(--coral-main); }
.pros-list li, .cons-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: '✓'; color: var(--teal-main); font-weight: 700; }
.cons-list li::before { content: '–'; color: var(--coral-main); font-weight: 700; }
.verdict-box {
  background: var(--bg-accent);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-top: 28px;
  border-left: 4px solid var(--teal-main);
}
.verdict-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 12px; }
.verdict-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.quick-facts { display: flex; flex-direction: column; }
.quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.quick-fact:last-child { border-bottom: none; }
.quick-fact-label { font-size: 0.85rem; color: var(--text-muted); }
.quick-fact-value { font-size: 0.85rem; color: var(--text-dark); font-weight: 500; }
.quick-fact-value.highlight { color: var(--coral-main); }

/* ═══════════════════════════════════════════════════════════════
   ORDER PAGE
   ═══════════════════════════════════════════════════════════════ */
.order-page { padding: 140px 0 70px; }
.order-container {
  max-width: 560px;
  margin: 0 auto 50px;
}
.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.order-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-accent);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  overflow: hidden;
}
.order-image img { width: 100%; height: 100%; object-fit: cover; }
.order-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.order-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }
.order-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.order-price-label { font-size: 0.9rem; color: var(--text-muted); }
.order-price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral-main);
}
.order-perks { text-align: left; margin-bottom: 26px; }
.order-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}
.order-perk svg { width: 18px; height: 18px; color: var(--teal-main); flex-shrink: 0; }
.comparison-section { margin-top: 50px; }
.comparison-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comp-table th, .comp-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.comp-table th {
  background: var(--bg-accent);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.comp-table td { color: var(--text-body); }
.comp-table td:first-child { color: var(--text-dark); font-weight: 500; }
.check-icon { color: var(--teal-main); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-page { padding: 140px 0 70px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-intro {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--teal-pale);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: var(--teal-main); }
.contact-method-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-method-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.contact-method-value a:hover { color: var(--teal-dark); }
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--teal-main);
  box-shadow: 0 0 0 3px rgba(20, 163, 168, 0.1);
  outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: var(--transition);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%2314a3a8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-select:focus {
  border-color: var(--teal-main);
  box-shadow: 0 0 0 3px rgba(20, 163, 168, 0.1);
  outline: none;
}
.form-select option { background: var(--white); }
textarea.form-input { min-height: 120px; resize: vertical; }
.success-message {
  display: none;
  text-align: center;
  padding: 40px;
}
.success-message.show { display: block; }
.success-icon-box {
  width: 70px;
  height: 70px;
  background: var(--bg-accent);
  border: 2px solid var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon-box svg { width: 32px; height: 32px; color: var(--teal-main); }
.success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.success-text { font-size: 0.92rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   THANK YOU MODAL
   ═══════════════════════════════════════════════════════════════ */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.thank-you-modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
.thank-you-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 58, 0.7);
  backdrop-filter: blur(8px);
}
.thank-you-content {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.thank-you-modal.show .thank-you-content { transform: scale(1); }
.thank-you-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  font-size: 28px;
  color: var(--text-muted);
  transition: var(--transition);
}
.thank-you-close:hover { color: var(--teal-dark); transform: scale(1.1); }
.thank-you-icon {
  width: 76px;
  height: 76px;
  background: var(--bg-accent);
  border: 2px solid var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thank-you-icon svg { width: 36px; height: 36px; color: var(--teal-main); }
.thank-you-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.thank-you-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════════ */
.legal-page { padding: 140px 0 70px; }
.legal-container { max-width: 800px; margin: 0 auto; }
.legal-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-section { margin-bottom: 36px; }
.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.legal-section p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-section li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-inner, .hero-inner, .footer-inner, .trust-inner { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .cookie-text { text-align: center; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-float-card { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .section-inner { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
  .stat-number { font-size: 2.2rem; }
  .footer-inner { padding: 0 16px; }
  .product-price { font-size: 2rem; }
}
