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

:root {
  /* ===== ANTUCAR THEME: Dark Automotive ===== */
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2128;
  --bg-card-hover: #22272e;
  --text-dark: #f0f6fc;
  --text-body: #8b949e;
  --text-light: #6e7681;
  --accent: #2ea043;
  --accent-dark: #238636;
  --accent-light: #56d364;
  --accent-glow: rgba(46, 160, 67, 0.2);
  --accent-soft: rgba(46, 160, 67, 0.08);
  --accent-amber: #f0883e;
  --border: rgba(48, 54, 61, 0.6);
  --border-accent: rgba(46, 160, 67, 0.4);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-sans: 'Barlow', -apple-system, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-body, .site-body *, .site-body *::before, .site-body *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

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

.site-body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.8;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.base-heading {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 600;
}

.base-link { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
.base-link:hover { color: var(--accent-light); }

.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: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--accent);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  animation: pulse 1.5s ease infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition-fast);
}
.site-header.scrolled {
  background: rgba(13, 17, 23, 0.98);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 22px 0;
  transition: padding var(--transition-fast);
}
.site-header.scrolled .nav-container { padding: 12px 0; }

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  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);
  transition: width var(--transition-fast);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-light); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; transition: all var(--transition-fast); }

.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: 1.8rem 0; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--text-dark); letter-spacing: 0.05em; }

.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: 16px 40px;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  cursor: pointer; border: 1.5px solid var(--accent);
  background: transparent; color: var(--accent);
  transition: all var(--transition-fast); text-align: center;
  border-radius: var(--radius-full);
}
.btn:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-light); border-color: var(--accent-light); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s 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: 100px;
}
.hero::before {
  content: ''; position: absolute;
  top: -20%; right: -10%; width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  animation: float-shape 14s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -10%; left: -5%; width: 50vw; height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 136, 62, 0.05) 0%, transparent 65%);
  animation: float-shape 18s ease-in-out infinite reverse;
  pointer-events: none; z-index: 0;
}
@keyframes float-shape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-60px) scale(1.05); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 80px 0; position: relative; z-index: 1;
}
.hero-text { max-width: 520px; }
.hero-text .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--accent);
  margin-bottom: 1.5rem; padding: 8px 20px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  background: var(--accent-soft);
}
.hero-text h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05; margin-bottom: 1.8rem;
  letter-spacing: -0.01em; font-family: var(--font-display);
  font-weight: 700;
}
.hero-text h1 em {
  font-style: normal; color: var(--accent);
  display: block; font-weight: 700;
}
.hero-text p {
  font-size: 1rem; color: var(--text-body);
  margin-bottom: 2.5rem; line-height: 1.9; font-weight: 300;
}
.hero-price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 2.5rem; }
.hero-price { font-family: var(--font-display); font-size: 3rem; color: var(--accent); font-weight: 700; }
.hero-price-note { font-size: 0.85rem; color: var(--text-light); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrapper {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  background: var(--bg-card); border: 1px solid var(--border);
}
.hero-img-wrapper::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  pointer-events: none; z-index: 1;
}
.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: 500px; margin: 0 auto; }
  .hero-price-row { justify-content: center; }
  .hero-actions { justify-content: center; }
}

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

/* ===== FEATURES ===== */
.features-section { padding: 120px 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), transparent);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .tag {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; font-family: var(--font-display); }
.section-header p { font-size: 1rem; color: var(--text-body); max-width: 520px; margin: 0 auto; font-weight: 300; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--bg-card); padding: 3rem 2.5rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all var(--transition-fast);
  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);
  transform: scaleX(0); transition: transform var(--transition-slow);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--border-accent); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px; background: var(--accent-soft);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--accent); stroke-width: 1.5; fill: none; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; font-family: var(--font-display); font-weight: 600; color: var(--text-dark); }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

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

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase { padding: 120px 0; position: relative; }
.product-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 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-lg);
  border: 1px solid var(--border); margin-bottom: 14px;
}
.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: 12px; }
.product-thumbs img {
  width: 100px; height: 100px; object-fit: cover;
  border-radius: var(--radius-md); cursor: pointer;
  border: 2px solid transparent; opacity: 0.5;
  transition: all var(--transition-fast);
}
.product-thumbs img:hover, .product-thumbs img.active { opacity: 1; border-color: var(--accent); }

.product-info h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 0.8rem; line-height: 1.15; font-family: var(--font-display); }
.product-subtitle { font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.product-price { font-family: var(--font-display); font-size: 2.8rem; color: var(--accent); margin-bottom: 0.5rem; font-weight: 700; }
.product-tax { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2rem; }
.product-desc { font-size: 0.97rem; color: var(--text-body); margin-bottom: 2rem; line-height: 1.9; font-weight: 300; }
.product-highlights { list-style: none; margin-bottom: 2.5rem; 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: 1.1rem 1.5rem; 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.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.product-highlights span:last-child { color: var(--text-body); }

.btn-buy { width: 100%; max-width: 420px; padding: 18px; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 1rem; }
.btn-buy svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.buy-note { font-size: 0.8rem; 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: 120px 0; background: var(--bg-secondary); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; 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: 120px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  transition: all var(--transition-fast);
}
.testimonial-card:hover { border-color: var(--border-accent); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1.5rem; letter-spacing: 4px; }
.testimonial-text {
  font-size: 1rem; color: var(--text-body); line-height: 1.8;
  margin-bottom: 1.8rem; font-style: italic;
  font-family: var(--font-display); font-size: 1.1rem;
}
.testimonial-author { font-size: 0.78rem; font-weight: 600; 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: 120px 0; background: var(--bg-secondary); }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 12px;
  overflow: hidden; transition: border-color var(--transition-fast);
}
.faq-item:has(.faq-question.active) { border-color: var(--border-accent); }
.faq-question {
  width: 100%; background: transparent; border: none;
  padding: 1.5rem 2rem; font-family: var(--font-sans);
  font-size: 0.95rem; 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-fast);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: var(--accent); transition: transform var(--transition-fast); 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 2rem 1.5rem; color: var(--text-body); font-size: 0.92rem; line-height: 1.9; font-weight: 300; }

/* ===== CTA ===== */
.cta-section {
  padding: 120px 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: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 1.5rem; font-family: var(--font-display); }
.cta-section p { font-size: 1.05rem; color: var(--text-body); margin-bottom: 3rem; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }

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

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info { background: var(--bg-card); padding: 3rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-info h3 { font-size: 2rem; margin-bottom: 2rem; font-family: var(--font-display); color: var(--text-dark); }
.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.8rem; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-info a { color: var(--accent); }
.contact-info a:hover { color: var(--accent-light); }
.form-card { background: var(--bg-card); padding: 3rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.form-input {
  width: 100%; padding: 14px 0; margin-bottom: 2rem;
  border: none; border-bottom: 1.5px solid var(--border);
  background: transparent; color: var(--text-dark);
  font-family: var(--font-sans); font-size: 0.95rem;
  outline: none; transition: border-color var(--transition-fast);
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus { border-bottom-color: var(--accent); }
.form-textarea { resize: none; }

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

/* ===== LEGAL ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 3rem; text-align: center; font-size: clamp(2.2rem, 4vw, 3.2rem); font-family: var(--font-display); }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 1rem; color: var(--text-dark); font-family: var(--font-display); font-weight: 600; }
.legal-content p { color: var(--text-body); margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.9; 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; }

/* ===== FOOTER ===== */
.site-footer { background: #010409; padding: 80px 5% 40px; color: rgba(240, 246, 252, 0.4); }
.site-footer .base-heading, .site-footer .base-link { color: inherit; }
.site-footer .base-link:hover { color: var(--accent-light); }
.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-display); font-size: 1.8rem; font-weight: 700;
  color: var(--accent); margin-bottom: 1.2rem; display: block; letter-spacing: 0.05em;
}
.footer-col p, .footer-col a {
  color: rgba(240, 246, 252, 0.4); font-size: 0.88rem;
  margin-bottom: 0.8rem; display: block; transition: color var(--transition-fast); font-weight: 300;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col p { line-height: 1.7; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(240, 246, 252, 0.25); margin-bottom: 1.8rem; }
.footer-bottom {
  max-width: 1200px; margin: 60px auto 0; padding-top: 30px;
  border-top: 1px solid rgba(240, 246, 252, 0.06);
  display: flex; justify-content: space-between; font-size: 0.78rem;
  color: rgba(240, 246, 252, 0.25); font-weight: 300;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: -500px; left: 0; width: 100%;
  background: var(--bg-card); border-top: 1px solid var(--border-accent);
  padding: 30px 5%; z-index: 9999; transition: bottom var(--transition-slow);
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.6);
}
#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: 1rem; margin-bottom: 0.5rem; font-family: var(--font-sans); font-weight: 600; color: var(--text-dark); }
.cookie-text p { font-size: 0.88rem; color: var(--text-body); font-weight: 300; }
.cookie-text a { color: var(--accent); text-decoration: underline; font-size: 0.88rem; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 12px 28px; font-size: 0.72rem; }
@media (max-width: 700px) { .cookie-inner { flex-direction: column; text-align: center; gap: 1.5rem; } }

/* ===== EDITORIAL / REVIEW ===== */
.editorial-article { max-width: 800px; margin: 0 auto; }
.editorial-article img { width: 80%; max-width: 650px; display: block; margin: 0 auto 3rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.editorial-article h3 { font-size: 2rem; margin: 3rem 0 1.2rem; font-family: var(--font-display); color: var(--text-dark); }
.editorial-article p { font-size: 1.05rem; color: var(--text-body); margin-bottom: 1.5rem; line-height: 1.95; 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.6rem; line-height: 1.5; font-style: italic; color: var(--text-dark); }

/* ===== COMPARISON TABLE ===== */
.comparison-section { width: 100%; max-width: 1000px; margin: 0 auto; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-family: var(--font-sans); background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.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(--bg-secondary); color: var(--text-dark); font-weight: 500; font-size: 1.05rem; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr { transition: background var(--transition-fast); }
.comparison-table tbody tr:hover { background: var(--bg-card-hover); }
.comparison-table .highlight-col { background: var(--accent-soft); color: var(--text-dark); font-weight: 500; }
.comparison-table th.highlight-col { color: var(--accent); background: rgba(46, 160, 67, 0.05); }
@media (max-width: 768px) { .comparison-table th, .comparison-table td { padding: 1rem; font-size: 0.9rem; } }
