:root{
  --blue:#11a8f5;
  --blue-dark:#0b79b7;
  --green:#78d64b;
  --orange:#ffc158;
  --red:#ff5b5d;
  --dark:#1e1f23;
  --ink:#55565a;
  --muted:#73757b;
  --line:#e8eaf0;
  --bg:#f5f7fb;
  --white:#ffffff;
  --shadow:0 24px 70px rgba(20,24,32,.14);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Montserrat',Arial,sans-serif;
  background:var(--bg);
  color:var(--dark);
  line-height:1.6;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}

.site-header{
  min-height:100vh;
  padding-bottom:100px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(17,168,245,.14), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(120,214,75,.14), transparent 30%),
    linear-gradient(135deg,#ffffff 0%,#f5f7fb 52%,#eef3fa 100%);
}
.site-header:after{
  content:"";
  position:absolute;
  right:-150px;
  bottom:-170px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(17,168,245,.16),rgba(255,193,88,.18));
  z-index:0;
}

.navbar{
  width:min(1160px,92%);
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
  position:relative;
  z-index:5;
}
.brand{display:flex;align-items:center}
.site-logo{
  width:170px;
  height:auto;
  display:block;
  object-fit:contain;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:800;
  font-size:14px;
}
.nav-links a{transition:.25s}
.nav-links a:hover{color:var(--blue)}
.nav-cta{
  background:var(--dark);
  color:#fff!important;
  padding:12px 18px;
  border-radius:999px;
}
.menu-toggle{
  display:none;
  background:none;
  border:0;
  font-size:28px;
}

.hero{
  width:min(1160px,92%);
  margin:56px auto 0;
  padding-top:80px;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:58px;
  align-items:center;
  position:relative;
  z-index:2;
}
.eyebrow,.section-tag{
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.18em;
  font-size:12px;
  color:var(--blue);
  margin-bottom:14px;
}
.hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-.06em;
  max-width:780px;
}
.hero h1:after{
  content:"";
  display:block;
  width:130px;
  height:12px;
  background:linear-gradient(90deg,var(--blue),var(--green),var(--orange),var(--red));
  margin-top:20px;
  border-radius:999px;
}
.hero-copy{
  font-size:18px;
  color:var(--ink);
  max-width:650px;
  margin:28px 0;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 22px;
  font-weight:900;
  border:2px solid transparent;
  transition:.25s;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--blue);
  color:white;
  box-shadow:0 14px 36px rgba(17,168,245,.28);
}
.btn-secondary{
  border-color:var(--dark);
  color:var(--dark);
  background:white;
}

.hero-card{
  background:white;
  border:1px solid var(--line);
  border-radius:38px;
  padding:56px;
  box-shadow:var(--shadow);
  position:relative;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:30px;
  border:1px solid #edf0f6;
  pointer-events:none;
}
.hero-card img{
  width:100%;
  max-width:440px;
  display:block;
  margin:auto;
}

.section{
  width:min(1160px,92%);
  margin:0 auto;
  padding:96px 0;
}
.intro{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:center;
}
.intro h2,.section-heading h2,.dark-band h2,.about h2,.contact h2{
  font-size:clamp(32px,4vw,54px);
  line-height:1.04;
  letter-spacing:-.045em;
}
.intro p:last-child{
  font-size:18px;
  color:var(--muted);
}

.section-heading{margin-bottom:32px}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  background:white;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  min-height:275px;
  box-shadow:0 12px 32px rgba(20,24,32,.06);
  transition:.3s;
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}
.icon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:30px;
  margin-bottom:22px;
}
.icon.blue{background:rgba(17,168,245,.14)}
.icon.orange{background:rgba(255,193,88,.24)}
.icon.green{background:rgba(120,214,75,.22)}
.icon.red{background:rgba(255,91,93,.15)}
.service-card h3{
  font-size:22px;
  line-height:1.15;
  margin-bottom:12px;
}
.service-card p{
  color:var(--muted);
  font-size:15px;
}

.dark-band{
  width:100%;
  background:var(--dark);
  color:white;
  padding:96px max(4%,calc((100% - 1160px)/2));
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:42px;
  align-items:center;
}
.dark-band .section-tag{color:var(--orange)}
.steps{display:grid;gap:16px}
.steps div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:22px;
  border-radius:22px;
}
.steps span{
  color:var(--blue);
  font-weight:900;
  font-size:13px;
}
.steps b{
  display:block;
  font-size:21px;
  margin:4px 0;
}
.steps p{color:#d5d7dc}

.about{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
}
.about-card,.quote-card{
  background:white;
  border-radius:32px;
  padding:42px;
  border:1px solid var(--line);
  box-shadow:0 12px 34px rgba(20,24,32,.06);
}
.about-card p{
  color:var(--muted);
  margin:20px 0;
}
.about-card ul{
  padding-left:20px;
  font-weight:600;
}
.about-card li{margin:10px 0}
.quote-card{
  background:linear-gradient(135deg,#fff,rgba(17,168,245,.16));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:390px;
}
.quote-card h3{
  font-size:36px;
  line-height:1.02;
  letter-spacing:-.04em;
}
.quote-card p{
  font-weight:600;
  margin-top:18px;
  color:var(--ink);
}

.contact{
  background:white;
  width:min(1160px,92%);
  margin:0 auto 88px;
  border-radius:36px;
  padding:46px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:36px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.contact-content p:last-child{color:var(--muted);margin-top:16px}
.contact-info{margin-top:22px}
.contact-info p{
  margin-bottom:8px;
  color:var(--dark);
  font-weight:600;
}
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.contact-form textarea,.contact-form button{grid-column:1/-1}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;
  border:1px solid #dde2ea;
  border-radius:16px;
  padding:15px 16px;
  font-family:inherit;
  font-weight:600;
  background:#f8fafc;
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
  outline:2px solid var(--blue);
  border-color:var(--blue);
}

footer{
  background:var(--dark);
  color:white;
  padding:38px 4%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.footer-logo{
  width:150px;
  height:auto;
  display:block;
}
footer p{color:#d7d9de;font-weight:600}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:.75s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width:900px){
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    right:0;
    top:76px;
    background:white;
    box-shadow:var(--shadow);
    border-radius:22px;
    padding:22px;
    flex-direction:column;
    align-items:flex-start;
    min-width:230px;
    display:none;
  }
  .nav-links.open{display:flex}
  .hero,.intro,.dark-band,.about,.contact{grid-template-columns:1fr}
  .hero{gap:36px;margin-top:18px}
  .service-grid{grid-template-columns:1fr 1fr}
  .contact-form{grid-template-columns:1fr}
}

@media (max-width:620px){
  .navbar{padding:18px 0}
  .site-logo{width:135px}
  .hero h1{font-size:42px}
  .hero-copy{font-size:16px}
  .hero-card{padding:34px}
  .service-grid{grid-template-columns:1fr}
  .section{padding:68px 0}
  .contact{padding:28px;border-radius:26px}
  footer{align-items:flex-start;flex-direction:column}
  .footer-logo{width:130px}
}


.footer-privacy{
  color:#ffffff;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

.cookie-banner{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:min(1050px,92%);
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:26px;
  padding:20px;
  display:none;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  box-shadow:0 24px 70px rgba(20,24,32,.18);
  z-index:9999;
  backdrop-filter:blur(12px);
}

.cookie-banner.show{
  display:grid;
}

.cookie-copy strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
  color:var(--dark);
}

.cookie-copy p{
  color:var(--muted);
  margin:0;
  font-weight:600;
}

.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.cookie-actions button,
.cookie-link{
  border:0;
  border-radius:999px;
  padding:13px 18px;
  font:inherit;
  font-weight:800;
}

.cookie-link{
  background:#eef6fd;
  color:var(--blue);
}

#rejectCookies{
  background:#f1f3f7;
  color:var(--dark);
}

#acceptCookies{
  background:var(--blue);
  color:white;
}

.privacy-hero{
  min-height:55vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 84% 18%, rgba(17,168,245,.14), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(120,214,75,.14), transparent 30%),
    linear-gradient(135deg,#ffffff 0%,#f5f7fb 52%,#eef3fa 100%);
  padding:110px 0 70px;
}

.privacy-content{
  width:min(1160px,92%);
  margin:auto;
}

.privacy-card{
  background:white;
  border:1px solid var(--line);
  border-radius:34px;
  padding:42px;
  box-shadow:var(--shadow);
}

.privacy-card h2{
  font-size:28px;
  margin:30px 0 10px;
  letter-spacing:-.03em;
}

.privacy-card p,
.privacy-card li{
  color:var(--muted);
  font-weight:600;
}

.privacy-card ul{
  padding-left:20px;
  margin-top:10px;
}

.back-home{
  display:inline-flex;
  margin-top:34px;
  background:var(--blue);
  color:white;
  padding:15px 22px;
  border-radius:999px;
  font-weight:900;
}

@media(max-width:720px){
  .cookie-banner{
    grid-template-columns:1fr;
    bottom:14px;
  }

  .privacy-card{
    padding:28px;
  }
}


@media (max-width:900px){
  .hero{
    padding-top:120px;
  }
}

@media (max-width:620px){
  .hero{
    padding-top:100px;
  }
}
