:root {
  --navy-950: #071422;
  --navy-900: #0c1c30;
  --navy-800: #10243f;
  --navy-700: #183858;
  --gold-500: #b8893c;
  --gold-400: #d0a95f;
  --ivory: #f7f3eb;
  --paper: #fcfbf8;
  --white: #ffffff;
  --ink: #1b2530;
  --muted: #617080;
  --line: #dce2e7;
  --soft-blue: #edf3f7;
  --success: #155f47;
  --shadow: 0 20px 60px rgba(6, 20, 35, .12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 1000; background: var(--white); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, .92);
  border-bottom: 1px solid rgba(16, 36, 63, .08);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: max-content; }
.brand-monogram {
  width: 48px; height: 48px; border-radius: 4px 15px 4px 15px;
  display: grid; place-items: center; color: var(--white); background: var(--navy-800);
  font-family: Georgia, serif; font-size: 21px; letter-spacing: -2px; box-shadow: inset -4px -4px 0 rgba(184,137,60,.25);
}
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { color: var(--navy-900); font-size: 17px; letter-spacing: .02em; }
.brand-text small { color: var(--muted); font-size: 11px; margin-top: 4px; text-transform: uppercase; letter-spacing: .13em; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { text-decoration: none; color: var(--navy-800); font-size: 14px; font-weight: 650; }
.main-nav a:hover { color: var(--gold-500); }
.nav-cta { border: 1px solid var(--navy-800); padding: 10px 17px; border-radius: 999px; }
.nav-cta:hover { background: var(--navy-800); color: var(--white) !important; }
.menu-button { display: none; background: transparent; border: 0; padding: 10px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--navy-800); margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: var(--ivory); padding: 95px 0 88px; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(184,137,60,.12); right: -250px; top: -200px; filter: blur(4px); }
.hero-grid-overlay { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(16,36,63,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(16,36,63,.08) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black, transparent 78%); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 78px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--gold-500); font-weight: 800; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section h2 { font-family: Georgia, "Times New Roman", serif; color: var(--navy-900); line-height: 1.05; letter-spacing: -.025em; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(48px, 6vw, 78px); }
.hero-lead { max-width: 720px; margin: 28px 0 0; font-size: 20px; color: #465563; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 37px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy-800); color: var(--white); }
.button-primary:hover { background: var(--navy-700); }
.button-secondary { border-color: rgba(16,36,63,.35); color: var(--navy-800); background: rgba(255,255,255,.42); }
.button-secondary:hover { background: var(--white); }
.button-light { background: var(--white); color: var(--navy-900); }
.button-full { width: 100%; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 34px 0 0; }
.hero-points li { padding: 7px 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(16,36,63,.1); border-radius: 999px; font-size: 13px; color: var(--navy-800); }
.hero-panel { position: relative; padding: 36px; color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.hero-panel::after { content: ""; position: absolute; inset: auto -70px -80px auto; width: 240px; height: 240px; border: 1px solid rgba(208,169,95,.28); border-radius: 50%; }
.panel-mark { display: flex; font-family: Georgia, serif; font-size: 64px; line-height: 1; color: rgba(255,255,255,.09); letter-spacing: -9px; }
.panel-label { color: var(--gold-400); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.hero-panel h2 { margin: 10px 0 17px; color: var(--white); font-size: 37px; font-family: Georgia, serif; line-height: 1.12; }
.hero-panel p { color: rgba(255,255,255,.75); }
.panel-divider { width: 64px; height: 2px; background: var(--gold-500); margin: 27px 0; }
.panel-note { margin: 0; font-size: 13px; }

.trust-strip { background: var(--white); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 25px 23px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy-800); font-size: 14px; }
.trust-grid span { color: var(--muted); font-size: 12px; margin-top: 3px; }

.section { padding: 105px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; margin-bottom: 53px; }
.section-heading h2 { margin: 0; font-size: clamp(39px, 5vw, 58px); }
.section-heading > p { margin: 0; color: var(--muted); font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 330px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(16,36,63,.08); border-color: rgba(184,137,60,.45); }
.featured-card { grid-column: span 2; background: var(--soft-blue); }
.service-number { color: var(--gold-500); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.service-card h3 { margin: 42px 0 14px; color: var(--navy-800); font-family: Georgia, serif; font-size: 25px; line-height: 1.15; }
.service-card p { color: var(--muted); margin: 0; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 23px 0 0; padding: 0; }
.service-card li { font-size: 12px; padding: 6px 10px; border-radius: 999px; background: var(--white); color: var(--navy-700); border: 1px solid rgba(16,36,63,.08); }

.section-dark { background: var(--navy-900); color: var(--white); }
.experience-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.eyebrow-light { color: var(--gold-400); }
.section-dark h2 { color: var(--white); font-size: clamp(42px, 5vw, 60px); margin: 0 0 26px; }
.large-text { font-size: 18px; color: rgba(255,255,255,.7); }
.experience-list { border-top: 1px solid rgba(255,255,255,.16); }
.experience-item { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.experience-item > span { color: var(--gold-400); font-size: 12px; font-weight: 800; }
.experience-item h3 { margin: 0 0 7px; font-size: 20px; }
.experience-item p { margin: 0; color: rgba(255,255,255,.62); }

.team-heading { margin-bottom: 40px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.profile-card { padding: 36px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 10px 35px rgba(16,36,63,.05); }
.profile-top { display: flex; align-items: center; gap: 18px; padding-bottom: 23px; margin-bottom: 23px; border-bottom: 1px solid var(--line); }
.profile-initials { flex: 0 0 66px; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--navy-800); font-family: Georgia, serif; font-size: 21px; }
.profile-card h3 { margin: 0; color: var(--navy-800); font-family: Georgia, serif; font-size: 24px; line-height: 1.15; }
.profile-top p { margin: 5px 0 0; color: var(--gold-500); font-size: 13px; font-weight: 700; }
.profile-card > p { color: var(--muted); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.profile-tags span { padding: 7px 11px; background: var(--ivory); border-radius: 999px; font-size: 12px; color: var(--navy-700); }

.process-section { background: var(--soft-blue); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { padding: 28px; border-radius: var(--radius-md); background: rgba(255,255,255,.7); border: 1px solid rgba(16,36,63,.08); }
.process-grid span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy-800); color: var(--white); font-weight: 800; }
.process-grid h3 { margin: 48px 0 10px; color: var(--navy-800); font-family: Georgia, serif; font-size: 22px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.insight-section { padding-top: 0; background: var(--soft-blue); }
.insight-card { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: center; padding: 48px; border-radius: var(--radius-lg); background: linear-gradient(130deg, var(--navy-700), var(--navy-950)); color: var(--white); }
.insight-card h2 { color: var(--white); margin: 0; font-size: 42px; }
.insight-card > p { color: rgba(255,255,255,.72); margin: 0; }

.contact-section { background: var(--ivory); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy h2 { margin: 0 0 22px; font-family: Georgia, serif; color: var(--navy-900); font-size: clamp(40px, 5vw, 57px); line-height: 1.07; }
.contact-copy > p { color: var(--muted); }
.contact-data { display: grid; margin-top: 38px; }
.contact-data a, .contact-data > div { display: grid; padding: 18px 0; border-bottom: 1px solid rgba(16,36,63,.14); text-decoration: none; }
.contact-data span { color: var(--gold-500); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.contact-data strong { margin-top: 5px; color: var(--navy-800); font-size: 15px; overflow-wrap: anywhere; }
.contact-form { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 15px 45px rgba(16,36,63,.07); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: var(--navy-800); font-size: 13px; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #ccd5dc; border-radius: 10px; background: #fff; padding: 12px 13px; color: var(--ink); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(184,137,60,.13); }
.consent-check { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 450 !important; line-height: 1.45; }
.consent-check input { width: 17px; height: 17px; margin-top: 2px; }
.consent-check a { color: var(--navy-700); }
.form-note { text-align: center; margin: 13px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,.68); padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 70px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text small { color: rgba(255,255,255,.5); }
.footer-grid > div:first-child > p { max-width: 420px; margin-top: 23px; }
.footer-grid h3 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 17px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; margin-top: 45px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }
.footer-bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #25d366; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.whatsapp-float svg { width: 29px; fill: white; }

.legal-page { min-height: 70vh; padding: 80px 0 100px; }
.legal-page article { max-width: 850px; }
.legal-page h1 { font-family: Georgia, serif; color: var(--navy-900); font-size: 50px; line-height: 1.05; }
.legal-page h2 { margin-top: 38px; color: var(--navy-800); }
.legal-page p, .legal-page li { color: var(--muted); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--gold-500); font-weight: 750; text-decoration: none; }

@media (max-width: 1020px) {
  .main-nav { position: fixed; inset: 85px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; background: var(--white); padding: 22px; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px 4px; }
  .menu-button { display: block; }
  .hero-layout, .experience-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 70px; }
  .hero-panel { max-width: 650px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 74px; }
  .brand-monogram { width: 43px; height: 43px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 9px; }
  .main-nav { inset-top: 75px; }
  .hero { padding: 57px 0 65px; }
  .hero h1 { font-size: 46px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 75px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .services-grid, .team-grid, .process-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: auto; }
  .service-card { min-height: auto; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .insight-card { padding: 32px 25px; }
  .insight-card h2 { font-size: 36px; }
  .legal-page h1 { font-size: 40px; }
}


/* Mobile-friendly compact layout */
.service-card-head { display: block; }
.card-toggle { appearance: none; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; font: inherit; }
.card-toggle-icon, .profile-toggle, .mobile-action-bar { display: none; }
.profile-collapsible { display: block; }

@media (max-width: 720px) {
  html { scroll-padding-top: 66px; }
  body { line-height: 1.52; padding-bottom: 66px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { backdrop-filter: blur(12px); }
  .header-inner { min-height: 64px; gap: 14px; }
  .brand { gap: 9px; }
  .brand-monogram { width: 38px; height: 38px; border-radius: 4px 12px 4px 12px; font-size: 17px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { display: none; }
  .menu-button { padding: 7px; }
  .menu-button span:not(.sr-only) { width: 23px; margin: 4px 0; }
  .main-nav { inset: 69px 12px auto 12px; padding: 14px; border-radius: 15px; gap: 0; }
  .main-nav a { padding: 10px 8px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 7px; text-align: center; }

  .hero { padding: 38px 0 42px; }
  .hero::before { width: 280px; height: 280px; right: -150px; top: -120px; }
  .hero-grid-overlay { background-size: 38px 38px; opacity: .18; }
  .hero-layout { gap: 24px; }
  .eyebrow { margin-bottom: 10px; font-size: 10px; letter-spacing: .15em; }
  .hero h1 { font-size: clamp(35px, 10vw, 43px); line-height: 1.02; }
  .hero-lead { margin-top: 16px; font-size: 15px; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 22px; }
  .button { min-height: 44px; padding: 0 14px; font-size: 13px; }
  .hero-points { margin-top: 18px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
  .hero-points::-webkit-scrollbar { display: none; }
  .hero-points li { flex: 0 0 auto; padding: 6px 10px; font-size: 11px; }
  .hero-panel { padding: 20px; border-radius: 18px; }
  .panel-mark, .panel-label, .panel-divider { display: none; }
  .hero-panel h2 { margin: 0 0 8px; font-size: 24px; }
  .hero-panel p { margin: 0; font-size: 13px; line-height: 1.5; }
  .hero-panel .panel-note { margin-top: 9px; color: var(--gold-400); font-size: 11px; }

  .trust-strip { padding: 12px 0; }
  .trust-grid { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .trust-grid::-webkit-scrollbar { display: none; }
  .trust-grid > div { flex: 0 0 72%; padding: 13px 14px; border: 1px solid var(--line) !important; border-radius: 13px; scroll-snap-align: start; background: var(--white); }
  .trust-grid strong { font-size: 12px; }
  .trust-grid span { font-size: 10px; }

  .section { padding: 48px 0; }
  .section-heading { gap: 10px; margin-bottom: 23px; }
  .section-heading h2 { font-size: 32px; line-height: 1.08; }
  .section-heading > p { font-size: 14px; line-height: 1.5; }

  .services-grid { gap: 10px; }
  .service-card, .featured-card { padding: 0; min-height: auto; border-radius: 14px; overflow: hidden; background: var(--white); }
  .service-card:hover { transform: none; box-shadow: none; }
  .service-card-head { display: grid; grid-template-columns: 31px 1fr; align-items: center; gap: 8px; padding: 14px 15px; }
  .service-number { font-size: 10px; }
  .service-card h3 { margin: 0; font-size: 17px; line-height: 1.2; }
  .card-toggle { display: grid; grid-template-columns: 1fr 26px; align-items: center; gap: 8px; cursor: pointer; color: var(--navy-800); }
  .card-toggle-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--soft-blue); font-family: system-ui, sans-serif; font-size: 18px; line-height: 1; transition: transform .2s ease, background .2s ease; }
  .service-card.is-open .card-toggle-icon { transform: rotate(45deg); background: var(--navy-800); color: var(--white); }
  .card-collapsible { display: none; padding: 0 15px 15px 54px; }
  .service-card.is-open .card-collapsible { display: block; }
  .card-collapsible p { font-size: 13px; line-height: 1.5; }
  .service-card ul { margin-top: 12px; gap: 6px; }
  .service-card li { padding: 5px 8px; font-size: 10px; }

  .experience-layout { gap: 23px; }
  .section-dark h2 { font-size: 32px; margin-bottom: 13px; }
  .large-text { font-size: 14px; margin-bottom: 0; }
  .experience-item { grid-template-columns: 30px 1fr; gap: 8px; padding: 14px 0; }
  .experience-item h3 { font-size: 16px; margin-bottom: 3px; }
  .experience-item p { font-size: 12px; line-height: 1.45; }

  .team-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 5px; }
  .team-grid::-webkit-scrollbar { display: none; }
  .profile-card { flex: 0 0 88%; padding: 18px; border-radius: 17px; scroll-snap-align: start; }
  .profile-top { gap: 12px; padding-bottom: 14px; margin-bottom: 0; border-bottom: 0; }
  .profile-initials { flex-basis: 48px; width: 48px; height: 48px; font-size: 16px; }
  .profile-card h3 { font-size: 19px; }
  .profile-top p { font-size: 11px; }
  .profile-toggle { display: flex; width: 100%; justify-content: space-between; align-items: center; margin-top: 11px; padding: 9px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--navy-700); font-size: 12px; font-weight: 750; cursor: pointer; }
  .profile-toggle > span:last-child { font-size: 18px; transition: transform .2s ease; }
  .profile-card.is-open .profile-toggle > span:last-child { transform: rotate(45deg); }
  .profile-collapsible { display: none; padding-top: 11px; }
  .profile-card.is-open .profile-collapsible { display: block; }
  .profile-card > .profile-collapsible > p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted); }
  .profile-tags { margin-top: 12px; gap: 6px; }
  .profile-tags span { padding: 5px 8px; font-size: 10px; }

  .process-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
  .process-grid::-webkit-scrollbar { display: none; }
  .process-grid article { flex: 0 0 76%; padding: 17px; border-radius: 14px; scroll-snap-align: start; }
  .process-grid span { width: 30px; height: 30px; font-size: 12px; }
  .process-grid h3 { margin: 22px 0 6px; font-size: 17px; }
  .process-grid p { font-size: 12px; line-height: 1.45; }

  .insight-section { padding-top: 0; }
  .insight-card { gap: 14px; padding: 22px 19px; border-radius: 17px; }
  .insight-card h2 { font-size: 28px; }
  .insight-card > p { font-size: 13px; line-height: 1.5; }
  .insight-card .button { width: auto; justify-self: start; }

  .contact-layout { gap: 25px; }
  .contact-copy h2 { font-size: 33px; margin-bottom: 13px; }
  .contact-copy > p { font-size: 13px; }
  .contact-data { margin-top: 18px; }
  .contact-data a, .contact-data > div { padding: 11px 0; }
  .contact-data strong { font-size: 13px; }
  .contact-form { padding: 18px; border-radius: 17px; }
  .contact-form label { gap: 6px; margin-bottom: 12px; font-size: 12px; }
  .contact-form input, .contact-form select, .contact-form textarea { padding: 10px 11px; border-radius: 9px; font-size: 14px; }
  .contact-form textarea { min-height: 100px; }
  .consent-check { font-size: 11px !important; }
  .form-note { font-size: 10px; }

  .site-footer { padding: 38px 0 86px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 23px 18px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:first-child > p { margin: 14px 0 0; font-size: 12px; }
  .footer-grid h3 { margin-bottom: 10px; font-size: 11px; }
  .footer-grid a { font-size: 12px; }
  .footer-bottom { gap: 9px; margin-top: 24px; padding-top: 18px; font-size: 9px; }

  .whatsapp-float { display: none; }
  .mobile-action-bar { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 8px; padding: 8px 12px max(8px, env(safe-area-inset-bottom)); background: rgba(252,251,248,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); box-shadow: 0 -8px 24px rgba(7,20,34,.08); }
  .mobile-action-bar a { min-height: 44px; display: grid; place-items: center; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 800; }
  .mobile-action-bar a:first-child { color: var(--white); background: var(--navy-800); }
  .mobile-action-bar a:last-child { color: #075e32; background: #dff8e9; }
}

@media (max-width: 390px) {
  .hero-actions { grid-template-columns: 1fr; }
  .trust-grid > div { flex-basis: 82%; }
  .profile-card { flex-basis: 92%; }
  .process-grid article { flex-basis: 84%; }
}

/* Audience-specific additions */
.people-services { background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%); }
.people-grid { grid-template-columns: repeat(2, 1fr); }
.people-grid .featured-card { grid-column: auto; border-color: rgba(177, 139, 69, .38); background: linear-gradient(145deg, #ffffff 0%, #fbf8f1 100%); }
.personal-card .service-number { color: var(--gold-500); }
.service-note { margin-top: 12px !important; padding: 11px 12px; border-left: 3px solid var(--gold-400); background: var(--cream); font-size: 12px !important; }
.audience-cta { margin-top: 26px; padding: 24px 27px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 12px 35px rgba(16,36,63,.07); }
.audience-cta div { display: grid; gap: 5px; }
.audience-cta strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 22px; }
.audience-cta span { color: var(--muted); font-size: 13px; }
.audience-cta .button { flex: 0 0 auto; }

@media (max-width: 720px) {
  .people-grid { grid-template-columns: 1fr; }
  .people-grid .featured-card { grid-column: auto; }
  .audience-cta { margin-top: 17px; padding: 17px; align-items: stretch; flex-direction: column; gap: 13px; border-radius: 14px; }
  .audience-cta strong { font-size: 18px; line-height: 1.2; }
  .audience-cta span { font-size: 12px; line-height: 1.45; }
  .audience-cta .button { width: 100%; }
}


/* Privacy notice, policy and informed consent */
.privacy-banner[hidden] { display: none !important; }
.privacy-banner { position: fixed; z-index: 500; left: 18px; right: 18px; bottom: 18px; }
.privacy-banner-inner { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 20px 22px; color: #fff; background: rgba(9, 31, 48, .98); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 18px 60px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.privacy-banner strong { display: block; margin-bottom: 5px; font-family: Georgia, serif; font-size: 20px; }
.privacy-banner p { margin: 0; max-width: 820px; color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.55; }
.privacy-banner-actions { display: flex; align-items: center; gap: 10px; }
.privacy-banner-actions a, .privacy-banner-actions button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 17px; border-radius: 999px; font: inherit; font-size: 12px; font-weight: 800; text-decoration: none; cursor: pointer; }
.privacy-banner-actions a { color: #fff; border: 1px solid rgba(255,255,255,.35); }
.privacy-banner-actions button { border: 1px solid #fff; color: var(--navy-900); background: #fff; }
.privacy-banner-actions a:hover, .privacy-banner-actions button:hover { transform: translateY(-1px); }

.privacy-form-notice { margin: 4px 0 17px; padding: 17px; border: 1px solid #c9d9d4; border-left: 4px solid var(--gold-500); border-radius: 12px; background: #f7faf9; color: var(--navy-900); }
.privacy-form-title { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.privacy-form-title > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--navy-800); font-family: Georgia, serif; font-weight: 800; }
.privacy-form-title strong, .privacy-form-title small { display: block; }
.privacy-form-title strong { font-size: 14px; }
.privacy-form-title small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.privacy-form-notice dl { display: grid; gap: 8px; margin: 0; }
.privacy-form-notice dl > div { display: grid; grid-template-columns: 88px 1fr; gap: 9px; align-items: start; }
.privacy-form-notice dt { color: var(--navy-800); font-size: 11px; font-weight: 800; }
.privacy-form-notice dd { margin: 0; color: #4c5e58; font-size: 11px; line-height: 1.45; }
.privacy-form-notice > p { margin: 13px 0 0; padding-top: 11px; border-top: 1px solid #d8e4e0; color: #4c5e58; font-size: 10px; line-height: 1.5; }
.privacy-form-notice a, .consent-check a { color: var(--navy-700); font-weight: 800; }
.consent-required { align-items: flex-start !important; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.consent-required input { flex: 0 0 auto; margin-top: 3px; }
.consent-required span { color: #3c4d48; line-height: 1.45; }
.contact-form button[disabled] { opacity: .72; cursor: wait; }

.legal-header-link { color: var(--navy-800); font-size: 13px; font-weight: 800; text-decoration: none; }
.privacy-policy { max-width: 920px; }
.privacy-policy > section { scroll-margin-top: 95px; margin-top: 46px; }
.privacy-policy h2 { margin-bottom: 14px; }
.privacy-policy h3 { margin: 24px 0 8px; color: var(--navy-800); font-size: 19px; }
.privacy-policy p, .privacy-policy li { line-height: 1.7; }
.privacy-policy ul, .privacy-policy ol { padding-left: 22px; }
.legal-updated { color: var(--muted); }
.legal-highlight { margin: 25px 0; padding: 18px 20px; border-left: 4px solid var(--gold-500); border-radius: 0 12px 12px 0; background: var(--cream); }
.legal-highlight p { margin: 0; }
.privacy-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 28px 0; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.privacy-index strong { grid-column: 1 / -1; margin-bottom: 3px; color: var(--navy-900); }
.privacy-index a { color: var(--navy-700); font-size: 13px; text-decoration: none; }
.privacy-index a:hover { text-decoration: underline; }
.legal-data-list { display: grid; gap: 0; margin: 20px 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.legal-data-list > div { display: grid; grid-template-columns: 190px 1fr; border-bottom: 1px solid var(--line); }
.legal-data-list > div:last-child { border-bottom: 0; }
.legal-data-list dt, .legal-data-list dd { margin: 0; padding: 13px 15px; }
.legal-data-list dt { color: var(--navy-900); background: #f4f7f6; font-size: 12px; font-weight: 800; }
.legal-data-list dd { font-size: 13px; }
.legal-table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: 12px; }
.legal-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; }
.legal-table th, .legal-table td { padding: 14px 15px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; font-size: 12px; line-height: 1.5; }
.legal-table th { color: #fff; background: var(--navy-800); }
.legal-table tr:last-child td { border-bottom: 0; }
.provider-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.provider-links a { display: inline-flex; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy-700); background: #fff; font-size: 11px; font-weight: 800; text-decoration: none; }
.rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0; }
.rights-grid article { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.rights-grid h3 { margin: 0 0 5px; font-size: 16px; }
.rights-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.rights-box { margin: 24px 0; padding: 22px; color: #fff; background: var(--navy-800); border-radius: 16px; }
.rights-box h3 { margin-top: 0; color: #fff; }
.rights-box p, .rights-box li { color: rgba(255,255,255,.85); }
.rights-box a:not(.button) { color: #fff; }
.rights-box .button { margin-top: 10px; background: #fff; color: var(--navy-900); }
.legal-final-contact { margin-top: 50px; padding: 26px; border-radius: 16px; text-align: center; background: var(--cream); }
.legal-final-contact h2 { margin-top: 0; }
.thank-you-page article { max-width: 760px; text-align: center; }
.success-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; color: #fff; background: #19774e; font-size: 34px; font-weight: 800; }
.thank-lead { font-size: 18px; }
.thank-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

@media (max-width: 720px) {
  .privacy-banner { left: 8px; right: 8px; bottom: 74px; }
  .privacy-banner-inner { grid-template-columns: 1fr; gap: 13px; padding: 16px; border-radius: 15px; }
  .privacy-banner strong { font-size: 17px; }
  .privacy-banner p { font-size: 11px; line-height: 1.5; }
  .privacy-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .privacy-banner-actions a, .privacy-banner-actions button { min-height: 40px; padding: 0 10px; font-size: 10px; text-align: center; }
  .privacy-form-notice { padding: 14px; }
  .privacy-form-notice dl > div { grid-template-columns: 1fr; gap: 1px; }
  .privacy-form-notice dt { font-size: 10px; }
  .privacy-form-notice dd { font-size: 10px; }
  .consent-required { padding: 10px; font-size: 10px !important; }
  .privacy-index { grid-template-columns: 1fr; padding: 16px; }
  .privacy-policy > section { margin-top: 34px; }
  .privacy-policy h3 { font-size: 17px; }
  .legal-data-list > div { grid-template-columns: 1fr; }
  .legal-data-list dt { padding-bottom: 4px; }
  .legal-data-list dd { padding-top: 4px; }
  .rights-grid { grid-template-columns: 1fr; }
  .rights-box { padding: 18px; }
  .legal-final-contact { padding: 20px 16px; }
  .thank-actions { display: grid; }
}

/* Datos legales de la sociedad */
.footer-legal-entity {
  flex-basis: 100%;
  margin: .25rem 0 0;
  font-size: .78rem;
  line-height: 1.45;
  opacity: .84;
}
.legal-identity-box {
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(16,36,63,.14);
  border-radius: 12px;
  background: rgba(244,247,246,.85);
}
.legal-identity-box p { margin: .35rem 0; }
@media (max-width: 720px) {
  .footer-legal-entity { font-size: .72rem; }
  .legal-identity-box { padding: .9rem; }
}
