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

:root {
  --green-deep: #0a3d1f;
  --green-mid: #145a32;
  --green-bright: #1e8449;
  --green-neon: #27ae60;
  --green-light: #a9dfbf;
  --accent: #52be80;
  --black: #050d07;
  --charcoal: #111a12;
  --dark-card: #0d1f10;
  --white: #f0f7f1;
  --off-white: #d5e8d9;
  --mono: 'IBM Plex Mono', monospace;
  --heading: 'Bebas Neue', sans-serif;
  --body: 'Rajdhani', sans-serif;
  --glass: rgba(13, 31, 16, 0.7);
  --glass-border: rgba(39, 174, 96, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-neon);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 50px; /* Adjusted for top ticker */
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 65px;
  top: 0; /* Snap to top when scrolled */
  background: rgba(5, 13, 7, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px 0 24px 24px;
  filter: drop-shadow(0 0 12px rgba(39, 174, 96, 0.5));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover .nav-logo-icon {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 0 22px rgba(39, 174, 96, 0.8));
}

.nav-logo-text {
  font-family: var(--heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text span {
  color: var(--green-neon);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-neon);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--green-neon);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-primary.w-full {
  width: 100%;
}

.nav-cta {
  background: var(--green-neon);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 170px 8% 80px; /* Increased top padding for ticker/nav */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(39, 174, 96, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(10, 61, 31, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(39, 174, 96, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 174, 96, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 10;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--green-neon);
  letter-spacing: 4px;
  text-transform: uppercase;
  border-left: 3px solid var(--green-neon);
  padding-left: 15px;
  margin-bottom: 30px;
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.8s forwards 0.2s;
}

.hero-title {
  font-family: var(--heading);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.85;
  letter-spacing: 2px;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-title .line2 {
  color: var(--green-neon);
  display: block;
}

#hero-text-1, #hero-text-2 {
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-text-fade {
  opacity: 0;
  transform: translateY(20px);
}

.hero-points-wrapper {
  margin-bottom: 25px;
  overflow: hidden;
  height: auto;
}

.hero-points-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s forwards 0.7s;
}

.hero-points-list li {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--green-neon);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points-list li::before {
  content: '▶';
  font-size: 0.7rem;
  opacity: 0.7;
}

.hero-points-wrapper.fade-out {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.hero-points-wrapper.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease;
}

.hero-desc {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--off-white);
  max-width: 550px;
  margin-bottom: 45px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.8s;
}

.btn-primary {
  background: var(--green-neon);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  letter-spacing: 1.5px;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(39, 174, 96, 0.5);
  color: var(--green-light);
  font-family: var(--mono);
  font-size: 0.9rem;
  padding: 16px 40px;
  cursor: pointer;
  letter-spacing: 1.5px;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(39, 174, 96, 0.1);
  border-color: var(--green-neon);
  color: var(--white);
  transform: translateY(-5px);
}

/* Hero right – dashboard mock */
.hero-right {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mock {
  width: 100%;
  max-width: 580px;
  background: rgba(13, 31, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(39, 174, 96, 0.1);
  animation: floatY 6s ease-in-out infinite, fadeIn 1s forwards 1s;
  opacity: 0;
}

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

.mock-bar {
  background: var(--green-deep);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--glass-border);
}

.mock-dot { width: 12px; height: 12px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f56; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #27c93f; }

.mock-bar-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--green-light);
  margin-left: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mock-body { padding: 25px; }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.mock-stat {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.15);
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.mock-stat:hover {
  background: rgba(39, 174, 96, 0.15);
  border-color: var(--green-neon);
}

.mock-stat-num {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--green-neon);
  line-height: 1;
}

.stat-alert {
  color: #ffbd2e !important;
}

.mock-stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--off-white);
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.mock-map {
  background: rgba(10, 61, 31, 0.3);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: 4px;
  height: 180px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-map-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--green-light);
  letter-spacing: 3px;
  z-index: 5;
}

.blip {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 10px var(--green-neon);
}

.blip::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--green-neon);
  animation: pulse 2.5s ease-out infinite;
  opacity: 0;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

.blip:nth-child(1) { top: 25%; left: 20%; }
.blip:nth-child(2) { top: 60%; left: 55%; animation-delay: 0.8s; }
.blip:nth-child(3) { top: 40%; left: 75%; animation-delay: 1.6s; }
.blip:nth-child(4) { top: 75%; left: 30%; animation-delay: 0.4s; }

.mock-alerts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-alert {
  background: rgba(39, 174, 96, 0.05);
  border-left: 3px solid var(--green-neon);
  padding: 10px 15px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInRight 0.5s forwards;
}

.mock-alert.warn {
  border-color: #f39c12;
}

.alert-time {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--green-neon);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 30px rgba(39, 174, 96, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1001;
}

.ticker {
  display: inline-block;
  animation: ticker-animation 40s linear infinite;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--black);
  letter-spacing: 3px;
  font-weight: 600;
}

@keyframes ticker-animation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ─── */
section {
  padding: 120px 8%;
  position: relative;
}

.section-tag {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--green-neon);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-tag::before {
  content: '//';
  opacity: 0.6;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.section-title span {
  color: var(--green-neon);
}

.section-sub {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--off-white);
  max-width: 700px;
  margin-bottom: 70px;
}

.about-text-highlight {
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.text-neon {
  color: var(--green-neon);
}

/* ─── ABOUT ─── */
#about {
  background-color: var(--charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-hex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.hex-item {
  aspect-ratio: 1;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.15);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.hex-item:hover {
  background: rgba(39, 174, 96, 0.3);
  border-color: var(--green-neon);
  transform: scale(1.15) rotate(5deg);
  z-index: 5;
}

.hex-item.active {
  background: rgba(39, 174, 96, 0.25);
  border-color: var(--green-neon);
  box-shadow: 0 0 25px rgba(39, 174, 96, 0.3);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 50px;
}

.about-stat-box {
  background: rgba(39, 174, 96, 0.04);
  border: 1px solid rgba(39, 174, 96, 0.1);
  padding: 30px;
  transition: all 0.3s ease;
}

.about-stat-box:hover {
  background: rgba(39, 174, 96, 0.08);
  border-color: var(--green-neon);
  transform: translateY(-5px);
}

.about-stat-num {
  font-family: var(--heading);
  font-size: 3.5rem;
  color: var(--green-neon);
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--off-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

/* ─── FEATURES ─── */
#features {
  background-color: var(--black);
}

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

.feature-card {
  background: var(--dark-card);
  padding: 50px 35px;
  border: 1px solid rgba(39, 174, 96, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(13, 31, 16, 0.95);
  border-color: rgba(39, 174, 96, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 25px;
  display: block;
}

.feature-num {
  position: absolute;
  top: 30px;
  right: 35px;
  font-family: var(--heading);
  font-size: 5rem;
  color: rgba(39, 174, 96, 0.05);
  line-height: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-num {
  color: rgba(39, 174, 96, 0.15);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}

.feature-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--off-white);
}

/* ─── ECOSYSTEM ─── */
#ecosystem {
  background-color: var(--black);
}

#ecosystem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 61, 31, 0.15), transparent);
  pointer-events: none;
}

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

.eco-card {
  background: rgba(13, 31, 16, 0.6);
  border: 1px solid rgba(39, 174, 96, 0.15);
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
  backdrop-filter: blur(5px);
}

.eco-card:hover {
  border-color: var(--green-neon);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(39, 174, 96, 0.1);
  background: rgba(13, 31, 16, 0.9);
}

.eco-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.eco-title {
  font-family: var(--heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.eco-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--off-white);
}

.eco-tag {
  display: inline-block;
  margin-top: 25px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--green-neon);
  letter-spacing: 2px;
  border: 1px solid rgba(39, 174, 96, 0.3);
  padding: 6px 14px;
  text-transform: uppercase;
  background: rgba(39, 174, 96, 0.05);
}

/* ─── BENEFITS BANNER ─── */
.benefits-banner {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  border-top: 1px solid rgba(39, 174, 96, 0.2);
  border-bottom: 1px solid rgba(39, 174, 96, 0.2);
  position: relative;
  overflow: hidden;
}

.benefits-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(39, 174, 96, 0.1), transparent 70%);
}

.benefit {
  text-align: center;
  position: relative;
  z-index: 1;
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(39, 174, 96, 0.4));
}

.benefit-title {
  font-family: var(--heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.benefit-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--green-light);
  max-width: 300px;
  margin: 0 auto;
}

/* ─── HOW IT WORKS ─── */
#how {
  background-color: var(--charcoal);
}

.steps {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 50px;
  align-items: start;
  padding: 50px 0;
  border-bottom: 1px solid rgba(39, 174, 96, 0.1);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--heading);
  font-size: 5rem;
  color: var(--green-neon);
  line-height: 0.8;
  position: relative;
  text-align: right;
}

.step-content {
  padding-top: 5px;
}

.step-title {
  font-family: var(--heading);
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--white);
  letter-spacing: 1px;
}

.step-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--off-white);
}

/* ─── PRICING ─── */
#pricing {
  background-color: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid rgba(39, 174, 96, 0.15);
  padding: 50px 40px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-15px);
  border-color: var(--green-neon);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pricing-card.featured {
  background: rgba(20, 90, 50, 0.3);
  border-color: var(--green-neon);
  transform: scale(1.05);
  z-index: 5;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green-neon);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%);
}

.plan-name {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--green-neon);
  letter-spacing: 4px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.plan-price {
  font-family: var(--heading);
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1;
}

.plan-period {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--off-white);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.plan-features {
  list-style: none;
  margin-bottom: 50px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 1.05rem;
  color: var(--off-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(39, 174, 96, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li::before {
  content: '✓';
  color: var(--green-neon);
  font-weight: 700;
}

.plan-features li.no {
  color: rgba(255, 255, 255, 0.3);
}

.plan-features li.no::before {
  content: '✕';
  color: rgba(255, 255, 255, 0.2);
}

/* ─── CONTACT ─── */
#contact {
  background-color: var(--charcoal);
  padding-bottom: 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(13, 31, 16, 0.4);
  padding: 20px;
  border: 1px solid rgba(39, 174, 96, 0.05);
  transition: all 0.3s ease;
}

.contact-detail:hover {
  background: rgba(39, 174, 96, 0.08);
  border-color: var(--green-neon);
  transform: translateX(10px);
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--green-neon);
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-detail-value {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
}

.contact-sectors {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-sector-box {
  background: rgba(39, 174, 96, 0.04);
  border-left: 2px solid var(--green-neon);
  padding: 15px 25px;
}

.sector-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--green-neon);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.contact-sector-box ul {
  list-style: none;
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.5;
}

.contact-sector-box li::before {
  content: '▶';
  font-size: 0.7rem;
  color: var(--green-neon);
  margin-right: 10px;
  opacity: 0.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--dark-card);
  padding: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--green-neon);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
  background: rgba(10, 61, 31, 0.3);
  border: 1px solid rgba(39, 174, 96, 0.2);
  color: var(--white);
  font-family: var(--body);
  font-size: 1.1rem;
  padding: 15px 20px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-neon);
  background: rgba(10, 61, 31, 0.5);
  box-shadow: 0 0 15px rgba(39, 174, 96, 0.1);
}

.form-select option {
  background: var(--charcoal);
  color: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(39, 174, 96, 0.15);
  padding: 100px 8% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 1em;
  width: auto;
  object-fit: contain;
  margin-right: 12px;
  border-radius: 8px 0 8px 8px; /* Slightly larger radius for the footer logo */
  overflow: hidden;
}

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

.footer-tagline {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 35px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(39, 174, 96, 0.05);
  border: 1px solid rgba(39, 174, 96, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--white);
}

.social-btn:hover {
  background: var(--green-neon);
  color: var(--black);
  border-color: var(--green-neon);
  transform: translateY(-5px) rotate(8deg);
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--green-neon);
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col ul a {
  font-size: 1.05rem;
  color: var(--off-white);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--green-neon);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.6;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 150px; }
  .hero-tag { border-left: none; border-bottom: 3px solid var(--green-neon); padding-left: 0; padding-bottom: 10px; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-right { margin-top: 60px; }
  .features-grid, .ecosystem-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-banner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .features-grid, .ecosystem-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.8rem; }
  .step { grid-template-columns: 1fr; gap: 15px; }
  .step-num { text-align: left; font-size: 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
}
