:root {
  --navy: #0b3a86;
  --navy-deep: #06275d;
  --gold: #ffbf1c;
  --gold-deep: #f0ab00;
  --green: #19a866;
  --ink: #162234;
  --muted: #607189;
  --line: #d9e4f0;
  --paper: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(22, 34, 52, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p,
li,
summary,
small,
strong,
span {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 8px clamp(18px, 5vw, 76px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(22, 34, 52, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 248px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
  margin: -54px -20px -52px -22px;
}

.brand-mark {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2b63c8);
}

.brand-mark::before,
.brand-mark::after,
.heart::before,
.heart::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 10px;
  border: 4px solid var(--gold);
  border-radius: 50%;
}

.heart {
  position: absolute;
  left: 15px;
  top: 17px;
  width: 24px;
  height: 20px;
}

.heart::before,
.heart::after {
  width: 12px;
  height: 19px;
  background: var(--white);
  border-radius: 12px 12px 0 0;
}

.heart::before {
  left: 0;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart::after {
  right: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta {
  padding: 9px 14px;
  color: var(--navy-deep);
  font-weight: 900;
  background: var(--gold);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 95vh;
  padding: 134px clamp(20px, 6vw, 88px) 80px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 39, 93, 0.94), rgba(11, 58, 134, 0.78) 48%, rgba(11, 58, 134, 0.28)),
    linear-gradient(0deg, rgba(6, 39, 93, 0.5), transparent 48%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.pricing-copy h2,
.about-copy h2,
.closing-card h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points span,
.industry-pill,
.service-strip article {
  border-radius: 8px;
}

.hero-points span {
  padding: 10px 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #118551;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
}

.hero-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card strong,
.pricing-card strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-card ul {
  margin: 18px 0 22px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(11, 58, 134, 0.15);
}

.service-strip article {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 126px;
  padding: 24px 18px;
  text-align: center;
  color: var(--white);
  background: var(--navy);
}

.service-strip strong {
  font-size: 1rem;
  line-height: 1.25;
}

.service-strip-icon,
.service-card-icon,
.step-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
}

.service-strip-icon::before,
.service-strip-icon::after,
.service-card-icon::before,
.service-card-icon::after,
.step-icon::before,
.step-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
}

.hospital::before {
  left: 15px;
  top: 13px;
  width: 28px;
  height: 32px;
  border-radius: 4px;
}

.hospital::after {
  left: 25px;
  top: 19px;
  width: 8px;
  height: 20px;
  background:
    linear-gradient(var(--white), var(--white)) center/8px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center/2px 20px no-repeat,
    var(--navy);
}

.bank::before {
  left: 14px;
  top: 17px;
  width: 30px;
  height: 6px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.bank::after {
  left: 16px;
  top: 25px;
  width: 26px;
  height: 16px;
  background:
    linear-gradient(var(--navy), var(--navy)) 0 0/4px 16px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 11px 0/4px 16px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 22px 0/4px 16px no-repeat;
}

.errands::before {
  left: 16px;
  top: 22px;
  width: 26px;
  height: 18px;
  border: 3px solid var(--navy);
  background: transparent;
}

.errands::after {
  left: 22px;
  top: 16px;
  width: 14px;
  height: 8px;
  border: 3px solid var(--navy);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: transparent;
}

.cab::before {
  left: 13px;
  top: 25px;
  width: 32px;
  height: 12px;
  border-radius: 10px 10px 4px 4px;
}

.cab::after {
  left: 18px;
  top: 18px;
  width: 22px;
  height: 10px;
  clip-path: polygon(15% 100%, 85% 100%, 100% 0, 0 0);
}

.whatsapp-banner {
  padding: 18px clamp(20px, 6vw, 88px);
  background: var(--gold);
}

.whatsapp-banner a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  color: var(--navy-deep);
  font-weight: 900;
  background: var(--white);
  border-radius: 999px;
}

.section {
  padding: 82px clamp(20px, 6vw, 88px);
}

.section-heading,
.pricing-copy,
.contact-copy {
  max-width: 760px;
}

.section-heading h2,
.pricing-copy h2,
.about-copy h2,
.closing-card h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.section-heading p:not(.eyebrow),
.pricing-copy p,
.about-copy p,
.service-card li,
.service-card p,
.process-grid p,
.contact-copy p,
.about-values p,
.faq-grid p,
.why-grid p {
  color: var(--muted);
}

.services-grid,
.process-grid,
.why-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

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

.service-card,
.process-grid li,
.why-grid article,
.about-values article,
.faq-grid details,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(22, 34, 52, 0.06);
}

.service-card {
  padding: 26px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.process-section,
.about-section {
  background: var(--paper);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.process-grid li {
  padding: 26px;
}

.step-icon {
  margin-bottom: 18px;
  background: #eaf2ff;
}

.enroll::before {
  left: 17px;
  top: 15px;
  width: 24px;
  height: 28px;
  border: 3px solid var(--navy);
  background: transparent;
}

.enroll::after {
  left: 22px;
  top: 23px;
  width: 14px;
  height: 2px;
  box-shadow: 0 6px 0 var(--navy), 0 12px 0 var(--navy);
}

.executive::before {
  left: 18px;
  top: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.executive::after {
  left: 14px;
  top: 34px;
  width: 30px;
  height: 12px;
  border-radius: 14px 14px 4px 4px;
}

.whatsapp::before {
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 50%;
}

.whatsapp::after {
  left: 24px;
  top: 22px;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(var(--white), var(--white)) center/10px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center/2px 10px no-repeat,
    transparent;
}

.expenses::before {
  left: 19px;
  top: 14px;
  width: 20px;
  height: 28px;
  background: var(--gold);
  border-radius: 4px;
}

.expenses::after {
  left: 25px;
  top: 20px;
  width: 8px;
  height: 16px;
  background:
    linear-gradient(var(--navy), var(--navy)) center/8px 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center/2px 16px no-repeat,
    transparent;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 38px;
  align-items: center;
}

.pricing-card {
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.pricing-card strong {
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 4.6rem);
}

.pricing-card span {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.pricing-card small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::marker {
  color: var(--green);
}

.pricing-note {
  margin-top: 22px;
  padding: 18px;
  background: var(--paper);
  border-radius: 8px;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid article,
.about-values article {
  padding: 24px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: start;
}

.about-values {
  display: grid;
  gap: 16px;
}

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

.faq-grid details {
  padding: 22px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 14px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 460px);
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.closing-cta {
  padding: 0 clamp(20px, 6vw, 88px) 82px;
}

.closing-card {
  padding: 34px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.closing-brand {
  justify-content: center;
  margin-bottom: 24px;
}

.closing-brand .brand-logo {
  width: 280px;
  margin: -62px -24px -60px -26px;
}

.closing-card h2 {
  max-width: 860px;
  margin: 0 auto 28px;
}

@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 66px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-layout,
  .pricing-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 58px;
    padding: 8px 16px;
  }

  .brand-logo {
    width: 196px;
    margin: -42px -16px -40px -18px;
  }

  .hero {
    min-height: 90vh;
    padding: 118px 20px 72px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .closing-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .whatsapp-banner a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }
}
