:root {
  --blue-950: #042849;
  --blue-900: #073b73;
  --blue-800: #0a4c91;
  --blue-600: #1674c5;
  --orange: #f39200;
  --orange-dark: #d97800;
  --yellow: #ffd83d;
  --ink: #102033;
  --muted: #5f6d7c;
  --line: #dce4eb;
  --surface: #f5f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(7, 59, 115, .13);
  --shadow-sm: 0 10px 30px rgba(16, 32, 51, .09);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
svg { display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 5vw, 5.35rem); }
h2 { margin-bottom: 1.1rem; font-size: clamp(2.1rem, 3.5vw, 3.55rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 800px; }
.section { position: relative; padding: 110px 0; }
.section-dark { color: var(--white); background: var(--blue-950); }
.section-dark p { color: #c1d1df; }
.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; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--blue-900); border-radius: 6px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; height: 82px; border-bottom: 1px solid rgba(220,228,235,.75); background: rgba(255,255,255,.92); backdrop-filter: blur(18px); transition: box-shadow .25s ease, height .25s ease; }
.site-header.is-scrolled { height: 72px; box-shadow: 0 9px 30px rgba(16,32,51,.08); }
.nav-wrap { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-900); text-decoration: none; }
.brand img { width: 60px; height: 55px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: Georgia, serif; font-size: 1.26rem; letter-spacing: -.03em; }
.brand small { margin-top: 5px; color: var(--orange-dark); font-size: .63rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.btn) { position: relative; padding: 28px 0; color: #405064; font-size: .92rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.btn)::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { transform: scaleX(1); }
.main-nav > a.is-active { color: var(--blue-900); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; flex: 0 0 auto; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--blue-900); transition: .2s ease; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 12px 21px; border: 1px solid transparent; border-radius: 10px; font-size: .92rem; font-weight: 800; line-height: 1; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #071d32 !important; background: var(--orange); box-shadow: 0 9px 25px rgba(243,146,0,.24); }
.btn-primary:hover { background: #ffab25; box-shadow: 0 13px 30px rgba(243,146,0,.32); }
.btn-secondary { color: #142538; background: var(--yellow); }
.btn-secondary:hover { background: #ffe36a; }
.btn-dark { color: var(--white); background: var(--blue-900); }
.btn-dark:hover { background: var(--blue-800); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.05); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-sm { min-height: 42px; padding: 10px 17px; }
.btn-lg { min-height: 56px; padding: 16px 25px; }
.btn.full { width: 100%; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--yellow) !important; font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 24px; height: 2px; background: currentColor; }
.eyebrow.orange { color: var(--orange-dark) !important; }
.eyebrow.light { color: var(--yellow) !important; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-900); font-weight: 850; text-decoration: none; }
.text-link span { color: var(--orange); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.light-link { color: var(--white); }

.hero { position: relative; min-height: calc(100vh - 82px); overflow: hidden; padding: 84px 0 0; background: radial-gradient(circle at 81% 20%, #0d5a9b 0, #073b73 24%, #042849 58%); }
.hero::before { position: absolute; top: -20%; right: -10%; width: 670px; height: 670px; border-radius: 50%; background: rgba(255,216,61,.07); content: ""; filter: blur(2px); }
.hero-grid { position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-layout { position: relative; z-index: 1; display: grid; align-items: center; grid-template-columns: .94fr 1.06fr; gap: 58px; }
.hero-layout > *, .inner-hero-grid > *, .detail-grid > *, .contact-layout > * { min-width: 0; }
.hero-copy { padding: 30px 0 64px; }
.hero-copy h1 { max-width: 680px; margin-bottom: 27px; }
.hero-copy h1 em, .inner-hero h1 em { color: var(--yellow); font-family: Georgia, serif; font-weight: 500; }
.hero-lead { max-width: 630px; margin-bottom: 33px; font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 16px 24px; padding: 0; margin: 30px 0 0; list-style: none; color: #d7e3ec; font-size: .83rem; font-weight: 700; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list svg { width: 18px; height: 18px; color: var(--yellow); }
.hero-visual { position: relative; min-width: 0; padding: 50px 0; }
.product-window { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.32); border-radius: 17px; background: var(--white); box-shadow: 0 35px 90px rgba(0,0,0,.38); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.product-window img { width: 100%; aspect-ratio: 1.79; object-fit: cover; }
.window-bar { display: flex; height: 38px; align-items: center; gap: 6px; padding: 0 13px; background: #ecf1f5; }
.window-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #bdc8d1; }
.window-bar > span:first-child { background: var(--orange); }
.window-bar small { margin-left: 8px; color: #617181; font-size: .65rem; font-weight: 700; }
.floating-card { position: absolute; z-index: 4; display: grid; padding: 13px 17px; border: 1px solid rgba(255,255,255,.7); border-radius: 12px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); }
.floating-card strong { color: var(--blue-900); font-size: .82rem; }
.floating-card span { color: var(--muted); font-size: .68rem; }
.fc-top { top: 10px; right: 2%; }
.fc-bottom { bottom: 5px; left: -3%; display: flex; align-items: center; gap: 10px; }
.fc-bottom div { display: grid; }
.pulse { position: relative; width: 13px; height: 13px; border-radius: 50%; background: #2aae72; }
.pulse::after { position: absolute; inset: -5px; border: 1px solid #2aae72; border-radius: 50%; content: ""; animation: pulse 1.8s infinite; }
.orbit { position: absolute; z-index: 0; border: 1px solid rgba(255,216,61,.2); border-radius: 50%; }
.orbit-one { top: 2%; right: -8%; width: 430px; height: 430px; }
.orbit-two { top: 14%; right: 7%; width: 330px; height: 330px; }
@keyframes pulse { 0% { opacity: 1; transform: scale(.7); } 100% { opacity: 0; transform: scale(1.5); } }
.proof-strip { position: relative; z-index: 2; display: grid; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); grid-template-columns: repeat(4,1fr); }
.proof-strip > div { display: grid; min-height: 112px; align-content: center; padding: 22px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip strong { color: var(--yellow); font-size: 1.18rem; }
.proof-strip span { color: #b7c8d6; font-size: .75rem; }

.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 52px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { font-size: 1.05rem; }
.intro-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; }
.intro-copy p { font-size: 1.08rem; }
.friction-grid { display: grid; margin-top: 58px; grid-template-columns: repeat(3,1fr); }
.friction-card { padding: 34px 35px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.friction-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.friction-card:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.friction-card > span { color: var(--orange-dark); font-size: .73rem; font-weight: 900; }
.friction-card h3 { margin: 22px 0 12px; }
.friction-card small { display: block; margin: 24px 0 7px; color: var(--blue-800); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.friction-card p { margin-bottom: 0; font-size: .92rem; }

.section-solutions { background: var(--surface); }
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.solution-card { display: flex; min-height: 340px; flex-direction: column; padding: 31px; border: 1px solid #e0e7ed; border-radius: var(--radius); background: var(--white); box-shadow: 0 3px 0 rgba(7,59,115,.04); transition: transform .25s ease, box-shadow .25s ease; }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.solution-card.featured { position: relative; display: grid; overflow: hidden; padding: 0; grid-column: 1 / -1; grid-template-columns: .9fr 1.1fr; }
.solution-content { padding: 44px; }
.solution-image { min-height: 390px; overflow: hidden; background: var(--blue-950); }
.solution-image img { width: 100%; height: 100%; object-fit: cover; }
.solution-tag { display: inline-flex; padding: 6px 10px; margin-bottom: 22px; color: var(--orange-dark); border-radius: 99px; background: #fff3df; font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.icon-box { display: grid; width: 52px; height: 52px; margin-bottom: 23px; place-items: center; color: var(--white); border-radius: 14px; background: var(--blue-900); }
.icon-box svg { width: 26px; height: 26px; }
.icon-box.yellow { color: var(--blue-950); background: var(--yellow); }.icon-box.orange { background: var(--orange); }.icon-box.blue { background: var(--blue-600); }
.solution-card p { flex: 1; font-size: .93rem; }
.check-list { padding: 0; margin: 25px 0 28px; list-style: none; }
.check-list li { position: relative; padding-left: 26px; margin: 9px 0; color: #435365; font-size: .88rem; }
.check-list li::before { position: absolute; top: .34em; left: 2px; width: 8px; height: 8px; border: 3px solid var(--orange); border-radius: 50%; content: ""; }

.section-process { color: var(--white); background: var(--blue-900); }
.section-process p { color: #c5d5e2; }
.process-layout { display: grid; grid-template-columns: .75fr 1fr; gap: 90px; }
.process-copy { position: sticky; top: 120px; align-self: start; }
.process-copy .btn { margin-top: 15px; }
.process-list { padding: 0; margin: 0; list-style: none; }
.process-list li { display: grid; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.15); grid-template-columns: 64px 1fr; }
.process-list li > span { color: var(--yellow); font-size: .75rem; font-weight: 900; }
.process-list h3 { margin-bottom: 8px; }
.process-list p { margin: 0; font-size: .92rem; }

.value-layout { display: grid; align-items: center; grid-template-columns: 1.05fr .95fr; gap: 90px; }
.value-visual { position: relative; padding: 30px 28px 54px 0; }
.map-card { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.metric-card { position: absolute; right: 0; bottom: 0; display: grid; min-width: 230px; padding: 20px 24px; border-left: 4px solid var(--orange); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); }
.metric-card small { color: var(--orange-dark); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.metric-card strong { margin: 3px 0; color: var(--blue-900); }
.metric-card span { color: var(--muted); font-size: .75rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item > button { display: grid; width: 100%; min-height: 68px; align-items: center; padding: 17px 0; color: var(--ink); border: 0; background: transparent; grid-template-columns: 46px 1fr 24px; text-align: left; font-weight: 850; }
.accordion-item > button > span { color: var(--orange-dark); font-size: .7rem; }
.accordion-item > button svg { width: 18px; height: 18px; color: var(--blue-900); transition: transform .25s ease; }
.accordion-item.is-open > button svg { transform: rotate(45deg); }
.accordion-panel { display: grid; overflow: hidden; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > p { min-height: 0; margin: 0 0 0 46px; font-size: .9rem; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { margin-bottom: 22px; }

.video-section { padding-top: 45px; background: linear-gradient(180deg, var(--white) 0 17%, var(--surface) 17%); }
.video-layout { display: grid; align-items: center; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.video-poster { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: var(--blue-950); box-shadow: var(--shadow); }
.video-poster::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,40,73,.8)); content: ""; }
.video-poster img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .82; transition: transform .45s ease; }
.video-poster:hover img { transform: scale(1.025); }
.video-poster small { position: absolute; z-index: 2; bottom: 20px; left: 22px; color: var(--white); font-weight: 800; }
.play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 70px; height: 70px; color: var(--blue-950); border-radius: 50%; background: var(--yellow); place-items: center; transform: translate(-50%,-50%); box-shadow: 0 12px 30px rgba(0,0,0,.23); }
.play svg { width: 25px; height: 25px; margin-left: 4px; }
.video-modal { width: min(92vw, 1050px); padding: 0; overflow: visible; border: 0; border-radius: 16px; background: #000; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.video-modal::backdrop { background: rgba(3,20,36,.87); backdrop-filter: blur(5px); }
.video-modal video { display: block; width: 100%; max-height: 80vh; border-radius: 16px; }
.modal-close { position: absolute; z-index: 2; top: -46px; right: 0; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; color: var(--white); border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(255,255,255,.1); font-size: 1.5rem; line-height: 1; }

.trust-section { color: var(--white); background: var(--blue-950); }
.trust-section p { color: #c0d1df; }
.trust-layout { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 90px; }
.quote-card { position: relative; padding: 52px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.quote-mark { position: absolute; top: 23px; left: 30px; color: var(--orange); font-family: Georgia,serif; font-size: 5rem; line-height: 1; opacity: .8; }
.quote-card blockquote { position: relative; margin: 25px 0; font-family: Georgia, serif; font-size: clamp(1.5rem,2.3vw,2.2rem); line-height: 1.35; }
.quote-card p { margin: 0; color: var(--yellow); font-size: .74rem; font-weight: 800; }
.final-cta { padding: 75px 0; background: var(--surface); }
.cta-box { display: grid; align-items: center; padding: 48px 52px; color: var(--white); border-radius: 28px; background: linear-gradient(125deg, var(--blue-900), var(--blue-950)); grid-template-columns: 1fr auto; gap: 50px; box-shadow: var(--shadow); }
.cta-box h2 { max-width: 700px; margin-bottom: 10px; font-size: clamp(2rem,3vw,3.1rem); }
.cta-box p { max-width: 700px; margin: 0; color: #c6d7e4; }
.cta-actions { display: flex; flex-direction: column; gap: 11px; }

.site-footer { padding: 74px 0 24px; color: #d2dce6; background: #031d33; }
.footer-grid { display: grid; padding-bottom: 60px; grid-template-columns: 1.5fr .8fr 1fr .7fr; gap: 55px; }
.footer-brand { margin-bottom: 18px; color: var(--white); }
.footer-grid p { max-width: 340px; color: #91a6b8; font-size: .85rem; }
.footer-grid h2 { margin-bottom: 20px; color: var(--yellow); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; align-items: flex-start; flex-direction: column; gap: 11px; }
.footer-grid a:not(.btn), .footer-grid span { color: #b3c2cf; font-size: .83rem; text-decoration: none; }
.footer-grid a:not(.btn):hover { color: var(--white); }
.footer-bottom { display: flex; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); justify-content: space-between; color: #8297aa; font-size: .75rem; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { color: inherit; text-decoration: none; }

/* Internal pages */
.inner-hero { position: relative; overflow: hidden; padding: 108px 0; background: radial-gradient(circle at 75% 30%, #0e5898, var(--blue-950) 58%); }
.inner-hero-grid { position: relative; z-index: 2; display: grid; align-items: center; grid-template-columns: 1.1fr .6fr; gap: 80px; }
.inner-hero h1 { margin-bottom: 23px; font-size: clamp(2.8rem,4.8vw,5rem); }
.inner-hero p:not(.eyebrow) { max-width: 680px; font-size: 1.1rem; }
.inner-orbit { position: relative; display: grid; width: 330px; height: 330px; place-self: center; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.inner-orbit::before, .inner-orbit::after { position: absolute; inset: 42px; border: 1px solid rgba(255,216,61,.28); border-radius: 50%; content: ""; transform: rotate(48deg) scaleY(.55); }
.inner-orbit::after { transform: rotate(-48deg) scaleY(.55); }
.inner-orbit strong { color: var(--yellow); font-family: Georgia,serif; font-size: 3rem; }.inner-orbit span { position: absolute; top: 42px; right: 2px; padding: 7px 13px; color: var(--blue-950); border-radius: 20px; background: var(--yellow); font-size: .7rem; font-weight: 900; }.inner-orbit small { position: absolute; bottom: 25px; left: 18px; color: var(--white); font-weight: 800; }
.detail-grid { display: grid; align-items: center; grid-template-columns: .85fr 1.15fr; gap: 75px; }
.detail-copy .lead { font-size: 1.08rem; }.pill-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 30px; }.pill-list span { padding: 7px 12px; color: var(--blue-900); border: 1px solid #cbd8e3; border-radius: 999px; background: var(--surface); font-size: .73rem; font-weight: 800; }
.detail-media { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }.detail-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }.detail-media > span { position: absolute; right: 14px; bottom: 14px; padding: 7px 11px; color: var(--white); border-radius: 7px; background: rgba(4,40,73,.86); font-size: .68rem; font-weight: 800; }
.modules-section { background: var(--surface); }.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }.module-card { position: relative; min-height: 290px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }.module-card > span { position: absolute; top: 20px; right: 22px; color: #dce5ec; font-size: 2.3rem; font-weight: 900; }.module-card > svg { width: 40px; height: 40px; margin: 15px 0 35px; color: var(--orange); }.module-card p { font-size: .9rem; }
.standard-section { color: var(--white); background: var(--blue-900); }.standard-section p { color: #c4d4e1; }.standard-layout { display: grid; align-items: center; grid-template-columns: .75fr 1.25fr; gap: 100px; }.standard-visual { display: grid; place-items: center; }.standard-ring { position: relative; display: grid; width: 300px; height: 300px; place-items: center; border: 2px solid var(--yellow); border-radius: 50%; box-shadow: inset 0 0 0 35px rgba(255,255,255,.04), 0 0 0 35px rgba(255,255,255,.03); }.standard-ring::before,.standard-ring::after { position: absolute; width: 100%; height: 45%; border: 1px solid rgba(255,216,61,.55); border-radius: 50%; content:""; }.standard-ring::after { transform: rotate(90deg); }.standard-ring strong { z-index: 1; color: var(--yellow); font-family: Georgia,serif; font-size: 4rem; }.standard-ring span { position: absolute; z-index: 1; top: 176px; font-size: 1.25rem; font-weight: 900; }.standard-ring small { position: absolute; bottom: 35px; color: #bfd1df; }.light-list li { color: #d5e0e9; }
.case-grid { display: grid; margin-top: 48px; grid-template-columns: repeat(4,1fr); gap: 17px; }.case-card { padding: 30px; border-top: 4px solid var(--orange); border-radius: 0 0 15px 15px; background: var(--surface); }.case-card svg { width: 36px; height: 36px; margin-bottom: 34px; color: var(--blue-900); }.case-card p { margin: 0; font-size: .87rem; }
.fit-section { background: var(--surface); }.fit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }.fit-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }.fit-grid strong { color: var(--blue-900); }.fit-grid p { margin: 10px 0 0; font-size: .85rem; }

/* About */
.about-symbol { display:grid; width:330px; height:330px; place-self:center; place-items:center; border:1px solid rgba(255,255,255,.16); border-radius:50%; background:rgba(255,255,255,.05); }.about-symbol img { width:250px; height:250px; object-fit:contain; }.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:100px; }.story-copy p { font-size:1.03rem; }.values-grid { display:grid; margin-top:60px; grid-template-columns:repeat(4,1fr); gap:1px; border-radius:var(--radius); overflow:hidden; background:var(--line); }.values-grid article { padding:35px 28px; background:var(--surface); }.values-grid span { color:var(--orange-dark); font-size:.7rem; font-weight:900; }.values-grid h3 { margin:24px 0 10px; }.values-grid p { margin:0; font-size:.86rem; }.team-section { background:var(--surface); }.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }.team-card { padding:35px; border:1px solid var(--line); border-radius:var(--radius); background:var(--white); }.team-card.large { display:grid; padding:0; overflow:hidden; grid-column:1/-1; grid-template-columns:.72fr 1.28fr; }.team-photo { min-height:490px; }.team-photo img { width:100%; height:100%; object-fit:cover; object-position:center 24%; }.team-card.large > div:last-child { padding:55px; }.team-card > span { display:block; margin-bottom:12px; color:var(--orange-dark); font-size:.68rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }.team-card p,.team-card li { font-size:.88rem; color:var(--muted); }.team-card ul { padding-left:18px; }.initial-avatar { display:grid; width:64px; height:64px; margin-bottom:30px; place-items:center; color:var(--white); border-radius:18px; background:var(--blue-900); font-size:1.1rem; font-weight:900; }.yellow-avatar { color:var(--blue-950); background:var(--yellow); }.experience-section { color:var(--white); background:var(--blue-900); }.experience-section p { color:#c5d5e1; }.experience-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; }.experience-list { border-top:1px solid rgba(255,255,255,.15); }.experience-list > div { display:grid; padding:24px 0; border-bottom:1px solid rgba(255,255,255,.15); grid-template-columns:.7fr 1fr; }.experience-list strong { color:var(--yellow); }.experience-list span { color:#c7d7e3; font-size:.88rem; }

/* Contact + legal */
.contact-section { position:relative; overflow:hidden; padding:95px 0 110px; color:var(--white); background:var(--blue-950); }.contact-section p { color:#c2d2df; }.contact-glow { position:absolute; top:-200px; left:-150px; width:700px; height:700px; border-radius:50%; background:#0b5c9e; opacity:.35; filter:blur(90px); }.contact-layout { position:relative; display:grid; align-items:start; grid-template-columns:.78fr 1.22fr; gap:85px; }.contact-copy { padding-top:45px; }.contact-copy h1 { margin-bottom:25px; font-size:clamp(2.8rem,4.5vw,4.7rem); }.contact-channels { display:grid; margin:38px 0; gap:12px; }.contact-channels a { display:flex; align-items:center; gap:14px; padding:16px; color:var(--white); border:1px solid rgba(255,255,255,.13); border-radius:12px; background:rgba(255,255,255,.05); text-decoration:none; }.contact-channels svg { width:24px; height:24px; color:var(--yellow); }.contact-channels span { display:grid; }.contact-channels small { color:#93aabd; }.contact-note { display:flex; align-items:center; gap:13px; }.contact-note svg { width:28px; height:28px; color:var(--orange); }.contact-note p { margin:0; font-size:.82rem; }.form-card { padding:40px; color:var(--ink); border-radius:var(--radius); background:var(--white); box-shadow:0 35px 80px rgba(0,0,0,.25); }.form-head { display:grid; margin-bottom:30px; }.form-head span { color:var(--orange-dark); font-size:.7rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }.form-head strong { font-size:1.7rem; }.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px; }.form-card label { display:grid; margin-bottom:17px; gap:7px; color:#35475a; font-size:.78rem; font-weight:800; }.form-card input:not([type=checkbox]),.form-card textarea,.form-card select { width:100%; padding:13px 14px; color:var(--ink); border:1px solid #cdd8e1; border-radius:9px; outline:none; background:var(--white); }.form-card input:focus,.form-card textarea:focus,.form-card select:focus { border-color:var(--blue-600); box-shadow:0 0 0 3px rgba(22,116,197,.12); }.form-card textarea { resize:vertical; }.privacy-check { display:flex !important; align-items:flex-start; grid-template-columns:auto 1fr !important; gap:10px !important; font-weight:500 !important; }.privacy-check input { margin-top:4px; accent-color:var(--blue-900); }.privacy-check a,.form-helper a { color:var(--blue-800); }.form-helper { margin:12px 0 0; text-align:center; font-size:.72rem; }.faq-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:90px; }.legal-page { padding:90px 0 120px; }.legal-page h1 { color:var(--blue-900); }.legal-page h2 { margin-top:42px; font-size:1.45rem; }.legal-page .btn { margin-top:25px; }

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; }.hero-copy { max-width:780px; padding-bottom:0; }.hero-visual { max-width:850px; }.intro-grid,.process-layout,.value-layout,.trust-layout,.detail-grid,.story-grid,.experience-layout,.contact-layout,.faq-layout { gap:55px; }.solutions-grid { grid-template-columns:1fr 1fr; }.solutions-grid .featured { grid-template-columns:1fr; }.solution-image { min-height:330px; }.solution-card:last-child { grid-column:1/-1; }.case-grid,.fit-grid,.values-grid { grid-template-columns:1fr 1fr; }.module-grid { grid-template-columns:1fr 1fr; }.footer-grid { grid-template-columns:1.3fr 1fr 1fr; }.footer-grid > div:last-child { grid-column:2; }.cta-box { grid-template-columns:1fr; }.cta-actions { align-items:flex-start; flex-direction:row; }
}

@media (max-width: 900px) {
  .site-header,.site-header.is-scrolled { height:72px; }.menu-toggle { display:block; }.main-nav { position:fixed; top:72px; right:0; bottom:0; left:0; display:flex; padding:35px 20px; flex-direction:column; align-items:stretch; gap:0; background:var(--white); visibility:hidden; opacity:0; transform:translateY(-10px); transition:.2s ease; }.main-nav.is-open { visibility:visible; opacity:1; transform:none; }.main-nav > a:not(.btn) { padding:17px 5px; border-bottom:1px solid var(--line); font-size:1.08rem; }.main-nav > a:not(.btn)::after { display:none; }.main-nav .btn { margin-top:24px; }.menu-toggle[aria-expanded=true] span:not(.sr-only):nth-child(2){transform:translateY(7px) rotate(45deg)}.menu-toggle[aria-expanded=true] span:not(.sr-only):nth-child(3){opacity:0}.menu-toggle[aria-expanded=true] span:not(.sr-only):nth-child(4){transform:translateY(-7px) rotate(-45deg)}
  .inner-hero-grid { grid-template-columns:1fr; }.inner-orbit,.about-symbol { display:none; }.standard-layout { grid-template-columns:1fr; }.standard-ring { width:250px;height:250px; }.standard-ring span { top:150px; }.footer-grid { grid-template-columns:1fr 1fr; }.footer-grid > div:last-child { grid-column:auto; }
}

@media (max-width: 720px) {
  .container { width:min(calc(100% - 28px),var(--container)); }.section { padding:78px 0; }.brand img { width:52px;height:48px; }.brand strong { font-size:1.08rem; }.hero { padding-top:55px; }.hero-copy h1 { max-width:100%; overflow-wrap:break-word; font-size:clamp(2.65rem,13vw,4rem); }.hero-lead { font-size:1rem; }.hero-actions,.cta-actions { flex-direction:column; align-items:stretch; }.hero-actions .btn,.cta-actions .btn { width:100%; max-width:100%; }.trust-list { align-items:flex-start; flex-direction:column; }.product-window { transform:none; }.floating-card { display:none; }.proof-strip { grid-template-columns:1fr 1fr; }.proof-strip > div { min-height:95px; padding:17px 13px; border-bottom:1px solid rgba(255,255,255,.12); }.proof-strip > div:first-child { padding-left:13px; }.proof-strip > div:nth-child(2) { border-right:0; }.intro-grid,.process-layout,.value-layout,.trust-layout,.detail-grid,.story-grid,.experience-layout,.contact-layout,.faq-layout { grid-template-columns:1fr; }.friction-grid { grid-template-columns:1fr; }.friction-card,.friction-card:first-child,.friction-card:last-child { border:1px solid var(--line); border-bottom:0; border-radius:0; }.friction-card:first-child { border-radius:var(--radius) var(--radius) 0 0; }.friction-card:last-child { border-bottom:1px solid var(--line); border-radius:0 0 var(--radius) var(--radius); }.solutions-grid,.module-grid,.case-grid,.fit-grid,.values-grid { grid-template-columns:1fr; }.solution-card.featured,.solution-card:last-child { grid-column:auto; }.solution-content { padding:30px; }.solution-image { min-height:240px; }.process-copy { position:static; }.process-list li { grid-template-columns:45px 1fr; }.video-layout { grid-template-columns:1fr; gap:30px; }.value-visual { padding-right:0; }.metric-card { right:12px; }.quote-card { padding:40px 28px; }.cta-box { padding:36px 25px; }.footer-grid { grid-template-columns:1fr; }.footer-grid > div:last-child { grid-column:auto; }.footer-bottom { align-items:flex-start; flex-direction:column; gap:12px; }.inner-hero { padding:80px 0; }.inner-hero h1 { font-size:clamp(2.6rem,12vw,4rem); }.team-grid { grid-template-columns:1fr; }.team-card.large { grid-template-columns:1fr; }.team-photo { min-height:360px; }.team-card.large > div:last-child { padding:32px; }.experience-list > div { grid-template-columns:1fr; gap:7px; }.form-card { padding:28px 20px; }.form-grid { grid-template-columns:1fr; gap:0; }.contact-section { padding-top:65px; }.contact-copy { padding-top:0; }
}

@media (max-width: 430px) { .proof-strip { grid-template-columns:1fr; }.proof-strip > div { border-right:0; }.footer-bottom div { flex-direction:column; gap:7px; } }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; } }

/* ================================================================
   Dirección visual 2026-02 · sobria, editorial y orientada a producto
   ================================================================ */
:root {
  --blue-950: #0b4666;
  --blue-900: #0e5a7a;
  --blue-800: #1475a2;
  --blue-600: #2b8bbe;
  --orange: #e28a21;
  --orange-dark: #b96612;
  --yellow: #f1cf4a;
  --ink: #0f2231;
  --muted: #596875;
  --line: #d8dde0;
  --surface: #f2f1ed;
  --white: #fff;
  --shadow: 0 24px 70px rgba(11, 70, 102, .16);
  --shadow-sm: 0 14px 34px rgba(11, 70, 102, .1);
  --radius: 12px;
  --container: 1240px;
}

body {
  color: var(--ink);
  background: #f9f9f7;
  font-family: "Segoe UI", Aptos, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.62;
}

h1, h2, h3 { letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 5.2vw, 5.7rem); font-weight: 650; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.75rem); font-weight: 630; }
h3 { font-weight: 650; }
p { color: var(--muted); }
.section { padding: 124px 0; }
.container { width: min(calc(100% - 56px), var(--container)); }
.section-heading { max-width: 790px; }
.section-heading.centered { max-width: 850px; }

.eyebrow {
  gap: 10px;
  margin-bottom: 24px;
  color: #e5edf3;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
}
.eyebrow.orange { color: var(--orange-dark); }
.eyebrow span { width: 32px; height: 1px; border-radius: 0; background: var(--orange); }

.btn {
  min-height: 46px;
  padding: 12px 21px;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .015em;
}
.btn-lg { min-height: 54px; padding: 15px 25px; }
.btn-primary { color: #fff !important; background: var(--blue-900); box-shadow: none; }
.btn-primary:hover { background: var(--blue-800); transform: translateY(-1px); }
.btn-secondary { color: var(--blue-950); background: var(--yellow); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.34); background: transparent; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.text-link { color: var(--blue-900); font-size: .83rem; letter-spacing: .01em; }

/* Identidad: el logotipo contiene nombre y lema; no se duplica texto a su lado. */
.brand > span { display: none !important; }
.site-header,
.site-header.is-scrolled {
  height: 132px;
  border-bottom: 1px solid rgba(15,34,49,.12);
  background: rgba(250,250,248,.96);
  box-shadow: none;
  backdrop-filter: blur(20px);
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(4,24,39,.07); }
.nav-wrap { gap: 34px; }
.brand { flex: 0 0 auto; gap: 0; }
.brand img {
  width: auto;
  height: 122px;
  object-fit: contain;
  filter: saturate(.92) contrast(1.02);
}
.main-nav { gap: 34px; }
.main-nav > a:not(.btn) {
  padding: 50px 0;
  color: #344655;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .025em;
}
.main-nav > a:not(.btn)::after { height: 2px; background: var(--orange); }
.main-nav .btn { margin-left: 10px; }

/* Inicio */
.hero {
  min-height: calc(100vh - 132px);
  padding: 72px 0 0;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
}
.hero::before {
  top: -35%;
  right: -15%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(241,207,74,.18);
  background: transparent;
  filter: none;
}
.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 5px;
  background: var(--orange);
  content: "";
}
.hero-grid {
  opacity: .06;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}
.hero-layout { grid-template-columns: .92fr 1.08fr; gap: 78px; }
.hero-copy { padding: 34px 0 76px; }
.hero-copy h1 { max-width: 760px; margin-bottom: 29px; }
.hero-copy h1 em,
.inner-hero h1 em { color: var(--yellow); font-family: inherit; font-style: normal; font-weight: 450; }
.hero-lead { max-width: 650px; color: #becbd3 !important; font-size: 1.08rem; }
.hero-actions { margin: 34px 0; }
.trust-list { gap: 20px 27px; }
.trust-list li { color: #c4d0d8; font-size: .72rem; letter-spacing: .02em; }
.trust-list svg { color: var(--yellow); }
.hero-visual { padding: 58px 0 70px; }
.brand-scene {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: #f7f6f1;
  box-shadow: 0 34px 80px rgba(4, 43, 64, .28);
}
.brand-scene img { width: 100%; height: 100%; object-fit: cover; }
.hero-brand-scene { aspect-ratio: 1.38; }
.hero-brand-scene img { object-position: 66% center; }
.hero-brand-scene::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(7,48,70,.78));
  content: "";
}
.hero-brand-scene figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: grid;
  color: #fff;
  text-align: right;
}
.hero-brand-scene figcaption small { color: #f6d765; font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-brand-scene figcaption strong { font-size: .82rem; letter-spacing: .01em; }
.hero-brand-scene img { transition: transform .45s ease; }
.hero-brand-scene:hover img { transform: scale(1.03); }
.hero-brand-scene figcaption { pointer-events: none; }
.hero-play { position: absolute; inset: 0; z-index: 3; width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.product-window {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 8px;
  box-shadow: 0 38px 90px rgba(0,0,0,.33);
  transform: none;
}
.window-bar { height: 42px; background: #e7eaeb; }
.window-bar small { color: #5a6873; letter-spacing: .025em; }
.orbit { border-color: rgba(241,207,74,.18); }
.floating-card {
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.proof-strip { margin-top: 26px; }
.proof-strip > div { min-height: 104px; }
.proof-strip strong { color: var(--yellow); font-size: 1.05rem; letter-spacing: -.01em; }
.proof-strip span { color: #9fb0bc; font-size: .7rem; }

.section-intro { background: #f9f9f7; }
.intro-grid { gap: 120px; }
.friction-grid { margin-top: 74px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.friction-card { border-color: var(--line); border-radius: 0; background: transparent; }
.friction-card:hover { background: #fff; transform: none; box-shadow: none; }
.friction-card > span { color: var(--orange-dark); }
.friction-card small { color: var(--blue-800); }

.section-solutions { background: var(--surface); }
.solutions-grid { gap: 14px; }
.solution-card {
  min-height: 350px;
  border: 1px solid #d6dbdd;
  border-radius: 8px;
  background: #fafaf8;
  box-shadow: none;
}
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.solution-card.featured { border-radius: 8px; background: #fff; }
.solution-content { padding: 52px; }
.solution-image { background: #f7f6f1; }
.solution-image img { filter: saturate(.85) contrast(1.03); }
.solution-tag { color: var(--orange-dark); }
.icon-box { border-radius: 6px; background: var(--blue-900); }

.section-process { background: var(--blue-950); }
.process-layout { gap: 120px; }
.process-list li { border-color: rgba(255,255,255,.13); }
.process-list > li > span { color: var(--yellow); }
.process-list h3 { font-size: 1.42rem; }

.section-value { background: #f9f9f7; }
.map-card,
.metric-card { border-radius: 8px; }
.map-card { box-shadow: var(--shadow); }
.metric-card { border-left: 4px solid var(--orange); box-shadow: var(--shadow-sm); }
.accordion-item { border-color: var(--line); }
.accordion-item > button { font-size: .98rem; }
.accordion-item > button > span { color: var(--orange-dark); }

.video-section { background: linear-gradient(180deg, #f9f9f7 0 17%, var(--surface) 17%); }
.video-poster { border-radius: 8px; box-shadow: var(--shadow); }
.video-poster::after { background: linear-gradient(transparent 55%, rgba(4,24,39,.78)); }
.play { color: var(--blue-950); background: var(--yellow); }
.trust-section { background: var(--blue-900); }
.trust-section .light-link { color: #fff; }
.trust-section .light-link span { color: var(--yellow); }
.quote-card { color: var(--ink); border-color: var(--line); border-radius: 8px; background: #fff; }
.quote-card blockquote { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.quote-card p { color: var(--orange-dark); }
.final-cta { background: #f9f9f7; }
.cta-box { border-radius: 8px; background: var(--blue-950); }

/* Páginas internas */
.inner-hero {
  padding: 126px 0;
  background: var(--blue-950);
}
.inner-hero::after,
.contact-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 5px;
  background: var(--orange);
  content: "";
}
.inner-orbit,
.about-symbol { border-color: rgba(241,207,74,.28); background: rgba(255,255,255,.025); }
.about-symbol {
  display: block;
  overflow: hidden;
  width: min(100%, 480px);
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 10px;
  background: #dfe7e8;
  box-shadow: 0 30px 70px rgba(3,29,51,.34);
}
.about-symbol img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.values-intro { margin-top: 64px; }
.values-intro .eyebrow { margin-bottom: 9px; }
.values-intro > p:last-child { margin: 0; color: var(--ink); font-size: 1.06rem; }
.values-intro + .values-grid { margin-top: 26px; }
.visual-frame,
.team-card,
.form-card { border-radius: 8px; }
.visual-frame { box-shadow: var(--shadow); }
.module-card,
.case-card,
.fit-grid article,
.values-grid article { border-radius: 0; box-shadow: none; }
.standard-section,
.experience-section { background: var(--blue-900); }
.contact-section { background: var(--blue-950); }
.case-card { border-top-width: 2px; border-top-color: var(--orange); }
.form-card { box-shadow: 0 35px 85px rgba(0,0,0,.25); }
.form-card input:not([type=checkbox]),
.form-card textarea,
.form-card select { border-radius: 3px; background: #fbfbfa; }
.contact-channels a { border-radius: 4px; }
.legal-page { background: #f9f9f7; }

/* Pie claro para que los azules del logotipo conserven contraste. */
.site-footer { padding: 82px 0 28px; color: #3f5867; background: #ececec; }
.footer-grid { grid-template-columns: 1.55fr .8fr 1fr .7fr; }
.footer-brand { margin: -26px 0 12px; }
.footer-brand img { width: auto; height: 210px; }
.footer-grid p { max-width: 380px; color: #526b78; }
.footer-grid h2 { color: #b85f00; font-size: .67rem; }
.footer-grid a:not(.btn),
.footer-grid span { color: #385767; }
.footer-grid a:not(.btn):hover { color: var(--blue-900); }
.footer-bottom { color: #607680; border-color: rgba(7,59,115,.16); }

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 780px; padding-bottom: 0; }
  .hero-visual { width: 100%; max-width: 850px; }
  .intro-grid,
  .process-layout { gap: 65px; }
  .footer-brand img { height: 180px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 96px; }
  .site-header,
  .site-header.is-scrolled { height: 96px; }
  .nav-wrap { width: calc(100% - 34px); justify-content: space-between; }
  .brand img { height: 90px; }
  .menu-toggle { position: absolute; z-index: 102; top: 25px; right: 17px; display: block !important; margin-left: auto; border-radius: 4px; background: var(--blue-900); }
  .menu-toggle > span:not(.sr-only) { background: #fff; }
  .main-nav { top: 96px; padding-top: 22px; background: #fafaf8; }
  .main-nav > a:not(.btn) { padding: 17px 5px; }
  .inner-hero { padding: 98px 0; }
  .footer-brand img { height: 165px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 88px 0; }
  .site-header,
  .site-header.is-scrolled { height: 90px; }
  .brand img { width: auto; height: 84px; }
  .main-nav { top: 90px; }
  .hero { min-height: auto; padding-top: 55px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4.15rem); }
  .hero-visual { padding-top: 20px; }
  .hero-brand-scene { aspect-ratio: 1 / 1.04; }
  .hero-brand-scene img { object-position: 64% center; }
  .proof-strip { margin-top: 10px; }
  .solution-content { padding: 32px; }
  .about-symbol { display: block; width: 100%; margin-top: 8px; }
  .values-intro { margin-top: 48px; }
  .footer-brand { margin: -18px 0 8px; }
  .footer-brand img { height: 180px; }
}

/* ==========================================================================
   Experiencia internacional (Estados Unidos)
   - .usa-teaser  : franja de enganche en la portada (con slider de tarjetas)
   - .experience-usa : bloque completo dentro de Nosotros
   ========================================================================== */

.usa-teaser { padding: 84px 0; color: var(--white); background: var(--blue-900); }
.usa-teaser p { color: #c5d5e1; }
.usa-teaser .eyebrow.orange { color: var(--yellow) !important; }
.usa-teaser h2 { margin-bottom: .8rem; }
.usa-teaser .text-link { color: var(--white); }
.usa-teaser .text-link span { color: var(--yellow); }
.usa-teaser-head { max-width: 720px; }

.experience-usa { background: var(--surface); }
.experience-usa .section-heading { margin-bottom: 34px; }
.usa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.usa-copy p { font-size: 1rem; }
.usa-copy .btn { margin-top: 12px; }
.usa-figure {
  margin: 0; overflow: hidden; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.usa-figure img { width: 100%; height: auto; }
.usa-figure figcaption { padding: 13px 17px; color: var(--muted); font-size: .78rem; border-top: 1px solid var(--line); }

/* Tarjetas de entidades */
.usa-cards { margin-top: 55px; }
.usa-cards > .eyebrow { margin-bottom: 20px; }
.usa-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.usa-card {
  display: grid; grid-template-rows: auto 1fr; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
}
.usa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usa-card-media {
  position: relative; display: grid; place-items: center; overflow: hidden;
  min-height: 132px; padding: 22px; color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
}
.usa-card.is-ccd .usa-card-media { background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); }
.usa-card-media::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 24px 24px;
}
.usa-card-media svg { position: relative; width: 38px; height: 38px; }
.usa-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.usa-card-badge {
  position: absolute; left: 14px; top: 14px; z-index: 1;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(4, 24, 39, .55); color: #fff;
  font-size: .58rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase;
}
.usa-card-body { display: grid; align-content: start; gap: 4px; padding: 20px; }
.usa-card-city { color: var(--orange-dark); font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.usa-card-body strong { color: var(--blue-900); font-size: 1rem; line-height: 1.25; }
.usa-card-body > span:last-child { color: var(--muted); font-size: .82rem; }

/* Slider (portada) */
.usa-slider { position: relative; margin-top: 60px; }
.usa-slider-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(240px, calc(33.333% - 14px));
  gap: 20px; padding-bottom: 4px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.usa-slider-track::-webkit-scrollbar { display: none; }
.usa-slider-track > .usa-card { scroll-snap-align: start; }
.usa-slider-nav {
  position: absolute; top: -58px; z-index: 3;
  display: grid; place-items: center; width: 42px; height: 42px; padding: 0;
  font-size: 1.4rem; line-height: 1; color: var(--blue-900);
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-sm); transition: opacity .2s ease;
}
.usa-slider-nav.prev { right: 52px; }
.usa-slider-nav.next { right: 0; }
.usa-slider.at-start .usa-slider-nav.prev,
.usa-slider.at-end .usa-slider-nav.next { opacity: .3; pointer-events: none; }

@media (max-width: 900px) {
  .usa-grid { grid-template-columns: 1fr; gap: 34px; }
  .usa-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .usa-slider { margin-top: 34px; }
  .usa-slider-track { grid-auto-columns: minmax(230px, 80%); }
  .usa-slider-nav { display: none; }
}
@media (max-width: 600px) {
  .usa-cards-grid { grid-template-columns: 1fr; }
}

/* Contacto: sin formulario en línea mientras se configura el proveedor de correo */
.form-card > p { font-size: .92rem; }
.form-card .contact-guide { margin-top: 14px; font-size: .82rem; color: var(--muted); }
.contact-cta { display: grid; gap: 12px; margin-top: 24px; }
