
:root{
  --bg:#f7f8f8;
  --surface:#ffffff;
  --text:#0a2d37;
  --muted:#415861;
  --line:#dbe5e7;
  --teal-dark:#063a48;
  --teal:#0f7f87;
  --teal-bright:#11a7a8;
  --teal-soft:#dff5f5;
  --hero-deep:#021f2b;
  --hero-mid:#073745;
  --shadow:0 14px 32px rgba(6,58,72,.12);
  --radius:14px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}
img{max-width:100%; display:block}
a{text-decoration:none; color:inherit}
h1,h2,h3,p{margin:0}
h1,h2,h3{line-height:1.1}
section{position:relative}

.skip-link{position:absolute;left:-9999px}
.skip-link:focus{left:1rem;top:1rem;padding:.75rem 1rem;background:#fff;border:1px solid var(--teal-dark);z-index:9999}

.container{
  width:min(calc(100% - 2rem), var(--container));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(6,58,72,.08);
}
.header-inner{
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.brand{
  display:flex;
  align-items:center;
  max-width:340px;
}
.brand-logo{
  width:min(100%, 265px);
  height:auto;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:2rem;
  font-weight:700;
  text-transform:uppercase;
  font-size:.95rem;
  color:var(--teal-dark);
}
.site-nav a{
  transition:color .18s ease, border-color .18s ease, background .18s ease;
}
.site-nav a:hover{color:var(--teal)}
.assistance-link{
  padding:.95rem 1.5rem;
  border:1.5px solid rgba(17,167,168,.6);
  border-radius:8px;
  color:var(--teal-dark);
}
.assistance-link:hover{
  background:var(--teal-soft);
}

.nav-toggle{
  display:none;
  border:1px solid rgba(6,58,72,.15);
  background:#fff;
  width:48px;
  height:48px;
  border-radius:10px;
  padding:0;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--teal-dark);
  margin:5px auto;
}

.hero{
  min-height:600px;
  background:
    radial-gradient(circle at 85% 30%, rgba(17,167,168,.28) 0%, rgba(17,167,168,0) 18%),
    radial-gradient(circle at 70% 65%, rgba(17,167,168,.18) 0%, rgba(17,167,168,0) 20%),
    linear-gradient(90deg, rgba(1,18,28,.96) 0%, rgba(2,27,39,.90) 38%, rgba(2,31,43,.78) 56%, rgba(2,31,43,.55) 100%);
  overflow:hidden;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(2,19,29,.25) 0%, rgba(2,19,29,.08) 45%, rgba(2,19,29,0) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  min-height:600px;
  display:flex;
  align-items:center;
}
.hero-content{
  display:flex;
  align-items:flex-start;
  gap:1.2rem;
  max-width:660px;
}
.hero-line{
  width:5px;
  height:115px;
  border-radius:999px;
  background:var(--teal-bright);
  margin-top:.45rem;
}
.hero h1{
  font-size:clamp(3rem, 7vw, 5rem);
  color:#fff;
  margin-bottom:1rem;
  letter-spacing:-.03em;
}
.hero-copy{
  color:#f4fbfc;
  font-size:clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight:700;
  max-width:520px;
}
.hero-actions{
  margin-top:2rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:50px;
  padding:.85rem 1.45rem;
  border-radius:6px;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border:none;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}
.btn-primary{
  background:var(--teal-bright);
  color:#fff;
  min-width:160px;
}
.btn-outline{
  border:1.5px solid var(--teal-bright);
  color:var(--teal);
  background:#fff;
  min-width:110px;
}
.btn-cta{
  background:var(--teal-bright);
  color:#fff;
  min-width:250px;
  font-size:1.05rem;
}
.btn-outline-light{
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
  background:transparent;
}

.section{
  padding:4.5rem 0;
}
.section-kicker{
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--teal);
  font-weight:700;
  font-size:.78rem;
  margin-bottom:.5rem;
}
.section-heading h2,
.about-copy h2,
.contact-left h2,
.legal-copy h1{
  font-size:clamp(2.3rem, 4vw, 3.3rem);
  margin-bottom:.4rem;
}
.section-heading.center{
  text-align:center;
}
.heading-line{
  width:64px;
  height:4px;
  border-radius:999px;
  background:var(--teal-bright);
  margin-top:.7rem;
}
.center .heading-line{
  margin-inline:auto;
}
.heading-line-light{
  background:#32d0d2;
}

.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:2rem;
  align-items:center;
}
.about-copy p{
  max-width:620px;
  margin-top:1.2rem;
  font-size:1.15rem;
  color:var(--muted);
}
.about-visual{
  position:relative;
  min-height:360px;
}
.device{
  position:absolute;
  border:6px solid #1e5260;
  background:#dbe8ec;
  border-radius:10px;
  box-shadow:var(--shadow);
}
.desktop{width:200px;height:120px;left:120px;top:60px}
.desktop::after{content:"";position:absolute;left:50%;transform:translateX(-50%);bottom:-28px;width:70px;height:12px;background:#1e5260;border-radius:0 0 8px 8px}
.laptop{width:130px;height:88px;left:250px;top:100px}
.laptop::after{content:"";position:absolute;left:-12px;bottom:-16px;width:146px;height:14px;background:#1e5260;border-radius:0 0 10px 10px}
.phone{width:42px;height:84px;border-radius:12px}
.phone.left{left:82px;top:180px}
.phone.right{left:350px;top:190px}
.switch{width:130px;height:22px;left:190px;top:270px;border-radius:6px}
.switch::before{
  content:"";
  position:absolute;inset:6px 8px;
  background:repeating-linear-gradient(90deg, #1e5260 0 10px, transparent 10px 18px);
}
.bubble{
  position:absolute;
  width:58px;height:58px;
  border:2px dashed rgba(17,167,168,.8);
  border-radius:50%;
  display:grid;place-items:center;
  color:var(--teal-dark);
  background:#fff;
  font-size:1.35rem;
}
.b1{left:60px;top:55px}
.b2{left:300px;top:35px}
.b3{left:395px;top:70px}

.services{
  background:#fff;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:2rem;
  margin-top:3rem;
}
.service-card{
  text-align:center;
}
.service-icon{
  width:96px;height:96px;
  margin:0 auto 1rem;
  border:2px solid var(--teal-bright);
  border-radius:50%;
  display:grid;
  place-items:center;
}
.service-icon svg{
  width:50px;height:50px;
  fill:none;
  stroke:var(--teal-dark);
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-card h3{
  font-size:1.6rem;
  margin-bottom:.8rem;
}
.service-card p{
  color:var(--muted);
  font-size:1.05rem;
  margin-bottom:1.1rem;
}
.service-card a{
  color:var(--teal);
  font-weight:700;
  text-transform:uppercase;
  font-size:.95rem;
}

.offers{
  background:#edf1f3;
}
.offer-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:2rem;
  margin-top:2.8rem;
}
.offer-card{
  background:#fff;
  border-radius:8px;
  box-shadow:0 8px 24px rgba(6,58,72,.06);
  padding:1.5rem;
  display:grid;
  grid-template-columns:78px 1fr;
  gap:1rem;
  align-items:start;
  border:1px solid rgba(6,58,72,.05);
}
.offer-icon{
  width:78px;height:78px;
  display:grid;place-items:center;
}
.offer-icon svg{
  width:64px;height:64px;
  fill:none;
  stroke:var(--teal);
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.offer-copy h3{
  font-size:1.8rem;
  margin-bottom:.75rem;
}
.offer-copy p{
  color:var(--muted);
  margin-bottom:1.4rem;
  font-size:1.03rem;
}

.partners{
  background:#fff;
}
.partner-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:1.5rem;
  align-items:center;
  margin-top:2.6rem;
}
.partner-item{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem;
}
.partner-item img{
  max-width:100%;
  max-height:56px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:.76;
  filter:grayscale(1);
}

.contact-band{
  background:linear-gradient(90deg, #033846 0%, #052d39 100%);
  color:#fff;
}
.contact-grid{
  min-height:190px;
  display:grid;
  grid-template-columns:1.1fr .85fr 1fr;
  gap:2rem;
  align-items:center;
  padding:3.6rem 0;
}
.contact-left p,
.contact-right p{
  color:#eff9fa;
  font-size:1.08rem;
}
.contact-right a{
  color:#fff;
}
.contact-right p + p{
  margin-top:1rem;
}

.site-footer{
  background:#07242f;
  color:#dceef2;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  padding:1.3rem 0;
}
.footer-grid p{
  font-size:.95rem;
}
.footer-grid p + p{margin-top:.45rem}
.footer-grid a{text-decoration:underline}


.cookie-banner{
  position:fixed;
  inset:auto 1rem 1rem 1rem;
  z-index:1200;
}
.cookie-panel{
  width:min(100%, 1020px);
  margin:0 auto;
  background:rgba(6,36,47,.98);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  box-shadow:0 18px 42px rgba(0,0,0,.32);
  padding:1.25rem;
}
.cookie-copy h2{
  font-size:1.45rem;
  margin-bottom:.55rem;
}
.cookie-copy p{
  color:#e7fbff;
  font-size:1rem;
}
.cookie-copy a{
  text-decoration:underline;
}
.cookie-categories{
  display:grid;
  gap:.85rem;
  margin:1rem 0 1.15rem;
}
.cookie-option{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-start;
  padding:.95rem 1rem;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;
}
.cookie-option span{
  display:block;
}
.cookie-option small{
  display:block;
  margin-top:.3rem;
  color:#cce8ea;
  font-size:.92rem;
  line-height:1.45;
}
.cookie-option input{
  width:20px;
  height:20px;
  accent-color:#11a7a8;
  margin-top:.1rem;
  flex:0 0 auto;
}
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:flex-end;
}
.cookie-floating-button{
  position:fixed;
  right:1rem;
  bottom:1rem;
  z-index:1190;
  min-height:44px;
  padding:.7rem 1rem;
  border-radius:999px;
  border:1px solid rgba(6,58,72,.18);
  background:#fff;
  color:var(--teal-dark);
  box-shadow:0 10px 24px rgba(6,58,72,.14);
  font-weight:700;
  cursor:pointer;
}
.cookie-floating-button[hidden]{
  display:none;
}

.legal-page{

  background:#fff;
}
.legal-copy{
  max-width:900px;
}
.legal-copy h2{
  font-size:1.55rem;
  margin:2rem 0 .8rem;
}
.legal-copy p{
  color:var(--muted);
  font-size:1.08rem;
  margin-top:.7rem;
}

.network-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.network-bg .n{
  position:absolute;
  width:12px;height:12px;border-radius:50%;
  background:#2fd3d8;
  box-shadow:0 0 16px rgba(47,211,216,.7);
  opacity:.8;
}
.network-bg .l{
  position:absolute;
  height:2px;
  background:linear-gradient(90deg, rgba(47,211,216,.0), rgba(47,211,216,.5), rgba(47,211,216,.0));
  transform-origin:left center;
  opacity:.6;
}
.n1{left:68%;top:38%}.n2{left:79%;top:30%}.n3{left:87%;top:55%}.n4{left:74%;top:61%}
.n5{left:60%;top:70%}.n6{left:91%;top:42%}.n7{left:84%;top:18%}.n8{left:65%;top:49%}
.n9{left:76%;top:77%}.n10{left:56%;top:52%}.n11{left:71%;top:22%}.n12{left:92%;top:69%}
.l1{left:68.5%;top:39%;width:150px;transform:rotate(-18deg)}
.l2{left:68.5%;top:39%;width:160px;transform:rotate(35deg)}
.l3{left:74.5%;top:61.5%;width:120px;transform:rotate(-12deg)}
.l4{left:60.5%;top:70.5%;width:100px;transform:rotate(-28deg)}
.l5{left:80%;top:30.5%;width:100px;transform:rotate(63deg)}
.l6{left:72%;top:22.5%;width:115px;transform:rotate(12deg)}
.l7{left:56.5%;top:52.5%;width:118px;transform:rotate(-10deg)}
.l8{left:76.5%;top:77.5%;width:120px;transform:rotate(-35deg)}

@media (max-width: 1100px){
  .site-nav{gap:1.25rem;font-size:.88rem}
  .service-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .offer-grid{grid-template-columns:1fr}
  .partner-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
  .contact-grid{grid-template-columns:1fr; text-align:left}
  .contact-center{order:3}
  .about-grid{grid-template-columns:1fr}
  .about-visual{min-height:320px}
}

@media (max-width: 840px){
  .header-inner{min-height:90px}
  .nav-toggle{display:block}
  .site-nav{
    position:absolute;
    left:1rem;
    right:1rem;
    top:calc(100% + .5rem);
    background:#fff;
    border:1px solid rgba(6,58,72,.12);
    border-radius:12px;
    box-shadow:var(--shadow);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:.7rem;
  }
  .site-nav.open{display:flex}
  .site-nav a{
    width:100%;
    padding:.8rem .6rem;
    border-bottom:1px solid #eef3f4;
  }
  .site-nav a:last-child{border-bottom:0}
  .assistance-link{padding:.8rem .6rem; border:none; border-radius:0}
  .nav-static{
    display:flex;
    position:static;
    box-shadow:none;
    border:none;
    background:transparent;
    flex-direction:row;
    padding:0;
  }
  .nav-static a{
    width:auto;
    padding:0;
    border-bottom:none;
  }
  .hero, .hero-inner{min-height:520px}
}

@media (max-width: 640px){
  .cookie-panel{padding:1rem}
  .cookie-option{flex-direction:column}
  .cookie-actions{justify-content:stretch}
  .cookie-actions .btn{width:100%}

  .brand-logo{width:210px}
  .hero-content{max-width:100%}
  .hero-line{height:90px}
  .section{padding:3.5rem 0}
  .service-grid{grid-template-columns:1fr}
  .partner-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .offer-card{grid-template-columns:1fr; text-align:center}
  .offer-icon{margin:0 auto}
  .footer-grid{grid-template-columns:1fr}
  .cookie-inner{flex-direction:column; align-items:flex-start}
  .about-copy p{font-size:1rem}
  .about-visual{
    transform:scale(.85);
    transform-origin:center top;
    min-height:280px;
  }
}
