/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg: #050505;
  --bg-card: #0d0d0d;
  --bg-card-2: #111111;
  --bg-card-3: #1a1a1a;
  --green: #f27a1a;
  --green-light: #f9a825;
  --green-dark: #d4511e;
  --green-glow: rgba(242,122,26,0.15);
  --green-glow-strong: rgba(242,122,26,0.3);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 24px;
  display: flex; justify-content: center;
  transition: all 0.3s;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: rgba(18, 20, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 8px 14px 8px 20px;
  max-width: 1050px;
  width: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .navbar-inner {
  max-width: 1150px;
  background: rgba(12, 14, 12, 0.92);
  border-color: rgba(255,255,255,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px; width: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  transition: color 0.3s; font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-buttons {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.btn-login {
  color: rgba(255,255,255,0.7);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-login:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.btn-primary {
  background: var(--green);
  color: #000; padding: 10px 24px;
  border-radius: 100px; font-weight: 600;
  font-size: 14px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(242,122,26,0.3); }
.btn-outline {
  background: transparent; color: var(--text);
  padding: 10px 24px; border-radius: 100px;
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.mobile-menu-btn { display: none; background: none; color: white; font-size: 24px; }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  text-align: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease;
}
.hero-badge span { color: var(--green); }
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-features {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.hero-feature .check {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-feature .check svg { width: 12px; height: 12px; }
.hero-rating {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-rating .stars { display: flex; gap: 2px; }
.hero-rating .stars svg { width: 16px; height: 16px; color: #facc15; fill: #facc15; }
.hero-rating span { font-size: 14px; color: var(--text-muted); }

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-section.has-border {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-section::before, .marquee-section::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 150px; z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-wrapper.reverse { animation: marquee-reverse 35s linear infinite; }
.marquee-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 48px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
}
.marquee-item img {
  height: 48px;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.marquee-item:hover img { opacity: 0.6; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 100px 0;
  position: relative;
}
.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--border-light);
}
.stat-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number.green {
  color: var(--green);
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}
.stats-description {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ===== BENEFITS TABS SECTION ===== */
.benefits-section {
  padding: 100px 0;
}
.benefits-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--border);
}
.benefits-tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.benefits-tab.active {
  background: var(--green);
  color: #000;
}
.benefits-tab:hover:not(.active) { color: var(--text); }
.benefits-content { display: none; }
.benefits-content.active { display: block; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.benefit-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  grid-column: 1 / -1;
}
.benefit-card-main h4 {
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.benefit-card-main p {
  color: var(--text-muted); font-size: 14px; margin-bottom: 16px;
}
.benefit-card-main .highlight {
  color: var(--green); font-size: 13px; font-weight: 600;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.benefit-card .icon {
  width: 44px; height: 44px;
  background: var(--green-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card .icon svg { width: 22px; height: 22px; color: var(--green); }
.benefit-card h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 8px;
}
.benefit-card p {
  color: var(--text-muted); font-size: 13px; line-height: 1.5;
}

/* ===== COMPARISON / DIFFER ===== */
.compare-section {
  padding: 100px 0;
}
.differ-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
/* Features column (left) */
.differ-col-features {
  flex: 1.1;
  padding-right: 0;
}
/* Almar column (center) — the highlighted one */
.differ-col-almar {
  flex: 1.2;
  position: relative;
  z-index: 2;
}
.differ-col-almar-inner {
  background: linear-gradient(180deg, rgba(242,122,26,0.08) 0%, rgba(242,122,26,0.03) 100%);
  border: 1px solid rgba(242,122,26,0.15);
  border-radius: 20px;
  position: relative;
  overflow: visible;
}
.differ-col-almar-inner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(circle, rgba(242,122,26,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.differ-premium-badge {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(242,122,26,0.2), rgba(242,122,26,0.08));
  border: 1px solid rgba(242,122,26,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  z-index: 5;
  backdrop-filter: blur(8px);
}
.differ-premium-badge svg { width: 14px; height: 14px; }
/* Others column (right) */
.differ-col-others {
  flex: 1;
  padding-left: 0;
}
/* Header rows */
.differ-header {
  padding: 28px 28px 20px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.differ-col-features .differ-header {
  padding-left: 0;
}
.differ-col-others .differ-header {
  padding-left: 28px;
}
.differ-header-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.differ-header-title img {
  width: 28px; height: 28px;
}
.differ-header-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}
/* Row items */
.differ-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  font-weight: 500;
  min-height: 60px;
}
.differ-col-features .differ-row {
  padding-left: 0;
  color: var(--text);
}
.differ-col-others .differ-row {
  padding-left: 28px;
}
.differ-row-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.differ-row-icon svg {
  width: 16px; height: 16px;
  color: var(--text-dim);
}
.differ-row-icon.green-icon {
  background: rgba(242,122,26,0.1);
  border-color: rgba(242,122,26,0.2);
}
.differ-row-icon.green-icon svg {
  color: var(--green);
}
.differ-check {
  width: 22px; height: 22px; min-width: 22px;
}
.differ-almar-text {
  color: var(--text);
  font-weight: 600;
}
.differ-others-text {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
/* Bottom glow indicator for Almar column */
.differ-col-almar-bottom {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  border-top: 1px solid rgba(242,122,26,0.1);
}
.differ-col-almar-bottom svg { width: 16px; height: 16px; }
/* Mobile differ table */
.differ-mobile { display: none; }
@media (max-width: 768px) {
  .differ-container { display: none; }
  .differ-mobile { display: block; }
  .differ-mobile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
  }
  .differ-mobile-feature {
    padding: 16px 20px;
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 15px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card-2);
  }
  .differ-mobile-row {
    padding: 14px 20px;
    display: flex; align-items: center; gap: 10px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .differ-mobile-row .label { font-size: 12px; color: var(--text-dim); min-width: 80px; }
  .differ-mobile-row.almar .label { color: var(--green); }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
}
.cta-inner {
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-features {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-logos {
  display: flex; gap: 24px; justify-content: center;
  margin-top: 32px;
  position: relative; z-index: 1;
}
.cta-logos svg { width: 32px; height: 32px; color: var(--text-dim); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: #facc15; fill: #facc15; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 14px; font-weight: 700;
}


/* ===== HOW IT WORKS ===== */
.how-section { padding: 100px 0; }
.how-timeline { display: grid; grid-template-columns: 280px 1fr; gap: 0 40px; max-width: 1100px; margin: 0 auto; }
.how-left { position: sticky; top: 100px; align-self: start; }
.how-left .section-label { text-align: left; justify-content: flex-start; }
.how-left .section-label::before { display: none; }
.how-left .section-title { text-align: left; font-size: 38px; margin-bottom: 20px; }
.how-left .section-subtitle { text-align: left; font-size: 15px; }
.how-steps-col { display: flex; flex-direction: column; gap: 20px; position: relative; min-width: 0; }
.how-timeline-line { position: absolute; top: 20px; bottom: 20px; left: 22px; width: 2px; background: linear-gradient(180deg, var(--green) 0%, rgba(242,122,26,0.12) 100%); z-index: 0; }
.how-step-row { display: flex; align-items: flex-start; gap: 20px; }
.how-circle { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 0 20px rgba(242,122,26,0.3); flex-shrink: 0; margin-top: 24px; }
.how-circle svg { width: 20px; height: 20px; color: #000; }
.how-step-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; flex: 1; min-width: 0; overflow: hidden; }
.how-step-content:hover { border-color: rgba(242,122,26,0.3); }
.how-step-content h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.how-step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.how-badge { display: inline-block; background: rgba(242,122,26,0.1); border: 1px solid rgba(242,122,26,0.2); color: var(--green); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-top: 14px; }
.how-tags-strip { overflow: hidden; margin-top: 14px; }
.how-tags-inner { display: flex; width: max-content; animation: marquee 20s linear infinite; gap: 8px; }
.how-tag { display: inline-flex; background: rgba(242,122,26,0.1); border: 1px solid rgba(242,122,26,0.2); color: var(--green); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 100px; white-space: nowrap; }
@media (max-width: 900px) {
  .how-section { padding: 60px 0; }
  .how-timeline { display: block; }
  .how-left { position: static; margin-bottom: 24px; }
  .how-left .section-title { font-size: 26px; }
  .how-left .section-subtitle { font-size: 14px; }
  .how-timeline-line { display: none; }
  .how-steps-col { gap: 16px; }
  .how-step-row { gap: 12px; }
  .how-circle { width: 36px; height: 36px; min-width: 36px; margin-top: 16px; }
  .how-circle svg { width: 16px; height: 16px; }
  .how-step-content { padding: 18px 14px; }
  .how-step-content h4 { font-size: 17px; }
  .how-step-content p { font-size: 13px; }
  .how-badge { font-size: 11px; padding: 4px 12px; }
  .how-tag { font-size: 10px; padding: 4px 10px; }
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 100px 0;
}
.pricing-tabs {
  display: flex; gap: 8px; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.pricing-tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.pricing-tab.active {
  background: var(--green);
  color: #000;
}
.pricing-tab:hover:not(.active) { color: var(--text); }
.pricing-content { display: none; }
.pricing-content.active { display: block; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--green);
  box-shadow: 0 0 50px var(--green-glow);
}
.pricing-popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 12px; font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 4px;
}
.pricing-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 6px;
}
.pricing-card .desc {
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5;
}
.pricing-price {
  font-size: 36px; font-weight: 800; margin-bottom: 4px;
}
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pricing-card .btn-primary, .pricing-card .btn-outline {
  width: 100%; justify-content: center;
  margin: 20px 0;
}
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.pricing-feature svg {
  width: 18px; height: 18px; min-width: 18px;
  color: var(--green); margin-top: 1px;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
}
.pricing-note .highlight {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-weight: 600;
  margin-bottom: 4px;
}

/* ===== CONTACT / FORM ===== */
.contact-section {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { }
.contact-info .steps {
  display: flex; flex-direction: column; gap: 20px;
  margin: 40px 0;
}
.contact-step {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-step .step-icon {
  width: 44px; height: 44px;
  background: var(--green-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-step .step-icon svg { width: 20px; height: 20px; color: var(--green); }
.contact-step p { font-size: 14px; color: var(--text-muted); }
.info-cards {
  display: flex; flex-direction: column; gap: 16px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
}
.info-card h4 svg { width: 18px; height: 18px; color: var(--green); }
.info-card p {
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
}
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: #000;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--green-light);
  box-shadow: 0 8px 30px rgba(242,122,26,0.3);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: var(--green);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none; color: var(--text);
  font-size: 15px; font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-question:hover { color: var(--green); }
.faq-question .icon {
  width: 28px; height: 28px;
  background: var(--bg-card-3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question .icon {
  background: var(--green);
  transform: rotate(45deg);
}
.faq-question .icon svg { width: 14px; height: 14px; color: var(--text-muted); }
.faq-item.active .faq-question .icon svg { color: #000; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FINAL CTA (SCALE) ===== */
.final-cta {
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.final-cta-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 100px);
  grid-template-rows: repeat(auto-fill, 100px);
  gap: 4px;
  opacity: 1;
  z-index: 0;
}
.final-cta-cell {
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s;
}
.final-cta-cell svg { width: 36px; height: 36px; }
.final-cta-fade-top, .final-cta-fade-bottom,
.final-cta-fade-left, .final-cta-fade-right {
  position: absolute; z-index: 1; pointer-events: none;
}
.final-cta-fade-top { top: 0; left: 0; right: 0; height: 120px; background: linear-gradient(180deg, var(--bg), transparent); }
.final-cta-fade-bottom { bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(0deg, var(--bg), transparent); }
.final-cta-fade-left { top: 0; bottom: 0; left: 0; width: 120px; background: linear-gradient(90deg, var(--bg), transparent); }
.final-cta-fade-right { top: 0; bottom: 0; right: 0; width: 120px; background: linear-gradient(270deg, var(--bg), transparent); }
.final-cta-content {
  position: relative; z-index: 3;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-muted); max-width: 300px;
}
.footer-links h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
  color: var(--text);
}
.footer-links a {
  display: block;
  font-size: 14px; color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p {
  font-size: 13px; color: var(--text-dim);
}
.footer-bottom-links {
  display: flex; gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px; color: var(--text-dim);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--green); }

/* ===== SCROLL MARQUEE TAG STRIP ===== */
.tag-strip {
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tag-strip-inner {
  display: flex; width: max-content;
  animation: marquee 25s linear infinite;
}
.tag-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 24px;
  font-size: 13px; font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.tag-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ===== BADGES ROW ===== */
.badges-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  padding: 40px 0;
}
.badge-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
}
.badge-item svg { width: 18px; height: 18px; color: var(--green); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-card { flex-wrap: wrap; padding: 32px 16px; }
  .stat-item { flex: 1 1 45%; padding: 20px 16px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(1)::after, .stat-item:nth-child(3)::after { height: 40px; }
  .differ-container { flex-direction: column; gap: 16px; }
  .differ-col-features, .differ-col-almar, .differ-col-others { flex: none; width: 100%; }
  .differ-col-features .differ-header, .differ-col-others .differ-header { padding-left: 28px; }
  .differ-col-features .differ-row { padding-left: 28px; }
  .differ-col-almar-inner { border-radius: 16px; }
  .differ-premium-badge { top: -14px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-buttons { display: none; }
  .mobile-menu-btn { display: block; }
  .navbar-inner { 
    padding: 8px 16px; 
    border-radius: 16px;
    max-width: 100%;
  }
  .navbar { padding: 8px 12px; }
  .nav-logo-img { height: 28px; }
  /* Mobile menu open state */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(12,14,12,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
    gap: 16px;
    z-index: 100;
  }
  .nav-buttons.mobile-open {
    display: flex !important;
    flex-direction: row;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(12,14,12,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 16px 20px;
    gap: 10px;
    z-index: 99;
    margin-top: 200px;
    justify-content: center;
  }
  /* Hero */
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 28px; line-height: 1.15; }
  .hero p { font-size: 15px; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; max-width: 300px; }
  .hero-features { flex-direction: column; align-items: center; gap: 10px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  /* Stats */
  .stats-card { flex-direction: column; gap: 0; padding: 24px 0; border-radius: 16px; }
  .stat-item { flex: none; width: 100%; padding: 20px 24px; }
  .stat-item::after { display: none !important; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--border); }
  .stat-number { font-size: 36px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }
  .section-header { margin-bottom: 36px; }
  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-tabs { flex-wrap: wrap; border-radius: 12px; }
  .benefits-tab { padding: 8px 18px; font-size: 13px; }
  .benefit-card-main { padding: 24px; }
  .benefit-card { padding: 20px; }
  /* Comparison - hide desktop, show mobile */
  .differ-container { display: none; }
  .differ-mobile { display: block; }
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }
  /* How It Works */
  /* Tag strip */
  .tag-strip { padding: 10px 0; }
  .tag-item { padding: 0 16px; font-size: 11px; }
  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-tabs { flex-wrap: wrap; border-radius: 12px; }
  .pricing-tab { padding: 8px 20px; font-size: 13px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-price { font-size: 30px; }
  .pricing-popular-badge { font-size: 11px; }
  /* CTA Banner */
  .cta-inner { padding: 40px 24px; border-radius: 16px; }
  .cta-inner h2 { font-size: 22px; }
  .cta-features { flex-direction: column; align-items: center; gap: 10px; }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrapper { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  /* FAQ */
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; font-size: 13px; }
  /* Final CTA */
  .final-cta { min-height: 350px; }
  .final-cta h2 { font-size: 24px; padding: 0 20px; }
  /* Badges */
  .badges-row { padding: 24px 12px; }
  .badge-item { font-size: 11px; padding: 8px 12px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  /* Global spacing */
  .container { padding: 0 16px; }
  .stats-section, .benefits-section, .compare-section, .testimonials-section, 
  .cta-banner { padding: 40px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero { padding: 110px 0 40px; }
  .stat-number { font-size: 30px; }
  .section-title { font-size: 22px; }
  .pricing-price { font-size: 26px; }
  .marquee-item { padding: 0 24px; font-size: 13px; }
  .marquee-item img { height: 32px; }
  .differ-mobile-card { margin-bottom: 8px; }
  .differ-mobile-feature { padding: 12px 16px; font-size: 13px; }
  .differ-mobile-row { padding: 10px 16px; font-size: 13px; }
  /* How It Works small screens */
}

/* ===== GLOBAL OVERFLOW PREVENTION ===== */
html, body {
  touch-action: manipulation;
  overflow-x: hidden;
  max-width: 100vw;
}
.container, .how-timeline, .how-steps-col, .how-step-row, .how-step-content,
.pricing-grid, .benefits-grid, .testimonials-grid, .contact-grid, .differ-container,
.navbar-inner, .footer-grid, .stats-card, .cta-inner {
  max-width: 100%;
}
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}
