/* =====================================================
   MULYAVEDA – styles.css  (SaaS redesign 2026)
   Consistent light theme · blue + orange accents
   Mobile-first · CSS custom properties · BEM naming
   ===================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Brand */
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-deeper: #1E3A8A;
  --blue-50:     #EFF6FF;
  --blue-100:    #DBEAFE;
  --blue-200:    #BFDBFE;
  --orange:      #F97316;
  --orange-dark: #EA580C;
  --orange-50:   #FFF7ED;
  --orange-100:  #FFEDD5;
  --green:       #10B981;
  --green-50:    #ECFDF5;
  --green-100:   #D1FAE5;
  --purple:      #7C3AED;

  /* Neutrals — slate scale */
  --s-0:   #FFFFFF;
  --s-50:  #F8FAFC;
  --s-100: #F1F5F9;
  --s-200: #E2E8F0;
  --s-300: #CBD5E1;
  --s-400: #94A3B8;
  --s-500: #64748B;
  --s-600: #475569;
  --s-700: #334155;
  --s-800: #1E293B;
  --s-900: #0F172A;

  /* Semantic */
  --text:        var(--s-900);
  --text-muted:  var(--s-500);
  --border:      var(--s-200);
  --surface:     var(--s-0);
  --bg:          var(--s-50);

  /* Fonts */
  --f-head: 'Poppins', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter',   system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 9999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15,23,42,.05);
  --sh-sm: 0 1px 4px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
  --sh-md: 0 4px 16px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --sh-lg: 0 12px 40px rgba(15,23,42,.10), 0 4px 10px rgba(15,23,42,.04);
  --sh-xl: 0 24px 64px rgba(15,23,42,.12);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t: .22s;

  --w-max: 1280px;
  --pad-section: 5.5rem 1.5rem;
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:72px;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:var(--f-body);color:var(--text);background:var(--surface);line-height:1.65;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,select,textarea{font-family:inherit}
:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:var(--r-sm)}

/* ===== LAYOUT UTILS ===== */
.container{max-width:var(--w-max);margin:0 auto;padding:0 1.5rem}
.section{padding:var(--pad-section)}
.section--white{background:var(--surface)}
.section--gray {background:var(--bg)}

.section__header{text-align:center;max-width:680px;margin:0 auto 4rem}

.section__eyebrow{
  display:inline-flex;align-items:center;gap:.375rem;
  font-family:var(--f-head);font-size:.75rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--blue);background:var(--blue-50);
  padding:.3rem .875rem;border-radius:var(--r-pill);
  margin-bottom:.875rem;border:1px solid var(--blue-100);
}
.section__eyebrow--light{color:rgba(255,255,255,.9);background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.2)}

.section__title{
  font-family:var(--f-head);font-size:clamp(1.875rem,4vw,2.625rem);
  font-weight:800;line-height:1.18;letter-spacing:-.025em;
  color:var(--text);margin-bottom:1rem;
}

.section__subtitle{font-size:1.0625rem;color:var(--text-muted);line-height:1.7}

/* ===== GRID ===== */
.grid{display:grid;gap:1.5rem}
.grid--3{grid-template-columns:1fr}
.grid--4{grid-template-columns:1fr}
@media(min-width:640px) {.grid--4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px) {.grid--3{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.grid--4{grid-template-columns:repeat(4,1fr)}}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.75rem 1.625rem;border-radius:var(--r-pill);
  font-family:var(--f-head);font-size:.9375rem;font-weight:600;
  transition:transform var(--t) var(--ease),box-shadow var(--t) var(--ease),background var(--t);
  cursor:pointer;border:1.5px solid transparent;white-space:nowrap;
}
.btn:hover {transform:translateY(-2px)}
.btn:active{transform:translateY(0)}

.btn--orange{
  background:var(--orange);color:#fff;border-color:var(--orange);
  box-shadow:0 4px 14px rgba(249,115,22,.35);
}
.btn--orange:hover{background:var(--orange-dark);border-color:var(--orange-dark);box-shadow:0 8px 24px rgba(249,115,22,.4)}

.btn--blue{
  background:var(--blue);color:#fff;border-color:var(--blue);
  box-shadow:0 4px 14px rgba(37,99,235,.3);
}
.btn--blue:hover{background:var(--blue-dark);border-color:var(--blue-dark);box-shadow:0 8px 24px rgba(37,99,235,.4)}

.btn--outline{
  background:transparent;color:var(--blue);border-color:var(--blue-200);
}
.btn--outline:hover{background:var(--blue-50);border-color:var(--blue);box-shadow:none}

.btn--ghost{
  background:transparent;color:var(--s-600);border-color:transparent;
}
.btn--ghost:hover{background:var(--blue-50);color:var(--blue);box-shadow:none;transform:none}

.btn--lg  {padding:.9375rem 2.25rem;font-size:1.0625rem}
.btn--full{width:100%}

/* ===== ANIMATIONS ===== */
.animate-fade-up{
  opacity:0;transform:translateY(28px);
  transition:opacity .6s var(--ease),transform .6s var(--ease);
}
.animate-fade-up.visible{opacity:1;transform:translateY(0)}

.grid>.animate-fade-up:nth-child(2),
.steps>.step:nth-child(2),
.pricing>.pricing__card:nth-child(2){transition-delay:.1s}
.grid>.animate-fade-up:nth-child(3),
.steps>.step:nth-child(3),
.pricing>.pricing__card:nth-child(3){transition-delay:.2s}
.grid>.animate-fade-up:nth-child(4){transition-delay:.3s}
.grid>.animate-fade-up:nth-child(5){transition-delay:.4s}
.grid>.animate-fade-up:nth-child(6){transition-delay:.5s}

.no-js .animate-fade-up{opacity:1;transform:none}


/* =====================================================
   NAVIGATION
   ===================================================== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  transition:background var(--t) var(--ease),box-shadow var(--t) var(--ease),backdrop-filter var(--t);
}
.nav.scrolled{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 0 var(--s-200),0 4px 20px rgba(15,23,42,.06);
}

.nav__container{
  max-width:var(--w-max);margin:0 auto;padding:0 1.5rem;
  height:68px;display:flex;align-items:center;justify-content:space-between;
}

.nav__logo{display:flex;align-items:center}
.nav__logo-img {height:30px;width:auto;display:block}
.footer__logo-img{height:26px;width:auto;display:block}

.nav__links{display:none;align-items:center;gap:.125rem}

.nav__link{
  padding:.5rem .875rem;border-radius:var(--r-pill);
  font-size:.9rem;font-weight:500;color:var(--s-600);
  transition:color var(--t),background var(--t);
}
.nav__link:hover,.nav__link.active{color:var(--blue);background:var(--blue-50)}

.nav__login{color:var(--s-700);font-weight:500}
.nav__cta{margin-left:.5rem}

.nav__hamburger{display:flex;flex-direction:column;gap:5px;padding:8px;border-radius:var(--r-sm)}
.nav__hamburger span{display:block;width:22px;height:2px;background:var(--s-700);border-radius:2px;transition:transform var(--t),opacity var(--t)}

/* Mobile overlay */
.nav__mobile{
  position:fixed;inset:0;
  background:rgba(255,255,255,.97);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  z-index:200;display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:1.5rem;padding:2rem;
  transform:translateX(100%);transition:transform .32s cubic-bezier(.4,0,.2,1);
}
.nav__mobile.open{transform:translateX(0)}

.nav__mobile-close{
  position:absolute;top:1.25rem;right:1.25rem;
  font-size:2rem;line-height:1;color:var(--s-500);
  padding:.25rem .625rem;border-radius:var(--r-sm);
  transition:background var(--t);
}
.nav__mobile-close:hover{background:var(--s-100)}

.nav__mobile-link{
  font-family:var(--f-head);font-size:1.5rem;font-weight:600;
  color:var(--text);transition:color var(--t);
}
.nav__mobile-link:hover{color:var(--blue)}
.nav__mobile-cta{margin-top:1rem;font-size:1.125rem;padding:.875rem 2.5rem}

@media(min-width:768px){.nav__links{display:flex}.nav__hamburger{display:none}}


/* =====================================================
   HERO  — clean light with gradient glow
   ===================================================== */
.hero{
  background:var(--surface);
  padding:8.5rem 1.5rem 5rem;
  position:relative;overflow:hidden;
}

/* Radial glow behind hero content */
.hero::before{
  content:'';position:absolute;
  top:-20%;left:50%;transform:translateX(-50%);
  width:1000px;height:600px;
  background:radial-gradient(ellipse at 50% 40%,rgba(37,99,235,.08) 0%,transparent 65%),
             radial-gradient(ellipse at 80% 30%,rgba(249,115,22,.06) 0%,transparent 50%);
  pointer-events:none;
}

/* Dot-grid pattern */
.hero::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(var(--s-200) 1px,transparent 1px);
  background-size:28px 28px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 40%,transparent 100%);
  pointer-events:none;opacity:.6;
}

.hero__container{
  max-width:var(--w-max);margin:0 auto;
  display:grid;grid-template-columns:1fr;
  gap:3.5rem;align-items:center;
  position:relative;z-index:1;
}

.hero__badge{
  display:inline-flex;align-items:center;gap:.375rem;
  background:linear-gradient(135deg,var(--blue-50),var(--orange-50));
  color:var(--blue-dark);border:1px solid var(--blue-100);
  padding:.375rem .875rem;border-radius:var(--r-pill);
  font-size:.8125rem;font-weight:700;
  margin-bottom:1.25rem;letter-spacing:.01em;
}

.hero__headline{
  font-family:var(--f-head);
  font-size:clamp(2.375rem,5.5vw,3.875rem);
  font-weight:800;line-height:1.1;letter-spacing:-.03em;
  color:var(--text);margin-bottom:1.25rem;
}

.hero__headline span{
  background:linear-gradient(135deg,var(--blue) 0%,var(--purple) 50%,var(--orange) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.hero__subheadline{
  font-size:clamp(1.0625rem,2.5vw,1.25rem);
  color:var(--s-600);margin-bottom:1rem;font-weight:400;line-height:1.65;
}

.hero__desc{
  font-size:.9375rem;color:var(--text-muted);margin-bottom:2.25rem;line-height:1.7;
}

.hero__actions{display:flex;flex-wrap:wrap;gap:.875rem;margin-bottom:3rem}

.hero__stats{
  display:flex;gap:2.5rem;flex-wrap:wrap;
  padding-top:2rem;border-top:1px solid var(--s-200);
}

.hero__stat{display:flex;flex-direction:column}
.hero__stat-number{font-family:var(--f-head);font-size:2rem;font-weight:800;color:var(--blue);line-height:1}
.hero__stat-unit  {font-size:1rem;font-weight:700;color:var(--orange);display:inline}
.hero__stat-label {font-size:.8125rem;color:var(--text-muted);margin-top:.25rem}

/* Dashboard mockup card */
.hero__visual{position:relative}

.hero__demo-card{
  background:var(--surface);
  border:1px solid var(--s-200);
  border-radius:var(--r-xl);overflow:hidden;
  box-shadow:var(--sh-xl),0 0 0 1px rgba(37,99,235,.06);
}

.hero__demo-header{
  background:var(--s-50);padding:.875rem 1.25rem;
  display:flex;align-items:center;gap:.4rem;
  border-bottom:1px solid var(--s-200);
}

.hero__demo-dot{width:11px;height:11px;border-radius:50%}
.hero__demo-dot--red   {background:#FF5F57}
.hero__demo-dot--yellow{background:#FFBD2E}
.hero__demo-dot--green {background:#27C93F}

.hero__demo-title{font-size:.8125rem;font-weight:600;color:var(--s-400);margin-left:.625rem}

.hero__demo-body{padding:1.5rem;display:flex;flex-direction:column;gap:1.125rem}

.hero__demo-stat{display:flex;justify-content:space-between;align-items:center;font-size:.875rem}
.hero__demo-stat-label{color:var(--text-muted);font-weight:500}
.hero__demo-stat-value{font-weight:700;color:var(--text)}
.hero__demo-stat-value--green{color:var(--green)}

.hero__demo-divider{height:1px;background:var(--s-200)}

.hero__demo-update-label{font-size:.8125rem;font-weight:600;color:var(--s-500);margin-bottom:.5rem}

.hero__demo-progress{
  height:5px;background:var(--s-200);border-radius:var(--r-pill);overflow:hidden;margin-bottom:.5rem;
}
.hero__demo-progress-bar{
  height:100%;width:100%;
  background:linear-gradient(90deg,var(--blue),var(--green));
  border-radius:var(--r-pill);
  animation:progress-pulse 2.5s ease-in-out infinite;
}
@keyframes progress-pulse{0%,100%{opacity:1}50%{opacity:.65}}

.hero__demo-update-status{font-size:.8125rem;color:var(--green);font-weight:600}
.hero__demo-tags{display:flex;flex-direction:column;gap:.5rem}

.hero__demo-tag{
  display:flex;align-items:center;justify-content:space-between;
  padding:.625rem .875rem;background:var(--s-50);
  border:1px solid var(--s-200);border-radius:var(--r-md);font-size:.8125rem;gap:.5rem;
}

.tag-name {color:var(--text);font-weight:500;flex:1}
.tag-price{font-weight:700;color:var(--blue)}
.tag-status{font-size:.6875rem;font-weight:600;padding:.2rem .5rem;border-radius:var(--r-pill);flex-shrink:0}
.tag-status--synced {background:var(--green-100);color:#065F46}
.tag-status--pending{background:#FEF3C7;color:#92400E}

/* ESL floating tag */
.hero__esl-tag{
  position:absolute;bottom:-1.5rem;right:-.5rem;
  width:136px;background:var(--surface);
  border:1px solid var(--s-300);border-radius:var(--r-md);
  padding:.75rem;box-shadow:var(--sh-lg);transform:rotate(3deg);
}
.esl-tag__screen{background:#0f172a;border-radius:var(--r-sm);padding:.625rem;color:#e0e0e0}
.esl-tag__product{font-size:.5625rem;color:#64748b;margin-bottom:.25rem}
.esl-tag__price  {font-size:1.125rem;font-weight:800;color:#f8fafc;line-height:1}
.esl-tag__mrp    {font-size:.5rem;color:#475569;margin-top:.125rem}
.esl-tag__barcode{font-size:.5rem;color:#334155;margin-top:.375rem;letter-spacing:1px}

.hero__wave{position:absolute;bottom:0;left:0;right:0;line-height:0}

@media(min-width:1024px){
  .hero{padding:10rem 1.5rem 7rem}
  .hero__container{grid-template-columns:1.1fr 0.9fr;gap:5rem}
  .hero__visual{padding-bottom:2rem}
}


/* =====================================================
   CARDS
   ===================================================== */
.card{
  background:var(--surface);border-radius:var(--r-lg);padding:2rem;
  border:1px solid var(--s-200);
  transition:transform var(--t) var(--ease),box-shadow var(--t) var(--ease),border-color var(--t);
  position:relative;overflow:hidden;
}

.card--problem,.card--feature{box-shadow:var(--sh-xs)}

.card--feature:hover,.card--problem:hover,.card--industry:hover{
  transform:translateY(-5px);box-shadow:var(--sh-lg);
}
.card--feature:hover {border-color:var(--blue-200)}
.card--problem:hover {border-color:rgba(249,115,22,.3)}
.card--industry:hover{border-color:rgba(249,115,22,.3)}

/* Top accent bar on hover */
.card--feature::before,.card--problem::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  border-radius:var(--r-lg) var(--r-lg) 0 0;opacity:0;
  transition:opacity var(--t);
}
.card--feature::before{background:linear-gradient(90deg,var(--blue),var(--purple))}
.card--problem::before{background:var(--orange)}
.card--feature:hover::before,.card--problem:hover::before{opacity:1}

.card--industry{text-align:center;padding:2.25rem 1.75rem;box-shadow:var(--sh-xs)}

.card__icon{
  width:52px;height:52px;border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;
}
.card--industry .card__icon{margin:0 auto 1.25rem}

.card__icon--orange{background:linear-gradient(135deg,var(--orange-50),var(--orange-100));color:var(--orange-dark)}
.card__icon--blue  {background:linear-gradient(135deg,var(--blue-50),var(--blue-100));color:var(--blue-dark)}

.card__title{
  font-family:var(--f-head);font-size:1.0625rem;font-weight:700;
  color:var(--text);margin-bottom:.625rem;line-height:1.35;
}
.card__text{font-size:.9375rem;color:var(--text-muted);line-height:1.7}


/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps{position:relative;display:grid;grid-template-columns:1fr;gap:2.5rem}
.steps__line{display:none}

.step{display:flex;flex-direction:column;align-items:flex-start;gap:.875rem}

.step__number{
  width:48px;height:48px;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--f-head);font-size:1.25rem;font-weight:800;flex-shrink:0;
  box-shadow:0 4px 14px rgba(249,115,22,.35);
}

.step__icon{
  width:52px;height:52px;background:var(--blue-50);color:var(--blue-dark);
  border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;
}

.step__title{font-family:var(--f-head);font-size:1.125rem;font-weight:700;color:var(--text)}
.step__desc {font-size:.9375rem;color:var(--text-muted);line-height:1.7}

@media(min-width:768px){
  .steps{grid-template-columns:repeat(3,1fr);gap:2rem;align-items:start}
  .steps__line{
    display:block;position:absolute;top:24px;
    left:calc(100%/6);right:calc(100%/6);
    height:2px;background:linear-gradient(90deg,var(--blue-200),var(--orange-100));z-index:0;
  }
  .step{align-items:center;text-align:center;position:relative;z-index:1}
  .step__icon{display:none}
}


/* =====================================================
   PRICING
   ===================================================== */
.pricing{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-bottom:1.75rem}

.pricing__card{
  background:var(--surface);border:1px solid var(--s-200);
  border-radius:var(--r-xl);padding:2.25rem 2rem;
  position:relative;box-shadow:var(--sh-sm);
  transition:transform var(--t) var(--ease),box-shadow var(--t) var(--ease);
}
.pricing__card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg)}

.pricing__card--featured{
  background:linear-gradient(160deg,var(--blue-deeper) 0%,#1a2e5e 100%);
  border-color:transparent;transform:scale(1.02);
  box-shadow:var(--sh-xl),0 0 0 1px rgba(37,99,235,.4);
}
.pricing__card--featured:hover{transform:scale(1.02) translateY(-4px)}

.pricing__card--featured .pricing__plan,
.pricing__card--featured .pricing__subtitle,
.pricing__card--featured .pricing__feature{color:rgba(255,255,255,.85)}
.pricing__card--featured .pricing__price{color:#93c5fd}
.pricing__card--featured .pricing__check{color:#34d399}

.pricing__badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  padding:.3rem 1rem;border-radius:var(--r-pill);
  font-family:var(--f-head);font-size:.75rem;font-weight:700;white-space:nowrap;
}
.pricing__badge--orange{background:var(--orange);color:#fff}
.pricing__badge--blue  {background:var(--blue);color:#fff}
.pricing__badge--green {background:var(--green);color:#fff}

.pricing__plan{font-family:var(--f-head);font-size:1.25rem;font-weight:700;color:var(--text);margin-bottom:.5rem;margin-top:.5rem}
.pricing__price{font-family:var(--f-head);font-size:1.625rem;font-weight:800;color:var(--blue);line-height:1.2;margin-bottom:.25rem}
.pricing__per{font-size:1rem;font-weight:500;color:var(--s-500)}
.pricing__subtitle{font-size:.875rem;color:var(--text-muted);margin-bottom:1.5rem}

.pricing__features{display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem}
.pricing__feature{display:flex;align-items:flex-start;gap:.625rem;font-size:.9375rem;color:var(--text);line-height:1.5}
.pricing__check{flex-shrink:0;font-weight:700;color:var(--green);font-size:1rem;margin-top:.1rem}
.pricing__note{text-align:center;font-size:.875rem;color:var(--text-muted)}

@media(min-width:768px){.pricing{grid-template-columns:repeat(3,1fr)}}


/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials{max-width:640px;margin:0 auto}

.testimonial{
  background:var(--surface);border-radius:var(--r-xl);padding:2.5rem;
  box-shadow:var(--sh-md);border:1px solid var(--s-200);
  position:relative;overflow:hidden;text-align:center;
}
.testimonial::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--blue),var(--orange));
}

.testimonial__quote-mark{
  font-family:Georgia,serif;font-size:5rem;line-height:1;
  color:var(--orange);opacity:.15;
  position:absolute;top:.5rem;left:1.5rem;
}

.testimonial__text{font-size:1.125rem;color:var(--text);line-height:1.75;margin-bottom:1.75rem;position:relative;z-index:1}

.testimonial__author{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:1.5rem}

.testimonial__avatar{width:44px;height:44px;object-fit:contain;flex-shrink:0}

.testimonial__name{font-family:var(--f-head);font-weight:600;color:var(--text);text-align:left}
.testimonial__role{font-size:.875rem;color:var(--text-muted);text-align:left}
.testimonial__cta{font-size:.9375rem}


/* =====================================================
   CTA / CONTACT  — the ONE dark section
   ===================================================== */
.cta-section{
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,rgba(37,99,235,.4) 0%,transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 80%,rgba(249,115,22,.15) 0%,transparent 60%),
    linear-gradient(160deg,var(--s-900) 0%,#0d1a3a 60%,var(--s-900) 100%);
  padding:var(--pad-section);position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:28px 28px;pointer-events:none;
}

.cta__content{text-align:center;margin-bottom:2.75rem;position:relative}
.cta__title{
  font-family:var(--f-head);font-size:clamp(1.75rem,4vw,2.75rem);
  font-weight:800;color:#fff;margin-bottom:.75rem;
  line-height:1.2;letter-spacing:-.02em;
}
.cta__subtitle{font-size:1.0625rem;color:rgba(255,255,255,.6)}

/* Form */
.cta-form{
  max-width:680px;margin:0 auto;
  background:rgba(255,255,255,.05);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.1);border-radius:var(--r-xl);
  padding:2.5rem;box-shadow:0 24px 80px rgba(0,0,0,.3);position:relative;
}

.cta-form__grid{display:grid;grid-template-columns:1fr;gap:1.125rem;margin-bottom:1.5rem}
@media(min-width:640px){.cta-form__grid{grid-template-columns:repeat(2,1fr)}}

.form-group{display:flex;flex-direction:column;gap:.4rem}

.form-label{font-size:.875rem;font-weight:600;color:rgba(255,255,255,.75)}

.form-input{
  padding:.8125rem 1rem;border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-md);font-size:.9375rem;
  color:#fff;background:rgba(255,255,255,.06);
  transition:border-color var(--t),box-shadow var(--t),background var(--t);width:100%;
}
.form-input::placeholder{color:rgba(255,255,255,.28)}
.form-input:focus{outline:none;border-color:rgba(99,139,255,.7);background:rgba(255,255,255,.1);box-shadow:0 0 0 3px rgba(37,99,235,.2)}
.form-input option{background:var(--s-800);color:#fff}
.form-input.error{border-color:#f87171}
.form-error{font-size:.8125rem;color:#fca5a5;min-height:1.1em}

.form-select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .875rem center;padding-right:2.5rem;
}

.cta-form__submit{text-align:center;margin-bottom:1rem}
.cta-form__btn{min-width:220px;font-size:1.0625rem;padding:.9375rem 2.25rem}

.cta-form__note{text-align:center;font-size:.875rem;color:rgba(255,255,255,.4)}
.cta-form__link{color:#93c5fd;font-weight:600}
.cta-form__link:hover{text-decoration:underline}

.form-success{
  background:rgba(16,185,129,.15);border:1px solid rgba(16,185,129,.3);
  color:#6ee7b7;padding:1rem;border-radius:var(--r-md);
  text-align:center;font-weight:600;margin-top:1rem;
}


/* =====================================================
   FOOTER
   ===================================================== */
.footer{
  background:var(--s-900);padding:5rem 0 0;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer__container{max-width:var(--w-max);margin:0 auto;padding:0 1.5rem}

.footer__grid{display:grid;grid-template-columns:1fr;gap:3rem;padding-bottom:3.5rem}
@media(min-width:640px) {.footer__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer__grid{grid-template-columns:2fr 1fr 1fr 1.5fr}}

.footer__logo{display:flex;align-items:center;margin-bottom:.875rem}
.footer__tagline{font-size:.9375rem;color:rgba(255,255,255,.6);margin-bottom:.375rem}
.footer__desc   {font-size:.875rem; color:rgba(255,255,255,.3);margin-bottom:1.75rem}

.footer__social{display:flex;gap:.625rem}
.footer__social-link{
  width:36px;height:36px;background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.55);border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.08);
  transition:background var(--t),color var(--t),border-color var(--t);
}
.footer__social-link:hover{background:var(--orange);color:#fff;border-color:var(--orange)}

.footer__heading{
  font-family:var(--f-head);font-size:.75rem;font-weight:700;
  color:rgba(255,255,255,.4);margin-bottom:1.25rem;
  text-transform:uppercase;letter-spacing:.1em;
}

.footer__links{display:flex;flex-direction:column;gap:.625rem}
.footer__link{font-size:.9375rem;color:rgba(255,255,255,.45);transition:color var(--t)}
.footer__link:hover{color:rgba(255,255,255,.9)}

.footer__contact{display:flex;flex-direction:column;gap:1rem}
.footer__contact-item{
  display:flex;align-items:flex-start;gap:.75rem;
  font-size:.9375rem;color:rgba(255,255,255,.45);
}
.footer__contact-item svg{flex-shrink:0;margin-top:2px;opacity:.4}

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.07);padding:1.5rem 0;
  display:flex;flex-direction:column;align-items:center;gap:.75rem;text-align:center;
}
@media(min-width:768px){.footer__bottom{flex-direction:row;justify-content:space-between}}

.footer__copy {font-size:.875rem;color:rgba(255,255,255,.28)}
.footer__legal{display:flex;gap:1rem;font-size:.875rem;align-items:center;color:rgba(255,255,255,.28)}
.footer__legal .footer__link{font-size:.875rem}
.footer__made {font-size:.875rem;color:rgba(255,255,255,.28)}


/* =====================================================
   WHATSAPP FAB
   ===================================================== */
.whatsapp-fab{
  position:fixed;bottom:1.75rem;right:1.75rem;
  width:56px;height:56px;background:#25D366;color:#fff;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 24px rgba(37,211,102,.4);z-index:90;
  transition:transform var(--t) var(--ease),box-shadow var(--t);
}
.whatsapp-fab:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(37,211,102,.6)}

.whatsapp-fab__tooltip{
  position:absolute;right:calc(100% + .75rem);
  background:var(--s-800);color:#fff;font-size:.8125rem;font-weight:600;
  padding:.375rem .875rem;border-radius:var(--r-sm);white-space:nowrap;
  opacity:0;pointer-events:none;transition:opacity var(--t);box-shadow:var(--sh-md);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip{opacity:1}


/* =====================================================
   ROADMAP / VISION
   ===================================================== */
.roadmap{
  display:flex;flex-direction:column;align-items:center;gap:0;
  max-width:760px;margin:0 auto;
}

.roadmap__connector{
  width:2px;height:2.25rem;
  background:linear-gradient(180deg,var(--blue-200),var(--s-200));
}

.roadmap__item{
  display:grid;grid-template-columns:60px 1fr;gap:1.5rem;align-items:start;
  width:100%;background:var(--surface);border:1px solid var(--s-200);
  border-radius:var(--r-xl);padding:1.75rem 1.75rem 1.75rem 1.5rem;
  position:relative;box-shadow:var(--sh-sm);
  transition:box-shadow var(--t) var(--ease),transform var(--t) var(--ease);
}
.roadmap__item:hover{box-shadow:var(--sh-lg);transform:translateY(-2px)}

.roadmap__item--active{
  border-color:var(--blue-200);
  background:linear-gradient(135deg,var(--surface) 0%,var(--blue-50) 100%);
}
.roadmap__item--active::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--blue),var(--purple));
  border-radius:var(--r-xl) var(--r-xl) 0 0;
}

.roadmap__item--soon{border-color:var(--s-200);background:var(--s-50);opacity:.85}

.roadmap__phase-badge{
  position:absolute;top:-12px;left:1.5rem;
  background:var(--surface);border:1px solid var(--s-200);border-radius:var(--r-pill);
  font-size:.65rem;font-weight:700;color:var(--s-500);
  padding:2px 10px;text-transform:uppercase;letter-spacing:.08em;
}
.roadmap__item--active .roadmap__phase-badge{
  border-color:var(--blue-200);color:var(--blue);background:var(--blue-50);
}

.roadmap__icon{
  width:60px;height:60px;border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  background:linear-gradient(135deg,var(--blue-50),var(--blue-100));
  color:var(--blue-dark);
}
.roadmap__item--soon .roadmap__icon{background:var(--s-100);color:var(--s-400)}

.roadmap__status{margin-bottom:.4rem}
.roadmap__pill{
  display:inline-block;border-radius:var(--r-pill);
  font-size:.7rem;font-weight:700;padding:2px 10px;
  text-transform:uppercase;letter-spacing:.06em;
}
.roadmap__pill--live{background:var(--green-100);color:#065F46}
.roadmap__pill--soon{background:#FEF3C7;color:#92400E}

.roadmap__title{font-family:var(--f-head);font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:.75rem}

.roadmap__features{list-style:none;display:flex;flex-direction:column;gap:.4rem}
.roadmap__features li{font-size:.9rem;color:var(--text-muted);padding-left:1.25rem;position:relative;line-height:1.55}
.roadmap__features li::before{content:'→';position:absolute;left:0;color:var(--blue);font-size:.8rem}
.roadmap__item--soon .roadmap__features li::before{color:var(--s-400)}

@media(min-width:640px){
  .roadmap__item{grid-template-columns:68px 1fr}
  .roadmap__icon{width:68px;height:68px}
}


/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */
@media(max-width:767px){
  .hero__esl-tag{display:none}
  .pricing{overflow-x:auto;display:flex;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-top:1.25rem;padding-bottom:1rem}
  .pricing__card{min-width:280px;scroll-snap-align:start;flex-shrink:0}
  .pricing__card--featured{transform:none}
  .pricing__card--featured:hover{transform:translateY(-4px)}
}

@media(min-width:768px){
  :root{--pad-section:6.5rem 1.5rem}
}
