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

/* ===== DESIGN TOKENS ===== */
:root {
  --color-primary: #FF6B35;
  --color-primary-dark: #E55A2B;
  --color-primary-light: #FF8A5B;
  --color-gold: #F7C948;
  --color-gold-dark: #E5B030;
  
  --color-bg-main: #FAF9F7;
  --color-bg-white: #FFFFFF;
  --color-bg-dark: #1A1A2E;
  --color-bg-dark-secondary: #16213E;
  --color-bg-cream: #FFF8F0;
  
  --color-text-primary: #1A1A2E;
  --color-text-body: #4A4A5A;
  --color-text-muted: #8A8A9A;
  --color-text-light: #BABABA;
  
  --color-border: rgba(26, 26, 46, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.1);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 30px 80px rgba(26, 26, 46, 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 ===== */
.reset-wrapper, .reset-wrapper-before, .reset-wrapper-after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.html-wrapper { scroll-behavior: smooth; }

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

.image-wrapper { max-width: 100%; height: auto; display: block; }
.link-wrapper { text-decoration: none; color: inherit; transition: var(--transition); }
.list-wrapper { list-style: none; }
.button-wrapper { font-family: var(--font-body); cursor: pointer; border: none; background: none; text-decoration: none !important; }

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

/* ===== PRELOADER ===== */
.preloader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  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-wrapper.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-bg-wrapper {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-dark-secondary) 50%, var(--color-bg-dark) 100%);
}

.preloader-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(247, 201, 72, 0.08) 0%, transparent 50%);
}

.preloader-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo-wrapper {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  animation: preloaderFadeIn 0.8s ease forwards;
  opacity: 0;
  letter-spacing: 0.1em;
}

.preloader-text-wrapper {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  animation: preloaderPulse 1.5s ease infinite;
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner-wrapper {
  background: linear-gradient(90deg, var(--color-bg-dark) 0%, var(--color-bg-dark-secondary) 100%);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 2001;
}

.affiliate-banner-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
}

/* ===== HEADER ===== */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0 5%;
}

.header-main.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--color-border);
}

.nav-container-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.brand-logo-wrapper .logo-dark { display: none; }
.brand-logo-wrapper .logo-light { display: block; }

.header-main.header-scrolled .brand-logo-wrapper .logo-light { display: none; }
.header-main.header-scrolled .brand-logo-wrapper .logo-dark { display: block; }

.logo-image-wrapper {
  height: 36px;
  width: auto;
}

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

.nav-link-item {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  transform: translateX(-50%);
}

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

.header-main.header-scrolled .nav-link-item {
  color: var(--color-text-body);
}

.nav-link-item:hover,
.nav-link-item.nav-link-active {
  color: var(--color-primary);
}

.menu-toggle-wrapper {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.menu-toggle-line {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.header-main.header-scrolled .menu-toggle-line { background: var(--color-bg-dark); }

.menu-toggle-wrapper.menu-toggle-open .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-wrapper.menu-toggle-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle-wrapper.menu-toggle-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-wrapper {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-nav-wrapper.mobile-nav-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close-wrapper {
  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;
  transition: var(--transition);
}

.mobile-nav-close-wrapper:hover { color: var(--color-primary); }

.mobile-nav-list-wrapper {
  text-align: center;
}

.mobile-nav-list-wrapper .list-item {
  margin: 1.8rem 0;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.mobile-nav-link:hover { color: var(--color-primary); }

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

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

/* ===== BUTTONS ===== */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  transition: var(--transition);
  border-radius: var(--radius-full);
  text-decoration: none !important;
}

.button-primary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

.button-primary-solid {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.button-primary-solid:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.button-primary-gold {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border-color: var(--color-gold);
}

.button-primary-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.button-primary-dark {
  background: var(--color-bg-dark);
  color: white;
  border-color: var(--color-bg-dark);
}

.button-primary-dark:hover {
  background: var(--color-bg-dark-secondary);
}

/* ===== REVEAL ANIMATION ===== */
.reveal-wrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-circle-orange {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.hero-bg-circle-gold {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.1) 0%, transparent 70%);
}

.hero-bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  color: #fff;
}

.hero-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--color-primary-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title-wrapper {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-title-highlight {
  font-style: normal;
  color: var(--color-primary);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.hero-price-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.hero-actions-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual-content {
  position: relative;
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-image-main {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.hero-image-card:hover .hero-image-main {
  transform: scale(1.05);
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-badge-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.hero-badge-text-strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--color-bg-cream);
  padding: 80px 0;
}

.stats-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item-wrapper .stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.8rem;
}

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

@media (max-width: 700px) {
  .stats-grid-wrapper { grid-template-columns: 1fr 1fr; }
}

/* ===== SECTION HEADER ===== */
.section-header-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.section-title-wrapper {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-wrapper {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 120px 0;
  background: var(--color-bg-white);
  position: relative;
}

.features-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card-wrapper {
  background: var(--color-bg-main);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.2);
}

.feature-card-wrapper:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin-bottom: 0.8rem;
}

.feature-description {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .features-grid-wrapper {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ===== PRODUCT SHOWCASE ===== */
.product-section {
  padding: 120px 0;
  background: var(--color-bg-main);
}

.product-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-gallery-wrapper {
  position: sticky;
  top: 100px;
}

.product-main-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-white);
  margin-bottom: 16px;
}

.product-main-image {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.product-main-image-wrapper:hover .product-main-image {
  transform: scale(1.03);
}

.product-thumbnails-wrapper {
  display: flex;
  gap: 12px;
}

.product-thumbnail {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.thumbnail-active {
  opacity: 1;
  border-color: var(--color-primary);
}

.product-info-wrapper .product-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.product-info-wrapper .product-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.product-price-wrapper {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.product-tax-wrapper {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.product-description {
  font-size: 0.98rem;
  color: var(--color-text-body);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 2rem;
}

.product-specifications {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  color: var(--color-text-body);
}

.button-buy-wrapper {
  width: 100%;
  padding: 18px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.buy-note-wrapper {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

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

/* ===== SPLIT SECTION ===== */
.split-section {
  padding: 120px 0;
  background: var(--color-bg-cream);
}

.split-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image-main {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.split-image-wrapper:hover .split-image-main {
  transform: scale(1.04);
}

.split-content-wrapper .section-badge-wrapper {
  margin-bottom: 1.5rem;
}

.split-content-wrapper .split-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.split-title-highlight {
  color: var(--color-primary);
  font-style: normal;
}

.split-content-wrapper .split-text {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .split-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 120px 0;
  background: var(--color-bg-dark);
}

.testimonials-section .section-title-wrapper {
  color: #fff;
}

.testimonials-section .section-subtitle-wrapper {
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card-wrapper {
  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-wrapper:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-stars-wrapper {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
}

.testimonial-text-wrapper {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.testimonial-author-wrapper {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .testimonials-grid-wrapper {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ===== FAQ ===== */
.faq-section {
  padding: 120px 0;
  background: var(--color-bg-white);
}

.faq-container-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-wrapper {
  background: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item-wrapper.faq-item-active {
  border-color: rgba(255, 107, 53, 0.3);
}

.faq-question-wrapper {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

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

.faq-icon-wrapper {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition);
  line-height: 1;
}

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

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-wrapper .faq-answer-text {
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.85;
  font-weight: 400;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
}

.cta-section .cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-section .cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .button-primary {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  position: relative;
}

.cta-section .button-primary:hover {
  background: var(--color-bg-dark);
  color: #fff;
  border-color: var(--color-bg-dark);
}

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

/* ===== CONTACT ===== */
.contact-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-wrapper {
  background: var(--color-bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-info-wrapper .contact-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.contact-info-wrapper .contact-text {
  font-size: 0.95rem;
  color: var(--color-text-body);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.contact-label-wrapper {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-value-wrapper {
  color: var(--color-text-primary);
  font-weight: 500;
}

.contact-link-wrapper {
  color: var(--color-primary);
}

.contact-link-wrapper:hover {
  color: var(--color-primary-dark);
}

.contact-address-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.form-card-wrapper {
  background: var(--color-bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.form-input-wrapper {
  width: 100%;
  padding: 16px 0;
  margin-bottom: 1.8rem;
  border: none;
  border-bottom: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-input-wrapper::placeholder {
  color: var(--color-text-muted);
}

.form-input-wrapper:focus {
  border-bottom-color: var(--color-primary);
}

textarea.form-input-wrapper {
  resize: none;
}

@media (max-width: 860px) {
  .contact-grid-wrapper { grid-template-columns: 1fr; }
}

/* ===== LEGAL ===== */
.legal-content-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.legal-content-wrapper .legal-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.legal-date-wrapper {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.legal-content-wrapper .legal-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin: 2.5rem 0 1rem;
}

.legal-content-wrapper .legal-text {
  color: var(--color-text-body);
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 400;
}

.legal-content-wrapper .legal-list {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.legal-content-wrapper .legal-list-item {
  color: var(--color-text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.legal-link-wrapper {
  color: var(--color-primary);
}

.legal-link-wrapper:hover {
  color: var(--color-primary-dark);
}

.legal-strong-wrapper {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer-main {
  background: var(--color-bg-dark);
  padding: 80px 5% 40px;
}

.footer-grid-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo-wrapper {
  display: block;
  margin-bottom: 1.2rem;
}

.footer-logo-image {
  height: 36px;
  width: auto;
}

.footer-col-wrapper .footer-description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-col-wrapper .footer-link-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: color var(--transition);
  font-weight: 300;
}

.footer-link-item:hover {
  color: var(--color-primary);
}

.footer-heading-wrapper {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.8rem;
}

.footer-bottom-wrapper {
  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.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer-grid-wrapper { gap: 1.5rem; }
  .footer-bottom-wrapper {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid-wrapper { grid-template-columns: 1fr; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner-wrapper {
  position: fixed;
  bottom: -500px;
  left: 0;
  width: 100%;
  background: var(--color-bg-white);
  padding: 28px 5%;
  z-index: 9999;
  transition: bottom var(--transition-slow);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--color-primary);
}

.cookie-banner-wrapper.cookie-banner-active {
  bottom: 0;
}

.cookie-inner-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text-wrapper {
  flex: 1;
}

.cookie-text-wrapper .cookie-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.cookie-text-wrapper .cookie-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.cookie-link-wrapper {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-buttons-wrapper {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-buttons-wrapper .button-primary {
  padding: 12px 28px;
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  .cookie-inner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

/* ===== EDITORIAL / REVIEW ===== */
.editorial-article-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-article-wrapper .editorial-image {
  width: 80%;
  max-width: 650px;
  display: block;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.editorial-article-wrapper .editorial-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin: 3rem 0 1.2rem;
}

.editorial-article-wrapper .editorial-text {
  font-size: 1.05rem;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-weight: 400;
}

.pull-quote-wrapper {
  border-left: 4px solid var(--color-primary);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  font-style: italic;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.comparison-table-wrapper .comparison-header-cell {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-body);
}

.comparison-table-wrapper .comparison-header-cell {
  background: var(--color-bg-dark);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
}

.comparison-table-wrapper .comparison-body-row:last-child .comparison-body-cell {
  border-bottom: none;
}

.comparison-table-wrapper .comparison-body-row:hover .comparison-body-cell {
  background: var(--color-bg-main);
}

.comparison-table-wrapper .comparison-highlight-cell {
  background: rgba(255, 107, 53, 0.05);
  color: var(--color-text-primary);
  font-weight: 500;
}

.comparison-header-cell.comparison-highlight-header {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 768px) {
  .comparison-header-cell,
  .comparison-body-cell {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* ===== MODAL ===== */
.modal-overlay-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay-wrapper.modal-active {
  opacity: 1;
  visibility: visible;
}

.modal-box-wrapper {
  background: var(--color-bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition);
  box-shadow: var(--shadow-xl);
}

.modal-overlay-wrapper.modal-active .modal-box-wrapper {
  transform: translateY(0) scale(1);
}

.modal-box-wrapper .modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-box-wrapper .modal-text {
  color: var(--color-text-body);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-box-wrapper .button-primary {
  width: 100%;
  padding: 1rem;
}

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