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

/* --- DESIGN SYSTEM & SYSTEM TOKENS --- */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --color-primary: hsl(158, 62%, 13%);      /* Forest Green Dark */
  --color-primary-light: hsl(158, 48%, 22%);
  --color-accent: hsl(42, 85%, 48%);        /* Premium Gold/Amber */
  --color-accent-light: hsl(42, 95%, 60%);
  --color-accent-vibrant: hsl(88, 70%, 46%); /* Agrotech Lime Green */
  
  --color-text-dark: hsl(210, 24%, 12%);
  --color-text-muted: hsl(210, 16%, 42%);
  --color-text-light: hsl(0, 0%, 100%);
  --color-text-light-muted: hsl(158, 20%, 75%);
  
  --color-bg-light: hsl(140, 20%, 98%);
  --color-bg-card: hsl(0, 0%, 100%);
  --color-bg-dark: hsl(158, 80%, 6%);
  
  --color-border-light: hsl(158, 20%, 90%);
  --color-border-dark: hsl(158, 30%, 16%);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 56, 39, 0.08);
  --shadow-lg: 0 20px 48px rgba(13, 56, 39, 0.14);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.25);
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* --- REUSABLE UTILITIES & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: hsla(88, 70%, 46%, 0.12);
  color: var(--color-primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-primary);
  border: 1px solid hsla(88, 70%, 46%, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-padding {
    padding: 70px 0;
  }
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

/* Glassmorphism utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
}

.glass-panel-dark {
  background: rgba(13, 56, 39, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-outline-green {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-green:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.logo-leaf {
  width: 24px;
  height: 24px;
  fill: var(--color-accent-vibrant);
}

.logo span {
  color: var(--color-accent);
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* --- HERO SECTION --- */
.hero {
  background-color: var(--color-bg-dark);
  background-image: 
    radial-gradient(circle at 80% 20%, hsla(158, 60%, 20%, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, hsla(42, 60%, 10%, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, hsl(158, 80%, 4%) 0%, hsl(158, 70%, 7%) 100%);
  position: relative;
  padding: 180px 0 100px 0;
  color: var(--color-text-light);
  overflow: hidden;
}

/* Background grid for texture */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--color-accent-vibrant);
  font-weight: 500;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .hero-badge {
    justify-content: center;
  }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent-vibrant) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-light-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

@media (max-width: 992px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero-trust {
    justify-content: center;
  }
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg-dark);
  margin-left: -12px;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
}

.trust-text strong {
  color: var(--color-text-light);
}

/* Hero Interactive Mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  z-index: 2;
  overflow: hidden;
}

.mockup-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.mockup-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.mockup-header h3 {
  color: var(--color-text-light);
  font-size: 1.25rem;
}

.mockup-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.mockup-info h4 {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.mockup-info p {
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
}

.mockup-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border-light);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

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

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

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat-card h3 span {
  color: var(--color-accent);
}

.stat-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* --- ROI SIMULATOR SECTION --- */
.roi-section {
  background-color: var(--color-bg-light);
}

.roi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .roi-container {
    grid-template-columns: 1fr;
  }
}

.roi-explanation h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.roi-benefit-list {
  margin-top: 30px;
}

.roi-benefit-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.roi-benefit-item-icon {
  color: var(--color-accent-vibrant);
  font-weight: bold;
}

/* The Calculator Card */
.roi-calculator-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
  .roi-calculator-card {
    padding: 24px;
  }
}

.calc-group {
  margin-bottom: 24px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.calc-label span:last-child {
  color: var(--color-accent-vibrant);
  font-weight: 700;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-border-light);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  transition: transform var(--transition-fast);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.select-custom {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-card);
  font-family: inherit;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.select-custom:focus {
  border-color: var(--color-primary);
}

.calc-results {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1.5px dashed var(--color-border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 400px) {
  .calc-results {
    grid-template-columns: 1fr;
  }
}

.result-card {
  padding: 20px;
  background-color: hsla(158, 62%, 13%, 0.03);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.result-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.result-value span {
  color: var(--color-accent-vibrant);
}

.calc-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  text-align: center;
}

/* --- FEATURES SECTION --- */
.features-section {
  background-color: var(--color-bg-card);
}

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

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border-light);
  transition: all var(--transition-normal);
  background-color: var(--color-bg-card);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.feature-icon-container {
  width: 56px;
  height: 56px;
  background-color: hsla(158, 62%, 13%, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.feature-card:hover .feature-icon-container {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

/* --- THE FILTER FUNNEL / FORM SECTION --- */
.funnel-section {
  background-color: var(--color-bg-dark);
  background-image: radial-gradient(circle at 50% 50%, hsla(158, 60%, 15%, 0.5) 0%, transparent 65%);
  color: var(--color-text-light);
  position: relative;
}

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

.funnel-section .section-subtitle {
  color: var(--color-text-light-muted);
}

.funnel-box {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

.funnel-progress-wrapper {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 40px;
}

@media (max-width: 480px) {
  .funnel-progress-wrapper {
    padding: 20px;
  }
  .funnel-steps-info {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

.funnel-steps-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-light-muted);
}

.funnel-step-label {
  color: var(--color-accent);
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-vibrant) 100%);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal) ease;
}

.funnel-form-body {
  padding: 40px;
  position: relative;
}

@media (max-width: 480px) {
  .funnel-form-body {
    padding: 24px;
  }
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInStep 0.4s ease-in-out forwards;
}

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

.form-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.form-step-description {
  font-size: 0.95rem;
  color: var(--color-text-light-muted);
  margin-bottom: 30px;
}

/* Form fields */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.input-text {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-text-light);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.input-text:focus {
  border-color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Premium Choice Cards (for buttons instead of inputs) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.choice-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.choice-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.04);
}

.choice-card.selected {
  border-color: var(--color-accent);
  background-color: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.choice-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--color-accent-vibrant);
}

.choice-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.choice-desc {
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
}

/* Custom Hidden Radio/Checkbox */
.choice-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Navigation buttons inside the form */
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 16px;
}

.form-actions button {
  flex: 1;
}

/* Success State Screen */
.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(88, 170, 80, 0.15);
  color: var(--color-accent-vibrant);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 24px;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-screen h3 {
  color: var(--color-text-light);
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--color-text-light-muted);
  max-width: 500px;
  margin: 0 auto 30px auto;
}

.badge-lead {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* --- FAQ SECTION --- */
.faq-section {
  background-color: var(--color-bg-light);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: hsla(158, 62%, 13%, 0.15);
}

.faq-summary {
  padding: 24px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-primary);
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition-normal);
}

.faq-item[open] .faq-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  padding: 60px 0 30px 0;
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo {
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.3rem;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  gap: 30px;
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* --- TICKER DIVIDER SECTION --- */
.ticker-divider-section {
  position: relative;
  height: 180px;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: -90px 0;
  z-index: 15;
}

.ticker-ribbon {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 54px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.ticker-ribbon.ribbon-top {
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-text-light);
  z-index: 2;
}

.ticker-ribbon.ribbon-bottom {
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary);
  z-index: 1;
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
}

.ticker-group span {
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ribbon-bottom .ticker-group span {
  color: var(--color-primary);
}

/* Central Badge */
.ticker-center-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13, 56, 39, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}

.ticker-center-badge:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 6px 20px rgba(0, 0, 0, 0.6);
}

.badge-leaf-icon {
  color: var(--color-accent-vibrant);
}

.ticker-center-badge span {
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--color-text-light);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-center-badge span span {
  color: var(--color-accent);
}

/* Animations */
.track-ltr {
  animation: marquee-ltr 22s linear infinite;
}

.track-rtl {
  animation: marquee-rtl 22s linear infinite;
}

@keyframes marquee-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- MINIMALIST SVG ICON RULES --- */
.mockup-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.choice-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.ticker-svg-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* --- ANIMACÕES DE ENTRADA (PAGE LOAD ANIMATIONS) --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.93);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Aplicação das animações de entrada com atraso escalonado (stagger) */
.hero-badge {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-title {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-description {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero-actions {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-trust {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.mockup-container {
  opacity: 0;
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
