:root{
  --bg:#f7f9ff;
  --card:#ffffff;
  --text:#0c1222;
  --muted:#55627a;
  --border:rgba(12,18,34,.10);
  --shadow:0 14px 40px rgba(18, 34, 74, .10);

  --blue:#2e63ff;
  --blue-2:#5f86ff;
  --blue-soft:rgba(46, 99, 255, .12);
  --radius:18px;

  --container:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #f7f9ff 0%, #ffffff 55%, #f7f9ff 100%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{
  width:min(100% - 40px, var(--container));
  margin-inline:auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(150%) blur(10px);
  background:rgba(247, 249, 255, .75);
  border-bottom:1px solid rgba(12,18,34,.06);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-text{font-weight:700; letter-spacing:.2px}
.brand-mark{
  width:12px; height:12px; border-radius:6px;
  background:radial-gradient(circle at 30% 30%, #ffffff 0 28%, transparent 29%),
             linear-gradient(135deg, var(--blue) 0%, #7aa0ff 100%);
  box-shadow:0 10px 20px rgba(46,99,255,.28);
}
.top-nav{
  display:flex;
  gap:18px;
  align-items:center;
  padding:0 10px;
}
.top-nav__link{
  font-size:14px;
  color:rgba(12,18,34,.78);
}
.top-nav__link:hover{color:var(--text)}
.header-actions{display:flex; align-items:center; gap:10px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  font-weight:600;
  border-radius:999px;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
  cursor:pointer;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  color:#fff;
  background:linear-gradient(180deg, var(--blue) 0%, #1f53ff 100%);
  box-shadow:0 16px 34px rgba(46,99,255,.26);
}
.btn--primary:hover{box-shadow:0 18px 44px rgba(46,99,255,.32)}
.btn--ghost{
  background:transparent;
  border-color:rgba(12,18,34,.12);
  color:rgba(12,18,34,.86);
}
.btn--ghost:hover{border-color:rgba(46,99,255,.35); color:var(--text); background:rgba(46,99,255,.06)}
.btn--soft{
  background:var(--blue-soft);
  color:rgba(12,18,34,.92);
  border-color:rgba(46,99,255,.14);
}
.btn--soft:hover{background:rgba(46,99,255,.16); border-color:rgba(46,99,255,.22)}
.btn--lg{padding:12px 18px; font-size:15px}
.btn--sm{padding:9px 12px; font-size:14px}
.btn--block{width:100%}

/* Typography */
.h1{
  font-size:clamp(28px, 3.5vw, 44px);
  line-height:1.08;
  margin:14px 0 12px;
  letter-spacing:-.02em;
}
.h2{
  font-size:clamp(22px, 2.5vw, 32px);
  line-height:1.15;
  margin:0 0 10px;
  letter-spacing:-.01em;
}
.h3{font-size:18px; margin:0 0 8px; line-height:1.2}
.lead{
  font-size:18px;
  line-height:1.5;
  color:rgba(12,18,34,.86);
  margin:0 0 10px;
}
.sublead{
  font-size:14px;
  color:rgba(12,18,34,.65);
  margin:0 0 18px;
}
.muted{color:var(--muted); line-height:1.55; margin:0 0 12px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(12,18,34,.08);
  box-shadow:0 10px 24px rgba(18,34,74,.08);
  font-size:13px;
  color:rgba(12,18,34,.72);
}
.pill::before{
  content:"";
  width:8px; height:8px;
  border-radius:4px;
  background:linear-gradient(180deg, #34d399 0%, #16a34a 100%);
  box-shadow:0 0 0 4px rgba(34,197,94,.18);
}

/* Hero */
.hero{
  position:relative;
  padding:34px 0 42px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:-80px -120px auto -120px;
  height:520px;
  pointer-events:none;
  background:
    radial-gradient(600px 280px at 25% 35%, rgba(46,99,255,.16) 0%, transparent 60%),
    radial-gradient(480px 260px at 70% 35%, rgba(123,97,255,.14) 0%, transparent 60%),
    radial-gradient(420px 240px at 78% 65%, rgba(46,99,255,.10) 0%, transparent 62%),
    linear-gradient(180deg, rgba(247,249,255,1) 0%, rgba(247,249,255,0) 100%);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.3fr .8fr;
  gap:26px;
  align-items:start;
}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 14px}
.hero-note{margin:0; font-size:14px; color:rgba(12,18,34,.62); line-height:1.55}

.hero-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(12,18,34,.10);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card__photo{
  background:linear-gradient(135deg, rgba(46,99,255,.10) 0%, rgba(46,99,255,.02) 45%, rgba(123,97,255,.10) 100%);
  padding:14px;
}
.hero-card__photo img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(12,18,34,.10);
}
.hero-card__body{padding:16px 16px 18px}
.hero-card__name{font-weight:700; font-size:16px}
.hero-card__role{font-size:13px; color:rgba(12,18,34,.72); margin-top:2px}
.hero-card__meta{font-size:13px; color:rgba(12,18,34,.58); margin-top:10px}
.hero-card__brand{margin-top:10px; font-weight:600; color:rgba(12,18,34,.78)}

/* Sections */
.section{padding:54px 0}
.section--tight{padding:40px 0 54px}
.section--soft{
  background:linear-gradient(180deg, rgba(46,99,255,.05) 0%, rgba(46,99,255,0) 100%);
}
.section-head{max-width:820px; margin-bottom:18px}
.section-head--center{max-width:820px; margin-inline:auto; text-align:center}
.btn-row{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:12px}
.section-lead{
  margin:0 0 10px;
  color:rgba(12,18,34,.78);
  line-height:1.55;
}
.section-sublead{
  margin:0;
  color:rgba(12,18,34,.62);
  line-height:1.6;
}

.cards-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(12,18,34,.10);
  border-radius:20px;
  padding:16px 16px 14px;
  box-shadow:0 10px 24px rgba(18,34,74,.06);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.card__icon{font-size:20px}
.card .btn{margin-top:auto; align-self:flex-start}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.features{display:grid; gap:12px}
.feature{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(12,18,34,.10);
  box-shadow:0 10px 24px rgba(18,34,74,.05);
}
.feature__icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(46,99,255,.15) 0%, rgba(46,99,255,.06) 100%);
  border:1px solid rgba(46,99,255,.16);
  flex:0 0 auto;
}
.feature__title{font-weight:700; margin-bottom:4px}
.feature__tags{margin-top:6px; font-size:13px; color:rgba(12,18,34,.55)}

.stack{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.stack__item{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(12,18,34,.10);
  border-radius:18px;
  padding:14px 14px;
  box-shadow:0 10px 24px rgba(18,34,74,.05);
}
.stack__k{font-weight:700}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:18px;
}
.step{
  position:relative;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(12,18,34,.10);
  border-radius:20px;
  padding:16px 16px 14px;
  box-shadow:0 10px 24px rgba(18,34,74,.06);
}
.step__n{
  width:32px; height:32px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:rgba(12,18,34,.85);
  background:linear-gradient(180deg, rgba(46,99,255,.18) 0%, rgba(46,99,255,.08) 100%);
  border:1px solid rgba(46,99,255,.18);
  margin-bottom:10px;
}

.section--cta{
  background:linear-gradient(180deg, rgba(46,99,255,.12) 0%, rgba(46,99,255,.06) 40%, rgba(255,255,255,0) 100%);
}
.cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.cta__actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}

.quotes{display:grid; gap:12px}
.quote{
  margin:0;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(12,18,34,.10);
  border-radius:20px;
  padding:16px 16px 14px;
  box-shadow:0 10px 24px rgba(18,34,74,.06);
}
.quote blockquote{
  margin:0;
  color:rgba(12,18,34,.78);
  line-height:1.6;
}
.quote figcaption{
  margin-top:10px;
  font-size:13px;
  color:rgba(12,18,34,.55);
}

/* Image cards */
.image-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.image-cards--two{grid-template-columns: repeat(2, 1fr)}
.image-card{
  background:rgba(255,255,255,.90);
  border:1px solid rgba(12,18,34,.10);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(18,34,74,.07);
}
.image-card img{width:100%; height:220px; object-fit:cover}
.image-card__body{padding:14px 14px 16px}

/* Trust */
.trust-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:18px;
}
.trust{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(12,18,34,.10);
  border-radius:20px;
  padding:16px;
  box-shadow:0 10px 24px rgba(18,34,74,.06);
}
.trust--wide{grid-column:1 / -1}

/* About + contact */
.about{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.badge{
  font-size:12px;
  color:rgba(12,18,34,.68);
  padding:8px 10px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(12,18,34,.10);
  border-radius:999px;
}
.contact{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(12,18,34,.10);
  border-radius:22px;
  padding:16px;
  box-shadow:0 12px 28px rgba(18,34,74,.07);
}
.form{margin-top:12px}
.field{display:block; margin-bottom:12px}
.field__label{display:block; font-size:13px; color:rgba(12,18,34,.72); margin-bottom:6px}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(12,18,34,.14);
  background:rgba(255,255,255,.9);
  font:inherit;
  outline:none;
}
.input:focus{border-color:rgba(46,99,255,.45); box-shadow:0 0 0 4px rgba(46,99,255,.12)}
.range-row{display:flex; align-items:center; gap:10px}
.range{width:100%}
.range-note{font-size:12px; color:rgba(12,18,34,.55)}
.link{display:inline-block; margin-top:8px}
.contact-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* Footer */
.site-footer{
  padding:34px 0 46px;
  border-top:1px solid rgba(12,18,34,.08);
  background:linear-gradient(180deg, rgba(247,249,255,.6) 0%, rgba(255,255,255,1) 100%);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

/* Responsive */
@media (max-width: 980px){
  .top-nav{display:none}
  .hero-grid{grid-template-columns: 1fr; gap:18px}
  .cards-grid{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .stack{grid-template-columns: 1fr}
  .steps{grid-template-columns: repeat(2, 1fr)}
  .cta{grid-template-columns: 1fr}
  .image-cards{grid-template-columns: repeat(2, 1fr)}
  .image-cards--two{grid-template-columns: 1fr}
  .trust-grid{grid-template-columns: 1fr}
  .about{grid-template-columns: 1fr}
}
@media (max-width: 520px){
  .container{width:min(100% - 28px, var(--container))}
  .header-row{padding:12px 0}
  .header-actions .btn{padding:10px 12px}
  .btn--lg{width:100%}
  .hero-ctas{gap:10px}
  .cards-grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .image-cards{grid-template-columns: 1fr}
  .footer-row{flex-direction:column; align-items:flex-start}
  .footer-actions{justify-content:flex-start}
}

