﻿:root {
  --navy: #0A1F44;
  --navy-2: #0A1F44;
  --teal: #1aa09f;
  --teal-dark: #1aa09f;
  --ink: #13233f;
  --muted: #617087;
  --line: #E6E8EC;
  --surface: #E6E8EC;
  --white: #FFFFFF;
  --shadow: 0 25px 65px rgba(10, 31, 68, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }
body {
  margin: 0;
  padding-top: 84px;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  padding: 12px 18px; background: var(--teal); color: white; font-weight: 800;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: fixed; z-index: 1000; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(10,31,68,.07);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
}
.brand-mark { width: 47px; height: 38px; overflow: visible; }
.brand-mark rect { fill: var(--navy); }
.brand-mark circle { fill: var(--teal-dark); }
.brand-copy { display: grid; line-height: .93; text-transform: uppercase; color: var(--navy); }
.brand-copy small { color: var(--teal-dark); font: 700 7.5px/1 "Montserrat"; letter-spacing: 1.4px; margin-bottom: 3px; }
.brand-copy strong { font: 800 15px/1 "Montserrat"; letter-spacing: -.5px; }
.brand-copy strong span { color: var(--teal-dark); }
.brand-copy b { font: 700 11.5px/1.1 "Montserrat"; letter-spacing: .8px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: #39465b; font-size: 14px; font-weight: 600; }
.main-nav a::after {
  position: absolute; content: ""; left: 0; right: 100%; bottom: -10px; height: 2px;
  background: var(--teal-dark); transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a > span { color: #8995a6; font-size: 13px; }
.nav-dropdown-menu {
  position: absolute; z-index: 20; top: calc(100% + 20px); left: 50%;
  width: 245px; padding: 10px; border: 1px solid var(--line); border-radius: 8px;
  background: white; box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translate(-50%, 8px); transition: .2s;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-dropdown-menu a { display: block; padding: 11px 12px; border-radius: 5px; font-size: 12px; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: #E6E8EC; color: var(--teal); }
.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border: 1px solid var(--teal); border-radius: 5px;
  background: var(--teal); color: white; font-size: 14px; font-weight: 800;
  box-shadow: 0 12px 28px rgba(26,160,159,.22);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: #1aa09f; box-shadow: 0 16px 35px rgba(26,160,159,.3); }
.button-sm { min-height: 42px; padding: 0 17px; font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 5px; background: var(--navy); transition: .2s; }

.hero { position: relative; overflow: hidden; min-height: 720px; background: linear-gradient(108deg,#f6f8fb 0%,#FFFFFF 51%,#eef4ff 100%); }
.hero-with-background-form {
  min-height: calc(100svh - 196px);
  background:
    linear-gradient(90deg,
      rgba(4,18,43,.92) 0%,
      rgba(5,22,51,.84) 42%,
      rgba(7,28,61,.68) 68%,
      rgba(7,25,54,.58) 100%),
    url("/assets/images/hero-advisory.webp?v=20260706-img") 67% center / cover no-repeat;
}
.hero-with-background-form .hero-grid {
  min-height: calc(100svh - 196px);
  padding-block: 34px;
}
.hero-with-background-form h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.7vw, 66px);
}
.hero-with-background-form .hero-lead { margin-bottom: 25px; }
.hero-with-background-form .hero-trust { margin-top: 25px; }
.hero-with-background-form::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,31,68,.08), transparent 58%, rgba(3,15,36,.18));
}
.hero-with-background-form .hero-grid-bg { opacity: .12; }
.hero-with-background-form h1 { color: white; text-shadow: 0 2px 22px rgba(0,0,0,.16); }
.hero-with-background-form h1 em { color: #1aa09f; }
.hero-with-background-form .eyebrow { color: #1aa09f; }
.hero-with-background-form .hero-lead { color: rgba(255,255,255,.8); }
.hero-with-background-form .text-link { color: white; }
.hero-with-background-form .text-link span { color: #1aa09f; }
.hero-with-background-form .hero-trust { color: rgba(255,255,255,.82); }
.hero-with-background-form .hero-trust svg { background: rgba(255,255,255,.12); stroke: #1aa09f; }
.home-page main > .section,
.home-page main > .cta-section {
  min-height: calc(100svh - 84px);
  display: flex;
  align-items: center;
}
.home-page main > .section > .container,
.home-page main > .cta-section > .container { width: min(1180px, calc(100% - 40px)); }
.home-page .problems,
.home-page .sectors { min-height: calc(100svh - 84px); }
.hero::before {
  content: ""; position: absolute; width: 540px; height: 540px; border: 1px solid rgba(26,160,159,.16);
  border-radius: 50%; right: -210px; top: 60px; box-shadow: 0 0 0 70px rgba(26,160,159,.03),0 0 0 140px rgba(26,160,159,.02);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .23;
  background-image: linear-gradient(rgba(10,31,68,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(10,31,68,.08) 1px,transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent 0, transparent 45%, #000 80%, transparent);
}
.hero-grid { position: relative; min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; padding-block: 70px; }
.hero-copy { min-width: 0; }
.eyebrow {
  display: flex; align-items: center; gap: 11px; margin: 0 0 18px;
  color: var(--teal-dark); font: 700 12px/1.2 "Montserrat"; letter-spacing: 2px; text-transform: uppercase;
}
.eyebrow span { width: 29px; height: 2px; background: currentColor; }
.eyebrow.light { color: #1aa09f; }
h1,h2,h3 { margin-top: 0; color: var(--navy); font-family: "Montserrat",sans-serif; }
h1 { margin-bottom: 24px; font-size: clamp(44px,5.3vw,73px); line-height: 1.05; letter-spacing: -3px; }
h1 em { color: var(--teal-dark); font-style: normal; }
.hero-lead { max-width: 610px; margin: 0 0 34px; color: #4d5d73; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--navy); font-size: 14px; font-weight: 800; }
.text-link span { color: var(--teal-dark); font-size: 21px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 38px 0 0; list-style: none; color: #526179; font-size: 12px; font-weight: 600; }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 19px; height: 19px; padding: 3px; border-radius: 50%; background: rgba(26,160,159,.1); fill: none; stroke: var(--teal); stroke-width: 2.5; }
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.hero-form-wrap { z-index: 2; justify-items: end; }
.hero-lead-form {
  width: min(100%, 455px); padding: 25px 28px; border: 1px solid rgba(255,255,255,.75);
  border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 28px 70px rgba(10,31,68,.2);
  backdrop-filter: blur(12px);
}
.hero-form-heading { margin-bottom: 16px; }
.hero-form-heading small { color: var(--teal); font: 800 9px "Montserrat"; letter-spacing: 1.5px; text-transform: uppercase; }
.hero-form-heading h2 { margin: 8px 0; font-size: 24px; letter-spacing: -.8px; }
.hero-form-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.hero-lead-form > label, .hero-lead-form .form-row label {
  display: grid; gap: 5px; margin-bottom: 9px; color: var(--navy); font-size: 9px; font-weight: 800;
}
.hero-lead-form input, .hero-lead-form select {
  width: 100%; padding: 9px 11px; border: 1px solid #d8e0e6; border-radius: 5px;
  outline: none; background: #fbfcfd; color: var(--ink); font-size: 11px;
}
.hero-lead-form input:focus, .hero-lead-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,160,159,.1); }
.hero-lead-form .privacy-check { display: flex; grid-template-columns: 16px 1fr; align-items: start; color: var(--muted); font-weight: 500; }
.hero-lead-form .privacy-check input { width: 15px; padding: 0; }
.visual-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(26,160,159,.1); filter: blur(10px); }
.visual-card { background: rgba(255,255,255,.97); border: 1px solid rgba(10,31,68,.07); box-shadow: var(--shadow); }
.hero-photo-card {
  position: relative; z-index: 2; width: min(100%, 520px); height: 410px; margin: 0;
  overflow: hidden; border: 8px solid white; border-radius: 14px; box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-3deg);
}
.hero-photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,31,68,.48),transparent 48%); }
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-card figcaption {
  position: absolute; z-index: 2; left: 24px; bottom: 20px; display: flex; align-items: center; gap: 9px;
  color: white; font-size: 11px; font-weight: 700;
}
.hero-photo-card figcaption span { width: 22px; height: 2px; background: #1aa09f; }
.main-dashboard { position: relative; z-index: 2; width: min(100%, 510px); padding: 28px; border-radius: 13px; transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
.dashboard-top { display: flex; justify-content: space-between; align-items: start; padding-bottom: 24px; border-bottom: 1px solid #e6ebef; }
.dashboard-top div { display: grid; gap: 4px; }
.dashboard-top span, .chart-copy small, .dashboard-stats span { color: #7b8797; font-size: 11px; }
.dashboard-top strong { color: var(--navy); font: 700 17px "Montserrat"; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 20px; background: rgba(26,160,159,.1); color: #1aa09f!important; font-weight: 700; }
.status-pill i { width: 6px; height: 6px; background: var(--teal-dark); border-radius: 50%; }
.chart-area { position: relative; padding: 24px 0 5px; }
.chart-copy { position: absolute; z-index: 2; display: grid; }
.chart-copy b { color: var(--navy); font: 700 28px "Montserrat"; }
.chart-copy span { color: var(--teal-dark); font-size: 10px; font-weight: 700; }
.chart-area svg { width: 100%; overflow: visible; }
.chart-fill { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--teal-dark); stroke-width: 3; }
.chart-area circle { fill: var(--teal-dark); stroke: white; stroke-width: 3; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding-top: 20px; border-top: 1px solid #e6ebef; }
.dashboard-stats div { display: grid; padding-left: 14px; border-left: 2px solid #edf0f3; }
.dashboard-stats strong { color: var(--navy); font: 700 18px "Montserrat"; }
.dashboard-stats small { color: var(--teal-dark); font-size: 9px; font-weight: 700; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 9px; }
.floating-card div { display: grid; }
.floating-card strong { color: var(--navy); font: 700 11px "Montserrat"; }
.floating-card small { color: #8290a1; font-size: 9px; }
.floating-top { right: -20px; top: 36px; }
.floating-bottom { left: -24px; bottom: 34px; }
.mini-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 7px; background: rgba(26,160,159,.1); }
.mini-icon svg { width: 20px; fill: none; stroke: var(--teal-dark); stroke-width: 1.8; }
.shield-icon { background: var(--navy); }
.shield-icon svg { stroke: #1aa09f; }

.trust-strip { background: var(--navy); color: white; }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-grid div { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 50px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { color: #1aa09f; font: 700 24px "Montserrat"; }
.trust-grid span { max-width: 110px; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.35; }

.section-heading { max-width: 650px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .problems-copy h2, .benefits-copy h2, .cta-copy h2, .faq-intro h2 {
  margin-bottom: 18px; font-size: clamp(34px,4vw,50px); line-height: 1.14; letter-spacing: -1.7px;
}
.section-heading > p:last-child, .heading-split > p, .problems-copy > p, .faq-intro > p { color: var(--muted); font-size: 16px; }
.path-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
.path-card { position: relative; overflow: hidden; min-height: 430px; padding: 42px; border: 1px solid var(--line); border-radius: 9px; background: white; transition: transform .25s, box-shadow .25s; }
.path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.path-card.featured { border: 0; background: var(--navy); }
.path-number { position: absolute; right: 28px; top: 13px; color: rgba(10,31,68,.05); font: 800 100px/1 "Montserrat"; }
.featured .path-number { color: rgba(255,255,255,.06); }
.path-icon, .service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 25px; border-radius: 7px; background: rgba(26,160,159,.09); }
.path-icon svg, .service-icon svg { width: 28px; fill: none; stroke: var(--teal-dark); stroke-width: 1.6; }
.featured .path-icon { background: rgba(26,160,159,.22); }
.featured .path-icon svg { stroke: #1aa09f; }
.path-card h3 { margin-bottom: 15px; font-size: 24px; }
.path-card p { max-width: 520px; color: var(--muted); font-size: 14px; }
.path-card ul { padding: 0; margin: 23px 0 28px; list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.path-card li { padding: 6px 10px; border-radius: 3px; background: var(--surface); color: #506078; font-size: 10px; font-weight: 700; }
.path-card > a, .service-card a, .article-body a { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.featured h3 { color: white; }
.featured p { color: rgba(255,255,255,.65); }
.featured li { background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }
.featured > a { color: #2f8f93; }
.path-tag { position: absolute; top: 28px; right: 28px; padding: 6px 10px; background: rgba(26,160,159,.22); color: #FFFFFF; border-radius: 20px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

.problems { background: var(--navy); }
.home-page main > .problems {
  background: var(--navy) !important;
  color: white;
}
.home-page main > .problems .eyebrow,
.home-page main > .problems .section-kicker { color: #1aa09f; }
.home-page main > .problems .problems-copy h2,
.home-page main > .problems .problem-list h3 { color: white; }
.home-page main > .problems .problems-copy > p,
.home-page main > .problems .problem-list p { color: rgba(255,255,255,.68); }
.problems-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.problems-copy h2 { color: white; }
.problems-copy > p { color: rgba(255,255,255,.62); margin-bottom: 30px; }
.button-light { border-color: white; background: white; color: var(--navy); box-shadow: none; }
.problem-list article { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.problem-list article:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.problem-list > article > span { color: #1aa09f; font: 600 13px "Montserrat"; }
.problem-list h3 { margin-bottom: 5px; color: white; font-size: 16px; }
.problem-list p { margin: 0; color: rgba(255,255,255,.54); font-size: 12px; }

.services { background: var(--surface); }
.heading-split { max-width: none; display: grid; grid-template-columns: 1.1fr .7fr; gap: 100px; align-items: end; }
.heading-split > p { margin: 0 0 10px; }
.service-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
.service-card { position: relative; grid-column: span 2; min-height: 335px; padding: 29px; border: 1px solid transparent; border-radius: 7px; background: white; transition: .25s; }
.service-card-photo {
  width: calc(100% + 58px);
  max-width: none;
  height: 125px;
  margin: -29px -29px 20px;
  object-fit: cover;
  object-position: center;
  border-radius: 7px 7px 0 0;
}
.service-card:hover { border-color: rgba(26,160,159,.5); transform: translateY(-5px); box-shadow: 0 18px 45px rgba(10,31,68,.1); }
.service-card > a::after { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: 7px; }
.service-card:focus-within { outline: 3px solid var(--teal); outline-offset: 3px; }
.service-card .service-card-photo { object-position: center 8%; }
.service-index { position: absolute; right: 22px; top: 18px; color: #c9d0d9; font: 700 12px "Montserrat"; }
.service-icon { width: 52px; height: 52px; }
.service-card h3 { font-size: 18px; }
.service-card p { min-height: 87px; color: var(--muted); font-size: 12.5px; }
.home-page .services {
  min-height: calc(100svh - 84px);
  padding: 42px 0;
}
.home-page .services .section-heading { margin-bottom: 28px; }
.home-page .services .section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}
.home-page .services .heading-split { gap: 65px; }
.home-page .services .service-grid { gap: 14px; }
.home-page .services .service-card {
  min-height: 230px;
  padding: 20px;
}
.home-page .services .service-card-photo {
  width: calc(100% + 40px);
  height: 112px;
  margin: -20px -20px 14px;
}
.home-page .services .service-icon {
  position: absolute;
  left: 18px;
  top: 91px;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 2px solid rgba(26,160,159,.3);
  background: #FFFFFF;
  box-shadow: 0 7px 18px rgba(10,31,68,.2);
}
.home-page .services .service-icon svg { width: 19px; stroke: var(--teal-dark); stroke-width: 1.9; }
.home-page .services .service-index {
  top: 125px;
  right: 18px;
}
.home-page .services .service-card h3 {
  margin: 12px 0 6px;
  font-size: 15px;
}
.home-page .services .service-card p {
  min-height: 49px;
  margin: 0 0 9px;
  font-size: 10.5px;
  line-height: 1.45;
}
.home-page .services .service-card a { font-size: 10.5px; }

.benefits-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: center; }
.benefits-visual { position: relative; min-height: 490px; display: grid; place-items: center; }
.benefits-panel {
  width: 90%; height: 440px; padding: 48px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 8px; background: linear-gradient(145deg,var(--navy),#123b68); box-shadow: var(--shadow);
}
.benefits-photo {
  position: relative; width: 90%; height: 440px; margin: 0; overflow: hidden;
  border-radius: 8px; background: var(--navy); box-shadow: var(--shadow);
}
.benefits-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,31,68,.85),rgba(10,31,68,.04) 65%); }
.benefits-photo img { width: 100%; height: 100%; object-fit: cover; }
.benefits-photo figcaption { position: absolute; z-index: 2; left: 35px; right: 30px; bottom: 33px; }
.benefits-photo small { display: block; margin-bottom: 7px; color: #1aa09f; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; }
.benefits-photo strong { color: white; font: 700 23px/1.3 "Montserrat"; }
.benefits-panel::after { content: ""; position: absolute; width: 270px; height: 270px; border: 1px solid rgba(26,160,159,.3); border-radius: 50%; top: -100px; right: -100px; box-shadow: 0 0 0 50px rgba(26,160,159,.04),0 0 0 100px rgba(26,160,159,.025); }
.benefits-panel p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }
.benefits-panel strong { position: relative; z-index: 2; color: white; font: 700 37px "Montserrat"; }
.growth-bars { height: 170px; display: flex; align-items: end; gap: 13px; margin-bottom: 38px; }
.growth-bars i { flex: 1; max-width: 42px; background: linear-gradient(to top,rgba(26,160,159,.15),#1aa09f); border-radius: 4px 4px 0 0; }
.benefit-badge { position: absolute; right: -5px; bottom: 25px; display: flex; align-items: center; gap: 13px; width: 230px; padding: 16px; border-radius: 7px; background: white; box-shadow: var(--shadow); color: var(--muted); font-size: 10px; }
.benefit-badge svg { width: 32px; padding: 7px; border-radius: 50%; background: rgba(26,160,159,.1); fill: none; stroke: var(--teal); stroke-width: 2; flex-shrink: 0; }
.benefit-badge strong { display: block; color: var(--navy); font-size: 11px; }
.benefits-copy .lead { color: var(--muted); font-size: 16px; }
.benefit-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px 25px; margin-top: 38px; }
.benefit-list article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.benefit-list article > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 5px; background: rgba(26,160,159,.08); }
.benefit-list svg { width: 20px; fill: none; stroke: var(--teal-dark); stroke-width: 1.7; }
.benefit-list h3 { margin: 0 0 5px; font-size: 13px; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 11px; }

.process { background: #f8fafb; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.process-grid::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; border-top: 1px dashed #b6c1cc; }
.process-grid article { position: relative; text-align: center; }
.process-grid article > span { position: relative; z-index: 2; display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 24px; border: 6px solid #f8fafb; border-radius: 50%; background: var(--navy); color: #1aa09f; font: 700 12px "Montserrat"; box-shadow: 0 0 0 1px #dce2e8; }
.process-grid h3 { margin-bottom: 9px; font-size: 15px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 11.5px; }

.sectors { background: var(--navy); color: white; }
.home-page main > .sectors {
  background: var(--navy) !important;
  color: white;
}
.sectors-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.sectors .section-heading { margin: 0; }
.sectors h2,
.sectors .section-heading h2,
.sectors .section-heading .eyebrow,
.sectors .section-heading .eyebrow.light { color: white; }
.sectors .section-heading .eyebrow span,
.sectors .section-heading .eyebrow.light span { background: #1aa09f; }
.sectors .section-heading > p:last-child { color: rgba(255,255,255,.58); }
.sector-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.sector-chips span { padding: 17px 21px; border: 1px solid rgba(255,255,255,.14); border-radius: 4px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 600; transition: .2s; }
.sector-chips span:hover { border-color: #1aa09f; background: rgba(26,160,159,.14); color: white; }
.home-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.home-sector-card {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: #071a39;
  isolation: isolate;
  transition: transform .22s ease, border-color .22s ease;
}
.home-sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26,160,159,.75);
}
.home-sector-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  transition: transform .35s ease, opacity .22s ease;
}
.home-sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,31,68,.08), rgba(10,31,68,.82));
}
.home-sector-card:hover img { transform: scale(1.05); opacity: .72; }
.home-sector-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
}
.home-sector-card span {
  display: inline-block;
  margin-bottom: 7px;
  color: #FFFFFF;
  font: 800 9px "Montserrat";
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.home-sector-card h3 {
  margin: 0;
  color: white;
  font-size: 15px;
  line-height: 1.2;
}

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.article-grid > article { overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: white; transition: .25s; }
.article-grid > article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-art { position: relative; overflow: hidden; height: 205px; padding: 25px; display: flex; align-items: end; background: var(--navy); }
.article-art::before, .article-art::after { content: ""; position: absolute; border: 1px solid rgba(26,160,159,.38); transform: rotate(45deg); }
.article-art::before { width: 180px; height: 180px; top: -45px; right: -25px; }
.article-art::after { width: 100px; height: 100px; top: 10px; right: 15px; }
.article-art span { position: relative; z-index: 2; color: #1aa09f; font: 700 13px "Montserrat"; text-transform: uppercase; letter-spacing: 2px; }
.article-art i { position: absolute; bottom: -18px; right: 16px; color: rgba(255,255,255,.06); font: 800 100px/1 "Montserrat"; font-style: normal; }
.art-two { background: #0e3a58; }
.art-three { background: #123154; }
.article-body { padding: 25px; }
.article-body small { color: var(--teal-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.article-body h3 { min-height: 70px; margin: 12px 0 22px; font-size: 16px; line-height: 1.45; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-intro .text-link { margin-top: 15px; }
.accordion details { border-bottom: 1px solid #cfd7df; }
.accordion details:first-child { border-top: 1px solid #cfd7df; }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; color: var(--navy); font: 700 14px "Montserrat"; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--teal-dark); font-size: 24px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -6px 45px 23px 0; color: var(--muted); font-size: 12.5px; }

.cta-section { padding: 95px 0; background: white; }
.cta-card { padding: 62px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 78px; border-radius: 10px; background: var(--navy); box-shadow: var(--shadow); }
.cta-copy h2 { color: white; }
.cta-copy > p { color: rgba(255,255,255,.62); }
.cta-trust { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 27px; color: rgba(255,255,255,.75); font-size: 11px; }
.cta-trust span { padding-right: 15px; border-right: 1px solid rgba(255,255,255,.17); }
.diagnostic-form { padding: 30px; border-radius: 7px; background: white; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.diagnostic-form label { display: grid; gap: 7px; margin-bottom: 15px; color: var(--navy); font-size: 10px; font-weight: 800; }
.diagnostic-form input, .diagnostic-form select, .diagnostic-form textarea {
  width: 100%; border: 1px solid #d8e0e6; border-radius: 4px; outline: none; background: #fbfcfd; color: var(--ink);
  padding: 12px 13px; font-size: 12px; font-weight: 500; transition: border .2s, box-shadow .2s;
}
.diagnostic-form input:focus, .diagnostic-form select:focus, .diagnostic-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,160,159,.11); }
.diagnostic-form textarea { resize: vertical; }
.privacy-check { display: flex!important; grid-template-columns: 17px 1fr; align-items: start; color: var(--muted)!important; font-weight: 500!important; line-height: 1.4; }
.privacy-check input { width: 15px; margin: 1px 0; accent-color: var(--teal-dark); }
.button-full { width: 100%; border: 0; }
.form-status { margin: 10px 0 0; color: var(--teal-dark); font-size: 11px; text-align: center; }

.site-footer { padding: 73px 0 0; background: #071936; color: rgba(255,255,255,.66); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 55px; padding-bottom: 55px; }
.brand-footer {
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.footer-grid .brand-footer { position: relative; display: block; width: 225px; height: 60px; overflow: hidden; margin: 0; }
/* El archivo original es cuadrado y tiene márgenes transparentes amplios. */
.brand-footer .brand-logo { position: absolute; width: 225px; height: 225px; max-width: none; top: -83px; left: 0; }
.footer-grid .footer-brand p { max-width: 250px; margin: 14px 0 0; font-size: 12px; }
.site-footer .footer-complaints { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 20px; color: #fff; font-size: 12px; }
.footer-complaints img { width: 180px; height: auto; border-radius: 4px; }
.footer-complaints span { text-decoration: underline; text-underline-offset: 4px; }
.footer-complaints:focus-visible { outline: 2px solid #1aa09f; outline-offset: 6px; }
.footer-grid h3 { margin-bottom: 18px; color: white; font: 700 12px "Montserrat"; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: start; }
.footer-grid a, .footer-grid > div > p { margin: 0 0 10px; font-size: 11px; }
.footer-grid a:hover { color: #1aa09f; }
.footer-bottom { min-height: 75px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }
.footer-bottom div { display: flex; gap: 20px; }
.whatsapp-fab {
  position: fixed; z-index: 999; right: 24px; bottom: 24px;
  display: grid; place-items: center; width: 56px; height: 56px;
  border: 3px solid white; border-radius: 50%; background: #25d366;
  box-shadow: 0 12px 30px rgba(10,31,68,.2);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(10,31,68,.26); }
.whatsapp-label {
  position: absolute; right: calc(100% + 13px); top: 50%;
  padding: 10px 14px; border: 1px solid rgba(10,31,68,.08); border-radius: 7px;
  background: white; color: var(--navy); box-shadow: 0 10px 28px rgba(10,31,68,.14);
  font-size: 11px; font-weight: 800; white-space: nowrap;
  opacity: 0; visibility: hidden; transform: translate(8px,-50%);
  pointer-events: none; transition: opacity .2s, transform .2s, visibility .2s;
}
.whatsapp-label::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: white;
}
.whatsapp-fab:hover .whatsapp-label,
.whatsapp-fab:focus-visible .whatsapp-label {
  opacity: 1; visibility: visible; transform: translate(0,-50%);
}
.whatsapp-icon {
  display: grid; place-items: center; width: 100%; height: 100%;
  border-radius: 50%;
}
.whatsapp-icon svg { width: 27px; height: 27px; fill: white; }

@media (max-width: 1060px) {
  .nav-wrap { gap: 20px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 12px; }
  .hero-grid { gap: 35px; }
  .floating-top { right: 0; }
  .floating-bottom { left: 0; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-card { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed; inset: 84px 0 auto; display: grid; gap: 0; padding: 16px 20px 28px;
    background: white; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s; box-shadow: var(--shadow);
    max-height: calc(100vh - 84px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid #eef1f4; font-size: 14px; }
  .main-nav a::after { display: none; }
  .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-dropdown > a > span { display: none; }
  .nav-dropdown-menu {
    position: static; width: auto; padding: 0 0 0 14px; border: 0; border-radius: 0;
    box-shadow: none; opacity: 1; visibility: visible; transform: none;
  }
  .nav-dropdown-menu a { padding: 10px 4px; color: #66758a; font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 80px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(650px,100%); margin-inline: auto; }
  .hero-with-background-form {
    background:
      linear-gradient(rgba(4,18,43,.84), rgba(5,22,51,.78)),
      url("/assets/images/hero-advisory.webp?v=20260706-img") center / cover no-repeat;
  }
  .hero-form-wrap { justify-items: center; }
  .problems-grid, .benefits-grid, .sectors-wrap, .faq-grid, .cta-card { grid-template-columns: 1fr; gap: 55px; }
  .heading-split { grid-template-columns: 1fr; gap: 10px; }
  .process-grid { grid-template-columns: repeat(2,1fr); row-gap: 45px; }
  .process-grid::before { display: none; }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .article-grid article:last-child { grid-column: 1 / -1; }
  .benefits-visual { width: min(560px,100%); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { padding-top: 72px; }
  .container { width: min(calc(100% - 28px), 1180px); }
  .section { padding: 68px 0; }
  .nav-wrap { height: 72px; }
  .main-nav { inset-block-start: 72px; }
  .brand-logo { width: 158px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-with-background-form,
  .hero-with-background-form .hero-grid { min-height: auto; }
  .hero-grid { padding-block: 64px 55px; }
  h1 { font-size: 43px; letter-spacing: -2px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { justify-content: center; }
  .hero-trust { display: grid; gap: 12px; }
  .hero-visual { min-height: 355px; margin-top: 10px; }
  .hero-form-wrap { min-height: auto; }
  .hero-lead-form { width: 100%; padding: 24px 17px; }
  .main-dashboard { width: 100%; min-width: 0; padding: 19px; transform: none; }
  .floating-card { padding: 9px 11px; }
  .floating-top { right: 5px; top: 3px; }
  .floating-bottom { left: 5px; bottom: 2px; }
  .dashboard-stats strong { font-size: 14px; }
  .dashboard-top strong { font-size: 14px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); padding-block: 15px; }
  .trust-grid div { border: 0; justify-content: flex-start; padding-left: 12px; }
  .trust-grid strong { font-size: 19px; }
  .section-heading h2, .problems-copy h2, .benefits-copy h2, .cta-copy h2, .faq-intro h2 { font-size: 33px; }
  .path-grid, .service-grid, .benefit-list, .process-grid, .article-grid, .form-row { grid-template-columns: 1fr; }
  .path-card { min-height: auto; padding: 30px 25px; }
  .path-card h3 { font-size: 21px; }
  .problem-list article { grid-template-columns: 35px 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; }
  .service-card { min-height: auto; }
  .service-card p { min-height: auto; }
  .benefits-panel { width: 100%; height: 380px; padding: 32px; }
  .benefits-photo { width: 100%; height: 380px; }
  .hero-photo-card { height: 330px; transform: none; }
  .benefit-badge { right: -3px; }
  .process-grid article { text-align: left; display: grid; grid-template-columns: 55px 1fr; column-gap: 15px; }
  .process-grid article > span { grid-row: span 2; margin: 0; }
  .process-grid h3 { margin: 5px 0 3px; }
  .sector-chips span { padding: 13px 15px; }
  .home-sector-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid article:last-child { grid-column: auto; }
  .article-body h3 { min-height: auto; }
  .cta-card { width: 100%; padding: 45px 20px; border-radius: 0; }
  .cta-section .container { width: 100%; }
  .diagnostic-form { padding: 23px 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; padding-block: 20px; }
  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-label { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .home-page main > .section,
  .home-page main > .cta-section,
  .home-page .problems,
  .home-page .sectors {
    min-height: auto;
  }
  .home-sector-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; transition-duration: .01ms!important; }
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background: linear-gradient(115deg, #f7f9fc, #FFFFFF 55%, #eef4ff);
  border-bottom: 1px solid #e7ebf0;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -170px;
  top: -190px;
  border: 1px solid rgba(26,160,159,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(26,160,159,.035), 0 0 0 120px rgba(26,160,159,.02);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  color: #748195;
  font-size: 11px;
  font-weight: 600;
}
.breadcrumbs a:hover { color: var(--teal); }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: center;
}
.page-hero h1 {
  max-width: 760px;
  margin-bottom: 23px;
  font-size: clamp(42px, 5.2vw, 68px);
}
.page-hero h1 em { color: var(--teal); }
.page-hero .hero-lead { max-width: 690px; }
.page-hero-note {
  padding: 31px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}
.page-hero-note.has-image { padding-top: 0; overflow: hidden; }
.page-note-image {
  width: calc(100% + 62px); height: 205px; margin: 0 -31px 28px;
  max-width: none; object-fit: cover; object-position: center 35%;
}
.page-hero-note > span {
  display: inline-flex;
  margin-bottom: 35px;
  color: #1aa09f;
  font: 700 11px "Montserrat";
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.page-hero-note strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font: 700 25px/1.3 "Montserrat";
}
.page-hero-note p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.page-hero-note ul { padding: 0; margin: 24px 0 0; list-style: none; }
.page-hero-note li {
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 12px;
}
.page-hero-note li::before { content: "✓"; margin-right: 9px; color: #1aa09f; font-weight: 800; }
.internal-page .page-hero {
  height: 500px;
  min-height: 500px;
  padding: 34px 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(10,31,68,.035), transparent 38%),
    linear-gradient(115deg, #f4f7fb, #FFFFFF 55%, #eaf1ff);
}
.internal-page .page-hero > .container { width: min(1180px, calc(100% - 40px)); }
.internal-page .page-hero.has-background-photo {
  background:
    linear-gradient(90deg,
      rgba(246,248,251,.99) 0%,
      rgba(246,248,251,.96) 35%,
      rgba(246,248,251,.58) 57%,
      rgba(10,31,68,.18) 100%),
    var(--page-hero-image) center / cover no-repeat;
}
.internal-page .page-hero.has-background-photo::after {
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
}
.internal-page .page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--teal);
}
.internal-page .page-hero-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
}
.internal-page .breadcrumbs { margin-bottom: 14px; }
.internal-page .page-hero .eyebrow { margin-bottom: 12px; }
.internal-page .page-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -2px;
}
.internal-page .page-hero .hero-lead {
  margin-bottom: 21px;
  font-size: 15px;
  line-height: 1.58;
}
.internal-page .page-hero-note {
  padding: 22px 25px;
  background: rgba(10,31,68,.96);
  backdrop-filter: blur(7px);
  border-radius: 4px 12px 12px 4px;
  box-shadow: 0 28px 65px rgba(10,31,68,.17);
}
.internal-page .page-hero-note > span { margin-bottom: 17px; }
.internal-page .page-hero-note strong {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.24;
}
.internal-page .page-hero-note p { font-size: 11px; }
.internal-page .page-hero-note ul { margin-top: 14px; }
.internal-page .page-hero-note li { padding: 10px 0 10px 28px; font-size: 13px; line-height: 1.65; }
.internal-page main > .section:not(.soft-section):not(.dark-section) {
  background:
    linear-gradient(90deg, rgba(26,160,159,.025) 1px, transparent 1px);
  background-size: 72px 100%;
}
.internal-page .section-heading {
  position: relative;
  padding-left: 22px;
}
.internal-page .section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 44px;
  border-radius: 3px;
  background: var(--teal);
}
.internal-page .section-heading.centered { padding-left: 0; }
.internal-page .section-heading.centered::before { display: none; }
.internal-page .soft-section {
  background: linear-gradient(135deg, #f2f5f9 0%, #f8faff 100%);
  border-top: 1px solid #e5eaf0;
  border-bottom: 1px solid #e5eaf0;
}
.intro-grid, .content-split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 95px;
  align-items: start;
}
.content-split.reverse { grid-template-columns: 1.15fr .85fr; }
.content-split.align-center { align-items: center; }
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font: 700 11px "Montserrat";
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.content-title {
  margin-bottom: 22px;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.16;
  letter-spacing: -1.4px;
}
.content-copy > p, .rich-copy p { color: var(--muted); font-size: 15px; }
.content-copy > p:first-of-type { font-size: 17px; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.metric-card {
  min-height: 155px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}
.metric-card strong { display: block; margin-bottom: 8px; color: var(--teal); font: 700 28px "Montserrat"; }
.metric-card span { display: block; color: var(--navy); font: 700 13px "Montserrat"; }
.metric-card p { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.soft-section { background: var(--surface); }
.dark-section { background: var(--navy); color: white; }
.dark-section h2, .dark-section h3 { color: white; }
.dark-section .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.values-grid, .feature-grid, .sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card, .feature-card, .sector-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}
.value-card span, .feature-card > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 21px;
  border-radius: 6px;
  background: rgba(26,160,159,.09);
  color: var(--teal);
  font: 800 12px "Montserrat";
}
.value-card h3, .feature-card h3, .sector-card h3 { margin-bottom: 10px; font-size: 16px; }
.value-card p, .feature-card p, .sector-card p { margin: 0; color: var(--muted); font-size: 12px; }
.promise-panel {
  padding: 43px;
  border-radius: 9px;
  background: var(--navy);
  color: white;
}
.promise-panel h3 { color: white; font-size: 25px; }
.promise-panel p { color: rgba(255,255,255,.63); }
.check-list { display: grid; gap: 0; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 14px 0 14px 31px;
  border-top: 1px solid rgba(10,31,68,.1);
  color: #4d5b70;
  font-size: 13px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.promise-panel .check-list li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.78); }
.page-hero-note .check-list li { color: #FFFFFF; border-color: rgba(255,255,255,.18); padding-left: 28px; line-height: 1.65; }
.page-hero-note .check-list li::before { left: 0; margin: 0; }
.service-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.directory-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: .25s;
}
.directory-card-with-image {
  display: block;
  padding: 0;
  overflow: hidden;
}
.directory-card-with-image > img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: center;
}
.directory-card-copy { position: relative; padding: 27px 31px 30px 82px; }
.directory-card-copy .number { position: absolute; left: 31px; top: 31px; }
.directory-card-guidance { align-items: center; }
.guidance-visual {
  display: grid; place-items: center; width: 60px; height: 100%;
  min-height: 150px; border-radius: 7px; background: var(--navy);
}
.guidance-visual span { color: #1aa09f; font: 700 34px "Montserrat"; }
.directory-card:hover { transform: translateY(-4px); border-color: rgba(26,160,159,.42); box-shadow: var(--shadow); }
.directory-card .number { color: #b3becb; font: 700 12px "Montserrat"; }
.directory-card h2 { margin-bottom: 9px; font-size: 21px; }
.directory-card p { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.directory-card a { color: var(--teal); font-size: 12px; font-weight: 800; }
.service-layout {
  display: block;
  align-items: start;
}
.service-content { max-width: 980px; margin-inline: auto; }
.service-detail-image {
  height: 380px; margin: 30px 0 38px; overflow: hidden;
  border-radius: 10px; box-shadow: var(--shadow);
}
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-content h2 { margin: 48px 0 17px; font-size: 31px; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { color: var(--muted); }
.service-content .feature-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.service-content .methodology-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.methodology-grid .feature-card { padding: 22px 16px; min-width: 0; }
.methodology-grid .methodology-step { display: flex; align-items: center; justify-content: center; width: 64px; min-height: 64px; padding: 8px; margin: 0 0 18px; border-radius: 6px; background: #e8f5f4; color: #087875; font-size: 13px; line-height: 1.4; }
.methodology-grid .feature-card p { color: #4d5b70; font-size: 14px; line-height: 1.65; }
@media (min-width: 621px) and (max-width: 1000px) {
  .service-content .methodology-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.service-sidebar { position: sticky; top: 110px; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 8px; }
.service-whatsapp-button { background: #25b85a; border-color: #25b85a; box-shadow: 0 12px 28px rgba(37,184,90,.2); }
.service-whatsapp-button:hover { background: #20a650; box-shadow: 0 15px 32px rgba(37,184,90,.28); }
.service-whatsapp-button svg { width: 19px; height: 19px; fill: white; }
.button-outline {
  border-color: rgba(10,31,68,.24); background: white; color: var(--navy); box-shadow: none;
}
.button-outline:hover { border-color: var(--teal); background: #E6E8EC; color: var(--navy); box-shadow: none; }
.modal-open { overflow: hidden; }
.service-modal {
  position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center;
  padding: 22px; opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s;
}
.service-modal.open { opacity: 1; visibility: visible; }
.service-modal-backdrop { position: absolute; inset: 0; background: rgba(4,17,39,.7); backdrop-filter: blur(6px); }
.service-modal-dialog {
  position: relative; z-index: 1; width: min(680px, 100%); max-height: calc(100vh - 44px);
  overflow-y: auto; padding: 38px; border-radius: 12px; background: white;
  box-shadow: 0 30px 90px rgba(0,0,0,.28); transform: translateY(16px) scale(.98); transition: transform .22s;
}
.service-modal.open .service-modal-dialog { transform: translateY(0) scale(1); }
.service-modal-close {
  position: absolute; right: 18px; top: 14px; display: grid; place-items: center;
  width: 36px; height: 36px; border: 0; border-radius: 50%; background: #eff3f8;
  color: var(--navy); font-size: 25px; line-height: 1;
}
.service-modal-close:hover { background: #e2e9f2; }
.service-modal-heading { margin-bottom: 27px; padding-right: 35px; }
.service-modal-heading h2 { margin-bottom: 9px; font-size: 30px; }
.service-modal-heading p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.service-popup-form label {
  display: grid; gap: 7px; margin-bottom: 15px; color: var(--navy); font-size: 10px; font-weight: 800;
}
.service-popup-form input, .service-popup-form textarea {
  width: 100%; padding: 13px; border: 1px solid #d8e0e6; border-radius: 5px;
  outline: none; background: #fbfcfd; color: var(--ink); font-size: 12px; font-weight: 500;
}
.service-popup-form select {
  width: 100%; padding: 13px; border: 1px solid #d8e0e6; border-radius: 5px;
  outline: none; background: #fbfcfd; color: var(--ink); font-size: 12px; font-weight: 500;
}
.service-popup-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,160,159,.11); }
.service-popup-form input:focus, .service-popup-form textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,160,159,.11);
}
.sidebar-card {
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.sidebar-card.primary { border: 0; background: var(--navy); color: white; }
.sidebar-card h3 { margin-bottom: 12px; font-size: 18px; }
.sidebar-card.primary h3 { color: white; }
.sidebar-card p { color: var(--muted); font-size: 12px; }
.sidebar-card.primary p { color: rgba(255,255,255,.62); }
.sidebar-links { display: grid; }
.sidebar-links a { padding: 12px 0; border-bottom: 1px solid var(--line); color: #526077; font-size: 12px; font-weight: 600; }
.sidebar-links a:hover, .sidebar-links a.active { color: var(--teal); }
.cta-band {
  padding: 70px 0;
  background: var(--navy);
}
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.cta-band h2 { max-width: 700px; margin: 0; color: white; font-size: clamp(28px, 3.5vw, 43px); }
.cta-band p { max-width: 620px; margin: 12px 0 0; color: rgba(255,255,255,.62); }
.sector-card { min-height: 230px; }
.sector-card-image { padding: 0; overflow: hidden; }
.sector-card-image > img { width: 100%; height: 170px; object-fit: cover; }
.sector-card-image > div { padding: 25px 28px 29px; }
.sector-card-image .sector-label { margin-bottom: 18px; }
.sector-card .sector-label { display: inline-block; margin-bottom: 35px; color: var(--teal); font: 800 10px "Montserrat"; letter-spacing: 1.4px; text-transform: uppercase; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: white; }
.blog-card .article-art { height: 175px; }
.blog-card .article-body h2 { min-height: 68px; margin: 12px 0 18px; font-size: 17px; line-height: 1.42; }
.category-list { display: grid; padding: 0; margin: 0; list-style: none; }
.category-list a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.faq-full { max-width: 850px; margin-inline: auto; }
.faq-group { margin-bottom: 55px; }
.faq-group h2 { margin-bottom: 20px; font-size: 25px; }
.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 75px;
  align-items: stretch;
}
.contact-grid > .content-copy {
  display: flex; flex-direction: column; height: 100%;
  padding: 30px; border: 1px solid var(--line); border-radius: 7px; background: white;
}
.contact-grid > .content-copy .section-kicker { margin-top: 0; }
.contact-grid > .content-copy .content-title { margin-bottom: 14px; }
.contact-grid > .content-copy > p:not(.section-kicker) { margin-top: 0; font-size: 13px; }
.contact-grid > .diagnostic-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}
.contact-grid > .diagnostic-form .privacy-check { margin-top: auto; }
.contact-grid > .diagnostic-form .button-full { flex-shrink: 0; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { padding: 20px; border: 1px solid var(--line); border-radius: 7px; background: white; }
.contact-card small { display: block; color: var(--teal); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.contact-card strong, .contact-card a { display: block; margin-top: 5px; color: var(--navy); font: 700 13px "Montserrat"; }
.legal-copy { max-width: 850px; margin-inline: auto; }
.legal-copy h2 { margin-top: 40px; font-size: 23px; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: 13px; }
.article-page { max-width: 820px; margin-inline: auto; }
.article-cover { height: 390px; margin: 0 0 42px; overflow: hidden; border-radius: 9px; box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0 0; color: #748195; font-size: 11px; }
.article-page .lead { color: #42536c; font-size: 19px; line-height: 1.7; }
.article-page h2 { margin: 46px 0 16px; font-size: 27px; }
.article-page h3 { margin: 30px 0 12px; font-size: 18px; }
.article-page p, .article-page li { color: var(--muted); font-size: 14px; }
.article-page li { margin-bottom: 9px; }
.article-callout { margin: 35px 0; padding: 25px; border-left: 4px solid var(--teal); background: #E6E8EC; color: #42536c; font-size: 13px; }
.related-section { padding: 78px 0; background: var(--surface); }
.related-section .section-heading { margin-bottom: 35px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  position: relative; min-height: 190px; padding: 26px; border: 1px solid var(--line);
  border-radius: 7px; background: white; transition: .22s;
}
.related-card:hover { transform: translateY(-4px); border-color: rgba(26,160,159,.42); box-shadow: var(--shadow); }
.related-card > span { color: var(--teal); font: 800 9px "Montserrat"; letter-spacing: 1.2px; text-transform: uppercase; }
.related-card strong { display: block; margin: 20px 0 8px; color: var(--navy); font: 700 17px "Montserrat"; }
.related-card p { max-width: 260px; margin: 0; color: var(--muted); font-size: 11px; }
.related-card b { position: absolute; right: 24px; bottom: 20px; color: var(--teal); font-size: 20px; }
@media (max-width: 860px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .related-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .article-cover { height: 245px; } }

@media (max-width: 860px) {
  .page-hero-grid, .intro-grid, .content-split, .content-split.reverse, .service-layout, .contact-grid, .blog-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .page-hero-note { max-width: 620px; }
  .internal-page .page-hero { padding: 42px 0; }
  .internal-page .page-hero { height: auto; min-height: 0; }
  .internal-page .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .internal-page .page-hero-note { max-width: 100%; }
  .internal-page .page-hero.has-background-photo {
    background:
      linear-gradient(rgba(246,248,251,.9), rgba(246,248,251,.94)),
      var(--page-hero-image) center / cover no-repeat;
  }
  .values-grid, .feature-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .service-sidebar { position: static; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .page-hero { padding: 65px 0 60px; }
  .internal-page .page-hero { padding: 35px 0 38px; }
  .internal-page .page-hero h1 { font-size: 37px; }
  .page-hero h1 { font-size: 42px; }
  .page-hero-note, .promise-panel { padding: 27px 22px; }
  .service-detail-image { height: 245px; }
  .service-hero-actions { display: grid; grid-template-columns: 1fr; }
  .service-hero-actions .button { width: 100%; }
  .service-modal { padding: 10px; }
  .service-modal-dialog { max-height: calc(100vh - 20px); padding: 29px 18px 22px; }
  .service-modal-heading h2 { font-size: 24px; }
  .metric-grid, .values-grid, .feature-grid, .sector-grid, .service-directory, .service-content .feature-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .directory-card { grid-template-columns: 38px 1fr; padding: 25px 20px; }
  .directory-card-with-image { display: block; padding: 0; }
  .directory-card-copy { padding: 24px 20px 27px 62px; }
  .directory-card-copy .number { left: 21px; top: 28px; }
  .directory-card-with-image > img { height: 165px; }
  .cta-band { padding: 55px 0; }
  .blog-card .article-body h2 { min-height: auto; }
}
