:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-strong: rgba(10, 20, 42, 0.72);
  --text: #102342;
  --text-soft: #4b5c76;
  --navy: #132a52;
  --gold: #d4b15f;
  --green: #67aa3c;
  --border: #dce5ef;
  --shadow: 0 16px 40px rgba(8, 20, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.copy-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.copy-link:hover {
  color: var(--gold);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 229, 239, 0.8);
}

.header-inner,
.brand,
.main-nav,
.hero-actions,
.stats,
.contact-grid,
.footer-grid {
  display: flex;
}

.header-inner {
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  gap: 24px;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-toggle,
.nav-subtoggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--navy);
}

.menu-toggle:hover {
  background: rgba(19, 42, 82, 0.06);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: -24px;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 26px;
}

.nav-link--trigger::after {
  content: "▼";
  font-size: 0.55rem;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.main-nav a,
.nav-link {
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::before,
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.nav-link:hover {
  color: #8a6a1f;
}

.main-nav a:hover::before,
.nav-link:hover::before,
.nav-link.is-active::before {
  transform: scaleX(1);
}

.nav-link--trigger:hover::after,
.nav-item:hover .nav-link--trigger::after {
  transform: rotate(180deg);
  color: #8a6a1f;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: block;
  min-width: 226px;
  padding: 14px 0;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(8, 20, 44, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 30;
  pointer-events: none;
}

.nav-item:hover .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu a {
  display: block;
  padding: 10px 22px;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu a::before,
.nav-menu a::after {
  display: none;
}

.nav-menu a:hover {
  color: var(--navy);
  background: rgba(19, 42, 82, 0.05);
}

.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 15, 30, 0.42), rgba(6, 15, 30, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(212, 177, 95, 0.18), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0 56px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.tag,
.contact-data dt {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-title,
.section-grid h2,
.section-contact h2 {
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  max-width: 980px;
  margin: 16px auto;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.lead,
.section-summary,
.trust-copy {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 840px;
}

.lead {
  margin: 0 auto;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.hero-actions {
  justify-content: center;
  margin: 28px 0 24px;
}

.star-row,
.quote-stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1.35rem;
}

.star-row {
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}

.button-primary {
  color: var(--navy);
  background: #f0c75f;
  box-shadow: 0 10px 24px rgba(240, 199, 95, 0.22);
}

.button-secondary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(93, 166, 60, 0.24);
}

.button:hover {
  transform: translateY(-4px);
}

.button-primary:hover {
  color: #fff;
  background: #1d2a59;
  box-shadow: 0 16px 30px rgba(29, 42, 89, 0.28);
}

.button-secondary:hover {
  background: #1d2a59;
  box-shadow: 0 16px 30px rgba(29, 42, 89, 0.28);
}

.trust-copy {
  margin: 0 auto 36px;
  font-size: 1rem;
}

.hero-cards,
.feature-grid,
.solution-grid,
.steps,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

.hero-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.feature-card,
.solution-card,
.step-card,
.quote-card {
  background: var(--surface);
  color: var(--text);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.mini-card {
  background: rgba(9, 20, 44, 0.68);
  color: #fff;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.mini-card-icon,
.feature-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.mini-card-icon img,
.feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mini-card h2 {
  margin: 0 0 10px;
  color: #f0c75f;
  font-size: 1.35rem;
  transition: color 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-8px);
  background: rgba(15, 28, 58, 0.84);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.mini-card:hover h2 {
  color: #ffd67a;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, #eef3fa, #f8fbff);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-grid h2,
.section-title,
.section-contact h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-grid p,
.section-summary,
.solution-card p,
.step-card p,
.quote-card,
.contact-form,
.contact-grid p,
.footer-grid p,
.stats span,
.feature-card p {
  font-family: Arial, Helvetica, sans-serif;
}

.stats {
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
}

.stats span {
  display: block;
  max-width: 220px;
  color: var(--text-soft);
  margin-top: 8px;
}

.image-panel img {
  min-height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 53, 87, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.image-panel:hover img {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(8, 20, 44, 0.16);
}

.section-kicker,
.center {
  text-align: center;
}

.feature-grid {
  margin-top: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.solution-card,
.step-card,
.quote-card {
  padding: 28px;
}

.feature-card {
  background: #1d2550;
  color: #fff;
  text-align: center;
  border: 1px solid transparent;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
  cursor: default;
}

.feature-card h3,
.feature-card p,
.feature-card .feature-icon img {
  transition:
    color 0.28s ease,
    filter 0.28s ease,
    transform 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  color: #1d2550;
  border-color: rgba(29, 37, 80, 0.55);
  box-shadow: 0 14px 28px rgba(11, 21, 44, 0.18);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #1d2550;
}

.feature-card:hover .feature-icon img {
  filter: brightness(0) saturate(100%);
  transform: translateY(-1px);
}

.feature-card-wide {
  grid-column: 2 / span 2;
}

.section-summary {
  margin: 18px auto 0;
  color: var(--text-soft);
}

#soluciones {
  background: #f3f8f9;
}

.ecosystem-kicker {
  display: inline-block;
  margin: 0 auto 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #264653;
}

#soluciones .section-title {
  color: #1d3557;
}

#soluciones .section-summary {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #5b6573;
}

.solution-grid,
.steps,
.testimonial-grid {
  margin-top: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-amber {
  background: #f6edd9;
  color: #a97717;
}

.tag-green {
  background: #dff1e7;
  color: #2f7b58;
}

.tag-cyan {
  background: #dff2f3;
  color: #2e7c85;
}

.solution-card {
  overflow: hidden;
  padding: 0;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.solution-link {
  display: block;
  height: 100%;
}

.solution-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.solution-card .tag,
.solution-card h3,
.solution-card p {
  margin-left: 28px;
  margin-right: 28px;
}

.solution-card .tag {
  margin-top: 24px;
}

.solution-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.solution-card p {
  margin-bottom: 28px;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  margin: 0 28px 28px;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.22s ease, color 0.22s ease;
}

.solution-cta::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 42px rgba(8, 20, 44, 0.16);
}

.solution-card:hover .solution-media img {
  transform: scale(1.04);
}

.solution-card:hover .solution-cta {
  color: #8a6a1f;
}

.solution-card:hover .solution-cta::after {
  transform: translateX(4px);
}

.solution-media img {
  transition: transform 0.4s ease;
}

.step-card {
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #f0c75f;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(8, 20, 44, 0.12);
}

.step-card:hover span {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(240, 199, 95, 0.28);
}

.quote-card {
  font-size: 1.04rem;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  border: 1px solid transparent;
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 700;
}

.quote-card small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-family: Arial, Helvetica, sans-serif;
}

.quote-card:hover {
  transform: translateY(-8px);
  border-color: #e5d09a;
  box-shadow: 0 20px 36px rgba(8, 20, 44, 0.12);
}

.section-contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.contact-grid > * {
  min-width: 0;
}

.contact-data {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
}

.contact-data dd {
  margin: 4px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-soft);
}

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

.contact-form label,
.contact-form .consent-check {
  min-width: 0;
}

.form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  line-height: 1.5;
  border: 1px solid transparent;
}

.form-status--success {
  color: #175c2f;
  background: #e8f6ec;
  border-color: #9fd3ae;
}

.form-status--error {
  color: #8d1f1f;
  background: #fdecec;
  border-color: #efb3b3;
}

.form-status--footer {
  margin-bottom: 14px;
}

.status-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.status-modal.is-open {
  display: flex;
}

.status-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 34, 0.48);
  backdrop-filter: blur(4px);
}

.status-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));
  padding: 34px 32px 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(7, 16, 34, 0.22);
  text-align: center;
}

.status-modal__panel--success {
  border: 1px solid rgba(111, 182, 70, 0.34);
}

.status-modal__panel--error {
  border: 1px solid rgba(198, 78, 78, 0.28);
}

.status-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #637189;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.status-modal__icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.status-modal__panel--success .status-modal__icon {
  background: #eaf7ec;
  color: #32914d;
}

.status-modal__panel--error .status-modal__icon {
  background: #fdecec;
  color: #ba3c3c;
}

.status-modal__title {
  margin: 0 0 10px;
  color: #132a52;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.status-modal__message {
  margin: 0 auto 24px;
  max-width: 360px;
  color: #4b5c76;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.status-modal__action {
  min-width: 180px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.contact-form .consent-check,
.footer-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.contact-form .consent-check input,
.footer-form .consent-check input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  padding: 0;
}

.contact-form .consent-check span,
.footer-form .consent-check span {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #b9c4d3;
  border-radius: 12px;
  font: inherit;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d141a;
  box-shadow: 0 0 0 4px rgba(29, 42, 89, 0.08);
  outline: none;
}

.site-footer {
  padding: 48px 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(23, 38, 179, 0.73), rgb(0, 0, 0));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.footer-brand h2 {
  max-width: 520px;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 48px;
}

.footer-brand p {
  max-width: 560px;
  margin: 0 0 28px;
}

.footer-contact h3,
.footer-form-wrap h3 {
  margin: 8px 0 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 18px;
  margin: 28px 0 22px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.22s ease, color 0.22s ease;
}

.social-links svg {
  width: 54px;
  height: 54px;
  display: block;
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.04);
  color: #ffc100;
}

.footer-form {
  display: grid;
  gap: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.footer-form .consent-check {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.footer-form .consent-check .copy-link:hover {
  color: #ffffff;
}

.footer-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font: inherit;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.footer-form input:hover,
.footer-form input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  outline: none;
}

.footer-form .button {
  justify-self: start;
}

.footer-contact p,
.footer-form-wrap p {
  margin: 0 0 10px;
}

.copyright {
  margin-top: 34px;
  opacity: 0.9;
}

.hero h1:hover {
  color: #f4a261;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.hero .lead:hover {
  color: #f4a261;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .header-inner {
    position: relative;
    padding: 14px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: clamp(1.2rem, 4.8vw, 1.9rem);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 229, 239, 0.95);
    border-radius: 22px;
    box-shadow: 0 24px 48px rgba(8, 20, 44, 0.16);
  }

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

  .main-nav > a,
  .nav-item {
    width: 100%;
  }

  .main-nav > a,
  .nav-item > .nav-link {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(220, 229, 239, 0.82);
  }

  .main-nav > a::before,
  .nav-item > .nav-link::before {
    display: none;
  }

  .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-item::after {
    display: none;
  }

  .nav-link--trigger::after {
    display: none;
  }

  .nav-subtoggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 52px;
    color: var(--navy);
  }

  .nav-subtoggle::before {
    content: "▾";
    font-size: 1rem;
    transition: transform 0.22s ease;
  }

  .nav-item.is-open .nav-subtoggle::before {
    transform: rotate(180deg);
  }

  .nav-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0;
    margin: 0 0 8px;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(19, 42, 82, 0.04);
    overflow: hidden;
    pointer-events: auto;
    transition: max-height 0.24s ease, padding 0.24s ease;
    grid-column: 1 / -1;
  }

  .nav-item:hover .nav-menu {
    transform: none;
  }

  .nav-item.is-open .nav-menu {
    max-height: 420px;
    padding: 8px 0;
  }

  .nav-menu a {
    padding: 10px 16px 10px 28px;
    white-space: normal;
    font-size: 0.93rem;
  }

  .main-nav > a:last-child,
  .nav-item:last-child > .nav-link {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero-cards,
  .solution-grid,
  .steps,
  .testimonial-grid,
  .feature-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
  }

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

  .contact-grid {
    gap: 32px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    min-width: 0;
  }
}
