
:root{
  --bg:#f5f7fb;
  --card:#ffffff;
  --text:#0d1b2a;
  --muted:#5c6b7a;
  --primary:#1565d8;
  --primary-dark:#0b2a4a;
  --line:#dfe7f1;
  --hero1:#02142d;
  --hero2:#07224a;
  --success:#25D366;
  --viber:#7360f2;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{width:min(1180px,92%);margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}
.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}
.brand img{
  height:64px;
  width:auto;
}
.menu{
  display:flex;
  align-items:center;
  gap:2rem;
  font-weight:700;
  color:var(--primary-dark);
}
.menu a:hover{color:var(--primary)}
.menu .contact-inline{
  display:flex;
  gap:1.25rem;
  align-items:center;
  color:#1d2d44;
  font-weight:700;
}
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(21,101,216,.18), transparent 25%),
    linear-gradient(90deg, var(--hero1) 0%, #031a39 40%, var(--hero2) 100%);
}
.hero-inner{
  min-height:520px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:2rem;
}
.hero-copy{
  color:#fff;
  padding:3rem 0;
}
.badge{
  display:inline-block;
  background:#063b77;
  color:#57c0ff;
  border:1px solid rgba(87,192,255,.22);
  padding:.7rem 1rem;
  border-radius:10px;
  font-size:.95rem;
  letter-spacing:.03em;
  margin-bottom:1.4rem;
}
.hero h1{
  font-size:4rem;
  line-height:1.08;
  margin-bottom:1.2rem;
}
.hero p{
  font-size:1.45rem;
  color:rgba(255,255,255,.88);
  max-width:740px;
  margin-bottom:1.6rem;
}
.hero-buttons{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom:1.6rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  padding:1rem 1.4rem;
  border-radius:14px;
  font-weight:700;
  transition:.2s ease;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
}
.btn-primary:hover{background:#1157ba}
.btn-secondary{
  background:transparent;
  border-color:rgba(255,255,255,.45);
  color:#fff;
}
.btn-secondary:hover{background:rgba(255,255,255,.08)}
.hero-points{
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
  color:#fff;
  font-weight:700;
}
.hero-points span{display:flex;align-items:center;gap:.55rem}
.hero-visual{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding:2rem 0;
}
.hero-visual img{
  width:min(100%,650px);
  border-radius:22px;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}

.section{
  padding:5rem 0;
}
.section-header{
  text-align:center;
  max-width:920px;
  margin:0 auto 2.2rem;
}
.section-kicker{
  color:var(--primary);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:.7rem;
}
.section-header h2{
  font-size:3rem;
  margin-bottom:.8rem;
  color:#0c1830;
}
.section-header p{
  color:var(--muted);
  font-size:1.35rem;
}
.cards{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:1rem;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.5rem 1.2rem;
  box-shadow:0 10px 24px rgba(13,27,42,.05);
  transition:.2s ease;
  text-align:center;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px rgba(13,27,42,.1);
}
.service-media{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
}
.service-media img{
  max-height:84px;
  width:auto;
}
.card h3{
  font-size:1.05rem;
  color:#10223d;
  margin-bottom:.8rem;
}
.card p{
  color:var(--muted);
  font-size:1rem;
  margin-bottom:1rem;
  min-height:5.5em;
}
.learn{
  color:var(--primary);
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
}
.learn::after{
  content:"→";
}

.contact-strip{
  padding:1.3rem 0 3.2rem;
}
.contact-panel{
  background:#edf3fb;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:2.2rem 0;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:1.2rem 1.4rem;
  display:flex;
  align-items:center;
  gap:1rem;
}
.contact-icon{
  width:58px;
  height:58px;
  border-radius:14px;
  background:#eef5ff;
  color:var(--primary);
  display:grid;
  place-items:center;
  font-size:1.65rem;
  font-weight:800;
}
.contact-card strong{
  display:block;
  font-size:1.15rem;
  margin-bottom:.2rem;
}
.contact-card span,.contact-card a{
  color:var(--muted);
}
.footer{
  background:#081a33;
  color:#d6e0ef;
  text-align:center;
  padding:1.2rem 0;
}

.float-btn{
  position:fixed;
  bottom:22px;
  display:flex;
  align-items:center;
  gap:.5rem;
  color:#fff;
  border-radius:999px;
  padding:1rem 1.15rem;
  font-weight:700;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
  z-index:999;
}
.float-btn.whatsapp{left:22px;background:var(--success)}
.float-btn.viber{right:22px;background:var(--viber)}

.page-hero{
  background:linear-gradient(135deg,#0b2a4a 0%,#132f55 100%);
  color:#fff;
  padding:4.2rem 0;
}
.page-hero h1{
  font-size:3rem;
  margin-bottom:.8rem;
}
.page-hero p{
  font-size:1.2rem;
  color:rgba(255,255,255,.86);
  max-width:760px;
}
.page-content{
  padding:3.5rem 0 4.5rem;
}
.content-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:2rem;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.6rem;
  box-shadow:0 10px 24px rgba(13,27,42,.05);
  margin-bottom:1.2rem;
}
.panel h2{
  font-size:1.55rem;
  margin-bottom:.9rem;
  color:#10223d;
}
.panel p, .panel li{
  color:var(--muted);
}
.panel ul{
  padding-left:1.15rem;
}
.panel li+li{margin-top:.55rem}
.side-visual{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.side-visual img{
  max-width:360px;
}
.breadcrumbs{
  color:#c8d7ef;
  margin-bottom:1rem;
  font-weight:700;
}
.breadcrumbs a{color:#c8d7ef}

@media (max-width:1200px){
  .cards{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:980px){
  .menu .contact-inline{display:none}
  .hero-inner{grid-template-columns:1fr}
  .hero h1{font-size:3.2rem}
  .section-header h2{font-size:2.4rem}
  .cards{grid-template-columns:repeat(3,1fr)}
  .content-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:700px){
  .nav{min-height:74px;flex-wrap:wrap;padding:.8rem 0}
  .brand img{height:54px}
  .menu{gap:1rem;font-size:.95rem;flex-wrap:wrap}
  .hero{padding-top:0}
  .hero h1{font-size:2.4rem}
  .hero p{font-size:1.1rem}
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:520px){
  .cards{grid-template-columns:1fr}
  .float-btn{padding:.9rem 1rem}
}
