:root {
  --blue-950: #061326;
  --blue-900: #082044;
  --blue-800: #0b2f66;
  --blue-700: #0c4a9a;
  --blue-600: #1168d8;
  --blue-500: #1688ff;
  --blue-100: #e9f4ff;
  --blue-50: #f4f9ff;
  --text: #102033;
  --muted: #65758b;
  --line: #dbe8f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 32, 68, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #f7fbff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img, svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 105px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 232, 247, 0.8);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 12px 34px rgba(17, 104, 216, 0.28);
  letter-spacing: -0.04em;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #33465d;
}

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

.nav-cta {
  color: var(--white);
  background: var(--blue-700);
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(12, 74, 154, 0.22);
}

.nav-cta:hover {
  background: var(--blue-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--blue-900);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 136, 255, 0.22), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(12, 74, 154, 0.25), transparent 28%),
    linear-gradient(135deg, #f8fcff 0%, #ecf6ff 42%, #ffffff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 48%;
  height: 78%;
  background: linear-gradient(135deg, rgba(12, 74, 154, 0.12), rgba(22, 136, 255, 0.04));
  border-radius: 999px 0 0 0;
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  background: rgba(22, 136, 255, 0.1);
  border: 1px solid rgba(22, 136, 255, 0.16);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow.light {
  color: #dceeff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  color: var(--blue-950);
}

.hero p {
  max-width: 650px;
  margin-top: 26px;
  font-size: 18px;
  color: #4d6179;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 20px 42px rgba(17, 104, 216, 0.28);
}

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

.btn-white {
  color: var(--blue-800);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.btn.full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust span {
  color: #34506e;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  padding: 10px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 245, 255, 0.72));
  box-shadow: var(--shadow);
}

.card-topline {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -38px;
  top: -38px;
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.2);
  filter: blur(2px);
}

.hero-card-inner {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(rgba(6, 19, 38, 0.28), rgba(6, 19, 38, 0.86)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(145deg, var(--blue-900), var(--blue-700) 54%, var(--blue-500));
}

.hero-card-inner::after {
  content: "";
  position: absolute;
  inset: 100px -80px -120px 60px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.status-pill {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #dff0ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: 12px;
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-card p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: #d9eaff;
  margin-top: 16px;
  font-size: 16px;
}

.service-stack {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  gap: 12px;
}

.service-stack div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.service-stack strong {
  color: #9bd0ff;
  font-size: 13px;
}

.service-stack span {
  font-weight: 800;
}

.stats-section {
  position: relative;
  margin-top: -44px;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-grid div {
  background: var(--white);
  padding: 28px;
}

.stats-grid strong {
  display: block;
  color: var(--blue-800);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stats-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2,
.corporate-content h2,
.sectors-grid h2,
.contact-card h2,
.cta-box h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  color: var(--blue-950);
}

.section-head p,
.sectors-grid p,
.contact-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 390px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(8, 32, 68, 0.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 136, 255, 0.42);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-50);
  font-size: 26px;
}

.service-card h3 {
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.12;
  color: var(--blue-950);
  letter-spacing: -0.035em;
}

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

.service-card ul {
  margin-top: 20px;
  padding-left: 18px;
  color: #435770;
  font-size: 14px;
  font-weight: 650;
}

.service-card li + li {
  margin-top: 8px;
}

.blue-band {
  padding: 100px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 136, 255, 0.28), transparent 34%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 58px;
  align-items: center;
}

.corporate-content h2 {
  color: var(--white);
}

.corporate-content p {
  margin-top: 22px;
  color: #c8dcf2;
  font-size: 17px;
}

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

.quality-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.quality-list strong {
  color: #9bd0ff;
  font-size: 14px;
}

.quality-list span {
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f0f8ff);
  border: 1px solid var(--line);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -40px;
  top: -38px;
  border-radius: 50%;
  background: rgba(22, 136, 255, 0.12);
}

.process-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
}

.process-card h3 {
  margin-top: 24px;
  color: var(--blue-950);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.process-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.sectors-section {
  padding-top: 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(8, 32, 68, 0.08);
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-tags span {
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--line);
  font-weight: 800;
}

.cta-section {
  padding: 0 0 105px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 50px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 760px;
  color: var(--white);
}

.cta-box p {
  max-width: 680px;
  margin-top: 14px;
  color: #e0efff;
}

.contact-section {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.quote-form {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(8, 32, 68, 0.08);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  display: block;
  padding: 16px;
  border-radius: 16px;
  background: var(--blue-50);
  color: #38526e;
  font-weight: 700;
}

.quote-form h3 {
  font-size: 26px;
  color: var(--blue-950);
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.quote-form label {
  display: block;
  color: #32465f;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  transition: border .2s ease, box-shadow .2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(22, 136, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(22, 136, 255, 0.09);
}

.footer {
  color: #c7d8ea;
  background: var(--blue-950);
  padding: 50px 0 24px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer .brand strong {
  color: var(--white);
}

.footer .brand small,
.footer p {
  color: #a9bed4;
}

.footer p {
  max-width: 360px;
  margin-top: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #91a8c2;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.42);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: #ffffff;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .corporate-grid,
  .sectors-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-inner {
    min-height: 480px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .section-pad {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-card-inner {
    min-height: 500px;
    padding: 28px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
  }

  .footer-grid,
  .copyright {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .navbar {
    min-height: 76px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand strong {
    font-size: 18px;
  }

  .nav-links {
    top: 76px;
    left: 13px;
    right: 13px;
  }

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

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .stats-section {
    margin-top: 0;
    padding-top: 24px;
    background: #f7fbff;
  }

  .section-head h2,
  .corporate-content h2,
  .sectors-grid h2,
  .contact-card h2,
  .cta-box h2 {
    letter-spacing: -0.055em;
  }

  .sectors-grid,
  .contact-card,
  .quote-form {
    padding: 24px;
  }

  .service-card,
  .process-card {
    min-height: auto;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}
