:root{
  /* Extracted from logo */
  --brand-blue:#1B7AB7;
  --brand-blue-2:#37B0FF;
  --brand-ink:#0B1220;
  --brand-ink-2:#0E1A2A;

  --bg-outer:#C9D6DF;
  --paper:#ffffff;
  --muted:#6B7280;
  --muted-2:#94A3B8;
  --stroke: rgba(255,255,255,.14);
  --stroke-dark: rgba(15,23,42,.10);

  --hero-1:#0B1220;
  --hero-2:#0B3A5A;

  --accent:#1B7AB7;

  --shadow: 0 22px 70px rgba(2,6,23,.18);
  --shadow-soft: 0 12px 40px rgba(2,6,23,.10);

  --radius: 16px;
  --radius-lg: 26px;

  --max: 980px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font);
  color:#0b1220;
  background: var(--bg-outer);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.page{
  max-width: var(--max);
  margin: 48px auto;
  padding: 0 18px;
}

.shell{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
}

/* Top nav over hero */
.hero{
  background: linear-gradient(135deg, var(--hero-1), var(--hero-2));
  color: #fff;
  padding: 22px 26px 26px;
  position: relative;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 230px;
}
.brand img{
  width: 150px;
  height:auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.25));
}
.navlinks{
  display:flex;
  gap: 20px;
  align-items:center;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.navlinks a{
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.navlinks a:hover{
  color:#fff;
  background: rgba(255,255,255,.08);
}
.navphones{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: 10px;
}
.navphones a{
  display:block;
  white-space:nowrap;
}
.navphones a:hover{ color:#fff; }

.heroGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:center;
}

.heroCopy h1{
  margin: 10px 0 10px;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.8px;
}
.heroCopy p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.6;
  max-width: 50ch;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 12px;
}
.kdot{
  width: 9px; height:9px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  box-shadow: 0 0 0 6px rgba(55,176,255,.15);
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  color:#0b1220;
  font-weight: 900;
  font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{
  transform: translateY(-1px);
  background: #f8fafc;
  border-color: rgba(15,23,42,.18);
}
.btnPrimary{
  border: 0;
  color:#fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  box-shadow: 0 14px 40px rgba(27,122,183,.25);
}
.btnPrimary:hover{ background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-blue)); }

/* Buttons on dark backgrounds */
.hero .btn,
.footer .btn{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
}
.hero .btn:hover,
.footer .btn:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
}

.heroMedia{
  display:flex;
  align-items:center;
  justify-content:center;
}
.heroMedia .card{
  width: 100%;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.heroMedia img{
  width:100%;
  height:auto;
  border-radius: 18px;
}

/* Sections */
.section{
  padding: 26px;
  background:#fff;
}
.sectionTitle{
  text-align:center;
  font-size: 24px;
  margin: 4px 0 18px;
  letter-spacing: -0.3px;
}

.subtle{
  text-align:center;
  margin: -8px auto 18px;
  color: var(--muted);
  font-weight: 650;
  max-width: 62ch;
  line-height:1.6;
}

.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.feature{
  background: #fff;
  border: 1px solid var(--stroke-dark);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  text-align:center;
}
.feature .ico{
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 16px;
  background: rgba(27,122,183,.10);
  border: 1px solid rgba(27,122,183,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.feature h3{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: -0.15px;
}
.feature p{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.45;
}

/* Process block like reference (4 cards with photos) */
.process{
  background: #F2F4F7;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.step{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.step .ph{
  height: 120px;
  background: linear-gradient(135deg, rgba(27,122,183,.12), rgba(2,6,23,.12));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.step .ph svg{ opacity:.9; }
.step .body{ padding: 12px 12px 14px; }
.step h4{
  margin:0 0 6px;
  font-size: 13px;
  letter-spacing:-.1px;
}
.step p{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  font-size: 12.3px;
  line-height: 1.45;
}

/* Pricing band */
.pricing{
  background: #0D3A55;
  color:#fff;
}
.priceGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.priceCard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 16px;
  text-align:center;
}
.priceCard h4{ margin: 6px 0 10px; font-size: 14px; }
.price{
  font-size: 22px;
  font-weight: 950;
  margin: 0 0 2px;
}
.price small{
  display:block;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: 12px;
}
.priceCard .btn{ margin-top: 12px; width: 100%; }

/* Testimonials */
.testimonials{
  background: #fff;
}
.quote{
  max-width: 720px;
  margin: 0 auto;
  text-align:center;
  padding: 10px 10px 0;
}
.quoteMark{
  font-size: 44px;
  line-height: 1;
  color: rgba(27,122,183,.40);
  margin-bottom: 4px;
}
.quoteText{
  font-size: 14px;
  color: #334155;
  font-weight: 650;
  line-height: 1.7;
}
.quoteName{
  margin-top: 10px;
  font-weight: 900;
  color: #0b1220;
  font-size: 13px;
}
.dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  margin: 14px 0 4px;
}
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,.18);
  cursor:pointer;
}
.dot.active{
  width: 18px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
}

/* Contact band */
.contact{
  background: #F2F4F7;
}
.form{
  max-width: 760px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items:center;
  margin-top: 14px;
}
.field{
  width:100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  outline:none;
  font-weight: 800;
  background:#fff;
}
.field::placeholder{ color:#94a3b8; font-weight:700; }
.form .btn{
  border:0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  box-shadow: 0 14px 34px rgba(27,122,183,.20);
  padding: 12px 18px;
}

/* Footer */
.footer{
  background: #0D3A55;
  color:#fff;
  padding: 22px 26px;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.footer h5{
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .2px;
}
.footer a{ color: rgba(255,255,255,.80); font-weight: 700; }
.footer a:hover{ color:#fff; }
.footer p{
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.55;
}
.socials{
  display:flex;
  gap: 10px;
  margin-top: 8px;
}
.social{
  width: 34px; height:34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.copy{
  margin-top: 12px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 650;
}


/* Top right phone pill */
.phonePill{
  display:inline-flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  color:#fff !important;
  font-weight: 950;
  letter-spacing: .2px;
  box-shadow: 0 14px 40px rgba(27,122,183,.25);
  border: 0;
  white-space:nowrap;
  line-height:1;
}
.phonePill:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.phoneIcon{
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.phoneText{ font-size: 13.5px; white-space:nowrap; }

/* Ensure buttons in Contact section are readable on light background */
.contact .btn{
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0b1220;
}
.contact .btn:hover{
  background:#f8fafc;
  border-color: rgba(15,23,42,.18);
}
.contact .btnPrimary{
  color:#fff;
  border:0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
}



/* Keep phone pill on a single line */
.phonePill{ white-space:nowrap; flex-wrap:nowrap; }
.phonePill .phoneText{ line-height:1; }
.phonePill .phoneIcon{ flex:0 0 auto; }

/* responsive */
@media (max-width: 920px){
  .heroGrid{ grid-template-columns: 1fr; }
  .navlinks{ display:none; }
  .navphones{ display:none; }
}
@media (max-width: 860px){
  .features{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .priceGrid{ grid-template-columns: 1fr; }
  .footerGrid{ grid-template-columns: 1fr; }
  .form{ grid-template-columns: 1fr; }
  .heroCopy h1{ font-size: 38px; }
}
