@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --bg-main: #F4F6F8;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-dark: #0D1B2A;
  --bg-dark2: #162232;

  --text-primary: #1A2332;
  --text-body: #4A5568;
  --text-muted: #8A9BB0;
  --text-light: #CBD5E0;

  --accent: #00C9A7;
  --accent-dark: #00A88A;
  --accent-light: #7DFFD4;
  --accent-glow: rgba(0, 201, 167, 0.15);

  --coral: #FF6B6B;
  --coral-dark: #E85555;
  --coral-light: #FF9B9B;

  --navy: #0D1B2A;
  --teal: #1B8A7C;

  --border: rgba(0, 0, 0, 0.06);
  --border-accent: rgba(0, 201, 167, 0.3);

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
.global-reset, .global-reset-before, .global-reset-after { margin: 0; padding: 0; box-sizing: border-box; }
.global-html { scroll-behavior: smooth; }
.global-body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.global-img { max-width: 100%; height: auto; display: block; }
.global-a { text-decoration: none; color: inherit; transition: var(--transition); }
.global-ul { list-style: none; }
.global-button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ===== SCROLLBAR ===== */
.custom-scrollbar { width: 6px; }
.custom-scrollbar-track { background: var(--bg-main); }
.custom-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== PRELOADER ===== */
.preloader-container {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader-container.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1B3A4B 50%, var(--navy) 100%);
}
.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.preloader-brand {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.preloader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: loadingBar 3s ease-in-out forwards;
}
.preloader-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  animation: pulse 1.5s ease infinite;
}
@keyframes loadingBar {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2001;
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0 5%;
}
.main-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 0;
}
.brand-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #fff;
  transition: var(--transition);
}
/* Logo Toggle Logic */
.brand-logo .logo-dark { display: none; }
.brand-logo .logo-light { display: block; }
.main-header.scrolled .brand-logo .logo-light { display: none; }
.main-header.scrolled .brand-logo .logo-dark { display: block; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links_a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 4px 0;
}
.main-header.scrolled .nav-links_a { color: var(--text-body); }
.nav-links_a-after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links_a:hover,
.nav-links_a.active { color: #fff; }
.main-header.scrolled .nav-links_a:hover,
.main-header.scrolled .nav-links_a.active { color: var(--accent-dark); }
.nav-links_a:hover-after,
.nav-links_a.active-after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle_span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.main-header.scrolled .menu-toggle_span { background: var(--navy); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}
.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 1510;
  line-height: 1;
  padding: 10px;
}
.mobile-nav-close:hover { color: var(--accent); }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav_ul { text-align: center; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== CONTAINER ===== */
.container { width: 92%; max-width: 1280px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: var(--transition);
  border-radius: 50px;
}
.btn:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}
.btn-solid {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,107,0.3); }
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover { background: #162232; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-shapes .shape-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,0.12) 0%, transparent 70%);
}
.hero-bg-shapes .shape-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,107,0.08) 0%, transparent 70%);
}
.hero-bg-shapes .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}
.hero-text { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.25);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 2.5rem;
}
.hero-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.hero-price-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
}
.hero-img-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
.hero-img-card img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.hero-img-card:hover img { transform: scale(1.04); }
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-img-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-img-badge .badge-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.hero-img-badge .badge-text strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-price-row { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; order: -1; }
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  color: var(--accent-dark);
  border: 1px solid var(--border-accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 110px 0;
  background: var(--bg-white);
  position: relative;
}
.features-section-before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card-before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}
.feature-card:hover-before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ===== PRODUCT SHOWCASE ===== */
.product-section {
  padding: 110px 0;
  background: var(--bg-main);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 100px;
}
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  margin-bottom: 14px;
}
.product-main-img img { width: 100%; display: block; transition: transform 0.6s ease; }
.product-main-img:hover img { transform: scale(1.03); }
.product-thumbs {
  display: flex;
  gap: 10px;
}
.product-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: var(--transition);
}
.product-thumbs img:hover,
.product-thumbs img.active { opacity: 1; border-color: var(--accent); }

.product-info .product-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.product-price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.product-tax-tag {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.product-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}
.product-highlights {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.product-highlights li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.product-highlights li:last-child { border-bottom: none; }
.product-highlights .spec-label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-highlights .spec-value { color: var(--text-body); }

.btn-buy {
  width: 100%;
  padding: 18px;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}
.buy-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
.buy-note-before { content: '✓ '; color: var(--accent); }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-gallery { position: static; }
}

/* ===== PHILOSOPHY / SPLIT ===== */
.split-section {
  padding: 110px 0;
  background: var(--bg-white);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img-wrap img { width: 100%; display: block; transition: transform 0.7s ease; }
.split-img-wrap:hover img { transform: scale(1.04); }
.split-content .section-badge { margin-bottom: 1.2rem; }
.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.split-content h2 em { color: var(--accent-dark); font-style: normal; }
.split-content p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  padding: 110px 0;
  background: var(--navy);
}
.testimonial-section .section-title { color: #fff; }
.testimonial-section .section-subtitle { color: rgba(255,255,255,0.4); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,201,167,0.3);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.testimonial-stars { color: var(--coral); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.testimonial-text {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ===== FAQ ===== */
.faq-section { padding: 110px 0; background: var(--bg-main); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question.active) { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.4rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-dark); }
.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer p {
  padding: 0 1.8rem 1.4rem;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.85;
  font-weight: 300;
}

/* ===== CTA ===== */
.cta-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, #7DFFD4 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section-before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.2rem;
  position: relative;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-section .btn {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  position: relative;
}
.cta-section .btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ===== INTERNAL PAGES ===== */
.internal-page { padding: 130px 0 80px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info {
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 2rem;
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.contact-info .label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.contact-info .value { color: var(--text-primary); font-weight: 500; }
.contact-info a { color: var(--accent-dark); }
.contact-info a:hover { color: var(--coral); }
.contact-address-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.form-card {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.form-input {
  width: 100%;
  padding: 14px 0;
  margin-bottom: 1.8rem;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-bottom-color: var(--accent); }
textarea.form-input { resize: none; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== LEGAL ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.08em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.legal-date {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.legal-content p {
  color: var(--text-body);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-content li {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.legal-content a { color: var(--accent-dark); }
.legal-content a:hover { color: var(--coral); }
.legal-content strong { color: var(--text-primary); font-weight: 600; }

/* ===== FOOTER ===== */
.main-footer {
  background: var(--navy);
  padding: 80px 5% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #fff;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-logo span { color: var(--accent); }
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  display: block;
  transition: color var(--transition);
  font-weight: 300;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .heading-4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.8rem;
}
.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}
@media (max-width: 768px) {
  .footer-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner-container {
  position: fixed;
  bottom: -400px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  padding: 28px 5%;
  z-index: 9999;
  transition: bottom var(--transition-slow);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.12);
  border-top: 1px solid var(--border-accent);
}
.cookie-banner-container.active { bottom: 0; }
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cookie-text { flex: 1; }
.cookie-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.cookie-text p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }
.cookie-text a { color: var(--accent-dark); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 11px 26px; font-size: 0.76rem; }
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; text-align: center; gap: 1.4rem; }
}

/* ===== EDITORIAL / REVIEW ===== */
.editorial-article { max-width: 780px; margin: 0 auto; }
.editorial-article img {
  width: 75%;
  max-width: 600px;
  display: block;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.editorial-article h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 3rem 0 1.2rem;
}
.editorial-article p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-weight: 300;
}
.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--navy);
}

/* ===== COMPARISON TABLE ===== */
.comparison-section { width: 100%; max-width: 1000px; margin: 0 auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg-main); }
.comparison-table .highlight-col {
  background: rgba(0,201,167,0.05);
  color: var(--navy);
  font-weight: 500;
}
.comparison-table th.highlight-col {
  background: var(--accent-dark);
  color: #fff;
}
@media (max-width: 768px) {
  .comparison-table th, .comparison-table td { padding: 1rem; font-size: 0.9rem; }
}

/* ===== MODAL ===== */
.custom-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13,27,42,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.custom-modal-overlay.active { opacity: 1; visibility: visible; }
.custom-modal-box {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 450px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition);
  box-shadow: var(--shadow-xl);
}
.custom-modal-overlay.active .custom-modal-box { transform: translateY(0) scale(1); }
.custom-modal-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.custom-modal-box p { color: var(--text-body); margin-bottom: 2rem; line-height: 1.6; }
.custom-modal-box .btn { width: 100%; padding: 1rem; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== UTILITY ===== */
.mt-4 { margin-top: 4rem; }
.text-center { text-align: center; }
