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

:root {
  --blue: #2f55bd;
  --blue-dark: #203e94;
  --blue-light: #4e8fff;
  --text: #17213b;
  --muted: #66708a;
  --bg: #f7f9ff;
  --white: #ffffff;
  --border: rgba(47, 85, 189, 0.14);
  --radius: 28px;
  --shadow: 0 18px 50px rgba(31, 55, 120, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-small {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
}

.navbar {
  width: min(1120px, calc(100% - 36px));
  margin: 18px auto 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: #5c6680;
}

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

.nav-cta {
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  min-height: 650px;
  margin-top: 16px;
  border-radius: 38px;
  padding: 80px 8%;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(98, 150, 255, 0.42), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(29, 61, 150, 0.55), transparent 32%),
    linear-gradient(135deg, #2548a9, #3f5fc8);
  box-shadow: 0 25px 60px rgba(41, 72, 170, 0.20);
}

.hero-content {
  width: min(780px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 800;
  opacity: 0.78;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  font-weight: 800;
}

.hero h1 span,
.why h2 span,
.cta h2 span {
  color: #68a0ff;
}

.hero p {
  max-width: 700px;
  margin: 25px auto 32px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.btn-primary {
  color: var(--blue-dark);
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.btn-outline {
  color: white;
  border: 2px solid rgba(255,255,255,.72);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,.10);
}

.hero-note {
  margin-top: 25px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #75a7ff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading .eyebrow,
.why .eyebrow,
.cta .eyebrow {
  color: var(--blue);
  opacity: 1;
}

.section-heading h2,
.why h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 15px;
}

.section-heading p,
.why-copy > p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

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

.service-card {
  min-height: 285px;
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(31, 55, 120, 0.15);
}

.service-number {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 32px;
}

.service-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.service-link span {
  margin-left: 6px;
  transition: margin .2s ease;
}

.service-link:hover span {
  margin-left: 10px;
}

.why {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.check-list {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.check-list div {
  font-size: 14px;
  font-weight: 600;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  border-radius: 50%;
  background: #e8efff;
  color: var(--blue);
  font-size: 12px;
}

.why-card {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(145deg, #2548a9, #3f5fc8);
  color: white;
  box-shadow: 0 25px 60px rgba(41, 72, 170, 0.20);
}

.mini-label {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  opacity: .65;
}

.arrow-line {
  text-align: center;
  opacity: .45;
  padding: 8px 0;
}

.process-box {
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.process-box.active {
  background: white;
  color: var(--blue);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-image {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image::before,
.project-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
}

.project-image::before {
  width: 280px;
  height: 280px;
}

.project-image::after {
  width: 180px;
  height: 180px;
}

.project-one {
  background: linear-gradient(135deg, #2748a7, #5d8fff);
}

.project-two {
  background: linear-gradient(135deg, #182e73, #4363c4);
}

.project-image span {
  z-index: 1;
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.project-info {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-type {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.project-info h3 {
  margin-top: 5px;
  font-size: 18px;
}

.project-info > a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  font-size: 20px;
}

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

.step {
  padding: 25px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--border);
}

.step > span {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 800;
}

.step h3 {
  font-size: 17px;
  margin: 25px 0 9px;
}

.step p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.cta {
  margin-bottom: 50px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 20%, rgba(102,155,255,.38), transparent 30%),
    linear-gradient(135deg, #203f97, #3e60c9);
  color: white;
  text-align: center;
}

.cta-inner {
  max-width: 650px;
  margin: auto;
}

.cta .eyebrow {
  color: #a9c8ff;
}

.cta h2 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.cta p {
  margin: 20px auto 27px;
  max-width: 560px;
  color: rgba(255,255,255,.84);
  line-height: 1.75;
  font-size: 14px;
}

.btn-whatsapp {
  color: #173178;
  background: white;
}

.contact-options {
  width: min(560px, 100%);
  margin: 28px auto 0;
}

.contact-options .btn {
  width: 100%;
}

.btn-consultation {
  color: var(--blue-dark);
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.btn-consultation:hover {
  box-shadow: 0 15px 32px rgba(0,0,0,.14);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 700;
}

.or-divider::before,
.or-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.20);
}

.response-note {
  font-size: 11px !important;
  opacity: .55;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

.footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 35px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 15px;
}

.footer p,
.footer small {
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
}

.footer small {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #1fbd68;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(31, 189, 104, .28);
  z-index: 20;
}

@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .navbar {
    min-height: 60px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 650px;
    padding: 65px 24px;
    border-radius: 30px;
  }

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

  .why {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer small {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 28px, 1120px);
    padding: 68px 0;
  }

  .section-small {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    width: calc(100% - 28px);
    margin-top: 12px;
  }

  .logo {
    font-size: 21px;
  }

  .hero {
    margin-top: 8px;
    min-height: 620px;
    padding: 54px 18px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 22px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .stat {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .stat strong {
    font-size: 25px;
    margin: 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .why h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 245px;
    padding: 23px;
  }

  .service-number {
    margin-bottom: 22px;
  }

  .why-card {
    padding: 25px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    min-height: 240px;
  }

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

  .cta {
    width: calc(100% - 28px);
    border-radius: 30px;
    padding: 65px 18px;
  }

  .cta h2 {
    font-size: 41px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

