:root{
  --bg:#F6F8FC;
  --bg2:#FFFFFF;

  --text:#0F172A;
  --muted: rgba(15,23,42,0.68);
  --line: rgba(15,23,42,0.10);

  --accent:#2563EB;
  --accent2:#14B8A6;
  --glow: rgba(37,99,235,0.18);

  --shadow: 0 18px 50px rgba(15,23,42,0.10);
  --radius: 18px;
  --radius2: 24px;
  --container: 1120px;

  --font:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(20,184,166,0.18), transparent 60%),
    radial-gradient(800px 520px at 90% 10%, rgba(37,99,235,0.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:var(--container); margin:0 auto; padding:0 18px; }

/* TOPBAR */
.topbar{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding: 12px 0;
}

.brand{ display:flex; align-items:center; gap:12px; min-width: 280px; }
.brand__text{ display:flex; flex-direction:column; }
.brand__name{ font-weight: 900; letter-spacing:-0.02em; }
.brand__tag{ font-size:12px; color: var(--muted); margin-top:2px; }

.brand__logo{
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  background:#fff;
  border: 1px solid rgba(15,23,42,0.10);
  padding: 6px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
  flex: 0 0 auto;
}

.nav{ display:flex; gap: 16px; }
.nav a{ color: var(--muted); font-weight: 800; font-size: 14px; }
.nav a:hover{ color: var(--text); }

.topbar__cta{ display:flex; gap: 10px; }

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  background: rgba(255,255,255,0.7);
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(0,0,0,0.06);
  color: white;
  box-shadow: 0 16px 45px var(--glow);
}
.btn--ghost{ background: rgba(255,255,255,0.75); }
.btn--full{ width: 100%; padding: 12px 14px; }

/* HERO */
.hero{ padding: 62px 0 18px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 22px;
  align-items: start;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(37,99,235,0.08);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
}
.h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}
.hero__buttons{ display:flex; gap:12px; flex-wrap:wrap; }

.trust{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}
.trust__item{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.10);
  font-weight: 800;
  font-size: 13px;
  color: rgba(15,23,42,0.78);
}

.statsRow{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.miniStat{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  padding: 10px 12px;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.miniStat__num{ font-weight: 900; letter-spacing:-0.02em; }
.miniStat__lbl{ font-size: 12px; color: var(--muted); margin-top: 2px; }

/* HERO CARD */
.hero__card{
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 16px;
}
.hero__cardTop{ display:flex; align-items:center; justify-content:space-between; gap: 12px; }
.badge{
  font-size: 12px; font-weight: 900;
  padding: 7px 10px; border-radius: 999px;
  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.18);
}
.hero__bullets{ margin: 14px 0; display:grid; gap: 10px; }
.miniLine{ display:flex; align-items:center; gap:10px; color: var(--muted); font-size: 13px; }
.dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(20,184,166,0.16);
}
.divider{ margin: 14px 0; height: 1px; background: rgba(15,23,42,0.10); }
.proof__title{ font-weight: 900; margin-bottom: 10px; }
.proof__grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.proof__item{
  background: rgba(246,248,252,1);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
  padding: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.section{ padding: 54px 0; }
.section--alt{
  background: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.sectionHead{ margin-bottom: 18px; }
.h2{ margin: 0 0 8px; font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.02em; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }

/* SERVICES CARDS */
.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 44px rgba(15,23,42,0.08);
}
.card__title{ font-weight: 900; margin-bottom: 8px; }
.card__desc{ color: var(--muted); font-size: 13px; line-height: 1.5; }

/* WORK */
.workGrid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.workCard{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.workTag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
  font-weight: 900;
  font-size: 12px;
  width: fit-content;
}
.workTitle{ font-weight: 900; letter-spacing:-0.02em; margin-top: 8px; }
.workDesc{ margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.workCard__actions{ display:grid; gap: 10px; margin-top: auto; }

/* NOTE BOX */
.noteBox{
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.16);
}
.noteBox__actions{ margin-top: 12px; }

/* WHY */
.whyGrid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.whyCard{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 44px rgba(15,23,42,0.06);
}
.whyTitle{ font-weight: 900; margin-bottom: 8px; }

/* STEPS */
.steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step{
  display:flex; gap: 12px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 44px rgba(15,23,42,0.06);
}
.step__num{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
}
.step__title{ font-weight: 900; margin-bottom: 4px; }

/* PRICING */
.priceGrid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.priceCard{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 16px;
}
.priceCard--featured{
  border-color: rgba(20,184,166,0.25);
  box-shadow: 0 22px 70px rgba(20,184,166,0.18);
}
.priceName{ font-weight: 900; }
.priceValue{ margin-top: 6px; font-weight: 900; font-size: 26px; }
.priceList{ margin: 12px 0 14px; padding-left: 16px; color: var(--muted); line-height: 1.7; }

/* CONTACT */
.contact{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.infoBox{
  margin-top: 12px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 14px 44px rgba(15,23,42,0.06);
}
.infoBox__row{
  display:flex; justify-content:space-between; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.infoBox__row:last-child{ border-bottom:none; }

.miniChecklist{ margin-top: 12px; display:grid; gap: 8px; color: var(--muted); font-weight: 800; }
.form{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}
.field{ display:grid; gap: 6px; margin-bottom: 12px; }
label{ font-weight: 900; font-size: 13px; }
input, textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(246,248,252,1);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}
.success{
  display:none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.18);
}

/* FOOTER (FIXED) */
.footer{
  border-top: 1px solid rgba(15,23,42,0.10);
  padding: 26px 0;            /* IMPORTANT: no huge padding here */
  background: rgba(255,255,255,0.65);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 14px;
  align-items: start;
}
.footer__brandRow{ display:flex; align-items:center; gap:12px; }
.footer__brand{ font-weight: 900; letter-spacing:-0.02em; }
.footer__logo{
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 14px;
  background:#fff;
  border: 1px solid rgba(15,23,42,0.10);
  padding: 8px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}
.footer__links{ display:grid; gap: 10px; }
.footer__links a{ color: var(--muted); }
.footer__links a:hover{ color: var(--text); }
.footer__contact{ display:grid; gap: 10px; justify-items: start; }
.footer__contact a{ color: var(--muted); }
.footer__contact a:hover{ color: var(--text); }

/* STICKY BAR (MOBILE ONLY) */
.stickyBar{
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 999;
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(15,23,42,.14);
}
.stickyBtn{
  flex: 1;
  text-align:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.85);
  font-weight: 900;
}
.stickyBtn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  box-shadow: 0 16px 45px var(--glow);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .whyGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px){
  .nav{ display:none; }
  .topbar__cta{ display:none; }
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .workGrid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .priceGrid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }

  .footer__grid{ grid-template-columns: 1fr; gap: 18px; }
  .footer__logo{ width: 64px; height: 64px; }

  /* IMPORTANT FIX: only add bottom space on mobile */
  body{ padding-bottom: 120px; }
  .footer{ padding-bottom: 140px; } /* so footer text never collides with sticky bar */
}

/* Desktop: no sticky bar */
@media (min-width: 981px){
  .stickyBar{ display:none; }
}
