:root {
  --ink: #102033;
  --muted: #5d6d7f;
  --paper: #ffffff;
  --page: #f6f8fb;
  --soft: #eaf1f5;
  --line: #d7e2eb;
  --brand: #1267d8;
  --brand-dark: #0c4898;
  --teal: #0f8f83;
  --amber: #d88916;
  --coral: #d94c4c;
  --shadow: 0 20px 50px rgba(16, 32, 51, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 235, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 88px;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #25384c;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: #e9f2ff;
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--paper);
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--paper);
  background: var(--brand-dark);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(720px, calc(100svh - 132px));
  padding: clamp(80px, 14vh, 130px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  overflow: hidden;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(9, 22, 38, 0.86) 0%, rgba(13, 39, 67, 0.62) 48%, rgba(9, 22, 38, 0.18) 100%),
    url("assets/home-hero-background.png") center / cover;
}

.page-hero {
  min-height: 48svh;
  background:
    linear-gradient(90deg, rgba(9, 22, 38, 0.84) 0%, rgba(9, 22, 38, 0.58) 56%, rgba(9, 22, 38, 0.22) 100%),
    var(--hero-image) center / cover;
}

.hero-content {
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.hero-content.narrow {
  width: min(860px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

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

.hero .eyebrow,
.page-hero .eyebrow {
  color: #8ee8dc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 4.8rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.action-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--paper);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(18, 103, 216, 0.24);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}

.btn-outline {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-band {
  width: 100%;
  margin: 0;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.content-split,
.detail-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.content-split p,
.detail-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.section-heading.compact {
  max-width: 680px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.mission-card,
.highlight-panel,
.contact-form,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card svg,
.highlight-panel svg,
.mission-card svg {
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.service-card p,
.highlight-panel p,
.mission-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 850;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.feature-list div,
.check-list li,
.audience-stack div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  color: #23364b;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.feature-list svg,
.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-section h2 {
  max-width: 720px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.program-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.program-list svg,
.audience-stack svg,
.contact-card svg {
  flex: 0 0 auto;
  color: var(--brand);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.highlight-panel {
  padding: 32px;
  border-top: 5px solid var(--brand);
}

.highlight-panel h3 {
  margin: 18px 0 10px;
}

.highlight-panel.accent-teal {
  border-top-color: var(--teal);
}

.highlight-panel.accent-teal svg {
  color: var(--teal);
}

.highlight-panel.accent-amber {
  border-top-color: var(--amber);
}

.highlight-panel.accent-amber svg {
  color: var(--amber);
}

.highlight-panel.accent-coral {
  border-top-color: var(--coral);
}

.highlight-panel.accent-coral svg {
  color: var(--coral);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  min-height: 260px;
  padding: 34px;
}

.mission-card h2 {
  margin-top: 14px;
  font-size: 2.1rem;
}

.audience-stack {
  display: grid;
  gap: 12px;
}

.stacked-copy p:first-child {
  margin-top: 0;
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 245px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.solution-card:nth-child(3n + 2) {
  border-top-color: var(--teal);
}

.solution-card:nth-child(3n) {
  border-top-color: var(--amber);
}

.solution-card svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.solution-card:nth-child(3n + 2) svg {
  color: var(--teal);
}

.solution-card:nth-child(3n) svg {
  color: var(--amber);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-card.featured {
  color: var(--paper);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: var(--coral);
}

.solution-card.featured svg {
  color: #ffb3b3;
}

.solution-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.process-grid article {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--brand-dark);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 900;
}

.process-grid article:nth-child(even) span {
  background: var(--teal);
}

.business-cta .contact-actions {
  flex: 0 0 auto;
}

.featured-blog {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-blog p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-meta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.blog-meta-panel svg {
  width: 38px;
  height: 38px;
  color: #8ee8dc;
}

.blog-meta-panel h3 {
  margin-top: 18px;
}

.blog-meta-panel .check-list li {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.blog-card-body p {
  margin: 0;
  color: var(--muted);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--brand-dark);
  background: #e9f2ff;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 850;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--brand-dark);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 850;
  color: #24374d;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 103, 216, 0.18);
  border-color: var(--brand);
}

.contact-form .btn {
  margin-top: 8px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  padding: 46px max(18px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.site-footer p {
  max-width: 620px;
  margin: 16px 0 0;
}

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

.footer-logo {
  display: block;
  width: 96px;
  border-radius: 6px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 0;
}

.footer-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: calc(100vw - 44px);
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--paper);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.22), 0 10px 22px rgba(37, 211, 102, 0.26);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-whatsapp:hover {
  color: var(--paper);
  background: #1ebe5d;
  transform: translateY(-2px);
}

.footer-whatsapp img {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.footer-social a:hover {
  color: var(--paper);
  background: var(--brand);
  border-color: var(--brand);
}

.footer-social img {
  display: block;
  width: 17px;
  height: 17px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
  align-content: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1240px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 1080px) {
  .card-grid,
  .feature-list,
  .solution-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .hero,
  .page-hero {
    min-height: auto;
    padding-block: 82px;
  }

  .home-hero,
  .page-hero {
    background-position: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .mission-card h2 {
    font-size: 1.75rem;
  }

  .content-split,
  .detail-layout,
  .contact-layout,
  .two-column,
  .mission-grid,
  .featured-blog,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .feature-list,
  .program-list,
  .solution-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions,
  .action-row {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-menu {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-whatsapp {
    right: 16px;
    bottom: 16px;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
  }

  .service-card,
  .mission-card,
  .highlight-panel,
  .contact-form {
    padding: 22px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
