:root{
  --bg:#f7f8fc;
  --bg-soft:#ffffffcc;
  --card:#ffffff;
  --text:#102033;
  --muted:#5f6f82;
  --line:#dfe6ef;
  --primary:#6e8cff;
  --primary-dark:#4f6fe8;
  --accent:#dfe7ff;
  --shadow:0 20px 60px rgba(16,32,51,.08);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, #eef3ff 0%, transparent 30%),
    radial-gradient(circle at 85% 15%, #f4f7ff 0%, transparent 28%),
    var(--bg);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:100;
  backdrop-filter: blur(12px);
  background:rgba(247,248,252,.7);
  border-bottom:1px solid rgba(223,230,239,.65);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; gap:24px;
}
.logo{
  font-weight:800; letter-spacing:.02em; font-size:1.15rem;
}
.logo span{color:var(--primary-dark)}
nav{
  display:flex; gap:28px; color:var(--muted); font-weight:500;
}
nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 20px; border-radius:999px; font-weight:600;
  transition:.25s ease; border:1px solid transparent;
}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), #8ea5ff);
  color:white; box-shadow:0 12px 30px rgba(110,140,255,.28);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  border:1px solid var(--line); background:var(--card); color:var(--text);
}
.btn-outline{
  border:1px solid var(--line); background:rgba(255,255,255,.65);
}
.full{width:100%}

.hero{
  position:relative;
  overflow:hidden;
  padding:82px 0 42px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin:0 0 12px;
  font-size:.82rem; text-transform:uppercase; letter-spacing:.14em;
  color:var(--primary-dark); font-weight:700;
}
h1,h2,h3{line-height:1.1; margin:0 0 16px}
h1{font-size:clamp(2.6rem, 5vw, 4.7rem); max-width:12ch}
h2{font-size:clamp(2rem, 3.5vw, 3rem)}
h3{font-size:1.25rem}
.lead{
  font-size:1.08rem;
  color:var(--muted);
  max-width:62ch;
}
.hero-actions{
  display:flex; gap:14px; margin:28px 0 34px; flex-wrap:wrap;
}
.hero-stats{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.hero-stats div, .service-card, .step-card, .panel, .contact-card, .cta-box, .card-shell{
  background:var(--bg-soft);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-stats div{
  padding:18px; border-radius:20px;
}
.hero-stats strong{display:block; margin-bottom:4px}
.hero-stats span{color:var(--muted); font-size:.95rem}

.hero-card{
  position:relative;
}
.card-shell{
  border-radius:32px;
  padding:32px;
}
.mini-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:var(--accent);
  color:var(--primary-dark);
  font-size:.85rem;
  font-weight:700;
  margin-bottom:18px;
}
.card-shell ul{
  padding-left:18px;
  color:var(--muted);
}
.card-metrics{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.card-metrics div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.card-metrics span{
  display:block; color:var(--muted); font-size:.85rem; margin-bottom:4px;
}
.hero-glow{
  position:absolute; border-radius:50%; filter:blur(50px); opacity:.55; pointer-events:none;
}
.glow-one{
  width:240px; height:240px; background:#e4ebff; right:9%; top:70px;
}
.glow-two{
  width:280px; height:280px; background:#f3f6ff; left:-80px; bottom:20px;
}

.brands{
  padding:8px 0 20px;
}
.brands-row{
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px;
  color:var(--muted); font-weight:600; font-size:.95rem;
}
.brands-row span{
  text-align:center; padding:14px 10px; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}

.section{padding:88px 0}
.alt{background:rgba(255,255,255,.45)}
.section-heading{
  max-width:760px; margin-bottom:34px;
}
.section-heading p:last-child{color:var(--muted)}
.cards{
  display:grid; gap:22px;
}
.cards.three{grid-template-columns:repeat(3,1fr)}
.cards.four{grid-template-columns:repeat(4,1fr)}

.service-card, .step-card{
  border-radius:24px; padding:28px;
}
.service-card p, .step-card p{color:var(--muted); margin:0}
.step-card span{
  display:inline-flex; width:42px; height:42px; border-radius:50%;
  align-items:center; justify-content:center;
  background:var(--accent); color:var(--primary-dark); font-weight:800;
  margin-bottom:18px;
}

.split{
  display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start;
}
.panel{
  border-radius:28px; padding:14px;
}
.panel-item{
  padding:18px 14px;
  border-bottom:1px solid var(--line);
}
.panel-item:last-child{border-bottom:none}
.panel-item strong{display:block; margin-bottom:6px}
.panel-item span{color:var(--muted)}

.cta{padding-top:24px}
.cta-box{
  border-radius:30px; padding:34px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}

.contact-card{
  border-radius:28px; padding:24px;
}
.contact-card label{
  display:block; font-weight:600; margin-bottom:14px;
}
.contact-card input,
.contact-card textarea{
  width:100%;
  margin-top:8px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  font:inherit;
  color:var(--text);
  background:white;
}
.contact-card input:focus,
.contact-card textarea:focus{
  outline:none;
  border-color:#b9c8ff;
  box-shadow:0 0 0 4px rgba(110,140,255,.12);
}
.form-message{
  margin:12px 2px 0;
  color:var(--primary-dark);
  font-weight:600;
  min-height:1.2em;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:28px 0 40px;
}
.footer-row{
  display:flex; justify-content:space-between; gap:20px; align-items:center;
}
.footer-row p{margin:6px 0 0; color:var(--muted)}

@media (max-width: 980px){
  .hero-grid, .split, .cards.three, .cards.four, .brands-row{
    grid-template-columns:1fr;
  }
  nav{display:none}
  .nav{padding:16px 0}
  h1{max-width:15ch}
  .hero{padding-top:54px}
  .hero-stats, .card-metrics{grid-template-columns:1fr}
  .cta-box, .footer-row{flex-direction:column; align-items:flex-start}
}