
  :root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --bg3: #18181f;
    --surface: #1e1e28;
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.14);
    --accent: #4f8fff;
    --accent2: #7b5ea7;
    --accent-glow: rgba(79,143,255,0.18);
    --text: #f0f0f8;
    --text2: #9090a8;
    --text3: #55556a;
    --success: #3ecf8e;
    --warning: #f5a623;
    --radius: 14px;
    --radius-sm: 8px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }


  /* ── SECTIONS ── */
  section { position: relative; z-index: 1; }

/* =========================





















   HERO MODERN REDESIGN
========================= */













.hero {
    margin-top:  50px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5vw 80px;
  text-align: center;
  
 
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(79,143,255,0.08), transparent 60%),
              linear-gradient(180deg, #0a0a0f, #0d0d14);
}

/* soft animated glow background */
.hero-bg {
  position: absolute;
  width: 800px;
  height: 500px;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79,143,255,0.15), transparent 70%);
  filter: blur(40px);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}

/* container */
.hero-container {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: #7fb0ff;
  background: rgba(79,143,255,0.08);
  border: 1px solid rgba(79,143,255,0.25);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4f8fff;
  box-shadow: 0 0 12px rgba(79,143,255,0.8);
}

/* headline */
.hero h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: #4f8fff;
}

.hero h1 .muted {
  color: rgba(255,255,255,0.55);
}

/* subtext */
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: linear-gradient(135deg, #4f8fff, #6a5cff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(79,143,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(79,143,255,0.35);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-secondary:hover {
  border-color: #4f8fff;
  color: #fff;
}

/* metrics */
.hero-metrics {
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
  gap: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric .num {
  font-size: 28px;
  font-weight: 800;
  display: block;
  color: #fff;
}

.metric .label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* mobile improvements */
@media (max-width: 768px) {
  .hero-metrics {
    gap: 30px;
  }

  .hero-sub {
    font-size: 16px;
  }
}
  /* ── WHAT WE REPLACE ── */

  .replace-section { background: var(--bg2); }
  .replace-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 0; margin-top: 60px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .replace-col {
    padding: 36px 32px;
  }
  .replace-col.old { background: var(--bg3); }
  .replace-col.new { background: rgba(79,143,255,0.06); border-left: 1px solid rgba(79,143,255,0.2); }
  .replace-divider {
    display: flex; align-items: center; justify-content: center;
    padding: 0 20px;
    background: var(--surface);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .arrow-circle {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
  }
  .replace-col h3 {
    font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text3);
    margin-bottom: 20px;
  }
  .replace-items { display: flex; flex-direction: column; gap: 10px; }
  .replace-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text2); padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
  }
  .replace-item .icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
  .replace-item.covered { border-color: rgba(62,207,142,0.2); background: rgba(62,207,142,0.05); color: var(--text); }
  .replace-item.covered .icon { color: var(--success); }
  .replace-item.partial { border-color: rgba(245,166,35,0.2); background: rgba(245,166,35,0.05); }
  .replace-item.partial .icon { color: var(--warning); }
  .replace-item.out { opacity: 0.4; }
  .replace-item.out .icon { color: var(--text3); }

















































  .section-title-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}

.icon-gif {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
}

  /* ── HOW IT WORKS ── */
  .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; margin-top: 60px; }
  .step-card {
    padding: 36px 28px;
    background: var(--bg3);
    border: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
  }
  .step-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .step-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
  .step-card:hover { background: var(--surface); }
  .step-num {
    font-family: 'Syne', sans-serif;
    font-size: 48px; font-weight: 800;
    color: rgba(79,143,255,0.12);
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .step-text { font-size: 14px; color: var(--text2); line-height: 1.6; }

  /* ── PRICING ── */
  .pricing-section { background: var(--bg2); }
  .pricing-note {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(62,207,142,0.08);
    border: 1px solid rgba(62,207,142,0.2);
    color: var(--success);
    font-size: 13px; padding: 8px 16px; border-radius: 50px;
    margin-bottom: 48px;
  }
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
  .pricing-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
  .pricing-card.featured {
    background: linear-gradient(135deg, rgba(79,143,255,0.08) 0%, rgba(123,94,167,0.08) 100%);
    border-color: rgba(79,143,255,0.35);
  }
  .pricing-card.featured::before {
    content: 'Most popular';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 16px; border-radius: 50px;
  }
  .pricing-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }
  .pricing-name { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 4px; }
  .pricing-range { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
  .pricing-price {
    font-family: 'Syne', sans-serif;
    font-size: 42px; font-weight: 800;
    color: var(--text); line-height: 1;
    margin-bottom: 4px;
  }
  .pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
  .pricing-price sub { font-size: 16px; font-weight: 400; color: var(--text2); }
  .pricing-per { font-size: 13px; color: var(--text3); margin-bottom: 28px; }
  .pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
  .pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); }
  .pricing-feature .check { color: var(--success); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .pricing-sla {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
    padding: 10px 14px; font-size: 13px; color: var(--text2);
    margin-bottom: 28px;
  }
  .pricing-sla strong { color: var(--text); }
  .btn-plan {
    width: 100%; padding: 13px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    cursor: pointer; border: none;
    transition: all 0.2s;
  }
  .btn-plan-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border-hover);
  }
  .btn-plan-outline:hover { border-color: var(--accent); color: var(--accent); }
  .btn-plan-solid { background: var(--accent); color: #fff; }
  .btn-plan-solid:hover { box-shadow: 0 8px 24px rgba(79,143,255,0.4); transform: translateY(-1px); }

  /* ── COMPARISON TABLE ── */
  .compare-section { overflow-x: auto; }
  .compare-table {
    width: 100%; border-collapse: collapse; margin-top: 48px;
    font-size: 14px;
  }
  .compare-table th {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 13px; font-weight: 600;
    background: var(--bg3);
    border: 1px solid var(--border);
    white-space: nowrap;
  }
  .compare-table th.highlight { background: rgba(79,143,255,0.1); color: var(--accent); }
  .compare-table td {
    padding: 13px 20px;
    border: 1px solid var(--border);
    color: var(--text2);
    vertical-align: middle;
  }
  .compare-table td.highlight { background: rgba(79,143,255,0.04); }
  .compare-table tr:hover td { background: rgba(255,255,255,0.02); }
  .compare-table tr:hover td.highlight { background: rgba(79,143,255,0.07); }
  .tag-yes { color: var(--success); font-weight: 500; }
  .tag-partial { color: var(--warning); }
  .tag-no { color: var(--text3); }

  /* ── WHY CONGLEUS ── */
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 56px; }
  .why-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s;
  }
  .why-card:hover { border-color: var(--border-hover); }
  .why-icon {
    width: 44px; height: 44px;
    background: rgba(79,143,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
  }
  .why-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .why-text { font-size: 14px; color: var(--text2); line-height: 1.6; }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(135deg, rgba(79,143,255,0.12) 0%, rgba(123,94,167,0.12) 100%);
    border-top: 1px solid rgba(79,143,255,0.15);
    border-bottom: 1px solid rgba(79,143,255,0.15);
  }
  .cta-inner {
    max-width: 700px; margin: 0 auto;
    padding: 80px 5vw;
    text-align: center;
  }
  .cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; }
  .cta-inner p { font-size: 17px; color: var(--text2); margin-bottom: 32px; font-weight: 300; }

  /* ── CONTACT ── */
  .contact-section { background: var(--bg2); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-label { font-size: 13px; color: var(--text2); }
  .form-input, .form-select, .form-textarea {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px; font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--text);
    outline: none; transition: border-color 0.2s;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
  .form-select { appearance: none; cursor: pointer; }
  .form-select option { background: var(--bg3); }
  .form-textarea { resize: vertical; min-height: 100px; }
  .contact-info { display: flex; flex-direction: column; gap: 28px; }
  .info-item { display: flex; gap: 16px; align-items: flex-start; }
  .info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(79,143,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .info-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
  .info-value { font-size: 15px; color: var(--text); }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 5vw;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    position: relative; z-index: 1;
  }
  .footer-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; }
  .footer-logo span { color: var(--accent); }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
  .footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text2); }
  .footer-copy { font-size: 13px; color: var(--text3); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .replace-grid { grid-template-columns: 1fr; }
    .replace-divider { padding: 16px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .arrow-circle { transform: rotate(90deg); }
    .step-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
    .step-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; }
    footer { flex-direction: column; text-align: center; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
