/* ==========================================================================
   Base Elements & Utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 1;
}

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

.section-dark {
  background-color: var(--primary-deep-green);
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: var(--spacing-md);
}

/* Typography Helpers */
.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-deep-green);
  margin-bottom: var(--spacing-xs);
}

.section-dark .section-subtitle.accent {
  color: var(--accent-orange);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.section-dark .section-title {
  color: var(--text-light);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(245, 130, 32, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-medium);
  padding: var(--spacing-sm) 0;
}

.header.scrolled {
  background: rgba(253, 253, 253, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-deep-green);
  letter-spacing: -0.5px;
}

.header-logo {
  height: 85px;
  width: auto;
  transition: all var(--transition-fast);
}

.header-logo:hover {
  transform: scale(1.05);
}

.logo-green {
  display: none;
}

.header.scrolled .logo-white {
  display: none;
}

.header.scrolled .logo-green {
  display: block;
}

.header:not(.scrolled) .logo-text,
.header:not(.scrolled) .nav-link {
  /* When at top, if hero is dark, make text light. 
     Our hero is full screen colored blocks, so we need light text initially */
  color: var(--text-light);
}

.nav-links {
  display: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    gap: var(--spacing-md);
    transition: all var(--transition-medium);
  }

  .header.scrolled .nav-links {
    /* No longer needed but kept for safety if we ever want to override */
  }
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition-fast), transform var(--transition-fast);
  color: var(--text-dark);
}

.nav-link:hover {
  color: var(--accent-orange) !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-orange);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

@media (min-width: 768px) {
  .nav-actions .btn {
    display: inline-flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  z-index: 102;
  position: relative;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-deep-green);
  transition: all var(--transition-fast);
}

.header:not(.scrolled) .mobile-menu-btn span {
  background-color: var(--text-light);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--text-dark);
}

.mobile-menu-btn.active span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
  background-color: var(--text-dark);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color-light);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 4vh, 2rem);
  text-align: center;
}

.mobile-nav-link {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Hero Banner
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-deep-green-dark);
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

/* Slide Backgrounds */
.slide[data-slide="0"] {
  background: transparent;
}

.slide[data-slide="1"] {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 11;
  color: var(--text-light);
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: var(--spacing-md);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 12;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--accent-orange);
  transform: scale(1.3);
  box-shadow: var(--shadow-glow);
}

/* Premium Hero Visual System */
.hero-visual-system {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(145deg, #003a2c 0%, #006950 100%);
}

.grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.connection-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 0.5;
  fill: none;
}

.line-to-logo {
  stroke: rgba(255, 122, 0, 0.2);
  stroke-width: 1;
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.node-1 { top: 20%; left: 10%; }
.node-2 { top: 40%; left: 30%; }
.node-3 { top: 70%; left: 20%; }
.node-main {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 45%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
  animation: pulseNode 3s infinite ease-in-out;
}

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

.integrated-logo-wrapper {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-integrated-gear {
  width: 100%;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 0 30px rgba(255, 122, 0, 0.4));
  z-index: 2;
  animation: rotateIntegratedGear 30s linear infinite;
}

@keyframes rotateIntegratedGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
}

/* Typography Refinements */
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Button Upgrades */
.btn-primary {
  background-color: var(--accent-orange);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
  background-color: #ff8c2e;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .integrated-logo-wrapper { 
    right: 5%; 
    width: 200px;
    opacity: 0.3; /* Fade back on smaller screens */
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .integrated-logo-wrapper { display: none; }
}

.shape-2 {
  width: 40vw;
  height: 40vw;
  background-color: var(--accent-orange);
  bottom: -20%;
  left: -10%;
  opacity: 0.2;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

/* ==========================================================================
   What to Expect Grid
   ========================================================================== */
.wte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
  .wte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wte-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-color-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 130, 32, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  transition: transform var(--transition-fast);
}

.card:hover .card-icon {
  transform: scale(1.1);
  background: var(--accent-orange);
  color: white;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-deep-green);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.section-footer {
  margin-top: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-wte-line {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: var(--spacing-lg) auto;
  padding-left: var(--spacing-md);
}

@media (min-width: 768px) {
  .process-timeline {
    padding-left: 0;
  }
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: rgba(0, 105, 80, 0.1);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 48px;
  }
}

.timeline-step {
  position: relative;
  display: flex;
  margin-bottom: var(--spacing-lg);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-color-light);
  border: 2px solid var(--primary-deep-green);
  color: var(--primary-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  z-index: 2;
  margin-right: var(--spacing-sm);
  transition: all var(--transition-medium);
}

@media (min-width: 768px) {
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
    margin-right: var(--spacing-md);
    margin-left: 18px;
  }
}

.timeline-step:hover .step-number {
  background: var(--primary-deep-green);
  color: white;
  transform: scale(1.1);
}

.step-content {
  background: var(--bg-color-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-muted);
}

.timeline-summary {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(245, 130, 32, 0.05);
  border: 1px solid rgba(245, 130, 32, 0.2);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
}

.info-icon {
  color: var(--accent-orange);
  flex-shrink: 0;
}

/* ==========================================================================
   Vetting Section (Dark Mode)
   ========================================================================== */
#vetting {
  position: relative;
  overflow: hidden;
}

#vetting .container {
  position: relative;
  z-index: 2;
}

.vetting-gear-wrapper {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
  animation: floatGear 20s infinite ease-in-out alternate;
}

.vetting-video-overlay {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rotateGear 40s linear infinite;
}

@media (min-width: 768px) {
  .vetting-gear-wrapper {
    width: 800px;
    height: 800px;
    bottom: 0%;
    left: -10%;
  }
}

@media (min-width: 1024px) {
  .vetting-video-overlay {
    width: 1200px;
    height: 1200px;
    bottom: -30%;
    left: -20%;
  }
}

.vetting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .vetting-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

.vetting-content {
  position: relative;
}

.vetting-intro {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 500px;
}

/* Funnel Animation Concept */
.funnel-visual {
  margin-top: var(--spacing-xl);
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.funnel-ring {
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
}

.ring-1 {
  width: 100%;
  max-width: 300px;
}

.ring-2 {
  width: 70%;
  max-width: 210px;
}

.ring-3 {
  width: 40%;
  max-width: 120px;
}

.funnel-dot {
  width: 16px;
  height: 16px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  margin-top: 10px;
}

.vetting-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.v-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.v-step:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
}

.v-step.final-step {
  background: rgba(245, 130, 32, 0.1);
  border-color: rgba(245, 130, 32, 0.3);
}

.v-step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.v-step-num.highlight {
  color: var(--accent-orange);
}

.v-step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.v-step-text p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ==========================================================================
   Owners Message Section
   ========================================================================== */
.message-wrapper {
  margin-top: var(--spacing-xl);
  display: flex;
  flex-direction: column-reverse;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .message-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.message-content {
  flex: 1;
  position: relative;
  padding: var(--spacing-md);
  background: var(--bg-color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -20px;
}

.story-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.story-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.founders-images {
  flex: 1;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.founder-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founder-card:nth-child(2) {
  transform: translateY(20px);
}

.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #e5e7eb;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium);
}

.founder-card:hover .founder-img {
  transform: scale(1.05);
}

.founder-name {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: var(--spacing-lg) auto;
}

.faq-item {
  background: var(--bg-color-light);
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-deep-green);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(0, 105, 80, 0.02);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-orange);
  transition: transform var(--transition-fast);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  height: 14px;
  width: 2px;
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-cta {
  max-width: 600px;
  margin: var(--spacing-xl) auto 0;
}

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.final-cta {
  background-color: var(--primary-deep-green);
  color: white;
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto var(--spacing-lg);
}

.footer {
  background-color: var(--bg-color-light);
  padding: var(--spacing-xl) 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

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

.footer-tagline {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links-group h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--primary-deep-green);
}

.footer-links-group ul li {
  margin-bottom: 0.75rem;
}

.footer-links-group a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--accent-orange);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color-alt);
  color: var(--primary-deep-green);
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Helpers */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

/* Initial load hero animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpAnim 0.8s ease forwards;
}

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Modern Form Styles (Apply as Talent)
   ========================================================================== */
.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-color-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.modern-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.modern-form .form-group {
  flex: 1;
  min-width: 250px;
  margin-bottom: 1.5rem;
}

.modern-form .form-row .form-group {
  margin-bottom: 0;
}

.modern-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-deep-green);
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form input[type="file"] {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.02);
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.modern-form input:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

.modern-form input[type="file"] {
  padding: 0.8rem 1.25rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  display: block;
  background-color: rgba(0, 105, 80, 0.1);
  color: var(--primary-deep-green);
  border: 1px solid rgba(0, 105, 80, 0.2);
}

.form-message.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.w-100 {
  width: 100%;
}

/* ==========================================================================
   Blog Grid Styles
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--bg-color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.blog-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f1f3f5;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-title {
  font-size: 1.25rem;
  color: var(--primary-deep-green);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: color var(--transition-fast);
}

.blog-link:hover {
  color: var(--accent-orange-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Rich Text Rendering (Single Blog Content)
   ========================================================================== */
.single-blog-content h1,
.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
  color: var(--primary-deep-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.single-blog-content h2 {
  font-size: 2rem;
}

.single-blog-content h3 {
  font-size: 1.5rem;
}

.single-blog-content h4 {
  font-size: 1.25rem;
}

.single-blog-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.single-blog-content a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.single-blog-content a:hover {
  color: #e07010;
}

.single-blog-content ul,
.single-blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.single-blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.single-blog-content blockquote {
  border-left: 4px solid var(--accent-orange);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
  background: rgba(245, 130, 32, 0.05);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.single-blog-content figure {
  margin: 2.5rem 0;
}

.single-blog-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: block;
}

.single-blog-content figure.image {
  text-align: center;
}

.single-blog-content figcaption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-style: italic;
}

.single-blog-content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

.single-blog-content pre {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.single-blog-content code {
  font-family: monospace;
  font-size: 0.9rem;
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.single-blog-content pre code {
  background: none;
  padding: 0;
}

@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatGear {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 20px); }
}