*{box-sizing:border-box}

:root{
  --navy:#0a2b5d;
  --blue:#0b68d8;
  --teal:#11bdaa;
  --green:#2ea84a;
  --ink:#132238;
  --muted:#62748e;
  --soft:#f4f9ff;
  --soft2:#eaf5ff;
  --white:#ffffff;
  --line:#d7e6f5;
  --shadow:0 24px 70px rgba(10,43,93,.13);
}

html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--soft);
  color:var(--ink);
}
a{text-decoration:none;color:inherit}
.container{width:min(1160px,calc(100% - 40px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;
  color:var(--navy);
}
.logo-box{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:15px;
  padding:6px;
  box-shadow:0 10px 24px rgba(10,43,93,.08);
}
.logo-box img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.brand-text{
  font-size:21px;
  letter-spacing:-.02em;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:var(--muted);
  font-weight:800;
}
.nav-links a:hover{color:var(--blue)}
.header-button{
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--teal));
  padding:13px 22px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(11,104,216,.18);
}

.hero{
  position:relative;
  overflow:hidden;
  padding:76px 0 78px;
  background:
    radial-gradient(circle at 84% 18%, rgba(17,189,170,.22), transparent 30%),
    radial-gradient(circle at 8% 14%, rgba(11,104,216,.12), transparent 34%),
    linear-gradient(180deg,#ffffff 0%,#edf7ff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:54px;
  align-items:center;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  font-weight:950;
}
h1,h2,h3,p{margin-top:0}
h1{
  max-width:760px;
  color:var(--navy);
  font-size:clamp(40px,5.2vw,64px);
  line-height:1.02;
  letter-spacing:-.055em;
  margin-bottom:22px;
}
h2{
  color:var(--navy);
  font-size:clamp(28px,3.5vw,42px);
  line-height:1.12;
  letter-spacing:-.04em;
  margin-bottom:16px;
}
h3{
  color:var(--navy);
  font-size:22px;
  margin-bottom:10px;
}
.lead{
  max-width:700px;
  color:var(--muted);
  font-size:19px;
  line-height:1.65;
  margin-bottom:28px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  font-weight:900;
}
.btn.primary{
  background:linear-gradient(135deg,var(--blue),var(--teal));
  color:#fff;
  box-shadow:0 16px 34px rgba(11,104,216,.2);
}
.btn.secondary{
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
}
.hero-badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-badges span{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--navy);
  background:#fff;
  font-weight:850;
  font-size:14px;
  box-shadow:0 10px 24px rgba(10,43,93,.06);
}

.solution-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
}
.panel-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
  margin-bottom:18px;
}
.panel-head p{
  margin:0;
  color:var(--muted);
  font-weight:800;
}
.panel-head strong{
  color:var(--navy);
  font-size:20px;
}
.flow-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--soft);
  margin-bottom:14px;
}
.flow-card.active{
  background:linear-gradient(135deg,#f8fcff,#eefaff);
  border-color:#bdeee8;
}
.flow-card strong{
  display:block;
  color:var(--navy);
  font-size:18px;
  margin-bottom:6px;
}
.flow-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}
.arrow{
  color:var(--teal);
  font-size:28px;
  font-weight:900;
}
.dot{
  width:11px;
  height:11px;
  display:inline-block;
  border-radius:50%;
  margin-right:8px;
}
.payment{background:var(--blue)}
.marketing{background:var(--teal)}
.tech{background:var(--green)}
.panel-footer{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:18px;
}
.panel-footer span{
  text-align:center;
  padding:11px 8px;
  border-radius:14px;
  background:#eef6ff;
  color:var(--navy);
  font-weight:900;
  font-size:14px;
}

.section{
  padding:74px 0;
}
.section-head{
  max-width:760px;
  margin-bottom:32px;
}
.section-head.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section-head p,
.service-card p,
.markets-grid p,
.process-grid p,
.contact-copy p{
  color:var(--muted);
  line-height:1.68;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 18px 48px rgba(10,43,93,.07);
}
.icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--teal));
  color:#fff;
  border-radius:15px;
  font-size:24px;
  font-weight:950;
  margin-bottom:18px;
}

.markets-section{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.markets-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:center;
}
.market-tags{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.market-tags span{
  padding:13px 16px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:900;
  color:var(--navy);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.process-grid article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:0 18px 48px rgba(10,43,93,.07);
}
.process-grid span{
  display:block;
  color:var(--teal);
  font-size:34px;
  font-weight:950;
  margin-bottom:10px;
}

.contact-section{
  padding-top:48px;
}
.contact-card{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:36px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:36px;
  box-shadow:var(--shadow);
}
.contact-copy h2{
  font-size:clamp(28px,3vw,40px);
  line-height:1.15;
  max-width:600px;
}
.contact-list{
  display:grid;
  gap:12px;
}
.contact-list a{
  display:block;
  padding:16px 18px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:16px;
  font-weight:850;
  color:var(--navy);
}

.floating-telegram{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  background:#229ed9;
  color:#fff;
  padding:15px 21px;
  border-radius:999px;
  font-weight:950;
  box-shadow:0 18px 36px rgba(34,158,217,.35);
}

.site-footer{
  background:#092750;
  padding:32px 0;
  color:rgba(255,255,255,.78);
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-grid strong{
  color:#fff;
  font-size:20px;
}
.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  font-weight:850;
}
.disclaimer{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:22px;
  padding-top:18px;
  display:grid;
  gap:8px;
  font-size:13px;
  line-height:1.55;
}

.legal-page{
  min-height:calc(100vh - 82px);
  padding:64px 0;
}
.legal-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:40px;
  box-shadow:var(--shadow);
}
.legal-box h1{
  color:var(--navy);
  font-size:46px;
}
.legal-box h2{
  color:var(--navy);
  font-size:26px;
  margin-top:28px;
}
.legal-box p{
  color:var(--muted);
  line-height:1.7;
}
.legal-box a{
  color:var(--blue);
  font-weight:850;
}

@media(max-width:980px){
  .nav-links{display:none}
  .hero-grid,
  .markets-grid,
  .contact-card{
    grid-template-columns:1fr;
  }
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .container{width:min(100% - 28px,1160px)}
  .header-inner{min-height:72px}
  .brand-text{font-size:18px}
  .logo-box{width:46px;height:46px}
  .hero{padding:52px 0 58px}
  h1{font-size:40px}
  .lead{font-size:17px}
  .section{padding:56px 0}
  .service-grid,
  .process-grid,
  .panel-footer{
    grid-template-columns:1fr;
  }
  .solution-panel,
  .contact-card,
  .legal-box{
    padding:24px;
  }
  .floating-telegram{
    right:14px;
    bottom:14px;
    padding:14px 18px;
  }
}
