:root{
  --bg:#f8fbff;
  --panel:#ffffff;
  --alt:#eef4ff;

  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;

  --primary:#0b63f6;
  --green:#10b981;

  --shadow: 0 10px 30px rgba(15,23,42,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

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

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(248,251,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}

/* LOGO */
.logo{
  height:78px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* Desktop links */
.links{
  display:flex;
  align-items:center;
  gap:14px;
}
.links a{
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
}
.links a:hover{color:var(--text)}

/* Buttons */
.btn{
  display:inline-block;
  background:var(--primary);
  color:#fff !important;
  text-decoration:none;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  box-shadow: 0 10px 18px rgba(11,99,246,.16);
}
.btn.small{padding:9px 12px;border-radius:12px}
.btn.ghost{
  background:transparent;
  color:var(--text) !important;
  border:1px solid var(--line);
  box-shadow:none;
}
.btn.ghost:hover{border-color:#cbd5e1}

/* Mobile menu button */
.menu-btn{
  display:none;
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:14px;
  padding:12px;
  box-shadow: var(--shadow);
  margin-right:8px; /* pulls it away from the edge */
}
.menu-btn span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:4px 0;
}

/* Mobile dropdown menu */
.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(248,251,255,.98);
  padding:10px 18px 18px;
}
.mobile-menu a{
  display:block;
  padding:12px 10px;
  border:1px solid var(--line);
  border-radius:14px;
  margin-top:10px;
  background:var(--panel);
  color:var(--text);
  font-weight:800;
  text-decoration:none;
}
.mobile-menu a.btn{
  border:none;
  background:var(--primary);
  color:#fff !important;
  box-shadow: 0 10px 18px rgba(11,99,246,.16);
}
.mobile-menu.open{display:block}

/* HERO */
.hero{padding:56px 0 26px}
.grid2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.pill{
  display:inline-block;
  background:rgba(11,99,246,.10);
  color:var(--primary);
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(11,99,246,.18);
  font-weight:800;
  font-size:13px;
}
h1{font-size:44px;line-height:1.06;margin:12px 0}
.lead{font-size:18px;color:var(--muted);margin:0}
.cta-row{display:flex;gap:12px;margin:18px 0 14px;flex-wrap:wrap}

.stats{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
.stat{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 12px;
  min-width:160px;
}
.stat b{display:block;font-size:18px}
.stat span{color:var(--muted);font-size:13px}
.note{color:var(--muted);font-size:13px;margin-top:12px}

/* SECTIONS */
.section{padding:52px 0}
.section.alt{
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(11,99,246,.10), transparent),
    radial-gradient(700px 360px at 85% 20%, rgba(16,185,129,.10), transparent),
    var(--alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{margin-bottom:16px}
h2{font-size:30px;margin:0 0 8px}
.sub{margin:0;color:var(--muted)}

/* CARDS */
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 10px}
.card p{margin:0 0 10px;color:var(--muted)}
.highlight{border:1px solid rgba(11,99,246,.22)}
.badge{
  display:inline-block;
  background:rgba(16,185,129,.10);
  border:1px solid rgba(16,185,129,.18);
  color:#065f46;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.mini{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
  color:var(--muted);
}

/* Lists */
.check{padding-left:18px;margin:10px 0 0}
.check li{margin:8px 0}
.check.subtle li{color:var(--muted)}

/* Cards grid */
.cards{display:grid;gap:14px}
.cards.two{grid-template-columns:repeat(2,1fr)}
.cards.three{grid-template-columns:repeat(3,1fr)}

/* Metrics */
.metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.metric{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.metric b{display:block}
.metric span{color:var(--muted)}

/* Steps */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.step{
  text-align:left;
}
.step-num{
  width:34px;height:34px;
  border-radius:12px;
  background:rgba(11,99,246,.10);
  border:1px solid rgba(11,99,246,.18);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color:var(--primary);
  margin-bottom:10px;
}

/* ===== NEW Timeline banner ===== */
.timeline-banner{
  margin-top:18px;
  background: linear-gradient(135deg, rgba(11,99,246,.10), rgba(16,185,129,.08));
  border:1px solid rgba(11,99,246,.18);
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.timeline-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
}
.timeline-icon{
  width:44px;height:44px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(11,99,246,.12);
  border:1px solid rgba(11,99,246,.18);
  font-size:20px;
}
.timeline-title{margin:0 0 4px}
.timeline-sub{margin:0;color:var(--muted)}
.timeline-right{
  display:flex;
  align-items:center;
  gap:14px;
}
.timeline-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  color:var(--muted);
  font-size:13px;
  padding:10px 12px;
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius:16px;
}

/* Pricing */
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.price .money{font-size:28px;font-weight:900;margin:8px 0 10px}
.tag{margin:0 0 10px;color:var(--muted)}
.featured{
  outline:2px solid rgba(11,99,246,.18);
  box-shadow: 0 16px 40px rgba(11,99,246,.10);
}
.center{text-align:center}

/* FAQ */
.faq details summary{
  cursor:pointer;
  font-weight:900;
  color:var(--text);
}
.faq details p{margin-top:10px}

/* ===== Contact divider ===== */
.contact-divider{
  margin:14px 0 12px;
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
  text-transform:uppercase;
}
.contact-divider::before,
.contact-divider::after{
  content:"";
  height:1px;
  background: var(--line);
  flex:1;
}
.contact-divider span{
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.7);
}

/* Forms */
label{display:block;margin:10px 0;color:var(--muted);font-size:13px}
input,textarea{
  width:100%;
  margin-top:6px;
  background:#fff;
  border:1px solid #dbe1ea;
  border-radius:14px;
  padding:12px;
  font-size:14px;
  color:var(--text);
}
input:focus,textarea:focus{
  outline:none;
  border-color: rgba(11,99,246,.45);
  box-shadow: 0 0 0 4px rgba(11,99,246,.12);
}
button{border:0;cursor:pointer}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background:rgba(255,255,255,.65);
}
.foot{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}
.mono{font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 980px){
  h1{font-size:38px}
  .grid2{grid-template-columns:1fr;gap:14px}

  .cards.three{grid-template-columns:repeat(2,1fr)}
  .pricing{grid-template-columns:1fr}
  .metrics{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr)}

  /* Timeline: stacked + aligned */
  .timeline-banner{
    flex-direction:column;
    align-items:stretch;
    padding:16px;
  }
  .timeline-left{
    min-width:unset;
  }
  .timeline-right{
    width:100%;
    justify-content:space-between;
    gap:12px;
  }
  .timeline-meta{
    width:100%;
  }
}

/* Phones */
@media (max-width: 640px){
  h1{font-size:34px}
  .links{display:none}
  .menu-btn{display:inline-block}

  .hero{padding:46px 0 18px}
  .section{padding:44px 0}

  .cards.two, .cards.three{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}

  .logo{height:62px}
  .stat{min-width:unset;width:100%}

  /* Make cards breathe on mobile */
  .card{padding:16px}
  .section-head{margin-bottom:12px}

  /* Timeline: clean mobile layout */
  .timeline-banner{
    padding:16px;
    gap:12px;
  }
  .timeline-left{
    gap:10px;
  }
  .timeline-icon{
    width:40px;height:40px;border-radius:14px;
    font-size:18px;
  }
  .timeline-right{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .timeline-meta{
    width:100%;
    padding:12px;
    border-radius:16px;
  }
  .timeline-right .btn{
    width:100%;
    text-align:center;
    padding:14px 16px;
    border-radius:16px;
  }

  /* Contact: better spacing on mobile */
  .contact-divider{
    margin:18px 0 14px;
  }

  /* Mobile menu button not hugging the edge */
  .menu-btn{
    margin-right:2px; /* more centered */
    
  .cta-row .btn, .cta-row .btn.ghost{
    width:100%;
    text-align:center;
  }
}

Asta face buto

/* Large screens / TV */
@media (min-width: 1600px){
  .container{max-width:1250px}
  h1{font-size:52px}
  h2{font-size:34px}
}
