@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --blue:#1e6bff;
  --blue2:#62a7ff;
  --light:#f6f9ff;
  --white:#ffffff;
  --text:#122033;
  --muted:#627086;
  --line:rgba(18,32,51,.12);
  --panel:#ffffff;
  --soft:#eef5ff;
  --shadow:0 20px 60px rgba(30,107,255,.14);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope',Arial,sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

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

.section{
  padding:86px 0;
}

.page-loader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  background:var(--white);
  transition:.4s ease;
}

.page-loader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-ring{
  width:54px;
  height:54px;
  border-radius:50%;
  border:4px solid #d9e6ff;
  border-top-color:var(--blue);
  animation:spin .8s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
}

.brand-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  font-weight:800;
}

.brand span{
  font-size:17px;
}

.nav-links{
  display:flex;
  gap:24px;
  font-size:13px;
  font-weight:700;
}

.nav-links a:hover{
  color:var(--blue);
}

.nav-call{
  padding:11px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  font-size:14px;
  font-weight:800;
}

.menu-toggle{
  display:none;
  border:0;
  background:none;
  width:42px;
}

.menu-toggle span{
  display:block;
  height:3px;
  background:var(--text);
  margin:6px 0;
  border-radius:4px;
}

.hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at top right,rgba(30,107,255,.16),transparent 34%),
    linear-gradient(135deg,#ffffff,#eef5ff);
}

.hero-grid{
  min-height:100svh;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
  padding-top:86px;
}

.hero-copy{
  max-width:680px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 15px;
  border-radius:999px;
  color:var(--blue);
  background:#e8f1ff;
  border:1px solid rgba(30,107,255,.18);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:22px;
}

.eyebrow span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--blue);
}

.hero h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1.04;
  letter-spacing:-.045em;
  margin-bottom:20px;
  font-weight:800;
}

.hero h1 strong{
  color:var(--blue);
}

.hero p{
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
  max-width:610px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:15px 24px;
  border-radius:999px;
  font-weight:800;
  font-size:15px;
}

.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  box-shadow:var(--shadow);
}

.btn-secondary{
  border:1px solid var(--line);
  background:white;
  color:var(--text);
}

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

.hero-card-icon{
  font-size:44px;
  margin-bottom:18px;
}

.hero-card h2{
  font-size:30px;
  line-height:1.15;
  margin-bottom:12px;
}

.hero-card p{
  color:var(--muted);
}

.hero-card-list{
  display:grid;
  gap:10px;
  margin-top:22px;
  color:var(--text);
  font-weight:700;
}

.stats-section{
  background:white;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:58px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  text-align:center;
}

.stat-box{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px 14px;
}

.stat-box h3{
  color:var(--blue);
  font-size:30px;
  line-height:1;
}

.stat-box p{
  margin-top:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:11px;
  font-weight:800;
}

.section-heading{
  max-width:760px;
}

.section-heading span,
.why-card span{
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:800;
}

.section-heading h2,
.why-card h2{
  font-size:clamp(28px,4vw,44px);
  line-height:1.08;
  letter-spacing:-.035em;
  margin:12px 0 14px;
}

.section-heading p,
.why-card p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:42px;
}

.service-card,
.why-card,
.feature-list div,
.area-list span,
.contact-form,
.review-card,
.map-box{
  background:white;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 14px 40px rgba(18,32,51,.06);
}

.service-card{
  padding:24px;
}

.service-icon{
  font-size:30px;
  margin-bottom:16px;
}

.service-card h3{
  color:var(--blue);
  font-size:18px;
  margin-bottom:12px;
}

.service-card p{
  color:var(--muted);
  font-size:15px;
}

.why{
  background:#ffffff;
}

.why-grid,
.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:48px;
  align-items:center;
}

.why-card{
  padding:34px;
}

.feature-list{
  display:grid;
  gap:14px;
}

.feature-list div{
  padding:17px;
  font-weight:700;
  color:var(--text);
}

.feature-list b{
  color:var(--blue);
}

.areas,
.map-section{
  background:var(--light);
}

.area-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.area-list span{
  padding:17px;
  font-weight:800;
}

.map-box{
  margin-top:34px;
  height:420px;
  overflow:hidden;
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

.contact{
  background:white;
}

.contact-callout{
  margin-top:26px;
}

.contact-callout a{
  color:var(--blue);
  font-size:30px;
  font-weight:800;
}

.contact-callout small{
  display:block;
  color:var(--muted);
}

.contact-form{
  display:grid;
  gap:15px;
  padding:28px;
}

.contact-form h3{
  font-size:22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  background:var(--light);
  color:var(--text);
  border-radius:15px;
  padding:14px;
  font-size:15px;
}

.contact-form textarea{
  min-height:130px;
}

.contact-form button{
  border:0;
  border-radius:999px;
  padding:15px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  font-weight:800;
}

.floating-call,
.chat-launcher{
  position:fixed;
  bottom:22px;
  z-index:850;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  font-size:14px;
  font-weight:800;
  box-shadow:var(--shadow);
}

.floating-call{
  right:22px;
  padding:14px 18px;
}

.chat-launcher{
  left:22px;
  padding:14px 20px;
}

.chatbot{
  position:fixed;
  left:22px;
  bottom:92px;
  width:min(350px,calc(100vw - 44px));
  background:white;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  display:none;
  z-index:900;
  box-shadow:var(--shadow);
}

.chatbot.open{
  display:block;
}

.chat-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  background:var(--soft);
  border-bottom:1px solid var(--line);
}

.chat-close{
  background:none;
  border:0;
  color:var(--text);
  font-size:24px;
}

.chat-messages{
  height:220px;
  overflow:auto;
  padding:15px;
  display:grid;
  align-content:start;
  gap:10px;
}

.chat-messages p{
  max-width:85%;
  padding:11px 12px;
  border-radius:14px;
  font-size:14px;
}

.bot{
  background:var(--soft);
}

.user{
  background:var(--blue);
  color:white;
  margin-left:auto;
}

.chat-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:12px;
  border-top:1px solid var(--line);
}

.chat-form input{
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--light);
  color:var(--text);
  padding:12px;
}

.chat-form button{
  border:0;
  border-radius:12px;
  padding:0 14px;
  font-weight:800;
  background:var(--blue);
  color:white;
}

.footer{
  background:#102033;
  color:white;
  padding:64px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:36px;
}

.footer a{
  display:block;
  margin:8px 0;
}

.footer p{
  color:#cbd6e5;
  margin-top:14px;
  font-size:15px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:32px;
  padding-top:22px;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:.7s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

@media(max-width:980px){

  .nav-links,
  .nav-call{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links.open{
    display:grid;
    position:absolute;
    top:72px;
    left:4%;
    right:4%;
    background:white;
    border:1px solid var(--line);
    border-radius:20px;
    padding:20px;
    box-shadow:var(--shadow);
  }

  .hero-grid,
  .why-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .service-grid,
  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .area-list{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){

  .section{
    padding:70px 0;
  }

  .brand span{
    font-size:15px;
  }

  .hero-grid{
    min-height:100svh;
    padding-top:96px;
    padding-bottom:70px;
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-copy{
    margin:auto;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:15px;
    max-width:330px;
    margin:auto;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  .hero-card{
    display:none;
  }

  .stats-grid,
  .service-grid,
  .area-list,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .map-box{
    height:360px;
  }

  .section-heading h2{
    font-size:29px;
  }

  .floating-call{
    right:18px;
    bottom:18px;
  }

  .chat-launcher{
    left:18px;
    bottom:18px;
  }
}