:root{
  --bg:#f7fbff;
  --surface:#ffffff;
  --surface-2:#eef7fb;
  --text:#0f172a;
  --muted:#475569;
  --blue:#0a77d5;
  --green:#24c45a;
  --blue-dark:#075da8;
  --border:#dbe7f0;
  --shadow:0 20px 60px rgba(15,23,42,.10);
  --radius:22px;
  --max:1200px;
  --section-gap:84px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size:16px;
  font-weight:400;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(10,119,213,.06), transparent 28%),
    radial-gradient(circle at top left, rgba(36,196,90,.05), transparent 22%),
    linear-gradient(180deg, #fbfeff 0%, #f4f9fc 100%);
}

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

h1, h2{
  font-weight:800;
}

h3{
  font-weight:700;
}

p{
  letter-spacing:-0.01em;
}

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

main{
  position:relative;
  overflow:hidden;
}

main::before,
main::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  pointer-events:none;
  z-index:-1;
}

main::before{
  top:180px;
  left:-180px;
  background:radial-gradient(circle, rgba(10,119,213,.08) 0%, rgba(10,119,213,0) 72%);
}

main::after{
  top:980px;
  right:-160px;
  background:radial-gradient(circle, rgba(36,196,90,.10) 0%, rgba(36,196,90,0) 70%);
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(219,231,240,.8);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.02em;
}

.brand img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.brand span{
  font-size:1.2rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  font-weight:600;
  color:#1e293b;
}

.nav-links a:hover{
  color:var(--blue);
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:#1f2937;
  border-radius:999px;
  transition:transform .2s ease, opacity .2s ease;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  cursor:pointer;
  padding:13px 21px;
  border-radius:14px;
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--blue) 0%, #2897f2 100%);
  color:#fff;
  box-shadow:0 14px 28px rgba(10,119,213,.22);
}

.btn-primary:hover{
  box-shadow:0 18px 34px rgba(10,119,213,.28);
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
}

.btn-secondary:hover{
  border-color:#b7cedd;
}

.hero {
  padding: 44px 0 74px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(300px, .92fr);
  gap:56px;
  align-items:center;
}

.hero-content{
  max-width:690px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#ecf8f1;
  color:#0f5132;
  border:1px solid #cfeeda;
  border-radius:999px;
  padding:10px 14px;
  font-size:.9rem;
  font-weight:700;
}

.hero h1{
  margin:18px 0 16px;
  font-size:clamp(2.4rem, 4.8vw, 4.4rem);
  line-height:1.02;
  letter-spacing:-0.045em;
  max-width:12ch;
}

.hero p{
  font-size:1.05rem;
  line-height:1.75;
  color:var(--muted);
  max-width:62ch;
  margin:0 0 32px;
}

.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px 14px;
  padding:0;
  margin:30px 0 0;
  list-style:none;
}

.hero-points li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#1e293b;
  font-weight:600;
  font-size:.95rem;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(219,231,240,.9);
}

.hero-points li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--green);
  margin-top:.42rem;
  flex:0 0 10px;
}

.hero-card{
  background:linear-gradient(165deg, #ffffff 0%, #f5faff 100%);
  border:1px solid rgba(219,231,240,.9);
  border-radius:28px;
  box-shadow:0 28px 64px rgba(15,23,42,.13);
  padding:28px;
  position:relative;
  overflow:hidden;
}

.hero-card-glow{
  position:absolute;
  inset:-120px auto auto -120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(10,119,213,.18) 0%, rgba(10,119,213,0) 72%);
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:auto -60px -80px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(36,196,90,.16) 0%, rgba(36,196,90,0) 68%);
}

.hero-logo{
  background:linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border:1px solid #e5eef5;
  border-radius:22px;
  padding:16px;
  margin-bottom:22px;
}

.stat-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.stat{
  background:#fff;
  border:1px solid #e8f0f5;
  border-radius:18px;
  padding:16px 14px;
}

.stat strong{
  display:block;
  font-size:1.5rem;
  margin-bottom:6px;
  letter-spacing:-.03em;
}

.stat span{
  display:block;
  color:var(--muted);
  font-weight:600;
  font-size:.9rem;
}

section{
  padding:var(--section-gap) 0;
}

.soft-section{
  position:relative;
}

.soft-section::before{
  content:"";
  position:absolute;
  inset:14px 0 auto;
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(179,202,219,.5) 22%, rgba(179,202,219,.5) 78%, transparent 100%);
  opacity:.38;
}

.section-head{
  max-width:760px;
  margin-bottom:40px;
}

.section-head .label{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.76rem;
  font-weight:800;
  color:var(--blue);
}

.section-head h2{
  margin:10px 0 12px;
  font-size:clamp(1.8rem, 3vw, 2.7rem);
  line-height:1.08;
  letter-spacing:-0.03em;
}

.section-head p,
.panel p,
.card p,
.why p,
.step p,
.contact-item p{
  font-size:1rem;
  line-height:1.75;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:rgba(255,255,255,.58);
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:0 8px 24px rgba(15,23,42,.03);
  backdrop-filter:blur(4px);
}

.card .icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:linear-gradient(135deg, rgba(10,119,213,.12), rgba(36,196,90,.14));
  color:var(--blue);
  font-size:1.3rem;
  font-weight:900;
}

.card h3,
.why h3,
.step h3{
  font-size:1.1rem;
  line-height:1.25;
}

.card h3{
  margin:0 0 10px;
}

.card p{
  margin:0 0 18px;
  color:var(--muted);
}

.card ul{
  margin:0;
  padding-left:18px;
  color:#1f2937;
  line-height:1.8;
}

.band{
  background:linear-gradient(135deg, #0f172a 0%, #122640 56%, #0f3856 100%);
  color:#fff;
}

.band .section-head p,
.band .section-head .label{
  color:#cfe8ff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.why{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:22px;
}

.why h3{
  margin:0 0 10px;
}

.why p{
  margin:0;
  color:#d6e7f6;
}

.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}

.panel{
  background:rgba(255,255,255,.64);
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px;
}

.badge-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.badge{
  padding:10px 14px;
  border-radius:999px;
  background:#eff7ff;
  color:#0f4f83;
  border:1px solid #d7ebfb;
  font-weight:700;
  font-size:.92rem;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
  align-items:stretch;
}

.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
}

.step .num{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#e7f2ff;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:16px;
}

.step h3{
  margin:0 0 8px;
}

.step p{
  margin:0;
  color:var(--muted);
  word-break:normal;
  overflow-wrap:anywhere;
}

.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
}

.contact-list{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.contact-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px 18px;
  background:rgba(255,255,255,.8);
  border:1px solid var(--border);
  border-radius:18px;
}

.contact-item strong{
  display:block;
  margin-bottom:3px;
}

.contact-item p{
  margin:0;
  color:var(--muted);
}

.form-wrap{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 16px 40px rgba(15,23,42,.08);
}

.form-note{
  font-size:.95rem;
  color:var(--muted);
  margin:0 0 18px;
}

form{
  display:grid;
  gap:14px;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

label{
  font-weight:700;
  font-size:.95rem;
}

input, textarea, select{
  width:100%;
  margin-top:8px;
  padding:14px 15px;
  border-radius:14px;
  border:1px solid #cfe0ea;
  font:inherit;
  color:var(--text);
  background:#fbfeff;
}

input:focus, textarea:focus, select:focus{
  outline:none;
  border-color:#7abdf1;
  box-shadow:0 0 0 4px rgba(10,119,213,.12);
}

textarea{
  min-height:140px;
  resize:vertical;
}

.small{
  font-size:.92rem;
  color:var(--muted);
}

.footer{
  padding:24px 0 48px;
  color:var(--muted);
  font-size:.95rem;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-top:1px solid var(--border);
  padding-top:24px;
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .75s ease, transform .75s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

@media (max-width: 1250px){
  .hero-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .cards,
  .why-grid,
  .process-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hero h1{
    max-width:14ch;
  }

  .hero{
    padding:34px 0 64px;
  }

  .hero-card{
    max-width:680px;
    width:100%;
    margin:0 auto;
  }

  .hero-logo img{
    margin:0 auto;
  }
}

@media (max-width: 760px){
  :root{
    --section-gap:62px;
  }

  .container{
    width:min(var(--max), calc(100% - 28px));
  }

  .nav{
    padding:12px 0;
  }

  .nav{
    position:relative;
  }

  .nav-toggle{
    display:flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2){
    opacity:0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .nav-links{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:rgba(255,255,255,.98);
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:0 18px 38px rgba(15,23,42,.1);
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .nav-links.is-open{
    display:flex;
  }

  .nav-links a{
    padding:10px 12px;
    border-radius:10px;
  }

  .nav-links .btn{
    width:100%;
    margin-top:6px;
  }

  .hero{
    padding:34px 0 24px;
  }

  .hero-grid{
    gap:24px;
  }

  .eyebrow{
    font-size:.82rem;
    padding:8px 12px;
  }

  .stat-grid,
  .cards,
  .why-grid,
  .process-grid,
  .two,
  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-card{
    padding:18px;
    border-radius:22px;
  }

  .hero h1{
    font-size:clamp(2rem, 9.5vw, 2.8rem);
    margin:16px 0 14px;
  }

  .hero p{
    font-size:.98rem;
    line-height:1.65;
    margin-bottom:22px;
  }

  .cta-row{
    width:100%;
  }

  .cta-row .btn{
    width:100%;
    min-height:48px;
  }

  .hero-points li{
    padding:10px;
    font-size:.92rem;
  }

  .section-head{
    margin-bottom:26px;
  }

  .section-head h2{
    font-size:clamp(1.6rem, 7vw, 2.1rem);
  }

  .footer-row{
    flex-direction:column;
    align-items:flex-start;
  }
}
