/* ═══════════════════════════════════════════════════════════
   ROOT & GLOBAL
═══════════════════════════════════════════════════════════ */
/* :root { <?= $css_vars ?> } */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-size: var(--fs-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.section-pad { padding: 45px 0; }
.section-pad-sm { padding: 60px 0; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.text-primary-clr   { color: var(--clr-primary) !important; }
.text-secondary-clr { color: var(--clr-secondary) !important; }
.text-muted-clr     { color: var(--clr-text-muted); }
.bg-card            { background: var(--clr-bg2); border: 1px solid var(--clr-border); border-radius: 12px; }
.bg-alt             { background: var(--clr-bg3); }

.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(233,69,96,.15); border: 1px solid rgba(233,69,96,.4);
  color: var(--clr-primary); padding: 6px 14px; border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase;
}

.section-label {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--clr-primary);
  display: block; margin-bottom: 10px;
}

.section-title {
  font-size: var(--fs-h2); 
  color: var(--clr-white);
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATED SPIDER WEB CANVAS BANNER
═══════════════════════════════════════════════════════════ */
#spider-canvas {
  /* position: fixed;  */
  position: absolute; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}

/* Warning ticker*/
/* Disclaimer Banner */
.disclaimer-banner {
    background: #1a1a2e;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.disclaimer-track {
    display: flex;
    width: 200%;
    animation: marquee 15s linear infinite;
    will-change: transform;
}

.disclaimer-content {
    /* width: 50%; */
    padding-right: 10%;
    font-size: 0.9rem;
}

/* PERFECT CONTINUOUS LOOP */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.disclaimer-banner:hover .disclaimer-track {
    animation-play-state: paused;
}


/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
/* .main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: all .3s ease;
} */
.main-nav{
  position:fixed;
  top:38px;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(10,14,26,.85);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--clr-border);
  transition:all .3s ease;
}
.main-nav.scrolled{
    top:0;
    background:rgba(10,14,26,.97);
    box-shadow:0 4px 30px rgba(0,0,0,.4);
}
/* .main-nav.scrolled {
  background: rgba(10,14,26,.97);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
} */

.hero-title-wrap{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.hero-logo-side{
    width:210px;
    height:140px;
    object-fit:contain;
    flex-shrink:0;
}

@media(max-width:768px){

    .hero-title-wrap{
        /* flex-direction:column; */
        gap:15px;
    }

    .hero-logo-side{
        width:80px;
        height:120px;
    }

}

/* .nav-logo img { height: 40px; } */
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; color: var(--clr-white);
}
.nav-logo-text span { color: var(--clr-primary); }

.navbar-toggler { border: 1px solid var(--clr-border); padding: 6px 10px; }
.navbar-toggler-icon { filter: invert(1); }

.nav-link-custom {
  color: var(--clr-text-muted) !important;
  font-weight: 600; font-size: 0.9rem; letter-spacing: .3px;
  transition: color .2s; padding: 8px 14px !important;
  position: relative;
}
.nav-link-custom::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--clr-primary);
  transform: scaleX(0); transition: transform .2s; border-radius: 2px;
}
.nav-link-custom:hover { color: var(--clr-white) !important; }
.nav-link-custom:hover::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--clr-primary); color: #fff !important;
  border-radius: 6px; padding: 8px 20px !important;
  font-weight: 700 !important; transition: all .2s;
}
.btn-nav-cta:hover { background: var(--clr-primary-dark); transform: translateY(-1px); }

/* DROPDOWN */
.nav-dropdown{
  position:relative;
}

.nav-drop-btn{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-caret{
  font-size:.7rem;
  transition:.25s;
}

.nav-dropdown:hover .nav-caret{
  transform:rotate(180deg);
}

.nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:0;

  min-width:280px;

  background:rgba(15,20,35,.98);
  backdrop-filter:blur(18px);

  border:1px solid var(--clr-border);
  border-radius:14px;

  padding:12px 0;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:.25s ease;

  box-shadow:0 18px 50px rgba(0,0,0,.35);

  z-index:1002;
}

.nav-dropdown:hover .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nav-dropdown-item{
  display:block;

  padding:12px 18px;

  color:var(--clr-text-muted);
  font-size:.92rem;
  font-weight:500;

  text-decoration:none;

  transition:.2s ease;
}

.nav-dropdown-item:hover{
  background:rgba(255,255,255,.04);
  color:var(--clr-white);

  padding-left:24px;
}

/* MOBILE DROPDOWN */
.mobile-dropdown{
  border-bottom:1px solid rgba(255,255,255,.06);
}

.mobile-drop-btn{
  width:100%;

  background:none;
  border:none;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:10px 13px;

  color:var(--clr-text-muted);

  font-weight:600;
  font-size:.95rem;
}

.mobile-drop-btn span{
  transition:.25s;
}

.mobile-dropdown.active .mobile-drop-btn span{
  transform:rotate(180deg);
}

.mobile-dropdown-menu{
  display:none;
  padding:0 0 12px 14px;
}

.mobile-dropdown.active .mobile-dropdown-menu{
  display:block;
}

.mobile-dropdown-item{
  display:block;

  color:var(--clr-text-muted);

  text-decoration:none;

  padding:10px 0;

  font-size:.9rem;

  transition:.2s;
}

.mobile-dropdown-item:hover{
  color:var(--clr-white);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#home {
  /* min-height: 100vh; */
  display: flex; align-items: center;
  padding: 100px 0 50px;
  position: relative; overflow: hidden;
}

.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,69,96,.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%,-50%) scale(1.15); }
}

.hero-content { position: relative; z-index: 1; }

.hero-headline {
  font-size: var(--fs-hero);
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin-bottom: 36px;
}

.btn-primary-clr {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff; border: none; padding: 14px 32px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  letter-spacing: .5px; text-transform: uppercase;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary-clr::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .2s;
}
.btn-primary-clr:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,69,96,.4); }
.btn-primary-clr:hover::before { opacity: 1; }

.btn-outline-clr {
  background: transparent; color: var(--clr-white);
  border: 1px solid var(--clr-border); padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  letter-spacing: .5px; text-transform: uppercase;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-clr:hover { border-color: var(--clr-primary); color: var(--clr-primary); transform: translateY(-2px); }

/* hero ticker */
.hero-ticker {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px;
}
.ticker-chip {
  background: var(--clr-bg2); border: 1px solid var(--clr-border);
  border-radius: 8px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-sm);
}
.ticker-chip .val { font-family: var(--font-mono); font-weight: 600; font-size: 1rem; }
.ticker-chip .val.up   { color: var(--clr-green); }
.ticker-chip .val.down { color: var(--clr-red); }

/* ═══════════════════════════════════════════════════════════
   FORM CARD (hero right)
═══════════════════════════════════════════════════════════ */
.form-card {
  /* background: var(--clr-bg2); */
  background: #80808041;
  border: 1px solid var(--clr-border);
  border-radius: 16px; padding: 32px;
  position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 16px 16px 0 0;
}
.form-card h4 {
  font-size: 1.3rem; color: var(--clr-white); margin-bottom: 6px;
}

.form-ctrl {
  background: var(--clr-bg3); border: 1px solid var(--clr-border);
  color: var(--clr-text); border-radius: 8px; padding: 10px 14px;
  font-family: var(--font-body); font-size: var(--fs-sm); width: 100%;
  transition: border-color .2s;
}
.form-ctrl:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(233,69,96,.15); }
.form-ctrl::placeholder { color: var(--clr-text-muted); }

select.form-ctrl option { background: var(--clr-bg2); }

.phone-row { display: flex; gap: 8px; }
.phone-prefix {
  background: var(--clr-bg3); border: 1px solid var(--clr-border);
  color: var(--clr-text-muted); border-radius: 8px; padding: 10px 12px;
  font-size: var(--fs-sm); white-space: nowrap;
}

.captcha-row { display: flex; gap: 10px; align-items: center; }
.captcha-box {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  color: #fff; font-family: var(--font-mono); font-weight: 700;
  border-radius: 8px; padding: 10px 18px; letter-spacing: 4px; font-size: 1.1rem;
  user-select: none; min-width: 90px; text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   BROKER TICKER STRIP
═══════════════════════════════════════════════════════════ */
/* .broker-strip {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 18px 0; overflow: hidden;
}
.broker-track {
  display: flex; gap: 40px; animation: scroll-x 25s linear infinite;
  white-space: nowrap; width: max-content;
}
.broker-track:hover { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.broker-chip {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--clr-text-muted); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: .3px;
}
.broker-chip::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-primary); flex-shrink: 0;
} */


/* ============================================
TRADING VIEW SECTION - FIXED
============================================ */

.trading-view {
    background: #1a1a2e;
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
}

.tradingview-widget-container {
    width: 100% !important;
    height: 46px !important;
    pointer-events: none;
    overflow: hidden;
}

.tradingview-widget-container iframe {
    width: 100% !important;
    /* height: 46px !important; */
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}


/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════════════ */
/* .comparison-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--clr-border);
}
.comparison-header {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--clr-bg3);
}
.comparison-header > div {
  padding: 18px 20px; font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; color: var(--clr-text-muted);
}
.comparison-header .col-spider {
  background: rgba(233,69,96,.1); border-left: 1px solid var(--clr-border);
  color: var(--clr-white);
}
.comparison-header .col-tv {
  border-left: 1px solid var(--clr-border);
}

.comparison-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  border-top: 1px solid var(--clr-border);
  transition: background .15s;
}
.comparison-row:hover { background: rgba(255,255,255,.03); }
.comparison-row > div { padding: 14px 20px; font-size: var(--fs-sm); display: flex; align-items: center; gap: 8px; }
.comparison-row .metric { color: var(--clr-text-muted); font-weight: 600; }
.comparison-row .col-spider-val { border-left: 1px solid var(--clr-border); background: rgba(233,69,96,.04); }
.comparison-row .col-tv-val     { border-left: 1px solid var(--clr-border); }

.ic-good { color: var(--clr-green); }
.ic-bad  { color: var(--clr-red); } */

/* SERVICES SECTION */
.services-section{
  background:var(--clr-bg);
  position:relative;
  padding:50px 0;
  overflow:hidden;
}

.services-section .container{
  position:relative;
  z-index:2;
}

/* SECTION HEADING */
.section-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 18px;

  border:1px solid var(--clr-border);
  border-radius:100px;

  background:rgba(255,31,31,.08);

  color:var(--clr-primary);

  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
}

.section-title{
  color:var(--clr-white);

  /* font-size:clamp(2.2rem,5vw,4rem); */
  font-weight:800;
  line-height:1.1;
}

.section-title span{
  color:var(--clr-primary);
  text-shadow:var(--neon-glow);
}

.section-subtitle{
  max-width:700px;

  color:var(--clr-text-muted);

  font-size:1rem;
  line-height:1.8;
}

/* SERVICE CARD */
.service-card{
  height:100%;

  display:flex;
  flex-direction:column;

  background:linear-gradient(
    180deg,
    var(--clr-bg2),
    var(--clr-bg3)
  );

  border:1px solid var(--clr-border);
  border-radius:22px;

  padding:1.7rem;

  transition:.32s ease;

  position:relative;
  overflow:hidden;
}

.service-card::before{
  content:'';

  position:absolute;
  inset:0;

  background:linear-gradient(
    135deg,
    rgba(255,31,31,.08),
    transparent 45%
  );

  opacity:0;

  transition:.35s ease;
}

.service-card:hover{
  transform:translateY(-6px);

  border-color:rgba(255,31,31,.35);

  box-shadow:0 12px 35px rgba(255,31,31,.14);
}

.service-card:hover::before{
  opacity:1;
}

/* FEATURED CARD */
.featured-service{
  border-color:rgba(255,31,31,.45);
}

/* ICON */
.service-icon{
  width:58px;
  height:58px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:rgba(255,31,31,.08);

  border:1px solid rgba(255,31,31,.12);

  font-size:1.5rem;

  margin-bottom:1.3rem;
}

/* TITLE */
.service-card h3{
  color:var(--clr-white);

  font-size:1.55rem;
  font-weight:700;

  margin-bottom:1.3rem;

  line-height:1.3;
}

/* FEATURES */
.service-features{
  list-style:none;

  padding:0;
  margin:0 0 1.5rem;
  flex:1;
}

.service-features li{
  display:flex;
  align-items:flex-start;
  gap:.7rem;

  padding:.8rem 0;

  border-bottom:1px solid rgba(255,255,255,.05);

  color:var(--clr-text-muted);

  font-size:.93rem;
  line-height:1.5;
}

.service-features li:last-child{
  border-bottom:none;
}

.service-features i{
  color:var(--clr-green);

  font-size:1rem;

  margin-top:2px;
}

/* BUTTON */
.service-price-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:.9rem 1.2rem;

  border-radius:100px;

  background:linear-gradient(
    90deg,
    var(--clr-primary-dark),
    var(--clr-primary)
  );

  border:1px solid rgba(255,31,31,.25);

  color:var(--clr-white);
  text-decoration:none;

  font-size:1.15rem;
  font-weight:700;

  position:relative;
  overflow:hidden;
   margin-top:auto;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;

  box-shadow:
    0 10px 24px rgba(255,31,31,.18);
}

.service-price-btn::before{
  content:'';

  position:absolute;
  top:0;
  left:-120%;

  width:120%;
  height:100%;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.15),
    transparent
  );

  transform:skewX(-20deg);

  transition:.7s ease;
}

.service-price-btn:hover{
  transform:translateY(-3px);

  border-color:rgba(255,31,31,.45);

  color:var(--clr-white);

  box-shadow:
    0 16px 34px rgba(255,31,31,.28),
    0 0 18px rgba(255,31,31,.18);
}

.service-price-btn:hover::before{
  left:130%;
}

/* RESPONSIVE */
@media(max-width:991px){

  .services-section{
    padding:50px 0;
  }

}

@media(max-width:768px){

  .services-section{
    padding:50px 0;
  }

  .section-title{
    font-size:2.3rem;
  }

  .section-subtitle{
    font-size:.95rem;
  }

  .service-card{
    padding:1.35rem;
    border-radius:18px;
  }

  .service-card h3{
    font-size:1.35rem;
  }

  .service-features li{
    font-size:.88rem;
  }

  .service-price-btn{
    font-size:1rem;
    padding:.85rem 1rem;
  }

}

/* ═══════════════════════════════════════════════════════════
   ADVANTAGE CARDS
═══════════════════════════════════════════════════════════ */
/* .adv-card {
  background: var(--clr-bg2); border: 1px solid var(--clr-border);
  border-radius: 14px; padding: 28px 24px;
  transition: all .3s; position: relative; overflow: hidden;
}
.adv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.adv-card:hover { border-color: rgba(233,69,96,.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.adv-card:hover::after { transform: scaleX(1); }

.adv-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(233,69,96,.12); border: 1px solid rgba(233,69,96,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
}
.adv-card h5 { font-size: 1.05rem; color: var(--clr-white); margin-bottom: 10px; }
.adv-card p  { font-size: var(--fs-sm); color: var(--clr-text-muted); line-height: 1.6; } */

/* WHY CHOOSE */
.why-choose-section{
  background:var(--clr-bg2);
  position:relative;
  padding:50px 0;
  overflow:hidden;
}

.section-heading{
  max-width:760px;
  margin:0 auto 3.5rem;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 18px;

  border:1px solid var(--clr-border);
  border-radius:100px;

  background:rgba(255,31,31,.08);

  color:var(--clr-primary);

  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
}

.section-title{
  margin-top:1.2rem;

  color:var(--clr-white);

  /* font-size:clamp(2.2rem,5vw,4rem); */
  font-weight:800;
  line-height:1.1;
}

.section-title span{
  color:var(--clr-primary);
  text-shadow:var(--neon-glow);
}

.section-subtitle{
  margin-top:1rem;

  color:var(--clr-text-muted);

  font-size:1.05rem;
  line-height:1.8;
}

.why-card{
  height:100%;

  padding:2rem;

  background:linear-gradient(180deg,var(--clr-bg3),var(--clr-bg2));

  border:1px solid var(--clr-border);
  border-radius:22px;

  transition:.35s ease;

  position:relative;
  overflow:hidden;
}

.why-card::before{
  content:'';

  position:absolute;
  inset:0;

  background:linear-gradient(
    135deg,
    rgba(255,31,31,.08),
    transparent 40%
  );

  opacity:0;
  transition:.35s ease;
}

.why-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,31,31,.4);
  box-shadow:var(--neon-glow);
}

.why-card:hover::before{
  opacity:1;
}

.why-icon{
  width:68px;
  height:68px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:rgba(255,31,31,.08);

  border:1px solid rgba(255,31,31,.15);

  margin-bottom:1.5rem;

  font-size:1.7rem;
  color:var(--clr-primary);

  box-shadow:var(--neon-glow);
}

.why-card h3{
  color:var(--clr-white);

  font-size:1.35rem;
  font-weight:700;

  margin-bottom:1rem;
}

.why-card p{
  color:var(--clr-text-muted);

  line-height:1.8;
  margin:0;
}

@media(max-width:768px){

  .why-card{
    padding:1.5rem;
  }

  .section-title{
    font-size:2.3rem;
  }

}

/* ═══════════════════════════════════════════════════════════
   MANUAL VS ALGO
═══════════════════════════════════════════════════════════ */
.vs-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start;
}
.vs-badge {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto; flex-shrink: 0; position: sticky; top: 100px;
}
.vs-card {
  background: var(--clr-bg2); border: 1px solid var(--clr-border); border-radius: 16px; padding: 28px;
}
.vs-card.vs-algo { border-color: rgba(34,197,94,.25); }
.vs-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.vs-card .vs-sub { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 2px; color: var(--clr-text-muted); margin-bottom: 20px; }
.vs-item {
  display: flex; gap: 12px; margin-bottom: 18px;
}
.vs-item-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.vs-manual .vs-item-icon { background: rgba(239,68,68,.1); color: var(--clr-red); }
.vs-algo   .vs-item-icon { background: rgba(34,197,94,.1);  color: var(--clr-green); }
.vs-item h6 { font-size: 0.9rem; color: var(--clr-white); margin-bottom: 4px; }
.vs-item p  { font-size: var(--fs-xs); color: var(--clr-text-muted); line-height: 1.5; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   STATS COUNTER
═══════════════════════════════════════════════════════════ */
/* .stats-section { background: var(--clr-bg); }
.stat-item { text-align: center; padding: 20px; }
.stat-value {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--clr-white); line-height: 1;
}
.stat-suffix { color: var(--clr-primary); }
.stat-label  { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-top: 6px; } */

/* STATS */
.stats-section{
  background:linear-gradient(180deg,var(--clr-bg),var(--clr-bg2));
  padding:90px 0;
  position:relative;
  overflow:hidden;
}

.stat-item{
  text-align:center;
  padding:2rem 1rem;
  position:relative;
  border-right:1px solid rgba(255,255,255,.05);
  transition:.3s ease;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.stat-item:last-child{
  border-right:none;
}

.stat-item::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,31,31,.06),transparent);
  opacity:0;
  transition:.3s ease;
}

.stat-item:hover::before{
  opacity:1;
}

.stat-item:hover{
  transform:translateY(-5px);
}

.stat-value{
  font-family:var(--font-heading);
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:800;
  line-height:1.1;

  color:var(--clr-white);

  margin-bottom:.7rem;

  text-shadow:var(--neon-glow);

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.stat-suffix{
  color:var(--clr-primary);
  margin-left:2px;
}

.stat-label{
  font-size:.95rem;
  font-weight:500;
  color:var(--clr-text-muted);
  letter-spacing:.03em;
}

@media(max-width:991px){

  .stats-section{
    padding:75px 0;
  }

  .stat-item{
    padding:1.8rem 1rem;
  }

  .stat-item:nth-child(2){
    border-right:none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2){
    border-bottom:1px solid rgba(255,255,255,.05);
  }

}

@media(max-width:576px){

  .stats-section{
    padding:65px 0;
  }

  .stat-item{
    padding:1.5rem .8rem;
  }

  .stat-value{
    font-size:2.1rem;
  }

  .stat-label{
    font-size:.82rem;
    line-height:1.5;
  }

}

/* ═══════════════════════════════════════════════════════════
   FEATURE GRID
═══════════════════════════════════════════════════════════ */
/* .feat-card {
  background: var(--clr-bg2); border: 1px solid var(--clr-border);
  border-radius: 14px; padding: 26px; height: 100%;
  transition: all .3s;
}
.feat-card:hover { border-color: rgba(233,69,96,.35); transform: translateY(-3px); }
.feat-icon {
  font-size: 2rem; margin-bottom: 14px; display: block;
  filter: drop-shadow(0 2px 8px rgba(233,69,96,.3));
}
.feat-card h5 { font-size: 1rem; color: var(--clr-white); margin-bottom: 8px; }
.feat-card p  { font-size: var(--fs-sm); color: var(--clr-text-muted); margin: 0; } */


/* ABOUT */
.about-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left,rgba(255,31,31,.12),transparent 35%),
    linear-gradient(180deg,var(--clr-bg2),var(--clr-bg));
  padding:110px 0;
}
.about-image-wrap{
  position:relative;
  max-width:420px;
  margin:auto;
}
.about-image{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,31,31,.22);
  background:var(--clr-bg3);
  box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 25px rgba(255,31,31,.12);
}
.about-image::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    transparent 40%
  );
  z-index:2;
}
.about-image img{
  width:100%;
  height:620px;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.about-image:hover img{
  transform:scale(1.04);
}
.about-content{
  padding-left:2rem;
}
.about-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border-radius:100px;
  border:1px solid rgba(255,31,31,.2);
  background:rgba(255,31,31,.08);
  color:var(--clr-primary);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:1.5rem;
}
.about-title{
  color:var(--clr-white);
  font-size:var(--fs-h2);
  font-weight:800;
  line-height:1.05;
  margin-bottom:1.8rem;
}
.about-title span{
  color:var(--clr-primary);
  text-shadow:var(--neon-glow);
}
.about-text{
  color:var(--clr-text-muted);
  font-size:1.05rem;
  line-height:1.9;
  margin-bottom:1.5rem;
}
.about-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
  margin-top:2.2rem;
}
.about-highlight{
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.05);
  border-radius:18px;
  padding:1rem 1.1rem;
  transition:.3s ease;
}
.about-highlight:hover{
  transform:translateY(-4px);
  border-color:rgba(255,31,31,.2);
  box-shadow:0 10px 30px rgba(255,31,31,.12);
}
.about-highlight h4{
  color:var(--clr-white);
  font-size:1.4rem;
  font-weight:800;
  margin-bottom:.3rem;
}
.about-highlight p{
  margin:0;
  color:var(--clr-text-muted);
  font-size:.9rem;
  line-height:1.5;
}
@media(max-width:991px){
  .about-section{
    padding:85px 0;
  }
  .about-content{
    padding-left:0;
    margin-top:3rem;
  }
  .about-image{
    max-width:420px;
    margin:auto;
  }
}
@media(max-width:768px){
  .about-section{
    padding:70px 0;
  }
  .about-title{
    font-size:2.5rem;
  }
  .about-text{
    font-size:.96rem;
    line-height:1.8;
  }
  .about-image img{
    height:480px;
  }
  .about-highlights{
    grid-template-columns:1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
/* .steps-wrap { position: relative; }
.steps-wrap::before {
  content: ''; position: absolute; top: 40px; left: calc(12.5% + 28px);
  right: calc(12.5% + 28px); height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 0 0 4px var(--clr-bg), 0 0 0 6px var(--clr-primary);
}
.step-item h5 { font-size: 1rem; color: var(--clr-white); margin-bottom: 8px; }
.step-item p  { font-size: var(--fs-sm); color: var(--clr-text-muted); } */

/* =========================================
   COMPLIANCE SECTION
========================================= */

.compliance-section{
  position:relative;
  overflow:hidden;
  padding:100px 0;
  background:
    radial-gradient(circle at top,rgba(255,31,31,.08),transparent 45%),
    linear-gradient(180deg,var(--clr-bg2),var(--clr-bg));
}

/* =========================================
   HEADER
========================================= */

.compliance-head{
  margin-bottom:3rem;
}

.compliance-head .section-title{
  margin-bottom:1rem;
}

.compliance-head .section-subtitle{
  max-width:760px;
}

/* =========================================
   DESKTOP TABS
========================================= */

.compliance-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem;
  margin-bottom:2.5rem;
}

.compliance-tab{
  border:none;
  outline:none;

  padding:.95rem 1.5rem;

  border-radius:100px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.08);

  color:var(--clr-text-muted);

  font-size:.95rem;
  font-weight:600;

  transition:.25s ease;
}

.compliance-tab:hover{
  color:var(--clr-white);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-2px);
}

.compliance-tab.active{
  background:
    linear-gradient(
      90deg,
      var(--clr-primary-dark),
      var(--clr-primary)
    );

  color:var(--clr-white);

  border-color:transparent;

  box-shadow:var(--neon-glow);
}

/* =========================================
   MOBILE DROPDOWN
========================================= */

.compliance-mobile{
  position:relative;
  margin-bottom:2rem;
}

.compliance-mobile-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:1rem 1.2rem;

  border:none;
  outline:none;

  border-radius:18px;

  background:var(--clr-bg3);

  border:1px solid rgba(255,255,255,.08);

  color:var(--clr-white);

  font-size:1rem;
  font-weight:600;
}

.compliance-mobile-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  right:0;

  background:var(--clr-bg2);

  border:1px solid rgba(255,255,255,.08);

  border-radius:18px;

  overflow:hidden;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:.25s ease;

  z-index:50;
}

.compliance-mobile-menu.active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.compliance-mobile-item{
  width:100%;

  border:none;
  background:none;

  text-align:left;

  padding:1rem 1.2rem;

  color:var(--clr-text-muted);

  border-bottom:1px solid rgba(255,255,255,.05);

  transition:.2s ease;
}

.compliance-mobile-item:last-child{
  border-bottom:none;
}

.compliance-mobile-item:hover{
  background:rgba(255,255,255,.03);
  color:var(--clr-white);
}

/* =========================================
   CONTENT WRAP
========================================= */

.compliance-content-wrap{
  position:relative;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.02),
      rgba(255,255,255,.01)
    );

  border:1px solid rgba(255,255,255,.06);

  border-radius:28px;

  padding:2rem;

  backdrop-filter:blur(18px);

  box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.03);

  min-height:780px;

  overflow:hidden;
}

/* =========================================
   INNER SCROLL
========================================= */

.compliance-scroll{
  max-height:700px;

  overflow-y:auto;
  overflow-x:hidden;

  padding-right:10px;
}

.compliance-scroll::-webkit-scrollbar{
  width:8px;
}

.compliance-scroll::-webkit-scrollbar-track{
  background:rgba(255,255,255,.03);
  border-radius:20px;
}

.compliance-scroll::-webkit-scrollbar-thumb{
  background:
    linear-gradient(
      180deg,
      var(--clr-primary),
      var(--clr-primary-dark)
    );

  border-radius:20px;
}

/* =========================================
   PANES
========================================= */

.compliance-pane{
  display:none;
}

.compliance-pane.active{
  display:block;
}

.compliance-pane-title{
  color:var(--clr-white);

  font-size:2rem;
  font-weight:800;

  margin-bottom:1.5rem;
}

.compliance-pane-content{
  color:var(--clr-text-muted);
  line-height:1.9;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.compliance-pane h1,
.compliance-pane h2,
.compliance-pane h3,
.compliance-pane h4,
.compliance-pane h5{
  color:var(--clr-white);
  line-height:1.3;
  margin-bottom:1rem;
}

.compliance-pane p,
.compliance-pane li{
  color:var(--clr-text-muted) !important;
  line-height:1.9;
}

.compliance-pane ul,
.compliance-pane ol{
  padding-left:1.2rem;
}

/* =========================================
   TABLES
========================================= */

.compliance-section table{
  width:100%;
  border-collapse:collapse;
  background:transparent;
}

.compliance-section table thead th{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.02)
    );

  color:var(--clr-white);

  font-weight:700;

  border:1px solid rgba(255,255,255,.06);

  padding:1rem;

  white-space:nowrap;
}

.compliance-section table tbody td{
  background:transparent;

  color:var(--clr-text-muted);

  border:1px solid rgba(255,255,255,.05);

  padding:1rem;

  white-space:nowrap;
}

.compliance-section table tbody tr{
  transition:.2s ease;
}

.compliance-section table tbody tr:hover td{
  background:rgba(255,255,255,.025);
  color:var(--clr-white);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

  .compliance-section{
    padding:50px 0;
  }

  .compliance-content-wrap{
    height:650px;
    min-height:650px;
    padding:1.2rem;
  }

  .compliance-scroll{
    height:100%;
    max-height:100%;

    overflow-y:auto;
    overflow-x:auto;

    padding-right:6px;
  }

}

@media(max-width:768px){

  .compliance-content-wrap{
    height:520px;
    min-height:520px;

    padding:1rem;

    border-radius:22px;
  }

  .compliance-scroll{
    height:100%;
    max-height:100%;
  }

  .compliance-pane-title{
    font-size:1.5rem;
  }

  .compliance-pane p,
  .compliance-pane li{
    font-size:.92rem;
    line-height:1.8;
  }

  .compliance-section table{
    min-width:850px;
  }

  .compliance-section table th,
  .compliance-section table td{
    padding:.8rem;
    font-size:.88rem;
  }

}

@media(max-width:480px){

  .compliance-content-wrap{
    height:480px;
    min-height:480px;
  }

}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
/* .testi-card {
  background: var(--clr-bg2); border: 1px solid var(--clr-border);
  border-radius: 16px; padding: 28px; height: 100%;
  position: relative;
}
.testi-card::before {
  content: '\201C'; font-size: 5rem; line-height: 1;
  color: rgba(233,69,96,.2); font-family: Georgia, serif;
  position: absolute; top: 10px; right: 20px;
}
.testi-stars { color: var(--clr-secondary); font-size: .9rem; margin-bottom: 14px; }
.testi-quote { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--clr-primary); }
.testi-name { font-weight: 700; color: var(--clr-white); font-size: .95rem; }
.testi-role { font-size: var(--fs-xs); color: var(--clr-text-muted); } */

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-item {
  background: var(--clr-bg2); border: 1px solid var(--clr-border);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 22px; color: var(--clr-white);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer; transition: color .2s;
}
.faq-q:hover { color: var(--clr-primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(233,69,96,.1); border: 1px solid rgba(233,69,96,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary); flex-shrink: 0; font-size: 1.2rem;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--clr-primary); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
  padding: 0 22px; color: var(--clr-text-muted); font-size: var(--fs-sm); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ═══════════════════════════════════════════════════════════
   WEBINAR POPUP
═══════════════════════════════════════════════════════════ */
.webinar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s;
  backdrop-filter: blur(6px);
}
.webinar-overlay.active { opacity: 1; visibility: visible; }
.webinar-modal {
  background: var(--clr-bg2); border: 1px solid var(--clr-border);
  border-radius: 20px; width: 90%; max-width: 480px; padding: 40px 36px;
  position: relative;
  transform: scale(.9) translateY(20px); transition: transform .3s;
}
/* .webinar-overlay.active .webinar-modal { transform: scale(1) translateY(0); } */
.webinar-modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 20px 20px 0 0;
}
.webinar-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--clr-text-muted);
  font-size: 1.4rem; cursor: pointer; transition: color .2s;
}
.webinar-close:hover { color: var(--clr-white); }

/* CONTACT FORM */
/* =========================================
   CONTACT MODAL
========================================= */

#contactModal .modal-content{
    background: linear-gradient(
        180deg,
        var(--clr-bg2),
        var(--clr-bg3)
    );

    border: 1px solid var(--clr-border);

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        0 0 25px rgba(255,31,31,.12);

    color: var(--clr-text);
}

/* HEADER */
#contactModal .modal-header{
    border-bottom: 1px solid var(--clr-border);
}

#contactModal .modal-title{
    color: var(--clr-white);
    font-size: 1.5rem;
    font-weight: 700;
}

/* CLOSE BUTTON */
#contactModal .btn-close{
    filter: invert(1);
    opacity: .8;
}

#contactModal .btn-close:hover{
    opacity: 1;
}

/* LABELS */
#contactModal .form-label{
    color: var(--clr-text);
    font-weight: 600;
    margin-bottom: 8px;
}

/* INPUTS */
#contactModal .form-control{
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);

    color: var(--clr-text);

    min-height: 54px;

    border-radius: 14px;

    padding: 12px 16px;

    transition: all .3s ease;
}

#contactModal textarea.form-control{
    min-height: 140px;
    resize: vertical;
}

#contactModal .form-control::placeholder{
    color: var(--clr-text-muted);
}

#contactModal .form-control:focus{
    background: var(--clr-bg);

    color: var(--clr-white);

    border-color: var(--clr-primary);

    box-shadow:
        0 0 0 3px rgba(255,31,31,.15),
        var(--neon-glow);

    outline: none;
}

/* SUBMIT BUTTON */
#contactModal .btn-light{
    /* background: linear-gradient(
        135deg,
        var(--clr-primary),
        var(--clr-secondary)
    ); */

    border: none;

    color: #fff;

    border-radius: 14px;

    transition: all .3s ease;

    font-size: 1rem;
}

#contactModal .btn-light:hover{
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(255,31,31,.35);
}

/* SUCCESS / ERROR MESSAGE */
#formMessage{
    border-radius: 12px;
    padding: 12px 15px;
}

/* MODAL BACKDROP */
.modal-backdrop.show{
    opacity: .85;
}

/* MOBILE */
@media(max-width:767px){

    #contactModal .modal-dialog{
        margin: 12px;
    }

    #contactModal .modal-content{
        border-radius: 18px;
    }

    #contactModal .modal-title{
        font-size: 1.2rem;
    }

}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: #070b14;
  border-top: 1px solid var(--clr-border);
  padding: 60px 0 30px;
}
.footer-logo-text {
  font-family: var(--font-heading); font-size: 1.6rem;
  font-weight: 700; color: var(--clr-white);
}
.footer-logo-text span { color: var(--clr-primary); }
.footer-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-top: 12px; max-width: 280px; }
.footer-title { font-family: var(--font-heading); font-size: 1rem; color: var(--clr-white); margin-bottom: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-addr p { font-size: var(--fs-sm); color: var(--clr-text-muted); line-height: 1.8; margin: 0; }
.footer-addr .addr-label { color: var(--clr-primary); font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; display: block; }
.footer-link { display: flex; align-items: center; gap: 8px; color: var(--clr-text-muted); font-size: var(--fs-sm); transition: color .2s; margin-bottom: 8px; }
.footer-link:hover { color: var(--clr-primary); }
.footer-divider { 
    /* border-color: var(--clr-border);  */
    margin: 30px 0 20px; }
.footer-copy { font-size: var(--fs-xs); color: var(--clr-text-muted); }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-bottom-left {
    max-width: 850px;
}
.footer-sebi {
    font-size: .78rem;
    line-height: 1.6;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.footer-img img{
    width:20%;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--clr-primary);
    transform: translateY(-5px);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS & ENTER EFFECTS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }
.fade-up.d5 { transition-delay: .5s; }

/* scroll to top */
.scroll-top {
  position: fixed; bottom: 110px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clr-primary); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: all .3s;
  box-shadow: 0 4px 16px rgba(233,69,96,.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--clr-primary-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .vs-wrap { grid-template-columns: 1fr; }
  .vs-badge { display: none; }
  .steps-wrap::before { display: none; }
}

@media (max-width: 767px) {
  #home { padding: 100px 0 60px; }
  .comparison-header > div, .comparison-row > div { padding: 10px 12px; font-size: .78rem; }
  .form-card { padding: 24px 18px; }
}