@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-canvas: #fcfbfa;
  --bg-white: #ffffff;
  --bg-cream: #f6f1e8;
  --bg-dark: #0c0d0f;
  --text-dark: #121417;
  --text-muted: #5e646d;
  
  /* Athletic Red & Technical Accents */
  --accent-red: #d13d3d;
  --accent-red-dark: #b82e2e;
  --accent-red-glow: rgba(209, 61, 61, 0.06);
  --border-light: #e6e4de;
  --border-heavy: #d13d3d;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
  
  --shadow-sm: 0 2px 4px rgba(12, 13, 15, 0.015);
  --shadow-md: 0 10px 20px -5px rgba(12, 13, 15, 0.03);
  --shadow-lg: 0 20px 40px -10px rgba(12, 13, 15, 0.06);
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-canvas);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-dark);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Luxury Athletic Logo */
.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}

.brand-logo .logo-box {
  width: 28px;
  height: 28px;
  background-color: var(--accent-red);
  color: var(--bg-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 4px;
  transform: rotate(-5deg);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-box {
  transform: rotate(5deg) scale(1.05);
}

.brand-logo .logo-text {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-logo .logo-text span {
  font-weight: 300;
  color: var(--accent-red);
}

.title-xl {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.title-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.subtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

/* Athletic Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loader-bar-container {
  width: 160px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar {
  width: 60px;
  height: 100%;
  background-color: var(--accent-red);
  position: absolute;
  left: -60px;
  animation: runBar 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes runBar {
  0% { left: -60px; }
  100% { left: 160px; }
}

.loader-text {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--bg-canvas);
}

/* Affiliate Regulatory Top Banner */
.affiliate-banner {
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  text-align: center;
  padding: 10px 15px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1001;
}

/* Header & Sticky Nav */
header {
  position: sticky;
  top: 0; width: 100%;
  padding: 24px 0;
  z-index: 1000;
  background: rgba(252, 251, 250, 0.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(209, 61, 61, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background-color: var(--accent-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-red);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dynamic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--text-dark);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-solid {
  background-color: var(--text-dark);
  color: var(--bg-canvas);
  border-color: var(--text-dark);
}

.btn-solid:hover {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--bg-canvas);
  transform: translateY(-2px);
}

.btn-red {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--bg-white);
}

.btn-red:hover {
  background-color: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 360px; height: 100vh;
  background: var(--bg-white);
  box-shadow: -10px 0 40px rgba(12, 13, 15, 0.05);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right var(--transition-smooth);
}

.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-dark); letter-spacing: -0.01em; text-transform: uppercase; font-weight: 700; }
.mobile-nav a.active { color: var(--accent-red); }

.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: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Editorial Hero Section (Asymmetric Split Layout) */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0 100px;
  position: relative;
  background: radial-gradient(circle at 10% 20%, var(--bg-cream) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 5.5fr 6.5fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.hero-img-wrapper {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper::after {
  content: 'RED / CREAM';
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--bg-cream);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img:hover {
  transform: scale(1.04) rotate(-3deg);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-canvas);
  margin-bottom: 1.2rem;
}

.trust-badge span {
  width: 6px; height: 6px;
  background-color: var(--accent-red);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-img-wrapper { max-width: 480px; margin: 0 auto; padding: 1.5rem; }
  .hero-img-wrapper::after { font-size: 3.5rem; }
}

/* Feature Tech Highlight Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

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

.feature-card {
  background: var(--bg-canvas);
  padding: 4rem 2.2rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background-color: var(--accent-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
  border-color: var(--accent-red);
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-cream);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--transition-fast);
}

.feature-card:hover .feature-number {
  color: var(--accent-red-glow);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* Editorial Block Layout (High Performance Analysis) */
.editorial {
  padding: 100px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.editorial-img-wrapper {
  position: relative;
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.editorial-img-wrapper img {
  width: 100%;
  display: block;
}

.editorial-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.checklist {
  list-style: none;
  margin: 2rem 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.checklist li svg {
  width: 18px; height: 18px;
  fill: var(--accent-red);
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .editorial-grid.reverse .editorial-text { order: 2; }
  .editorial-grid.reverse .editorial-img-wrapper { order: 1; }
}

/* Laboratory Expert Test page Styles */
.review-header {
  text-align: center;
  padding: 120px 0 80px;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}

.review-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rating-stars {
  color: var(--accent-red);
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-body {
  max-width: 780px;
  margin: 80px auto;
  padding: 0 20px;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 3.5rem 0 1.2rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.article-body p {
  margin-bottom: 1.8rem;
  font-size: 1.06rem;
  line-height: 1.8;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent-red-dark);
  border-left: 3px solid var(--accent-red);
  padding-left: 2rem;
  margin: 3.5rem 0;
}

/* Metric Test Meters */
.metric-meters {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  margin: 3rem 0;
}

.metric-item {
  margin-bottom: 1.5rem;
}

.metric-item:last-child {
  margin-bottom: 0;
}

.metric-info {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.metric-bar-bg {
  width: 100%;
  height: 6px;
  background-color: rgba(12, 13, 15, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background-color: var(--accent-red);
  border-radius: 3px;
}

/* Editorial Pros and Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3.5rem 0;
}

.pro-card {
  background-color: var(--bg-white);
  padding: 2.2rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-red);
}

.con-card {
  background-color: var(--bg-white);
  padding: 2.2rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--text-dark);
}

@media (max-width: 768px) {
  .pros-cons-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Product Showcase Grid with Sticky Gallery */
.product-showcase {
  padding: 100px 0;
  background-color: var(--bg-canvas);
}

.product-showcase .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: start;
}

@media (min-width: 901px) {
  .gallery-container {
    position: sticky;
    top: 130px;
  }
}

.gallery-main {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-main img {
  width: 100%;
  display: none;
  animation: fadeEffect 0.5s ease-in-out;
}

.gallery-main img.active {
  display: block;
}

@keyframes fadeEffect {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.thumb-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-btn img {
  width: 100%;
  display: block;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--accent-red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.product-details {
  padding-top: 0.5rem;
}

.product-details h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
}

.product-rating span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-card {
  background: var(--bg-dark);
  color: var(--bg-canvas);
  padding: 2.2rem;
  border-radius: 6px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--accent-red);
}

.price-card .price-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 0.4rem;
  display: block;
}

.price-card .price-amount {
  font-size: 2.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.price-card .price-meta {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

.spec-list {
  list-style: none;
  margin: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
}

.spec-list span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.spec-list span:last-child {
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .product-showcase .container { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* Sizing Guide Block */
.sizing-guide {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.2rem;
  margin: 2.5rem 0;
}

.sizing-guide h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.sizing-guide p {
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.size-table-container {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.85rem;
}

.size-table th, .size-table td {
  padding: 8px 12px;
  border: 1px solid var(--border-light);
}

.size-table th {
  background-color: var(--text-dark);
  color: var(--bg-canvas);
  font-weight: 700;
}

.size-table td {
  background-color: var(--bg-white);
  font-weight: 600;
}

/* Tech Comparison Section */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.comparison-wrapper {
  margin-top: 4rem;
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-white);
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  text-transform: uppercase;
}

.comparison-table th.highlight-column, .comparison-table td.highlight-column {
  background-color: rgba(209, 61, 61, 0.02);
  border-left: 2px solid rgba(209, 61, 61, 0.15);
  border-right: 2px solid rgba(209, 61, 61, 0.15);
}

.comparison-table tr:hover td {
  background-color: var(--bg-canvas);
}

.comparison-table tr:hover td.highlight-column {
  background-color: rgba(209, 61, 61, 0.04);
}

.comparison-table svg {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

.comparison-table svg.check { fill: var(--accent-red); }
.comparison-table svg.cross { fill: var(--text-muted); }

/* Interactive FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.faq-icon {
  width: 18px; height: 18px;
  fill: var(--accent-red);
  transition: transform var(--transition-fast);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
}

.faq-content p {
  padding-bottom: 20px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-red);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  fill: var(--text-dark);
}

.faq-item.active .faq-content {
  max-height: 400px;
}

/* Contact Page Styles */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.2rem;
}

.contact-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.2rem;
  margin-bottom: 2rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
}

.contact-form-container {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 4rem 3.5rem;
}

.contact-form-container h2 {
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px var(--accent-red-glow);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact-form-container { padding: 3rem 1.8rem; }
}

/* Legal Documents layout */
.legal-page {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.2rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.legal-content ul, .legal-content ol {
  margin: 1.6rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  padding: 80px 0 40px;
  border-top: 3px solid var(--accent-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
  border-bottom: 1px solid rgba(230, 228, 222, 0.05);
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  display: flex !important;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}

.footer-logo .logo-box {
  width: 28px;
  height: 28px;
  background-color: var(--accent-red);
  color: var(--bg-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 4px;
  transform: rotate(-5deg);
  transition: transform var(--transition-fast);
}

.footer-logo:hover .logo-box {
  transform: rotate(5deg) scale(1.05);
}

.footer-logo .logo-text {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-logo .logo-text span {
  font-weight: 300;
  color: var(--accent-red);
}

.footer-col p {
  color: #8c929c;
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  margin-bottom: 1.8rem;
}

.footer-col a {
  color: #8c929c;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  display: inline-block;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--bg-white);
  transform: translateX(3px);
}

.regulatory-disclaimer {
  padding: 40px 0 20px;
  border-bottom: 1px solid rgba(230, 228, 222, 0.05);
}

.regulatory-disclaimer p {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #686e77;
}

.regulatory-disclaimer p strong {
  color: var(--bg-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-bottom p {
  color: #686e77;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.2rem; }
}

/* Beautiful GDPR / PECR Cookie Consent Banner overlay */
.cookie-banner {
  position: fixed;
  bottom: 30px; left: 30px;
  max-width: 440px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-red);
  border-radius: 6px;
  padding: 2.2rem;
  box-shadow: 0 15px 40px rgba(12, 13, 15, 0.15);
  z-index: 9999;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transform: translateY(calc(100% + 50px));
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
}

.cookie-banner p a {
  color: var(--accent-red);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 12px 0;
  font-size: 0.76rem;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 15px; right: 15px; bottom: 15px;
    max-width: none;
    padding: 1.8rem;
  }
}
