
:root{
  --bg:#0a1420;
  --bg2:#0d1a29;
  --panel:#0f1d2d;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --border:rgba(255,255,255,.10);
  --blue:#2ab6ff;
  --green:#32d296;
  --green2:#22b573;
  --light:#f7fbff;
  --light-border:#d9e7f3;
  --dark-text:#0a1420;
  --dark-muted:#4c6174;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1200px, calc(100% - 32px));margin:0 auto}
.topbar-wrap{
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(42,182,255,.16), transparent 20%),
    linear-gradient(135deg,#0a1420 0%,#0d1a29 45%,#0a1420 100%);
}
.topbar{
  margin-top:20px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  border-radius:18px;
  padding:18px 22px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  transition:all .25s ease;
}
.brand img{
  height:84px;width:auto;object-fit:contain;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.22));
  transition:transform .28s ease, filter .28s ease;
}
.brand:hover img{transform:scale(1.03);filter:drop-shadow(0 14px 28px rgba(0,0,0,.26))}
.menu{
  display:flex;align-items:center;gap:30px;
  font-size:16px;font-weight:900;color:rgba(255,255,255,.90);
}
.menu a{
  position:relative;transition:all .3s ease;
}
.menu a:hover{color:var(--blue)}
.menu a::after{
  content:"";position:absolute;left:0;bottom:-4px;height:2px;width:0;background:var(--blue);transition:width .3s ease;
}
.menu a:hover::after{width:100%}
.phone-btn{
  background:linear-gradient(90deg,var(--green),var(--green2));
  color:#06131d;font-size:16px;font-weight:900;
  padding:14px 20px;border-radius:999px;
  box-shadow:0 10px 26px rgba(34,181,115,.25);
  transition:all .3s ease;
}
.phone-btn:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 16px 32px rgba(34,181,115,.34)}
.hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:40px;
  align-items:center;padding:48px 0 72px;
}
.badge{
  display:inline-flex;border:1px solid rgba(42,182,255,.30);
  background:rgba(42,182,255,.10);color:#9fdfff;
  padding:10px 14px;border-radius:999px;font-size:14px;font-weight:700;
}
h1.page-title,h1.hero-title{
  margin:24px 0 0;font-size:64px;line-height:1.02;font-weight:900;
}
.hero-copy p,.page-intro{
  margin:24px 0 0;max-width:760px;color:var(--muted);
  font-size:22px;line-height:1.6;
}
.check-list,.bullets{
  list-style:none;padding:0;margin:28px 0 0;
}
.check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 18px}
.check-list li,.bullets li{
  font-size:19px;font-weight:800;position:relative;padding-left:26px;
}
.check-list li::before,.bullets li::before{
  content:"✓";color:var(--blue);position:absolute;left:0;top:0;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:16px 28px;border-radius:18px;font-size:16px;font-weight:900;transition:all .28s ease;
}
.btn-green{
  background:linear-gradient(90deg,var(--green),var(--green2));
  color:#06131d;box-shadow:0 16px 36px rgba(34,181,115,.24);
}
.btn-green:hover{transform:translateY(-2px);box-shadow:0 20px 40px rgba(34,181,115,.32)}
.btn-outline{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.92);
}
.btn-outline:hover{border-color:rgba(255,255,255,.3);background:rgba(255,255,255,.09)}
.media-card{
  border-radius:28px;border:1px solid var(--border);
  background:rgba(255,255,255,.05);backdrop-filter:blur(8px);
  padding:16px;box-shadow:0 20px 56px rgba(0,0,0,.30);
  transition:transform .28s ease, box-shadow .28s ease;
}
.media-card:hover{transform:translateY(-6px);box-shadow:0 24px 60px rgba(10,20,32,.14)}
.media-card img{width:100%;height:520px;object-fit:cover;border-radius:24px;transition:transform .45s ease}
.media-card:hover img{transform:scale(1.03)}
.media-card.sm img{height:420px}
.section-light{background:var(--light);color:var(--dark-text);padding:70px 0 80px}
.section-dark{
  background:#0c1827;border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);padding:70px 0 80px;
}
.section-title{display:flex;align-items:center;gap:20px;margin-bottom:34px}
.section-title span{flex:1;height:1px;background:#cfe0ef}
.section-title h2{
  margin:0;text-align:center;font-size:52px;font-weight:900;
  text-transform:uppercase;letter-spacing:.02em;
}
.cards-grid{
  display:grid;gap:24px;grid-template-columns:repeat(2,minmax(0,1fr));
}
.cards-grid.gallery{grid-template-columns:repeat(3,minmax(0,1fr))}
.service-card,.info-card,.contact-box,.form-box{
  overflow:hidden;border-radius:26px;border:1px solid var(--light-border);
  background:#fff;box-shadow:0 18px 50px rgba(10,20,32,.08);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover,.info-card:hover,.contact-box:hover,.form-box:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(10,20,32,.14);
}
.service-card img,.info-card img{
  width:100%;height:260px;object-fit:cover;background:#edf4fb;transition:transform .45s ease;
}
.service-card:hover img,.info-card:hover img{transform:scale(1.04)}
.gallery-card img{height:360px}
.gallery-card .service-body h3{font-size:22px}
.service-body,.info-body{padding:22px}
.service-body h3,.info-body h3{
  margin:0;font-size:28px;line-height:1.15;font-weight:900;
}
.service-body p,.info-body p,.contact-box p{
  margin:12px 0 0;color:var(--dark-muted);font-size:16px;line-height:1.7;
}
.page-hero{padding:48px 0 40px}
.two-col{display:grid;grid-template-columns:1fr .95fr;gap:34px;align-items:center}
.benefits-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:28px;
}
.benefit-box{
  border:1px solid var(--border);background:rgba(255,255,255,.05);
  border-radius:18px;padding:18px;font-size:14px;line-height:1.6;
  font-weight:800;color:rgba(255,255,255,.92);
  transition:transform .28s ease,border-color .28s ease,background .28s ease;
}
.benefit-box:hover{transform:translateY(-4px);border-color:rgba(42,182,255,.30);background:rgba(255,255,255,.08)}
.cta-band{padding:46px 0;border-top:1px solid rgba(255,255,255,.08)}
.cta-band .inner{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:26px 30px;border:1px solid #d9e7f3;border-radius:28px;
  background:linear-gradient(180deg,#ffffff,#f4f9fd);
  box-shadow:0 18px 50px rgba(10,20,32,.08);
}
.home-cta-badge{
  display:inline-flex;padding:8px 12px;border-radius:999px;
  background:rgba(42,182,255,.10);border:1px solid rgba(42,182,255,.22);
  color:#168ed2;font-size:13px;font-weight:800;margin-bottom:14px;
}
.cta-copy h3{margin:0;color:#0a1420;font-size:36px;line-height:1.1;font-weight:900}
.cta-copy p{margin:14px 0 0;color:#4c6174;font-size:18px;line-height:1.8;max-width:720px}
.cta-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:24px}
.call-dark{background:#0a1420;color:#fff;border:1px solid #0a1420}
.contact-lines{margin-top:20px;display:grid;gap:14px;font-size:18px;font-weight:700;color:#163047}
.contact-form{display:grid;gap:16px}
.contact-form input,.contact-form textarea{
  width:100%;border-radius:18px;border:1px solid var(--light-border);
  padding:18px 20px;font-size:16px;font-family:inherit;outline:none;
}
.contact-form button{
  border:none;border-radius:18px;background:linear-gradient(90deg,var(--green),var(--green2));
  color:#06131d;padding:18px 22px;font-size:16px;font-weight:900;cursor:pointer;
  box-shadow:0 14px 30px rgba(34,181,115,.20);transition:all .28s ease;
}
.contact-form button:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(34,181,115,.28)}
.footer{padding:40px 0 50px;background:#07111a;border-top:1px solid rgba(255,255,255,.08)}
.footer-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr;gap:28px}
.footer h4{margin:0 0 12px;font-size:22px}
.footer p,.footer li{color:rgba(255,255,255,.75);line-height:1.7}
.footer ul{list-style:none;padding:0;margin:0}
.small-muted{color:rgba(255,255,255,.75)}
.whatsapp-float{
  position:fixed;right:18px;bottom:18px;z-index:999;
  display:flex;align-items:center;justify-content:center;
  width:62px;height:62px;border-radius:999px;
  background:#25D366;color:#fff;font-size:30px;font-weight:900;
  box-shadow:0 16px 38px rgba(37,211,102,.38);
  transition:transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.04);box-shadow:0 22px 42px rgba(37,211,102,.45)}
.whatsapp-float::before{content:"✆";}
@media (max-width: 900px){
  .menu{display:none}
  .hero-grid,.two-col,.cards-grid,.benefits-grid,.footer-grid,.cta-band .inner{grid-template-columns:1fr;display:grid}
  .cards-grid.gallery{grid-template-columns:1fr}
  h1.page-title,h1.hero-title{font-size:44px}
  .hero-copy p,.page-intro,.cta-copy p{font-size:18px}
  .section-title h2,.cta-copy h3{font-size:34px}
  .check-list{grid-template-columns:1fr}
  .media-card img{height:360px}
  .service-card img,.info-card img,.gallery-card img{height:220px}
  .brand img{height:68px}
}
@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
.hero-copy,.hero-media,.page-hero,.cards-grid,.two-col,.contact-box,.form-box{animation:fadeUp .75s ease both}


.reviews-section .section-title span{
  background: rgba(255,255,255,.14);
}
.reviews-intro{
  text-align:center;
  margin:-6px 0 28px;
  color:rgba(255,255,255,.86);
  font-size:18px;
  font-weight:700;
}
.reviews-section .cards-grid{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.reviews-section .service-card{
  background: linear-gradient(180deg,#111c2b,#0c1621);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}
.reviews-section .service-body h3{
  color:#ffffff;
  font-size:22px;
}
.reviews-section .service-body p{
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.8;
}
.reviews-section .service-card:hover{
  transform: translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
@media (max-width: 900px){
  .reviews-section .cards-grid{
    grid-template-columns:1fr;
  }
}
