/* ===================================
   RedEarthOne Farm Management Website
   Design System & Global Styles
   =================================== */

/* CSS Variables - Design System */
:root {
  /* Colors */
  --charcoal: #121212;
  --dark-grey: #1E1E1E;
  --soft-sand: #F5F2EE;
  --earth-red: #8B2C1F;
  --earth-red-light: #A03529;
  --clay-brown: #6B5045;
  --warm-sand: #E6E2DD;
  --stone-grey: #D6CEC2;
  --white: #FFFFFF;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --heading-weight: 600;
  --heading-weight-bold: 700;
  --heading-weight-extra: 800;
  --body-weight: 400;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Layout */
  --max-width: 1280px;
  --header-height: 140px;

  /* Transitions */
  --transition-speed: 0.3s;
  --transition-slow: 0.6s;
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-family);
  font-weight: var(--body-weight);
  line-height: var(--line-height);
  color: var(--charcoal);
  background-color: var(--soft-sand);
  overflow-x: hidden;
}

/* Ensure main content doesn't hide behind fixed header */
main {
  position: relative;
}

/* For pages WITHOUT hero sections, add padding to first section */
.section:first-child:not(.hero-video-section) {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed) ease;
}

ul {
  list-style: none;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal);
  font-weight: var(--heading-weight-bold);
  line-height: 1.15;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--clay-brown);
}

/* ===================================
   Header & Navigation (Transparent Overlay)
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  transition: background var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure header is always visible with dark background on light sections */
.header.on-light {
  background: rgba(10, 10, 10, 0.9);
}

/* Transparent header on homepage to show videos - ALWAYS transparent and absolute position */
.home-page .header {
  position: absolute !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-page .header.scrolled {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 1.5rem;
  font-weight: var(--heading-weight-extra);
  z-index: 10;
}

.logo-image {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 110px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Subtle glow for visibility on dark backgrounds */
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3))
          drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 12px rgba(255, 255, 255, 0.4))
          drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
}

/* Mobile logo sizing */
@media (max-width: 768px) {
  .logo-image {
    padding: 0.8rem 0;
  }

  .logo-img {
    height: 70px;
  }
}

/* Tablet sizing */
@media (max-width: 1024px) and (min-width: 769px) {
  .logo-image {
    padding: 1rem 0;
  }

  .logo-img {
    height: 90px;
  }
}

.logo-red { color: var(--earth-red); }
.logo-earth { color: var(--stone-grey); }
.logo-one { color: var(--white); }

.nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: var(--earth-red);
  text-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.language-selector-wrapper {
  position: relative;
}

.language-selector-button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.language-selector-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 150px;
  display: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.language-dropdown.active {
  display: block;
}

.language-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
}

.language-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Buttons */
.btn {
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--earth-red);
  color: var(--white);
  border: 2px solid var(--earth-red);
}

.btn-primary:hover {
  background-color: var(--earth-red-light);
  border-color: var(--earth-red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139, 44, 31, 0.4);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--stone-grey);
}

.btn-secondary:hover {
  background: var(--warm-sand);
  border-color: var(--clay-brown);
}

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 10;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition-speed) ease;
  border-radius: 2px;
}

/* ===================================
   Layout & Containers
   =================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-alt {
  background-color: var(--warm-sand);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--earth-red);
  margin-bottom: 0.75rem;
}

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--clay-brown);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===================================
   Hero Video Section (Full Screen)
   =================================== */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Fallback background if video doesn't load */
  background: linear-gradient(135deg, #1a1614 0%, #2d2520 50%, #3d3530 100%);
}

.video-background .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.video-background .hero-video.active {
  opacity: 1;
  z-index: 2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.scene-label {
  position: absolute;
  top: calc(var(--header-height) + 1.5rem);
  right: var(--spacing-md);
  z-index: 5;
}

.scene-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition-speed) ease;
}

.video-dots {
  position: absolute;
  right: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  padding: 0;
}

.dot.active {
  background: var(--earth-red);
  border-color: var(--earth-red);
  transform: scale(1.3);
}

.hero-text-overlay {
  position: relative;
  z-index: 5;
  padding: 0 var(--spacing-md) 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--earth-red);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: 4.5rem;
  font-weight: var(--heading-weight-extra);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-highlight {
  color: var(--earth-red);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-arrow {
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===================================
   Trust Strip
   =================================== */

.trust-strip {
  background-color: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--stone-grey);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 44, 31, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-red);
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--charcoal);
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--clay-brown);
  margin-bottom: 0;
}

/* ===================================
   Feature Cards
   =================================== */

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  transition: all var(--transition-speed) ease;
  border: 1px solid rgba(214, 206, 194, 0.5);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--earth-red);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: var(--heading-weight-extra);
  color: rgba(139, 44, 31, 0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.feature-card p {
  color: var(--clay-brown);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.feature-card ul {
  padding-left: 0;
}

.feature-card li {
  padding: 0.35rem 0;
  color: var(--clay-brown);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-weight: bold;
}

/* ===================================
   Compliance Highlight
   =================================== */

.compliance-highlight {
  padding: var(--spacing-xl) 0;
  background: var(--charcoal);
  color: var(--white);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.compliance-text h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.compliance-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.compliance-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: var(--heading-weight-extra);
  color: var(--earth-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.compliance-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.compliance-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}

.c-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  width: 280px;
  transition: all var(--transition-slow) ease;
}

.c-card-1 { top: 0; left: 0; z-index: 3; }
.c-card-2 { top: 40px; left: 40px; z-index: 2; }
.c-card-3 { top: 80px; left: 80px; z-index: 1; }

.c-card:hover { transform: translateY(-4px); }

.c-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 44, 31, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--earth-red);
}

.c-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.c-card-status {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
}

.c-card-status.success {
  background: rgba(45, 95, 46, 0.3);
  color: #7BC67E;
}

/* ===================================
   Benefit Cards
   =================================== */

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(214, 206, 194, 0.5);
  transition: all var(--transition-speed) ease;
}

.benefit-card:hover {
  border-color: var(--earth-red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.benefit-number {
  font-size: 2rem;
  font-weight: var(--heading-weight-extra);
  color: rgba(139, 44, 31, 0.15);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--clay-brown);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  background: var(--charcoal);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

/* ===================================
   Pricing Cards
   =================================== */

.pricing-currency-selector {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pricing-currency-selector label {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.currency-dropdown {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  min-width: 280px;
  font-weight: 500;
}

.currency-dropdown:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.currency-dropdown:focus {
  outline: none;
  border-color: var(--earth-red);
  background: rgba(255, 255, 255, 0.15);
}

.currency-dropdown option {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.pricing-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--stone-grey);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--earth-red);
  box-shadow: 0 8px 32px rgba(139, 44, 31, 0.15);
  transform: scale(1.03);
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--stone-grey);
  margin-bottom: var(--spacing-md);
}

.pricing-tier {
  font-size: 1.5rem;
  color: var(--charcoal);
  font-weight: var(--heading-weight-bold);
  margin-bottom: var(--spacing-xs);
}

.pricing-price {
  font-size: 2.5rem;
  color: var(--earth-red);
  font-weight: var(--heading-weight-extra);
  margin-bottom: var(--spacing-xs);
}

.pricing-period {
  color: var(--clay-brown);
  font-size: 0.9rem;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.pricing-features li {
  padding: 0.4rem 0;
  color: var(--clay-brown);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-weight: bold;
}

/* ===================================
   Form Styles
   =================================== */

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--stone-grey);
  border-radius: 8px;
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--earth-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* ===================================
   Footer
   =================================== */

.footer {
  background-color: var(--charcoal);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-red { color: var(--earth-red); }
.footer-logo .logo-earth { color: var(--stone-grey); }
.footer-logo .logo-one { color: var(--white); }

.footer-section h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}

.footer-section ul li a:hover {
  color: var(--earth-red);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ===================================
   Hero Simple (for pricing, about pages)
   =================================== */

.hero-simple {
  padding: calc(var(--header-height) + var(--spacing-lg)) 0 var(--spacing-lg);
  background: linear-gradient(135deg, var(--soft-sand) 0%, var(--warm-sand) 100%);
  text-align: center;
}

.hero-simple h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--clay-brown);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   Section Variants
   =================================== */

.section-dark {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--spacing-xl) 0;
}

.section-light {
  background: var(--soft-sand);
  padding: var(--spacing-xl) 0;
}

/* ===================================
   Pricing Page Specific
   =================================== */

.pricing-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card-featured {
  position: relative;
  border-color: var(--earth-red) !important;
  box-shadow: 0 12px 40px rgba(139, 44, 31, 0.25) !important;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--earth-red);
  color: var(--white);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(139, 44, 31, 0.3);
}

.pricing-price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--clay-brown);
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.pricing-currency-note {
  text-align: center;
  margin-top: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
  margin-top: auto;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--stone-grey);
  transition: all var(--transition-speed) ease;
}

.faq-item:hover {
  border-color: var(--earth-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--clay-brown);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   Error Pages
   =================================== */

.error-section {
  text-align: center;
  padding: var(--spacing-xl) 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-section h1 {
  font-size: 6rem;
  color: var(--earth-red);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
  .hero-headline { font-size: 3.5rem; }
  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-visual { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    gap: 0.25rem;
    transition: left var(--transition-speed) ease;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active { left: 0; }

  .nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }

  .header-actions .btn { display: none; }

  .hero-headline { font-size: 2.5rem; }
  .hero-text-overlay { padding-bottom: 5rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }

  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .compliance-stats { flex-direction: column; gap: 1.5rem; }
  .video-dots { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .trust-items { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
}

/* ===================================
   Animations
   =================================== */

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

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

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 1 !important;
}
