:root{
  --navy:#0f1f3d;
  --blue:#2563eb;
  --sky:#eff6ff;
  --white:#ffffff;
  --text:#475569;
  --muted:#64748b;
  --line:#e2e8f0;
  --soft:#f8fafc;
  --shadow:0 18px 50px rgba(15,31,61,.10);
  --shadow-soft:0 10px 30px rgba(15,31,61,.08);
}

body{
  font-family:'Inter',sans-serif;
  color:var(--navy);
  background:var(--white);
}

img{
  max-width:100%;
  display:block;
}

.hero{
  padding:90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 30%),
    radial-gradient(circle at right center, rgba(15,31,61,.10), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:38px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:var(--sky);
  color:var(--blue);
  font-size:.92rem;
  font-weight:700;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(2.3rem,5vw,4.2rem);
  line-height:1.06;
  letter-spacing:-.04em;
  margin-bottom:18px;
  color:var(--navy);
}

.hero .lead{
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.8;
  margin-bottom:28px;
  max-width:700px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  box-shadow:var(--shadow-soft);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-light{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
}

.btn-light:hover{
  border-color:#bfd4ff;
  color:var(--blue);
}

.btn-white{
  background:#fff;
  color:var(--navy);
}

.btn-white:hover{
  transform:translateY(-2px);
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:760px;
}

.stat{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(226,232,240,.95);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.stat strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:6px;
  color:var(--navy);
}

.stat span{
  color:var(--muted);
  font-size:.93rem;
  line-height:1.6;
}

.hero-visual{
  position:relative;
  min-height:580px;
}

.hero-main-card{
  position:absolute;
  inset:0 0 40px 40px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#dbeafe;
}

.hero-main-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(226,232,240,.95);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.floating-card.top{
  top:24px;
  left:0;
  max-width:240px;
}

.floating-card.bottom{
  right:0;
  bottom:0;
  max-width:260px;
}

.floating-card h4{
  font-size:1rem;
  margin-bottom:10px;
  color:var(--navy);
}

.floating-card p{
  color:var(--muted);
  font-size:.93rem;
  line-height:1.7;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:10px 0;
  color:var(--text);
  font-size:.95rem;
}

.checklist i{
  color:var(--blue);
  margin-top:4px;
}

.trust-strip{
  padding:22px 0;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.trust-item{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  text-align:center;
  color:var(--muted);
  font-weight:700;
}

section{
  padding:92px 0;
}

.section-head{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
}

.left-head{
  text-align:left;
  margin:0 0 24px;
  max-width:none;
}

.tag{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--sky);
  color:var(--blue);
  font-weight:700;
  font-size:.9rem;
}

.section-head h2{
  font-size:clamp(2rem,3.4vw,3rem);
  letter-spacing:-.03em;
  margin-bottom:12px;
  color:var(--navy);
}

.section-head p{
  color:var(--muted);
  font-size:1.03rem;
  line-height:1.8;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-media{
  height:250px;
  overflow:hidden;
}

.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.service-card:hover .service-media img{
  transform:scale(1.06);
}

.service-content{
  padding:24px;
}

.icon-box{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  margin-bottom:16px;
  box-shadow:var(--shadow-soft);
}

.service-content h3{
  font-size:1.28rem;
  margin-bottom:10px;
  color:var(--navy);
}

.service-content p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:18px;
}

.service-points{
  display:grid;
  gap:10px;
  margin:0 0 18px;
  padding:0;
  list-style:none;
}

.service-points li{
  display:flex;
  gap:10px;
  color:var(--text);
  font-size:.95rem;
  line-height:1.7;
}

.service-points i{
  color:var(--blue);
  margin-top:4px;
}

.read-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--blue);
  text-decoration:none;
  font-weight:700;
}

.read-more:hover{
  text-decoration:underline;
}

.feature-band{
  background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.feature-copy p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:24px;
}

.feature-media{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:520px;
}

.feature-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature-list{
  display:grid;
  gap:14px;
  margin:0 0 28px;
  padding:0;
  list-style:none;
}

.feature-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  color:var(--text);
  line-height:1.7;
}

.feature-list i{
  color:var(--blue);
  margin-top:4px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.process-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-soft);
}

.process-no{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  background:var(--sky);
  color:var(--blue);
  margin-bottom:16px;
}

.process-card h3{
  margin-bottom:10px;
  color:var(--navy);
}

.process-card p{
  color:var(--muted);
  line-height:1.8;
}

.cta{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
}

.cta-box{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:32px;
  padding:38px;
  box-shadow:var(--shadow);
}

.cta h2{
  font-size:clamp(2rem,3.2vw,3rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin-bottom:14px;
}

.cta p{
  color:rgba(255,255,255,.84);
  line-height:1.8;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:flex-end;
}

/* responsive */
@media (max-width:1100px){
  .hero-grid,
  .feature-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-actions{
    justify-content:flex-start;
  }

  .hero-visual{
    min-height:520px;
  }
}

@media (max-width:780px){
  .hero{
    padding:70px 0 50px;
  }

  .hero-grid,
  .services-grid,
  .feature-grid,
  .process-grid,
  .hero-stats,
  .trust-row{
    grid-template-columns:1fr;
  }

  .hero-main-card{
    inset:0 0 24px 0;
  }

  .floating-card.top,
  .floating-card.bottom{
    position:relative;
    max-width:none;
    margin-top:14px;
  }

  .hero-visual{
    min-height:auto;
  }

  section{
    padding:72px 0;
  }
}