
:root{
  --primary:#083f7e;
  --primary-dark:#042b58;
  --secondary:#13c6d8;
  --soft:#eaf8fb;
  --text:#122033;
  --muted:#617087;
  --white:#ffffff;
  --border:#dce8f0;
  --shadow:0 18px 45px rgba(5, 41, 84, .13);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:#ffffff;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1140px, calc(100% - 32px));margin:0 auto}
.topbar{
  background:linear-gradient(90deg,var(--primary-dark),var(--primary));
  color:#dffaff;
  font-size:14px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:9px 0;
}
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(220,232,240,.85);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo img{height:58px;width:auto}
.logo span{
  font-weight:900;
  color:var(--primary);
  letter-spacing:.2px;
}
.menu{
  display:flex;
  align-items:center;
  gap:26px;
  font-weight:700;
  color:#1f3148;
}
.menu a:hover,.menu a.active{color:var(--secondary)}
.menu-toggle{
  display:none;
  border:0;
  background:var(--soft);
  color:var(--primary);
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
}
.btn-primary{
  color:var(--white);
  background:linear-gradient(135deg,var(--secondary),var(--primary));
  box-shadow:0 12px 26px rgba(19,198,216,.28);
}
.btn-primary:hover{transform:translateY(-2px)}
.btn-outline{
  color:var(--primary);
  border-color:#b9dce8;
  background:#fff;
}
.btn-outline:hover{background:var(--soft)}
.hero{
  position:relative;
  overflow:hidden;
  padding:82px 0 62px;
  background:
    radial-gradient(circle at 12% 12%, rgba(19,198,216,.22), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(8,63,126,.20), transparent 34%),
    linear-gradient(180deg,#f5fdff 0%,#ffffff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:46px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  background:#e7f9fd;
  border:1px solid #c8eef5;
  padding:8px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
}
h1{
  margin:18px 0 16px;
  font-size:clamp(38px,5vw,64px);
  line-height:1.05;
  letter-spacing:-1.8px;
  color:#09264a;
}
.lead{
  font-size:19px;
  color:var(--muted);
  max-width:680px;
  margin:0 0 28px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-card{
  position:relative;
  padding:30px;
  border-radius:34px;
  background:linear-gradient(145deg,#ffffff,#eafaff);
  box-shadow:var(--shadow);
  border:1px solid #d9eff5;
}
.app-mock{
  border-radius:30px;
  padding:24px;
  background:linear-gradient(160deg,#062d5d,#0b69a8 48%,#19c8db);
  color:white;
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  position:relative;
}
.app-mock:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,255,255,.13);
  right:-80px;
  top:-80px;
}
.wave{
  display:flex;
  align-items:center;
  gap:7px;
  height:110px;
  margin:35px 0;
}
.wave span{
  width:8px;
  border-radius:99px;
  background:rgba(255,255,255,.88);
  animation:pulse 1.4s infinite ease-in-out;
}
.wave span:nth-child(1){height:28px}
.wave span:nth-child(2){height:52px;animation-delay:.1s}
.wave span:nth-child(3){height:78px;animation-delay:.2s}
.wave span:nth-child(4){height:44px;animation-delay:.3s}
.wave span:nth-child(5){height:92px;animation-delay:.4s}
.wave span:nth-child(6){height:38px;animation-delay:.5s}
.wave span:nth-child(7){height:68px;animation-delay:.6s}
@keyframes pulse{0%,100%{transform:scaleY(.75);opacity:.65}50%{transform:scaleY(1.15);opacity:1}}
.mock-top,.mock-bottom{position:relative;z-index:2}
.mock-top strong{font-size:22px}
.mock-pill{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  margin-top:9px;
  font-size:14px;
}
.mock-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.stat{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  padding:14px;
}
.stat b{font-size:24px;display:block}
.section{padding:74px 0}
.section-soft{background:#f6fcfe}
.section-title{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}
.section-title h2{
  margin:0 0 12px;
  font-size:clamp(30px,3.8vw,44px);
  line-height:1.12;
  color:#09264a;
  letter-spacing:-1px;
}
.section-title p{margin:0;color:var(--muted);font-size:18px}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 10px 28px rgba(5,41,84,.06);
}
.icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#dff9fd,#eef6ff);
  color:var(--primary);
  font-size:24px;
  margin-bottom:16px;
}
.card h3{margin:0 0 10px;color:#102947;font-size:21px}
.card p{margin:0;color:var(--muted)}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}
.panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:32px;
  padding:34px;
  box-shadow:var(--shadow);
}
.list{
  display:grid;
  gap:14px;
  margin:22px 0 0;
}
.list-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.check{
  min-width:26px;
  width:26px;
  height:26px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#def9fd;
  color:var(--primary);
  font-weight:900;
}
.cta{
  background:linear-gradient(135deg,#052c5d,#0d6da6 55%,#13c6d8);
  color:#fff;
  border-radius:36px;
  padding:44px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:26px;
  overflow:hidden;
}
.cta h2{margin:0 0 8px;font-size:34px;line-height:1.12}
.cta p{margin:0;color:#dffaff}
.page-hero{
  padding:62px 0;
  background:linear-gradient(180deg,#f4fcff,#fff);
  border-bottom:1px solid var(--border);
}
.page-hero h1{font-size:clamp(36px,4.4vw,54px)}
.breadcrumb{color:var(--muted);font-weight:700}
.content{
  max-width:900px;
  margin:0 auto;
}
.content h2{font-size:28px;color:#09264a;margin:34px 0 10px}
.content p,.content li{color:#526377}
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
}
.info-box{
  display:grid;
  gap:16px;
}
.info-line{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
}
.info-line b{display:block;color:#09264a;margin-bottom:4px}
.form{
  display:grid;
  gap:14px;
}
.form input,.form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  outline:none;
}
.form textarea{min-height:150px;resize:vertical}
.form input:focus,.form textarea:focus{border-color:var(--secondary);box-shadow:0 0 0 4px rgba(19,198,216,.13)}
.footer{
  background:#061f3d;
  color:#d9edf6;
  padding:46px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:34px;
}
.footer img{height:62px;width:auto;margin-bottom:12px}
.footer h3{margin:0 0 12px;color:#fff}
.footer a{display:block;color:#d9edf6;margin:7px 0}
.footer a:hover{color:#7fefff}
.copy{
  border-top:1px solid rgba(255,255,255,.13);
  margin-top:34px;
  padding-top:18px;
  color:#a8c0ce;
  font-size:14px;
}
@media (max-width:900px){
  .hero-grid,.split,.contact-grid,.cta{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .menu{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:86px;
    padding:18px;
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:flex-start;
  }
  .menu.open{display:flex}
  .menu-toggle{display:inline-flex}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:620px){
  .topbar .container{flex-direction:column;align-items:flex-start;gap:4px}
  .cards{grid-template-columns:1fr}
  .hero{padding:54px 0 42px}
  .section{padding:54px 0}
  .logo img{height:48px}
  .hero-actions{flex-direction:column}
  .btn{width:100%}
  .cta{padding:30px}
}
