﻿:root {
  --color-black: #050505;
  --color-soft-black: #0B0B0B;
  --color-charcoal: #151515;
  --color-graphite: #1D1D1D;
  --color-teal: #19C7B8;
  --color-blue-dark: #005A9C;
  --color-muted-brand: #64748B;
  --color-blue-soft: #2F80ED;
  --color-white: #FFFFFF;
  --color-warm-white: #F8F6F0;
  --color-light-grey: #E5E5E5;
  --color-muted-text: #A6A6A6;
  --color-text-light: #F5F5F5;
  --color-text-dark: #111111;
  --dark: var(--color-charcoal);
  --deep: var(--color-black);
  --accent: var(--color-teal);
  --accent-bright: var(--color-teal);
  --accent-hover: var(--color-blue-soft);
  --silver: var(--color-muted-text);
  --soft: var(--color-warm-white);
  --outer: var(--color-soft-black);
  --border: rgba(47, 128, 237, 0.22);
  --text: var(--color-text-dark);
  --white: var(--color-white);
  --content-max: 1520px;
  --page-pad: clamp(24px, 4vw, 72px);
  --content-pad: max(var(--page-pad), calc((100vw - var(--content-max)) / 2 + var(--page-pad)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--outer);
  color: var(--text);
  font-family: "Poppins", "Avenir Next", Avenir, Arial, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: 100%;
  margin: 0;
}

.announcement {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 11px 26px;
  color: #F5F5F5;
  background: var(--deep);
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
}

.announcement a {
  color: #2F80ED;
  white-space: nowrap;
}

.page-card {
  margin-top: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 128, 237, 0.14);
  border-radius: 0;
  box-shadow: 0 22px 60px rgba(5, 5, 5, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px var(--content-pad);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47, 128, 237, 0.18);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.16);
}

.brand img {
  display: block;
  width: 174px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #4A4A4A;
}

.primary-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav .active {
  color: var(--accent);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--accent);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--accent);
  background: var(--white);
  border-color: var(--border);
}

.btn-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 48px;
  min-height: 100vh;
  margin: 0;
  padding: 82px var(--content-pad);
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 14%, rgba(47, 128, 237, 0.16), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--dark));
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section h2,
.split-section h2,
.selector-section h2,
.ai-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #E5E5E5;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-visual {
  position: absolute;
  top: 50%;
  left: 70%;
  z-index: 2;
  width: min(44vw, 840px);
  height: min(66vh, 660px);
  min-height: 430px;
  filter: none;
  transform: translate(-50%, -50%);
}

.monitor-card {
  position: absolute;
  right: 4%;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.card-a {
  top: 26px;
  right: 6%;
}

.card-b {
  top: 154px;
  right: 34%;
}

.card-c {
  top: 270px;
  right: 8%;
}

.card-d {
  top: 394px;
  right: 30%;
}

.monitor-card strong,
.monitor-card small {
  display: block;
}

.monitor-card small {
  margin-top: 7px;
  color: #64748B;
}

.status-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 6px rgba(47, 128, 237, 0.16);
}

.status-dot.grey {
  background: #64748B;
  box-shadow: 0 0 0 6px rgba(186, 197, 201, 0.14);
}

.circuit-lines {
  position: absolute;
  right: 0;
  bottom: -92px;
  width: 250px;
}

.circuit-lines span {
  display: block;
  height: 2px;
  margin: 35px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--accent-bright), rgba(255, 255, 255, 0.62));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--border);
}

.trust-strip article {
  min-height: 118px;
  padding: 24px;
  background: #F8F6F0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 8px;
  color: #4A4A4A;
  line-height: 1.55;
}

.section,
.split-section,
.selector-section,
.ai-section,
.contact-section {
  margin: 0 auto;
  padding: 92px var(--page-pad);
  width: min(100%, calc(var(--content-max) + (var(--page-pad) * 2)));
}

.split-section,
.selector-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.split-section > *,
.selector-section > *,
.contact-section > * {
  min-width: 0;
}

.split-section p,
.selector-copy p,
.ai-section p,
.contact-section p {
  color: #4A4A4A;
  font-size: 17px;
  line-height: 1.7;
}

.diagram-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  min-height: 340px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--soft);
}

.node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--dark);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.main-node,
.result-node {
  color: var(--white);
  background: var(--dark);
}

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

.section-heading h2,
.split-section h2,
.selector-section h2,
.ai-section h2,
.contact-section h2 {
  font-size: clamp(32px, 3.4vw, 48px);
}

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

.muted {
  width: 100%;
  max-width: none;
  padding-inline: var(--content-pad);
  background: #F8F6F0;
}

.info-card,
.service-card,
.recommendation {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(5, 5, 5, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-card:hover,
.service-card:hover {
  border-color: rgba(47, 128, 237, 0.45);
  transform: translateY(-3px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(47, 128, 237, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.info-card h3,
.service-card h3,
.recommendation h3 {
  margin: 22px 0 10px;
  color: var(--dark);
  font-size: 21px;
}

.info-card p,
.service-card p,
.recommendation p {
  color: #4A4A4A;
  line-height: 1.66;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
}

.selector-section {
  align-items: stretch;
}

.selector-options {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.selector-options button {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--dark);
  background: var(--white);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.selector-options .selected {
  border-color: var(--accent);
  background: rgba(47, 128, 237, 0.12);
}

.recommendation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.recommendation h3,
.recommendation p {
  color: var(--white);
}

.recommendation p {
  color: #E5E5E5;
}

.recommendation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.process-flow {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 26px;
  background: var(--soft);
}

.process-flow span {
  position: relative;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--dark);
  font-weight: 800;
}

.process-flow span::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.accordion,
.faq-list {
  display: grid;
  gap: 12px;
}

.accordion button,
.faq-list button {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--dark);
  background: var(--white);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion button::after,
.faq-list button::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.accordion button[aria-expanded="true"]::after,
.faq-list button[aria-expanded="true"]::after {
  content: "-";
}

.accordion div,
.faq-list div {
  padding: 0 20px 12px;
  color: #4A4A4A;
  line-height: 1.65;
}

.ai-section {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 46px var(--content-pad);
  border-radius: 28px;
  color: var(--white);
  background: var(--deep);
}

.ai-section h2,
.contact-section h2 {
  color: var(--white);
}

.ai-section p {
  margin: 0;
  color: #E5E5E5;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.value-grid span {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--dark);
  background: #F8F6F0;
  font-weight: 700;
}

.faq-section {
  padding-top: 20px;
}

.contact-section {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 58px var(--content-pad);
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 128, 237, 0.16), transparent 30%),
    var(--dark);
}

.contact-section p {
  color: #E5E5E5;
}

.whatsapp-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-card a {
  color: #2F80ED;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 22px;
  color: var(--dark);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--text);
  background: #FFFFFF;
}

.contact-form textarea {
  resize: vertical;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 10px;
}

.consent-field input {
  width: auto;
  margin-top: 3px;
}

.consent-field .field-error {
  grid-column: 1 / -1;
}

.field-error,
.form-status {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.field-error,
.form-status.error {
  color: #b42318;
}

.form-status.success {
  color: var(--accent);
}

.form-note {
  margin: 0;
  color: #6A6A6A;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 40px var(--content-pad) 46px;
  border-top: 1px solid var(--border);
  color: #4A4A4A;
}

.site-footer img {
  width: 190px;
  max-width: 100%;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--dark);
}

.site-footer a {
  margin-top: 9px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.26);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-shell {
    width: 100%;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
  }

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

  .header-cta {
    display: none;
  }

  .hero,
  .split-section,
  .selector-section,
  .ai-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 60px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: 100%;
    margin-block: 0;
  }

  .announcement {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }

  .page-card {
    border-radius: 0;
  }

  .site-header {
    padding: 18px;
  }

  .brand img {
    width: 148px;
  }

  .hero,
  .section,
  .split-section,
  .selector-section,
  .contact-section {
    margin-inline: 0;
  }

  .hero {
    padding: 40px 24px;
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .monitor-card {
    right: 0;
    width: 180px;
  }

  .card-b {
    right: 8%;
  }

  .card-c,
  .card-d {
    display: none;
  }

  .trust-strip,
  .card-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: calc(100% - 36px);
    margin-inline: auto;
  }

  .muted {
    padding-inline: 18px;
  }

  .section,
  .split-section,
  .selector-section {
    width: 100%;
    padding-inline: 18px;
    padding-block: 58px;
  }

  .ai-section {
    margin-inline: 0;
    padding: 30px;
  }

  .contact-section {
    padding: 34px 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 78px;
    padding-inline: clamp(18px, 4vw, 34px);
  }

  .primary-nav {
    position: fixed;
    inset: 78px 0 0;
    z-index: 18;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 28px clamp(22px, 6vw, 56px);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border);
    box-shadow: 0 28px 60px rgba(13, 27, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(208, 217, 215, 0.72);
    font-size: 18px;
  }

  .primary-nav.open + .header-cta {
    position: fixed;
    left: clamp(22px, 6vw, 56px);
    right: clamp(22px, 6vw, 56px);
    bottom: 28px;
    z-index: 19;
    display: inline-flex;
  }

  .hero {
    align-items: start;
    gap: 40px;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

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

  .split-section,
  .selector-section,
  .contact-section,
  .ai-section {
    gap: 34px;
  }

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

  .carousel,
  .portfolio,
  .image-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
}

@media (max-width: 768px) {
  .announcement,
  .site-header,
  .hero,
  .section,
  .split-section,
  .selector-section,
  .ai-section,
  .contact-section,
  .site-footer {
    padding-inline: clamp(18px, 5vw, 28px);
  }

  .announcement {
    gap: 8px;
  }

  .hero {
    padding-block: 44px 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.08;
  }

  .section-heading h2,
  .split-section h2,
  .selector-section h2,
  .ai-section h2,
  .contact-section h2 {
    font-size: clamp(29px, 8vw, 40px);
  }

  .hero-text,
  .split-section p,
  .selector-copy p,
  .ai-section p,
  .contact-section p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .recommendation-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 390px;
    overflow: hidden;
  }

  .monitor-card {
    width: min(190px, 52vw);
    padding: 16px;
  }

  .card-a {
    top: 12px;
    right: 0;
  }

  .card-b {
    top: 120px;
    right: auto;
    left: 0;
  }

  .circuit-lines {
    right: 0;
    bottom: 100px;
    width: min(220px, 64vw);
  }

  .diagram-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .card-grid,
  .coverage-grid,
  .trust-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card,
  .recommendation,
  .contact-form {
    padding: 24px;
  }

  .selector-options button,
  .accordion button,
  .faq-list button {
    min-height: 52px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 132px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    inset: 72px 0 0;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .hero-visual {
    min-height: 350px;
  }

  .monitor-card {
    width: min(178px, 56vw);
  }

  .circuit-lines {
    width: min(190px, 58vw);
  }

  .floating-whatsapp {
    max-width: calc(100vw - 28px);
  }
}

@media (max-width: 360px) {
  .announcement,
  .site-header,
  .hero,
  .section,
  .split-section,
  .selector-section,
  .ai-section,
  .contact-section,
  .site-footer {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .monitor-card {
    width: 164px;
  }
}

/* Hero layout correction: force a true left content / right visual column. */
.hero {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  align-items: center;
  min-height: auto;
  padding: clamp(36px, 5vh, 52px) clamp(48px, 7vw, 140px);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.hero-visual {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 430px;
  overflow: visible;
  transform: none;
}

.hero-card {
  position: absolute;
  z-index: 2;
  width: clamp(210px, 15vw, 250px);
}

.card-a {
  top: 12px;
  right: 2%;
}

.card-b {
  top: 112px;
  left: 34%;
  right: auto;
}

.card-c {
  top: 214px;
  right: 0;
}

.card-d {
  bottom: 10px;
  left: 42%;
  right: auto;
  top: auto;
}

.hero-lines {
  display: block;
  position: static;
  flex: 0 0 clamp(180px, 16vw, 260px);
  width: clamp(180px, 16vw, 260px);
  height: 58px;
  margin-left: 10px;
  z-index: 0;
  opacity: 0.9;
}

.hero-actions .hero-lines {
  display: grid;
  gap: 14px;
  align-content: center;
  align-self: center;
}

.hero-actions .hero-lines span {
  margin: 0;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
    gap: 36px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card {
    width: 210px;
  }

  .card-a {
    right: 4%;
  }

  .card-b {
    left: 0;
  }

  .card-c {
    right: 0;
  }

  .card-d {
    left: 6%;
    bottom: 0;
  }

  .hero-lines {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
  }

  .hero-card {
    position: static;
    display: block;
    width: 100%;
  }

  .hero-lines {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

/* Absolute final placement: move Audit & Compliance away from Support. */
.hero-visual {
  position: relative;
  display: block;
  min-height: 420px;
  width: 100%;
  overflow: visible;
}

.hero-visual .hero-card {
  position: absolute;
  width: clamp(204px, 13.4vw, 236px);
  min-height: 98px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  top: 24px;
  right: 5%;
}

.hero-visual .card-e {
  top: 34px;
  left: 15%;
}

.hero-visual .card-b {
  top: 172px;
  left: 34%;
}

.hero-visual .card-c {
  top: 214px;
  right: 0;
}

.hero-visual .card-d {
  top: 306px;
  bottom: auto;
  left: 8%;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

.positioning .flow-items {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.positioning .evidence-flow .node:nth-child(1) {
  grid-column: 1 / span 4;
}

.positioning .evidence-flow .node:nth-child(2) {
  grid-column: 5 / span 4;
}

.positioning .evidence-flow .node:nth-child(3) {
  grid-column: 9 / span 4;
}

.positioning .evidence-flow .node:nth-child(4) {
  grid-column: 2 / span 6;
}

.positioning .evidence-flow .node:nth-child(5) {
  grid-column: 8 / span 4;
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 390px;
  }

  .hero-visual .hero-card {
    width: clamp(186px, 20vw, 218px);
    min-height: 96px;
  }

  .hero-visual .card-a {
    top: 8px;
    right: 4%;
  }

  .hero-visual .card-e {
    top: 28px;
    left: 8%;
  }

  .hero-visual .card-b {
    top: 146px;
    left: 31%;
  }

  .hero-visual .card-c {
    top: 196px;
    right: 0;
  }

  .hero-visual .card-d {
    top: 284px;
    bottom: auto;
    left: 5%;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    position: static;
    width: 100%;
  }

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

  .positioning .evidence-flow .node:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .positioning .flow-items,
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

/* Final targeted hero-card placement: Audit & Compliance in upper-middle gap. */
.hero-visual {
  position: relative;
  display: block;
  min-height: 420px;
  width: 100%;
  overflow: visible;
}

.hero-visual .hero-card {
  position: absolute;
  width: clamp(204px, 13.4vw, 236px);
  min-height: 98px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  top: 24px;
  right: 5%;
}

.hero-visual .card-e {
  top: 34px;
  left: 15%;
}

.hero-visual .card-b {
  top: 172px;
  left: 34%;
}

.hero-visual .card-c {
  top: 214px;
  right: 0;
}

.hero-visual .card-d {
  top: 306px;
  left: 8%;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

.positioning .flow-items {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.positioning .evidence-flow .node {
  min-height: 68px;
  padding: 16px 18px;
}

.positioning .evidence-flow .node:nth-child(1) {
  grid-column: 1 / span 4;
}

.positioning .evidence-flow .node:nth-child(2) {
  grid-column: 5 / span 4;
}

.positioning .evidence-flow .node:nth-child(3) {
  grid-column: 9 / span 4;
}

.positioning .evidence-flow .node:nth-child(4) {
  grid-column: 2 / span 6;
}

.positioning .evidence-flow .node:nth-child(5) {
  grid-column: 8 / span 4;
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 390px;
  }

  .hero-visual .hero-card {
    width: clamp(186px, 20vw, 218px);
    min-height: 96px;
  }

  .hero-visual .card-a {
    top: 8px;
    right: 4%;
  }

  .hero-visual .card-e {
    top: 28px;
    left: 8%;
  }

  .hero-visual .card-b {
    top: 146px;
    left: 31%;
  }

  .hero-visual .card-c {
    top: 196px;
    right: 0;
  }

  .hero-visual .card-d {
    top: 284px;
    left: 5%;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    position: static;
    width: 100%;
  }

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

  .positioning .evidence-flow .node:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .positioning .flow-items,
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

/* Final correction: separate Audit & Compliance from Support and widen flow steps. */
.hero-visual {
  position: relative;
  display: block;
  min-height: 420px;
  width: 100%;
  overflow: visible;
}

.hero-visual .hero-card {
  position: absolute;
  width: clamp(204px, 13.4vw, 236px);
  min-height: 98px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  top: 18px;
  right: 6%;
}

.hero-visual .card-b {
  top: 116px;
  left: 8%;
}

.hero-visual .card-e {
  top: 104px;
  left: 44%;
}

.hero-visual .card-c {
  top: 222px;
  right: 0;
}

.hero-visual .card-d {
  top: 292px;
  left: 16%;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

.positioning .flow-items {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.positioning .evidence-flow .node {
  min-height: 68px;
  padding: 16px 18px;
  white-space: normal;
}

.positioning .evidence-flow .node:nth-child(1) {
  grid-column: 1 / span 4;
}

.positioning .evidence-flow .node:nth-child(2) {
  grid-column: 5 / span 4;
}

.positioning .evidence-flow .node:nth-child(3) {
  grid-column: 9 / span 4;
}

.positioning .evidence-flow .node:nth-child(4) {
  grid-column: 2 / span 5;
}

.positioning .evidence-flow .node:nth-child(5) {
  grid-column: 7 / span 5;
}

.positioning .evidence-flow .node:nth-child(3)::after,
.positioning .evidence-flow .node:nth-child(5)::after {
  display: none;
}

.positioning .evidence-flow .node:nth-child(1)::after,
.positioning .evidence-flow .node:nth-child(2)::after,
.positioning .evidence-flow .node:nth-child(4)::after {
  display: block;
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 390px;
  }

  .hero-visual .hero-card {
    width: clamp(186px, 20vw, 218px);
    min-height: 96px;
  }

  .hero-visual .card-a {
    top: 4px;
    right: 4%;
  }

  .hero-visual .card-b {
    top: 100px;
    left: 0;
  }

  .hero-visual .card-e {
    top: 90px;
    left: 43%;
  }

  .hero-visual .card-c {
    top: 202px;
    right: 0;
  }

  .hero-visual .card-d {
    top: 276px;
    left: 9%;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    position: static;
    width: 100%;
  }

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

  .positioning .evidence-flow .node:nth-child(n) {
    grid-column: auto;
  }

  .positioning .evidence-flow .node::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .positioning .flow-items,
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

/* Final homepage visual balance: staggered but intentional hero cards. */
.hero-visual {
  position: relative;
  display: block;
  min-height: 390px;
}

.hero-visual .hero-card {
  position: absolute;
  width: clamp(208px, 13.6vw, 238px);
  min-height: 98px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  top: 20px;
  right: 8%;
}

.hero-visual .card-b {
  top: 96px;
  left: 13%;
}

.hero-visual .card-c {
  top: 174px;
  right: 2%;
}

.hero-visual .card-e {
  top: 250px;
  left: 27%;
}

.hero-visual .card-d {
  top: 302px;
  left: 4%;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 370px;
  }

  .hero-visual .hero-card {
    width: clamp(184px, 20vw, 218px);
    min-height: 96px;
  }

  .hero-visual .card-a {
    top: 8px;
    right: 5%;
  }

  .hero-visual .card-b {
    top: 88px;
    left: 0;
  }

  .hero-visual .card-c {
    top: 166px;
    right: 0;
  }

  .hero-visual .card-e {
    top: 238px;
    left: 25%;
  }

  .hero-visual .card-d {
    top: 284px;
    left: 6%;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    position: static;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

/* Absolute final placement: move Audit & Compliance away from Support. */
.hero-visual {
  position: relative;
  display: block;
  min-height: 420px;
  width: 100%;
  overflow: visible;
}

.hero-visual .hero-card {
  position: absolute;
  width: clamp(204px, 13.4vw, 236px);
  min-height: 98px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  top: 24px;
  right: 5%;
}

.hero-visual .card-e {
  top: 34px;
  left: 15%;
}

.hero-visual .card-b {
  top: 172px;
  left: 34%;
}

.hero-visual .card-c {
  top: 214px;
  right: 0;
}

.hero-visual .card-d {
  top: 306px;
  bottom: auto;
  left: 8%;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

.positioning .flow-items {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.positioning .evidence-flow .node:nth-child(1) {
  grid-column: 1 / span 4;
}

.positioning .evidence-flow .node:nth-child(2) {
  grid-column: 5 / span 4;
}

.positioning .evidence-flow .node:nth-child(3) {
  grid-column: 9 / span 4;
}

.positioning .evidence-flow .node:nth-child(4) {
  grid-column: 2 / span 6;
}

.positioning .evidence-flow .node:nth-child(5) {
  grid-column: 8 / span 4;
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 390px;
  }

  .hero-visual .hero-card {
    width: clamp(186px, 20vw, 218px);
    min-height: 96px;
  }

  .hero-visual .card-a {
    top: 8px;
    right: 4%;
  }

  .hero-visual .card-e {
    top: 28px;
    left: 8%;
  }

  .hero-visual .card-b {
    top: 146px;
    left: 31%;
  }

  .hero-visual .card-c {
    top: 196px;
    right: 0;
  }

  .hero-visual .card-d {
    top: 284px;
    bottom: auto;
    left: 5%;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    position: static;
    width: 100%;
  }

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

  .positioning .evidence-flow .node:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .positioning .flow-items,
  .hero-visual {
    grid-template-columns: 1fr;
  }
}



/* Mobile navigation and floating CTA fix. Desktop rules above remain unchanged. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto auto;
    overflow: visible;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    cursor: pointer;
  }

  .primary-nav {
    position: absolute;
    inset: auto;
    top: calc(100% + 10px);
    left: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    grid-column: auto;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 14px;
    color: var(--color-text-dark);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(47, 128, 237, 0.25);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

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

  .primary-nav a {
    display: block;
    padding: 14px 16px;
    border: 0;
    border-radius: 12px;
    color: #111111;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }

  .primary-nav a:hover,
  .primary-nav .active {
    color: var(--color-teal);
    background: rgba(47, 128, 237, 0.12);
  }

  .primary-nav.open + .header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .floating-consultation,
  .floating-book-consultation,
  .sticky-consultation {
    display: none !important;
  }

  .hero-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  .floating-home {
    left: 16px;
    bottom: 16px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 999px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    z-index: 1001;
    max-width: 150px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
}


/* Legacy preview theme overrides. */
body {
  background: var(--color-soft-black);
}

.announcement {
  color: var(--color-text-light);
  background: var(--color-black);
}

.announcement a,
.primary-nav a:hover,
.primary-nav .active,
.eyebrow,
.service-card a,
.accordion button::after,
.faq-list button::after,
.form-status.success {
  color: var(--color-teal);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(47, 128, 237, 0.22);
}

.page-card {
  background: var(--color-white);
  border-color: rgba(47, 128, 237, 0.16);
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.22);
}

.header-cta,
.btn-primary {
  color: var(--color-black);
  background: var(--color-teal);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--color-blue-soft);
}

.btn-secondary {
  color: var(--color-black);
  background: var(--color-warm-white);
  border-color: rgba(47, 128, 237, 0.42);
}

.btn-secondary:hover {
  background: rgba(47, 128, 237, 0.12);
}

.btn-ghost {
  color: var(--color-text-light);
  border-color: rgba(47, 128, 237, 0.55);
}

.btn-ghost:hover {
  background: rgba(47, 128, 237, 0.13);
}

.hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(47, 128, 237, 0.16), transparent 30%),
    linear-gradient(135deg, var(--color-black), var(--color-charcoal));
}

.hero h1,
.ai-section h2,
.contact-section h2 {
  color: var(--color-warm-white);
}

.hero-text,
.ai-section p,
.contact-section p,
.recommendation p {
  color: var(--color-light-grey);
}

.monitor-card,
.whatsapp-card {
  border-color: rgba(47, 128, 237, 0.24);
  background: rgba(29, 29, 29, 0.86);
  box-shadow: 0 22px 44px rgba(5, 5, 5, 0.24);
}

.monitor-card small {
  color: var(--color-muted-brand);
}

.status-dot {
  background: var(--color-teal);
  box-shadow: 0 0 0 6px rgba(47, 128, 237, 0.16);
}

.circuit-lines span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--color-teal), rgba(25, 199, 184, 0.62));
}

.trust-strip,
.diagram-panel,
.process-flow {
  border-color: rgba(47, 128, 237, 0.22);
  background: rgba(47, 128, 237, 0.18);
}

.trust-strip article,
.muted,
.process-flow span,
.value-grid span {
  background: var(--color-warm-white);
}

.info-card,
.service-card,
.recommendation,
.node,
.selector-options button,
.accordion button,
.faq-list button {
  border-color: rgba(47, 128, 237, 0.22);
}

.info-card:hover,
.service-card:hover,
.selector-options .selected {
  border-color: rgba(47, 128, 237, 0.58);
}

.icon {
  color: var(--color-blue-dark);
  background: rgba(47, 128, 237, 0.14);
}

.main-node,
.result-node,
.recommendation,
.ai-section,
.contact-section {
  background: var(--color-charcoal);
}

.contact-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 128, 237, 0.16), transparent 30%),
    linear-gradient(135deg, var(--color-black), var(--color-graphite));
}

.whatsapp-card a {
  color: var(--color-blue-soft);
}

.contact-form {
  color: var(--color-text-dark);
  background: var(--color-white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(17, 17, 17, 0.16);
  color: var(--color-text-dark);
  background: var(--color-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-teal);
  outline: 3px solid rgba(47, 128, 237, 0.18);
}

.site-footer {
  color: var(--color-muted-text);
  background: var(--color-black);
  border-top-color: rgba(47, 128, 237, 0.22);
}

.site-footer img {
  width: 220px;
  padding: 14px 18px;
  border-radius: 0;
  background: var(--color-white);
}

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

.site-footer a {
  color: var(--color-text-light);
}

.site-footer a:hover {
  color: var(--color-teal);
}

.floating-whatsapp {
  color: var(--color-black);
  background: var(--color-teal);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.26);
}

.content-hero {
  padding: clamp(48px, 6vw, 76px) var(--content-pad);
  color: var(--color-text-light);
  background:
    radial-gradient(circle at 82% 12%, rgba(47, 128, 237, 0.14), transparent 30%),
    linear-gradient(135deg, var(--color-black), var(--color-charcoal));
}

.content-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--color-warm-white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
}

.content-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--color-light-grey);
  font-size: 18px;
  line-height: 1.65;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-note-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--color-warm-white);
}

.trust-note-section h2 {
  max-width: 720px;
  margin: 0;
  color: var(--color-text-dark);
  font-size: clamp(28px, 3vw, 40px);
}

.trust-note-section p:not(.eyebrow) {
  max-width: 820px;
  color: #4A4A4A;
  font-size: 17px;
  line-height: 1.7;
}

.page-section {
  padding-top: clamp(48px, 5vw, 68px);
  padding-bottom: clamp(48px, 5vw, 68px);
}

.dark-feature {
  width: 100%;
  max-width: none;
  padding-inline: var(--content-pad);
  color: var(--color-text-light);
  background: var(--color-charcoal);
}

.dark-feature h2 {
  color: var(--color-warm-white);
}

.dark-feature p {
  color: var(--color-light-grey);
}

.about-content {
  max-width: 980px;
}

.about-content h2 {
  margin: 34px 0 12px;
  color: var(--color-text-dark);
  font-size: clamp(26px, 3vw, 36px);
}

.about-content p,
.about-content li {
  color: #4A4A4A;
  font-size: 17px;
  line-height: 1.72;
}

.about-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-content {
  max-width: 980px;
}

.legal-content h2,
.contact-process h2 {
  margin: 34px 0 12px;
  color: var(--color-text-dark);
  font-size: clamp(26px, 3vw, 36px);
}

.legal-content p,
.legal-content li,
.legal-content dd,
.contact-process p {
  color: #4A4A4A;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content a,
.privacy-note a {
  color: var(--color-blue-dark);
  font-weight: 800;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-content dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px 18px;
  margin: 18px 0;
}

.legal-content dt {
  color: var(--color-text-dark);
  font-weight: 800;
}

.privacy-note {
  margin: 0;
  color: #5A5A5A;
  font-size: 13px;
  line-height: 1.55;
}

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

.process-steps article {
  padding: 22px;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 18px;
  background: var(--color-warm-white);
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--color-black);
  background: var(--color-teal);
  font-weight: 900;
}

.process-steps h3 {
  margin: 16px 0 8px;
  color: var(--color-text-dark);
}

.important-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--color-teal);
  color: var(--color-text-dark);
  background: var(--color-warm-white);
  font-weight: 800;
}

.site-footer {
  grid-template-columns: 1.35fr repeat(4, 1fr);
}

@media (max-width: 1040px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-note-section {
    grid-template-columns: 1fr;
  }

  .process-steps,
  .legal-content dl {
    grid-template-columns: 1fr;
  }
}

/* Layout refinement preview. */
.site-header {
  padding-top: 16px;
  padding-bottom: 16px;
  grid-template-columns: auto 1fr;
}

.brand img {
  width: 166px;
}

.primary-nav {
  justify-content: flex-end;
}

.hero {
  min-height: auto;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.section,
.split-section,
.selector-section {
  padding-top: clamp(56px, 6vw, 72px);
  padding-bottom: clamp(56px, 6vw, 72px);
}

.ai-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.contact-section {
  padding-top: clamp(48px, 5vw, 64px);
  padding-bottom: clamp(48px, 5vw, 64px);
}

.final-cta {
  align-items: center;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.faq-section {
  padding-top: 8px;
}

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

.trust-strip {
  margin-top: 18px;
}

.trust-strip article {
  min-height: 96px;
  padding: 20px;
}

.site-footer {
  padding-top: 32px;
  padding-bottom: 34px;
}

.site-footer img {
  width: 220px;
  padding: 0;
  background: transparent;
}

.contact-intro {
  padding: 58px var(--content-pad) 34px;
  color: var(--color-text-light);
  background:
    radial-gradient(circle at 82% 10%, rgba(47, 128, 237, 0.14), transparent 30%),
    linear-gradient(135deg, var(--color-black), var(--color-charcoal));
}

.contact-intro h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-warm-white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
}

.contact-intro p:not(.eyebrow) {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--color-light-grey);
  font-size: 18px;
  line-height: 1.65;
}

.floating-home {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--color-black);
  background: var(--color-teal);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-home:hover {
  background: var(--color-blue-soft);
  transform: translateY(-2px);
}

.floating-home svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .split-section,
  .selector-section,
  .ai-section,
  .contact-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .contact-intro {
    padding: 44px clamp(18px, 5vw, 28px) 30px;
  }
}

@media (max-width: 640px) {
  .floating-home {
    left: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .floating-home svg {
    width: 21px;
    height: 21px;
  }

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

/* Final hero refinement: compact spacing, CTA-aligned strips, right-side cards. */
.hero {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  padding: clamp(34px, 5vh, 48px) clamp(44px, 7vw, 136px);
}

.hero-content {
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.hero-actions .hero-lines {
  display: grid;
  flex: 0 0 clamp(118px, 8vw, 170px);
  width: clamp(118px, 8vw, 170px);
  height: 42px;
  margin-left: 6px;
  gap: 10px;
}

.card-a {
  top: 0;
  right: 2%;
}

.card-b {
  top: 124px;
  left: 32%;
}

.card-c {
  top: 226px;
  right: 0;
}

.card-d {
  bottom: 0;
  left: 18%;
}

@media (max-width: 1300px) and (min-width: 1181px) {
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .hero-lines {
    flex-basis: 90px;
    width: 90px;
    margin-left: 4px;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .hero-actions .hero-lines {
    display: none;
  }

  .card-a {
    top: 0;
    right: 4%;
  }

  .card-b {
    top: 118px;
    left: 0;
  }

  .card-c {
    top: 226px;
    right: 0;
  }

  .card-d {
    bottom: 0;
    left: 18%;
  }
}

@media (max-width: 900px) {
  .hero-actions .hero-lines {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 44px clamp(18px, 5vw, 28px) 34px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .hero-card {
    position: static;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }
}
/* Final mobile navigation and floating CTA override. */
@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto auto;
    overflow: visible;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    cursor: pointer;
  }

  .primary-nav {
    position: absolute;
    inset: auto;
    top: calc(100% + 10px);
    left: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    grid-column: auto;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 14px;
    color: var(--color-text-dark);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(47, 128, 237, 0.25);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

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

  .primary-nav a {
    display: block;
    padding: 14px 16px;
    border: 0;
    border-radius: 12px;
    color: #111111;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }

  .primary-nav a:hover,
  .primary-nav .active {
    color: var(--color-teal);
    background: rgba(47, 128, 237, 0.12);
  }

  .primary-nav.open + .header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .floating-consultation,
  .floating-book-consultation,
  .sticky-consultation {
    display: none !important;
  }

  .hero-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  .floating-home {
    left: 16px;
    bottom: 16px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 999px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    z-index: 1001;
    max-width: 150px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
}
/* Footer logo quality and responsive rendering. */
.footer-brand {
  min-width: 0;
}

.site-footer .footer-logo {
  display: block;
  width: 220px;
  max-width: min(100%, 220px);
  height: auto;
  padding: 0;
  object-fit: contain;
  image-rendering: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

@media (max-width: 720px) {
  .site-footer .footer-logo {
    width: 200px;
    max-width: min(100%, 200px);
  }
}

@media (max-width: 420px) {
  .site-footer .footer-logo {
    width: 188px;
    max-width: min(100%, 188px);
  }
}

/* New Manhash teal/blue/purple brand theme. */
:root {
  --color-black: #073B73;
  --color-soft-black: #EEF6FF;
  --color-charcoal: #073B73;
  --color-graphite: #005A9C;
  --color-teal: #19C7B8;
  --color-blue-dark: #005A9C;
  --color-muted-brand: #64748B;
  --color-blue-soft: #2F80ED;
  --color-white: #FFFFFF;
  --color-warm-white: #F8FBFF;
  --color-light-grey: #DCE7F3;
  --color-muted-text: #64748B;
  --color-text-light: #F8FBFF;
  --color-text-dark: #073B73;
  --dark: #073B73;
  --deep: #EEF6FF;
  --accent: #19C7B8;
  --accent-bright: #2F80ED;
  --accent-hover: #005A9C;
  --silver: #64748B;
  --soft: #F8FBFF;
  --outer: #F8FBFF;
  --border: #DCE7F3;
  --text: #334155;
  --white: #FFFFFF;
}

html,
body {
  background: #F8FBFF;
  color: #334155;
}

.announcement {
  color: #FFFFFF;
  background: linear-gradient(135deg, #073B73, #005A9C);
}

.announcement a {
  color: #A7F3EA;
}

.page-card,
.site-header {
  background: #FFFFFF;
  border-color: #DCE7F3;
}

.site-header {
  box-shadow: 0 10px 28px rgba(7, 59, 115, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 32px rgba(7, 59, 115, 0.12);
}

.brand img {
  width: 220px;
  max-width: 32vw;
  max-height: 70px;
  object-fit: contain;
}

.primary-nav {
  color: #334155;
}

.primary-nav a {
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav .active {
  color: #005A9C;
  background: rgba(25, 199, 184, 0.12);
}

.menu-toggle {
  border-color: #DCE7F3;
  background: #FFFFFF;
}

.menu-toggle span {
  background: #073B73;
}

.hero {
  color: #073B73;
  background:
    radial-gradient(circle at 72% 18%, rgba(47, 128, 237, 0.16), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(25, 199, 184, 0.18), transparent 32%),
    linear-gradient(135deg, #F8FBFF 0%, #EEF6FF 50%, #EAFBF8 100%);
}

.hero::before {
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(25, 199, 184, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(47, 128, 237, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero h1,
.hero .eyebrow,
.hero-text,
.hero-copy,
.hero-copy p {
  color: #073B73;
}

.hero-text {
  color: #334155;
}

.eyebrow,
.section-label,
.service-card a,
.accordion button::after,
.faq-list button::after,
.legal-content a,
.privacy-note a {
  color: #0EA5A4;
}

.hero-card,
.monitor-card,
.service-card,
.info-card,
.selector-panel,
.recommendation,
.accordion-item,
.faq-list article,
.whatsapp-card,
.contact-form,
.process-steps article,
.trust-note-section,
.important-note {
  color: #334155;
  background: #FFFFFF;
  border-color: #DCE7F3;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

.hero-card strong,
.monitor-card strong,
.service-card h3,
.info-card h3,
.process-steps h3,
.legal-content h2,
.contact-process h2,
.section h2,
.content-hero h1,
.contact-intro h1,
.split-section h2 {
  color: #073B73;
}

.hero-card span,
.monitor-card span,
.service-card p,
.info-card p,
.process-steps p,
.legal-content p,
.legal-content li,
.legal-content dd,
.contact-process p,
.content-hero p,
.contact-intro p,
.section p,
.split-section p {
  color: #64748B;
}

.status-dot,
.selector-options button.selected::before,
.process-steps span {
  background: linear-gradient(135deg, #19C7B8, #2F80ED);
  box-shadow: 0 0 0 7px rgba(25, 199, 184, 0.14);
}

.btn-primary,
.header-cta {
  color: #FFFFFF;
  background: linear-gradient(135deg, #19C7B8, #2F80ED);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.22);
}

.btn-primary:hover,
.header-cta:hover {
  background: linear-gradient(135deg, #0EA5A4, #005A9C);
}

.btn-secondary,
.btn-ghost {
  color: #073B73;
  background: #FFFFFF;
  border-color: rgba(47, 128, 237, 0.36);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: #EEF6FF;
  border-color: #19C7B8;
}

.selector-options button {
  color: #073B73;
  background: #FFFFFF;
  border-color: #DCE7F3;
}

.selector-options button.selected,
.selector-options button:hover {
  color: #073B73;
  border-color: #19C7B8;
  background: #EAFBF8;
}

.muted,
.trust-strip,
.split-section,
.selector-section,
.page-section,
.content-hero,
.contact-intro {
  background: #F8FBFF;
}

.ai-section,
.contact-section,
.final-cta {
  color: #FFFFFF;
  background:
    radial-gradient(circle at 86% 0%, rgba(139, 92, 246, 0.20), transparent 34%),
    linear-gradient(135deg, #073B73, #005A9C);
}

.ai-section h2,
.ai-section p,
.contact-section h2,
.contact-section p,
.final-cta h2,
.final-cta p {
  color: #FFFFFF;
}

.ai-section .eyebrow,
.contact-section .eyebrow,
.final-cta .eyebrow {
  color: #8FF3E7;
}

.circuit-lines span {
  background: linear-gradient(90deg, rgba(25, 199, 184, 0), #19C7B8, #2F80ED);
}

.site-footer {
  color: #64748B;
  background: #F8FBFF;
  border-top: 1px solid #DCE7F3;
}

.site-footer strong {
  color: #073B73;
}

.site-footer a {
  color: #334155;
}

.site-footer a:hover {
  color: #0EA5A4;
}

.site-footer .footer-logo {
  width: 240px;
  max-width: min(100%, 240px);
  max-height: 136px;
}

.floating-home {
  color: #FFFFFF;
  background: linear-gradient(135deg, #19C7B8, #2F80ED);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.24);
}

.floating-home:hover {
  background: linear-gradient(135deg, #0EA5A4, #005A9C);
}

.floating-whatsapp {
  color: #FFFFFF;
  background: linear-gradient(135deg, #19C7B8 0%, #2F80ED 100%);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.25);
}

input,
select,
textarea {
  border-color: #DCE7F3;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2F80ED;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

@media (max-width: 1040px) {
  .primary-nav {
    color: #334155;
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(47, 128, 237, 0.18);
    box-shadow: 0 20px 50px rgba(7, 59, 115, 0.16);
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 190px;
    max-width: 58vw;
    max-height: 62px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 168px;
    max-width: 56vw;
    max-height: 56px;
  }

  .site-footer .footer-logo {
    width: 210px;
    max-width: min(100%, 210px);
  }
}

.floating-home {
  overflow: hidden;
  color: #073B73;
  background: #FFFFFF;
  border: 1px solid rgba(47, 128, 237, 0.28);
}

.floating-home img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
  image-rendering: auto;
  border-radius: 999px;
}

/* Typography alignment with the new Manhash logo style. */
:root {
  --font-primary: "Poppins", "Avenir Next", Avenir, Arial, sans-serif;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-primary);
}

body {
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
.hero h1,
.section h2,
.content-hero h1,
.contact-intro h1,
.split-section h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-weight: 700;
}

h3,
.service-card h3,
.info-card h3,
.process-steps h3,
.hero-card strong,
.monitor-card strong {
  font-weight: 600;
}

p,
li,
dd,
.hero-text,
.section p,
.split-section p,
.content-hero p,
.contact-intro p,
.legal-content p,
.legal-content li,
.contact-process p,
.form-note,
.privacy-note {
  font-weight: 400;
  letter-spacing: 0;
}

.primary-nav,
.primary-nav a,
.btn,
.header-cta,
button,
.selector-options button,
.accordion button,
.faq-list button,
.contact-form label,
.site-footer a {
  font-family: var(--font-primary);
  font-weight: 600;
}

.eyebrow,
.section-label,
.site-footer strong {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer strong {
  font-size: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0;
}

/* Final brand review refinements: logo scale, badges and CTA colours. */
.brand img {
  width: clamp(260px, 18vw, 300px);
  max-width: 34vw;
  height: auto;
  max-height: 92px;
  object-fit: contain;
}

.site-header {
  min-height: 104px;
}

.badge,
.service-badge,
.platform-badge,
.icon-pill,
.trust-strip span,
.metric-badge,
.service-card span,
.info-card span {
  color: #073B73;
  background: linear-gradient(135deg, rgba(25, 199, 184, 0.14), rgba(47, 128, 237, 0.14));
  border: 1px solid rgba(47, 128, 237, 0.18);
}

.status-dot,
.status-dot.grey,
.selector-options button.selected::before,
.process-steps span {
  background: linear-gradient(135deg, #19C7B8 0%, #2F80ED 100%);
  box-shadow: 0 0 0 7px rgba(47, 128, 237, 0.13);
}

.hero-card,
.monitor-card,
.service-card,
.info-card,
.selector-panel,
.recommendation,
.accordion-item,
.faq-list article,
.whatsapp-card,
.contact-form,
.process-steps article,
.trust-note-section,
.important-note {
  border-color: #DCE7F3;
}

.primary-nav a:hover,
.primary-nav .active {
  color: #0EA5A4;
  background: rgba(25, 199, 184, 0.12);
}

.btn-primary,
.header-cta,
.primary-cta {
  color: #FFFFFF;
  background: linear-gradient(135deg, #19C7B8 0%, #2F80ED 100%);
  border: 0;
}

.btn-primary:hover,
.header-cta:hover,
.primary-cta:hover {
  background: linear-gradient(135deg, #14B8A6 0%, #2563EB 100%);
  transform: translateY(-1px);
}

.btn-secondary,
.secondary-cta {
  color: #073B73;
  background: #FFFFFF;
  border: 1px solid #2F80ED;
}

.btn-secondary:hover,
.secondary-cta:hover {
  color: #073B73;
  background: #EEF6FF;
  border-color: #19C7B8;
}

.floating-whatsapp,
.whatsapp-button,
.whatsapp-cta,
.whatsapp-card a {
  color: #FFFFFF;
  background: linear-gradient(135deg, #19C7B8 0%, #2F80ED 100%);
  border: 0;
  box-shadow: 0 16px 36px rgba(47, 128, 237, 0.25);
}

.floating-whatsapp:hover,
.whatsapp-button:hover,
.whatsapp-cta:hover,
.whatsapp-card a:hover {
  background: linear-gradient(135deg, #14B8A6 0%, #2563EB 100%);
  transform: translateY(-2px);
}

.floating-home {
  color: #FFFFFF;
  background: linear-gradient(135deg, #073B73 0%, #2F80ED 100%);
  border-color: rgba(47, 128, 237, 0.32);
}

.floating-home:hover {
  background: linear-gradient(135deg, #005A9C 0%, #19C7B8 100%);
}

.circuit-lines span,
.hero-actions .hero-lines span {
  background: linear-gradient(90deg, rgba(25, 199, 184, 0), #19C7B8, #2F80ED);
}

.site-footer a:hover,
.legal-content a,
.privacy-note a {
  color: #0EA5A4;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 92px;
  }

  .brand img {
    width: clamp(220px, 42vw, 260px);
    max-width: 50vw;
    max-height: 82px;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: clamp(210px, 56vw, 240px);
    max-width: 60vw;
    max-height: 76px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: clamp(190px, 58vw, 220px);
    max-width: 62vw;
    max-height: 70px;
  }
}

/* Final branding cleanup: transparent logo rendering and polished trust tiles. */
.brand img {
  width: clamp(280px, 20vw, 320px);
  max-width: 36vw;
  max-height: 100px;
  image-rendering: auto;
}

.site-footer .footer-logo {
  display: block;
  width: 260px;
  max-width: min(100%, 260px);
  height: auto;
  max-height: none;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  image-rendering: auto;
}

.trust-strip {
  gap: 18px;
  background: #F8FBFF;
  border-block: 1px solid #DCE7F3;
}

.trust-strip article {
  min-height: 0;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #DCE7F3;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(7, 59, 115, 0.06);
}

.trust-strip strong {
  display: block;
  color: #073B73;
  font-weight: 700;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  padding: 0;
  color: #64748B;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.55;
  font-weight: 400;
}

@media (max-width: 1040px) {
  .brand img {
    width: clamp(230px, 44vw, 270px);
    max-width: 52vw;
    max-height: 86px;
  }

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

@media (max-width: 768px) {
  .brand img {
    width: clamp(220px, 58vw, 245px);
    max-width: 64vw;
    max-height: 78px;
  }

  .site-footer .footer-logo {
    width: 220px;
    max-width: 82vw;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: clamp(198px, 60vw, 225px);
    max-width: 66vw;
    max-height: 72px;
  }
}

/* Final readability and CTA polish pass. */
body {
  color: #334155;
}

p,
li,
dd,
.section p,
.split-section p,
.content-hero p,
.contact-intro p,
.legal-content p,
.legal-content li,
.contact-process p,
.service-card p,
.info-card p,
.recommendation p,
.accordion-item p,
.faq-list p,
.trust-note-section p:not(.eyebrow),
.important-note p,
.form-note,
.privacy-note {
  color: #475569;
  opacity: 1;
}

.hero-text,
.hero p,
.hero-subtitle,
.hero-copy,
.page-intro,
.supporting-text,
.lead,
.content-hero p:not(.eyebrow),
.contact-section p,
.ai-section p {
  color: #475569;
  opacity: 1;
  font-weight: 400;
}

.hero .hero-text,
.hero .hero-text p,
.ai-section,
.ai-section p,
.contact-section,
.contact-section p {
  color: #FFFFFF;
}

.hero p,
.hero-card p,
.monitor-card p,
.whatsapp-card p {
  opacity: 1;
}

.service-card span,
.info-card span,
.metric-badge,
.platform-badge,
.service-badge,
.icon-pill {
  color: #073B73;
}

.whatsapp-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.whatsapp-card p {
  margin: 0;
  color: #475569;
}

.whatsapp-card strong {
  color: #073B73;
}

.whatsapp-card a,
a.whatsapp-button,
a.whatsapp-cta,
a[data-whatsapp-link].btn,
.contact-card a[data-whatsapp-link],
.final-cta a[data-whatsapp-link] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 190px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #19C7B8 0%, #2F80ED 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  border: 0;
  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-card a:hover,
a.whatsapp-button:hover,
a.whatsapp-cta:hover,
a[data-whatsapp-link].btn:hover,
.contact-card a[data-whatsapp-link]:hover,
.final-cta a[data-whatsapp-link]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 128, 237, 0.30);
  background: linear-gradient(135deg, #14B8A6 0%, #2563EB 100%);
}

.whatsapp-card a:focus-visible,
a.whatsapp-button:focus-visible,
a.whatsapp-cta:focus-visible,
a[data-whatsapp-link].btn:focus-visible,
.contact-card a[data-whatsapp-link]:focus-visible,
.final-cta a[data-whatsapp-link]:focus-visible {
  outline: 3px solid rgba(25, 199, 184, 0.35);
  outline-offset: 3px;
}

.btn-primary,
.header-cta,
.primary-cta {
  color: #FFFFFF;
  background: linear-gradient(135deg, #19C7B8 0%, #2F80ED 100%);
  border: 0;
  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.22);
}

.btn-secondary,
.secondary-cta {
  color: #073B73;
  background: #FFFFFF;
  border: 1px solid #2F80ED;
}

@media (max-width: 640px) {
  .whatsapp-card a,
  a.whatsapp-button,
  a.whatsapp-cta,
  a[data-whatsapp-link].btn,
  .contact-card a[data-whatsapp-link],
  .final-cta a[data-whatsapp-link] {
    width: 100%;
  }
}

/* Header logo correction: target the actual header brand element. */
.site-header {
  min-height: 112px;
}

.site-header .brand {
  display: block;
  flex: 0 0 auto;
  min-width: 240px;
  width: auto;
  max-width: 300px;
  overflow: visible;
}

.site-header .brand img {
  display: block;
  width: clamp(240px, 16vw, 300px);
  max-width: 300px;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: none;
}

@media (min-width: 1600px) {
  .site-header .brand {
    min-width: 280px;
  }

  .site-header .brand img {
    width: 300px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .site-header .brand {
    min-width: 220px;
    max-width: 250px;
  }

  .site-header .brand img {
    width: clamp(220px, 24vw, 250px);
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 96px;
  }

  .site-header .brand {
    min-width: 210px;
    max-width: 210px;
  }

  .site-header .brand img {
    width: 210px;
    max-width: 210px;
  }
}

@media (max-width: 420px) {
  .site-header .brand {
    min-width: 190px;
    max-width: 190px;
  }

  .site-header .brand img {
    width: 190px;
    max-width: 190px;
  }
}

/* Modern header refinement: larger readable logo, tighter header, left-aligned brand. */
.site-header {
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  min-height: 96px;
  padding: 10px clamp(18px, 2.4vw, 44px) 10px clamp(14px, 1.8vw, 32px);
}

.site-header .brand {
  min-width: 360px;
  max-width: 460px;
  justify-self: start;
}

.site-header .brand img {
  width: clamp(360px, 23vw, 460px);
  max-width: 460px;
}

.site-header .primary-nav {
  justify-content: flex-end;
  gap: clamp(10px, 1vw, 18px);
}

@media (min-width: 1600px) {
  .site-header {
    min-height: 104px;
  }

  .site-header .brand {
    min-width: 430px;
    max-width: 460px;
  }

  .site-header .brand img {
    width: 460px;
    max-width: 460px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    gap: 18px;
    padding-left: 20px;
    padding-right: 24px;
  }

  .site-header .brand {
    min-width: 300px;
    max-width: 340px;
  }

  .site-header .brand img {
    width: clamp(300px, 28vw, 340px);
    max-width: 340px;
  }

  .site-header .primary-nav {
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 88px;
    padding: 9px 20px;
  }

  .site-header .brand {
    min-width: 240px;
    max-width: 280px;
  }

  .site-header .brand img {
    width: clamp(240px, 34vw, 280px);
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 82px;
    padding: 9px 18px;
  }

  .site-header .brand {
    min-width: 220px;
    max-width: 240px;
  }

  .site-header .brand img {
    width: clamp(220px, 56vw, 240px);
    max-width: 240px;
  }
}

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

  .site-header .brand {
    min-width: 190px;
    max-width: 205px;
  }

  .site-header .brand img {
    width: clamp(190px, 58vw, 205px);
    max-width: 205px;
  }
}

/* Final header balance: readable logo without overwhelming the navigation. */
.site-header {
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.4vw, 40px);
  align-items: center;
  min-height: 94px;
  padding: 8px clamp(20px, 2.2vw, 40px) 8px clamp(14px, 1.6vw, 28px);
}

.site-header .brand {
  min-width: 330px;
  max-width: 370px;
  justify-self: start;
  overflow: visible;
}

.site-header .brand img {
  display: block;
  width: clamp(330px, 22vw, 370px);
  max-width: 370px;
  height: auto;
  object-fit: contain;
  transform: none;
}

.site-header .primary-nav {
  justify-content: flex-end;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
}

@media (min-width: 1440px) {
  .site-header .brand {
    min-width: 360px;
    max-width: 380px;
  }

  .site-header .brand img {
    width: clamp(360px, 20vw, 380px);
    max-width: 380px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    gap: 16px;
    min-height: 88px;
    padding: 8px 22px 8px 18px;
  }

  .site-header .brand {
    min-width: 280px;
    max-width: 310px;
  }

  .site-header .brand img {
    width: clamp(280px, 25vw, 310px);
    max-width: 310px;
  }

  .site-header .primary-nav {
    gap: 9px;
    font-size: 13px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 82px;
    padding: 8px 20px;
  }

  .site-header .brand {
    min-width: 240px;
    max-width: 280px;
  }

  .site-header .brand img {
    width: clamp(240px, 32vw, 280px);
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 76px;
    padding: 8px 18px;
  }

  .site-header .brand {
    min-width: 220px;
    max-width: 230px;
  }

  .site-header .brand img {
    width: clamp(220px, 54vw, 230px);
    max-width: 230px;
  }
}

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

  .site-header .brand {
    min-width: 205px;
    max-width: 210px;
  }

  .site-header .brand img {
    width: clamp(205px, 58vw, 210px);
    max-width: 210px;
  }
}

/* Final logo size fine-tune: slightly smaller while preserving readability. */
.site-header .brand {
  min-width: 310px;
  max-width: 325px;
}

.site-header .brand img {
  width: clamp(310px, 20vw, 325px);
  max-width: 325px;
}

@media (min-width: 1440px) {
  .site-header .brand {
    min-width: 325px;
    max-width: 340px;
  }

  .site-header .brand img {
    width: clamp(325px, 18vw, 340px);
    max-width: 340px;
  }
}

@media (max-width: 1240px) {
  .site-header .brand {
    min-width: 260px;
    max-width: 280px;
  }

  .site-header .brand img {
    width: clamp(260px, 24vw, 280px);
    max-width: 280px;
  }
}

@media (max-width: 1040px) {
  .site-header .brand {
    min-width: 230px;
    max-width: 270px;
  }

  .site-header .brand img {
    width: clamp(230px, 30vw, 270px);
    max-width: 270px;
  }
}

@media (max-width: 768px) {
  .site-header .brand {
    min-width: 215px;
    max-width: 215px;
  }

  .site-header .brand img {
    width: 215px;
    max-width: 215px;
  }
}

@media (max-width: 420px) {
  .site-header .brand {
    min-width: 200px;
    max-width: 200px;
  }

  .site-header .brand img {
    width: 200px;
    max-width: 200px;
  }
}

/* Homepage evidence flow: non-clickable process diagram. */
.positioning .evidence-flow {
  display: block;
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #DCE7F3;
  border-radius: 24px;
  background: linear-gradient(135deg, #EEF6FF 0%, #F8FBFF 100%);
  box-shadow: 0 18px 42px rgba(7, 59, 115, 0.08);
  cursor: default;
}

.positioning .diagram-title {
  margin: 0 0 18px;
  color: #073B73;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.positioning .flow-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.positioning .evidence-flow .node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 64px;
  padding: 16px;
  color: #073B73;
  background: #FFFFFF;
  border: 1px solid #DCE7F3;
  border-radius: 14px;
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.positioning .evidence-flow .node::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, #19C7B8, #2F80ED);
  opacity: 0.55;
}

.positioning .evidence-flow .node:nth-child(2n)::after,
.positioning .evidence-flow .node:last-child::after {
  display: none;
}

.positioning .evidence-flow .node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #005A9C;
  background: #EAFBF8;
  border: 1px solid rgba(25, 199, 184, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.positioning .evidence-flow .main-node,
.positioning .evidence-flow .result-node {
  color: #073B73;
  background: #FFFFFF;
}

.positioning .evidence-flow .result-node {
  grid-column: 1 / -1;
  border-color: rgba(47, 128, 237, 0.38);
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF6FF 100%);
}

.positioning .diagram-caption {
  margin: 16px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .positioning .flow-items {
    grid-template-columns: 1fr;
  }

  .positioning .evidence-flow .node::after {
    display: none;
  }
}

/* Hero service cards: structured, non-clickable five-card composition. */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: center;
  gap: 18px;
  min-height: 360px;
  width: 100%;
  overflow: visible;
}

.hero-visual .hero-card {
  position: static;
  width: 100%;
  min-height: 104px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.hero-visual .card-b {
  grid-column: 3 / span 2;
  grid-row: 1;
}

.hero-visual .card-c {
  grid-column: 5 / span 2;
  grid-row: 1;
}

.hero-visual .card-d {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.hero-visual .card-e {
  grid-column: 4 / span 2;
  grid-row: 2;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

@media (max-width: 1180px) {
  .hero-visual {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d {
    grid-column: auto / span 2;
    grid-row: auto;
  }

  .hero-visual .card-e {
    grid-column: 2 / span 2;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

/* Evidence review flow: explicit 3 + 2 process layout. */
.positioning .flow-items {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.positioning .evidence-flow .node:nth-child(1) {
  grid-column: 1 / span 2;
}

.positioning .evidence-flow .node:nth-child(2) {
  grid-column: 3 / span 2;
}

.positioning .evidence-flow .node:nth-child(3) {
  grid-column: 5 / span 2;
}

.positioning .evidence-flow .node:nth-child(4) {
  grid-column: 2 / span 2;
}

.positioning .evidence-flow .node:nth-child(5) {
  grid-column: 4 / span 2;
}

.positioning .evidence-flow .node:nth-child(3)::after,
.positioning .evidence-flow .node:nth-child(5)::after {
  display: none;
}

.positioning .evidence-flow .node:nth-child(2n)::after {
  display: block;
}

.positioning .diagram-caption {
  max-width: 620px;
}

@media (max-width: 900px) {
  .positioning .flow-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positioning .evidence-flow .node:nth-child(n) {
    grid-column: auto;
  }

  .positioning .evidence-flow .node::after,
  .positioning .evidence-flow .node:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .positioning .flow-items {
    grid-template-columns: 1fr;
  }
}

/* Restore premium floating hero card composition without interactivity. */
.hero-visual {
  position: relative;
  display: block;
  min-height: 420px;
  width: 100%;
  overflow: visible;
}

.hero-visual .hero-card {
  position: absolute;
  width: clamp(204px, 13.4vw, 236px);
  min-height: 98px;
  cursor: default;
  pointer-events: none;
  transform: none;
  transition: none;
}

.hero-visual .card-a {
  top: 24px;
  right: 5%;
}

.hero-visual .card-b {
  top: 172px;
  left: 34%;
}

.hero-visual .card-c {
  top: 214px;
  right: 0;
}

.hero-visual .card-e {
  top: 34px;
  left: 15%;
}

.hero-visual .card-d {
  top: 306px;
  bottom: auto;
  left: 8%;
}

.hero-visual .hero-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(7, 59, 115, 0.08);
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 390px;
  }

  .hero-visual .hero-card {
    width: clamp(186px, 20vw, 218px);
    min-height: 96px;
  }

  .hero-visual .card-a {
    top: 8px;
    right: 4%;
  }

  .hero-visual .card-b {
    top: 146px;
    left: 31%;
  }

  .hero-visual .card-c {
    top: 196px;
    right: 0;
  }

  .hero-visual .card-e {
    top: 28px;
    left: 8%;
  }

  .hero-visual .card-d {
    top: 284px;
    bottom: auto;
    left: 5%;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .hero-visual .card-a,
  .hero-visual .card-b,
  .hero-visual .card-c,
  .hero-visual .card-d,
  .hero-visual .card-e {
    position: static;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }
}

