@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Fresh teal/dark theme */
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2333;
  --bg-card-hover: #232d42;
  --text-dark: #e6edf3;
  --text-body: #8b949e;
  --text-light: #6e7681;
  --accent: #2dd4bf;
  --accent-dark: #14b8a6;
  --accent-light: #5eead4;
  --accent-glow: rgba(45, 212, 191, 0.12);
  --accent-bg: rgba(45, 212, 191, 0.08);
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(45,212,191,0.35);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.4);
  --glow: 0 0 50px rgba(45,212,191,0.1);

  --font-head: 'Outfit', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { 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.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-dark);
  font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:hover { color: var(--accent); }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.preloader-logo span { color: var(--text-dark); }
.preloader-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(45,212,191,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-text {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  animation: pulse 1.5s ease infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
  background: linear-gradient(135deg, #0d2621, #0d1117);
  border-bottom: 1px solid rgba(45,212,191,0.15);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2001;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13,17,23,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 0 5%;
}
header.scrolled {
  background: rgba(13,17,23,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: var(--border-accent);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}
.brand-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.brand-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.4rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--text-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,0.98);
  backdrop-filter: blur(20px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.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); }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: all var(--transition);
  text-align: center;
  border-radius: 50px;
}
.btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,212,191,0.25);
}
.btn-solid {
  background: var(--accent);
  color: var(--bg-primary);
}
.btn-solid:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(45,212,191,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35%;
  height: 35%;
  background: radial-gradient(ellipse at 20% 80%, rgba(45,212,191,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 520px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 1.4rem;
  padding: 5px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  background: var(--accent-bg);
}
.hero-text h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-text p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 2.2rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 2.2rem;
}
.hero-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 700;
}
.hero-price-note {
  font-size: 0.82rem;
  color: var(--text-light);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover), var(--glow);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,212,191,0.04), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.hero-img-wrapper:hover img { transform: scale(1.04); }

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

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  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.4rem;
}
.feature-card {
  background: var(--bg-card);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-accent);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-bg);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

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

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

.product-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.product-subtitle {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.4rem;
  font-family: var(--font-head);
}
.product-price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.product-tax {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}
.product-desc {
  font-size: 0.96rem;
  color: var(--text-body);
  margin-bottom: 1.8rem;
  line-height: 1.85;
  font-weight: 300;
}
.product-highlights {
  list-style: none;
  margin-bottom: 2.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.product-highlights li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.product-highlights li:last-child { border-bottom: none; }
.product-highlights span:first-child {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-highlights span:last-child { color: var(--text-body); }

.btn-buy {
  width: 100%;
  max-width: 380px;
  padding: 16px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.7rem;
}
.btn-buy svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.buy-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

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

/* ===== PHILOSOPHY ===== */
.philosophy-section { padding: 100px 0; }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.philosophy-grid .hero-img-wrapper { order: 1; }
.philosophy-grid .hero-text { order: 2; }

@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-grid .hero-img-wrapper,
  .philosophy-grid .hero-text { order: unset; }
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; }
.faq-container { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item:has(.faq-question.active) { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.3rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  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.7rem 1.3rem;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,212,191,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 2.2rem;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--text-dark);
  background: rgba(45,212,191,0.04);
}
.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.highlight-col {
  background: rgba(45,212,191,0.05);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
}
.comparison-table td { font-size: 0.88rem; color: var(--text-body); }

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

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info {
  background: var(--bg-card);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-info h3 {
  font-size: 1.7rem;
  margin-bottom: 1.8rem;
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.contact-info strong {
  color: var(--text-dark);
  display: block;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-head);
}
.contact-info a { color: var(--accent); }
.contact-info a:hover { color: var(--accent-light); }

.form-card {
  background: var(--bg-card);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-input {
  width: 100%;
  padding: 13px 0;
  margin-bottom: 1.6rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder { color: var(--text-light); }
.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: 780px; margin: 0 auto; }
.legal-content h1 {
  margin-bottom: 2.8rem;
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.legal-content h2 {
  font-size: 1.25rem;
  margin: 2.2rem 0 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}
.legal-content p {
  color: var(--text-body);
  margin-bottom: 1.1rem;
  font-size: 0.94rem;
  line-height: 1.85;
  font-weight: 300;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.legal-content li {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 70px 5% 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--accent); }
.footer-col p,
.footer-col a {
  color: var(--text-body);
  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 p { line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border-accent);
  padding: 26px 5%;
  z-index: 9999;
  transition: bottom var(--transition-slow);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}
#cookie-banner.active { bottom: 0; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cookie-text { flex: 1; }
.cookie-text h4 {
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-head);
}
.cookie-text p {
  font-size: 0.87rem;
  color: var(--text-body);
  font-weight: 300;
}
.cookie-text a { color: var(--accent); text-decoration: underline; font-size: 0.87rem; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 10px 24px; font-size: 0.75rem; }
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
}

/* ===== EDITORIAL / REVIEW ===== */
.editorial-article { max-width: 760px; margin: 0 auto; }
.editorial-article img {
  width: 75%;
  max-width: 580px;
  display: block;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.editorial-article h3 {
  font-size: 1.6rem;
  margin: 2.8rem 0 1rem;
}
.editorial-article p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 1.4rem;
  line-height: 1.9;
  font-weight: 300;
}
.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.6rem;
  margin: 2.5rem 0;
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-dark);
  font-weight: 400;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto 1.2rem;
  border-radius: 2px;
}
