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

:root {
  --bg-primary: #111111;
  --bg-secondary: #1a1a1a;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --green-primary: #0c5f1a;
  --green-light: #14882a;
  --green-accent: #1db954;
  --green-glow: rgba(12, 95, 26, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #777777;
  --border-color: #333333;
  --border-green: #0c5f1a;
  --font-family: 'Inter', 'Saira', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-green { color: var(--green-accent); }
.text-bold { font-weight: 700; color: var(--text-primary); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-accent);
  letter-spacing: -0.03em;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.nav-cta {
  background: var(--green-primary);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: var(--transition) !important;
  border: 1px solid transparent;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-primary);
  color: white;
  border: 1px solid var(--green-primary);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--green-accent);
  color: var(--green-accent);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(12, 95, 26, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-green {
  background: var(--green-primary);
  border-color: var(--green-primary);
}

.card-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

.card-green p {
  color: rgba(255, 255, 255, 0.85);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.card-green .card-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* Green left border cards */
.card-bordered {
  border-left: 3px solid var(--green-primary);
}

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-desc {
  max-width: 700px;
  margin-bottom: 3rem;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--green-accent);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hero-bold {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

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

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--border-color);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== ANIMATED ELEMENTS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== PROCESS TABS ===== */
.process-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
}

.process-tab {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.process-tab:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-color);
}

.process-tab:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.process-tab.active {
  background: var(--green-primary);
  color: white;
  font-weight: 600;
}

.process-tab.active::after {
  display: none;
}

.process-tab .tab-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.process-tab.active .tab-number {
  color: var(--green-accent);
}

.process-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.process-content.active {
  display: block;
}

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

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ===== CALLOUT BOX ===== */
.callout {
  background: var(--green-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.callout-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.callout p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.callout strong {
  color: white;
}

/* ===== COMPARISON TABLE ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--text-muted);
}

.comparison-card h4 {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.comparison-card p {
  font-size: 0.9rem;
}

/* ===== PRICING SECTION ===== */
.pricing-model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pricing-card {
  background: var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.pricing-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.pricing-item h4 {
  margin-bottom: 0.25rem;
}

.pricing-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Example pricing table */
.pricing-example h3 {
  margin-bottom: 1.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.pricing-table tr {
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
}

.pricing-table td:first-child {
  color: var(--text-secondary);
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-table tr.highlight-row {
  background: rgba(12, 95, 26, 0.15);
}

.pricing-table tr.highlight-row td {
  font-weight: 700;
  color: var(--green-accent);
}

/* ===== CALCULATOR ===== */
.calculator {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2rem;
}

.calculator h3 {
  margin-bottom: 0.5rem;
}

.calculator-desc {
  margin-bottom: 2rem;
}

.slider-container {
  margin-bottom: 2rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-accent);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--green-primary);
  border: 3px solid var(--green-accent);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--green-light);
  transform: scale(1.1);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.calc-result-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.calc-result-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-accent);
  margin-bottom: 0.25rem;
}

.calc-result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FIT CRITERIA ===== */
.fit-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-color);
}

.fit-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fit-badge {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-family);
}

.fit-badge.good {
  background: var(--green-primary);
  color: white;
}

.fit-badge.not {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.fit-badge.active {
  box-shadow: 0 0 20px var(--green-glow);
}

.fit-badge.not.active {
  background: #3d1111;
  color: #ff6b6b;
  border-color: #5a2020;
}

.fit-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.fit-grid.active {
  display: grid;
}

.fit-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.fit-card.good {
  border-left: 3px solid var(--green-primary);
}

.fit-card.not {
  border-left: 3px solid #5a2020;
}

.fit-card h4 {
  margin-bottom: 0.5rem;
}

.fit-card p {
  font-size: 0.9rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-primary), var(--border-color));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 32px;
  height: 32px;
  background: var(--bg-primary);
  border: 2px solid var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.timeline-item:hover .timeline-dot {
  background: var(--green-primary);
  color: white;
}

/* ===== BANT GRID ===== */
.bant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bant-item {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.bant-item:nth-child(odd) {
  border-right: 1px solid var(--border-color);
}

.bant-item:nth-child(n+3) {
  border-bottom: none;
}

.bant-item:hover {
  background: var(--bg-card);
}

.bant-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.bant-item p {
  font-size: 0.9rem;
}

/* ===== GREEN SECTION ===== */
.section-green {
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
}

.section-green::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.section-green h2,
.section-green h3,
.section-green h4 {
  color: white;
}

.section-green p {
  color: rgba(255, 255, 255, 0.8);
}

.section-green .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-green .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-green .card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-green .card-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-accent);
}

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

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-linkedin {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-linkedin:hover {
  color: #0a66c2;
}

/* ===== CHANNELS LIST ===== */
.channels-card {
  background: var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.channels-card h4 {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.channel-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-item:last-child {
  border-bottom: none;
}

.channel-arrow {
  color: var(--green-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.channel-item h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.channel-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== STEP INDICATOR ===== */
.step-indicator {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  transition: var(--transition);
}

.step-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--green-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-model {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none !important;
  }

  .process-tabs {
    flex-direction: column;
  }

  .process-tab::after {
    display: none !important;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .bant-grid {
    grid-template-columns: 1fr;
  }

  .bant-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  .bant-item:last-child {
    border-bottom: none !important;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 4rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .cta-section {
    padding: 5rem 0;
  }

  .fit-badges {
    flex-wrap: wrap;
  }
}

/* ===== TERMS PAGE ===== */
.terms-content {
  max-width: 800px;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.terms-section p {
  margin-bottom: 0.75rem;
}

.terms-section ul,
.terms-section ol {
  margin: 0.75rem 0 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.terms-section li {
  margin-bottom: 0.4rem;
}

.terms-section ol {
  list-style: decimal;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-dot {
  width: 12px;
  height: 12px;
  background: var(--green-accent);
  border-radius: 50%;
  margin: 0 6px;
  animation: loaderBounce 0.6s ease-in-out infinite alternate;
}

.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderBounce {
  to { transform: translateY(-12px); opacity: 0.3; }
}

/* ===== COUNTER ANIMATION ===== */
.count-up {
  display: inline-block;
}
