:root {
  --navy-950: #061426;
  --navy-900: #071b33;
  --navy-800: #0b294c;
  --blue-600: #1479d6;
  --blue-500: #2494ee;
  --blue-100: #e9f4ff;
  --gold: #d9aa43;
  --red: #ef2a32;
  --ink: #13253a;
  --muted: #5b6978;
  --line: #dde5ed;
  --surface: #f5f8fb;
  --white: #fff;
  --shadow: 0 18px 55px rgba(5, 28, 55, .1);
  --radius: 20px;
  --container: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; left: 20px; top: -60px; padding: 10px 18px; color: var(--white); background: var(--navy-900); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: 88px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(221,229,237,.75); backdrop-filter: blur(14px); transition: box-shadow .25s, height .25s; }
.site-header.scrolled { height: 76px; box-shadow: 0 8px 35px rgba(6,20,38,.1); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; width: 184px; height: 62px; overflow: hidden; border-radius: 7px; flex: none; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-link { position: relative; color: #304356; font-size: .93rem; font-weight: 650; transition: color .2s; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--red); transition: right .25s; }
.nav-link:hover, .nav-link.active { color: var(--navy-900); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 10px; background: var(--surface); }
.menu-toggle span { width: 22px; height: 2px; border-radius: 3px; background: var(--navy-900); transition: transform .25s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 10px; font-size: .92rem; font-weight: 750; letter-spacing: .01em; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--red), #d91c27); box-shadow: 0 10px 26px rgba(239,42,50,.22); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(239,42,50,.3); }
.btn-ghost { color: var(--navy-900); border-color: #b8c6d4; background: rgba(255,255,255,.7); }
.btn-ghost:hover { border-color: var(--navy-900); background: var(--white); }
.btn-lg { min-height: 54px; padding-inline: 25px; }
.btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero { position: relative; min-height: 785px; padding: 170px 0 108px; overflow: hidden; background: radial-gradient(circle at 79% 28%, rgba(36,148,238,.16), transparent 26%), linear-gradient(120deg, #f6faff 0%, #fff 45%, #edf6ff 100%); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; left: -200px; bottom: -150px; border: 1px solid rgba(20,121,214,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(20,121,214,.035), 0 0 0 120px rgba(20,121,214,.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 75px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-600); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: var(--red); }
.hero h1 { max-width: 720px; margin: 19px 0 22px; color: var(--navy-900); font-size: clamp(2.9rem, 5vw, 4.65rem); line-height: 1.05; letter-spacing: -.047em; }
.hero h1 em { position: relative; color: var(--blue-600); font-style: normal; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 6px; border-radius: 50%; background: linear-gradient(90deg, var(--gold), rgba(217,170,67,.25)); transform: rotate(-1deg); }
.hero-copy > p { max-width: 630px; margin: 0; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; color: #415366; font-size: .89rem; font-weight: 650; }
.hero-trust div { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 19px; fill: none; stroke: var(--blue-600); stroke-width: 1.9; }

.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: linear-gradient(145deg, #dceefe, #f9fcff); box-shadow: inset 0 0 0 1px rgba(20,121,214,.08); }
.visual-glow::before, .visual-glow::after { content: ""; position: absolute; border: 1px dashed rgba(20,121,214,.22); border-radius: 50%; inset: 28px; }
.visual-glow::after { inset: 72px; border-style: solid; opacity: .55; }
.talent-panel { position: relative; z-index: 2; width: min(390px, 88%); padding: 23px; border: 1px solid rgba(255,255,255,.85); border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: 0 30px 65px rgba(7,27,51,.18); backdrop-filter: blur(12px); }
.panel-heading { display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid var(--line); color: var(--navy-900); font-weight: 800; }
.status { display: flex; align-items: center; gap: 6px; color: #218553; font-size: .72rem; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #2cc773; box-shadow: 0 0 0 4px rgba(44,199,115,.12); }
.people-stack { display: grid; gap: 10px; padding: 17px 0; }
.person-card { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 11px; border: 1px solid #e5ecf3; border-radius: 13px; background: #fff; box-shadow: 0 5px 15px rgba(7,27,51,.04); transform: translateX(var(--shift, 0)); }
.person-card > span { grid-row: 1 / 3; display: grid; place-items: center; width: 44px; height: 44px; color: #fff; border-radius: 11px; background: linear-gradient(145deg, var(--blue-600), var(--navy-800)); font-size: .76rem; font-weight: 850; }
.person-card strong { align-self: end; font-size: .83rem; }
.person-card small { color: var(--muted); font-size: .69rem; }
.card-one { --shift: -7px; }
.card-two { --shift: 8px; }
.card-two > span { background: linear-gradient(145deg, var(--red), #b71925); }
.card-three { --shift: -2px; }
.card-three > span { color: var(--navy-900); background: linear-gradient(145deg, #f0c76d, var(--gold)); }
.match-row { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding-top: 15px; border-top: 1px solid var(--line); }
.match-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: var(--blue-600); background: var(--blue-100); }
.match-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.match-row strong, .match-row small { display: block; }
.match-row strong { font-size: .77rem; }.match-row small { color: var(--muted); font-size: .66rem; }.match-row b { color: var(--blue-600); font-size: 1.06rem; }
.floating-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.9); border-radius: 15px; background: rgba(255,255,255,.95); box-shadow: 0 14px 35px rgba(7,27,51,.15); animation: float 4s ease-in-out infinite; }
.floating-badge strong, .floating-badge span { display: block; }.floating-badge span { color: var(--muted); font-size: .69rem; }.floating-badge strong { color: var(--navy-900); font-size: .95rem; }
.badge-top { top: 45px; right: -10px; }.badge-top > strong { color: var(--blue-600); font-size: 1.4rem; }.badge-bottom { left: -20px; bottom: 55px; animation-delay: -2s; }
.badge-bottom svg { width: 32px; padding: 6px; color: #fff; border-radius: 9px; background: #2dbb70; fill: none; stroke: currentColor; stroke-width: 2; }
@keyframes float { 50% { transform: translateY(-9px); } }
.hero-wave { position: absolute; left: -2%; right: -2%; bottom: -42px; height: 82px; border-radius: 50% 50% 0 0 / 40% 40% 0 0; background: var(--white); }

.trust-bar { position: relative; z-index: 2; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 0 42px; }
.stats-grid > div { display: flex; flex-direction: column; align-items: center; border-right: 1px solid var(--line); }
.stats-grid > div:last-child { border: 0; }
.stats-grid strong { color: var(--navy-900); font-size: 2rem; line-height: 1.2; letter-spacing: -.04em; }
.stats-grid span { margin-top: 5px; color: var(--muted); font-size: .78rem; }

.section { padding: 105px 0; }
.services { background: var(--surface); }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .why-copy h2, .contact-copy h2 { margin: 13px 0 17px; color: var(--navy-900); font-size: clamp(2.1rem, 3.5vw, 3.1rem); line-height: 1.15; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; overflow: hidden; min-height: 410px; padding: 31px; border: 1px solid #e2e9f0; border-radius: var(--radius); background: var(--white); box-shadow: 0 7px 22px rgba(7,27,51,.045); transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-7px); border-color: #c9d8e6; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; color: var(--blue-600); border-radius: 15px; background: var(--blue-100); }
.service-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 25px; right: 29px; color: #e2e9f0; font-size: 2.35rem; font-weight: 850; }
.service-card h3 { margin: 22px 0 10px; color: var(--navy-900); font-size: 1.22rem; }
.service-card p { margin: 0 0 17px; color: var(--muted); font-size: .91rem; }
.service-card ul { margin: 0 0 21px; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 7px 0; padding-left: 18px; color: #405266; font-size: .82rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .64em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.service-card > a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-600); font-size: .83rem; font-weight: 800; }
.service-card > a span { transition: transform .2s; }.service-card > a:hover span { transform: translateX(4px); }

.why-us { position: relative; overflow: hidden; color: #fff; background: var(--navy-900); }
.why-us::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(rgba(255,255,255,.65) .7px, transparent .7px); background-size: 28px 28px; }
.why-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.why-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }.orbit-one { width: 380px; height: 380px; }.orbit-two { width: 270px; height: 270px; border-style: dashed; animation: rotate 35s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.why-center { z-index: 2; display: grid; place-items: center; width: 176px; height: 176px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: linear-gradient(145deg, rgba(36,148,238,.85), rgba(11,41,76,.9)); box-shadow: 0 20px 60px rgba(0,0,0,.28); }
.why-center span { display: grid; place-items: center; width: 76px; height: 76px; color: var(--white); border: 2px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 1.7rem; font-weight: 900; }.why-center small { margin-top: -27px; font-size: .68rem; }
.benefit-tag { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; min-width: 125px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.benefit-tag b { display: grid; place-items: center; width: 29px; height: 29px; color: var(--navy-900); border-radius: 8px; background: var(--gold); font-size: .7rem; }.benefit-tag span { font-size: .8rem; font-weight: 750; }.tag-one { top: 50px; right: 15px; }.tag-two { left: 0; top: 190px; }.tag-three { right: 10px; bottom: 45px; }
.eyebrow.light { color: #81c5fa; }
.why-copy h2, .contact-copy h2 { color: #fff; }
.why-intro { max-width: 620px; margin: 0 0 27px; color: #b8c7d6; }
.benefits-list { display: grid; gap: 20px; }
.benefits-list article { display: grid; grid-template-columns: 47px 1fr; gap: 15px; padding: 0 0 20px; border-bottom: 1px solid rgba(255,255,255,.1); }.benefits-list article:last-child { border: 0; padding-bottom: 0; }
.check-icon { display: grid; place-items: center; width: 43px; height: 43px; color: var(--navy-900); border-radius: 12px; background: var(--gold); }.check-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }
.benefits-list h3 { margin: 0 0 4px; color: #fff; font-size: 1rem; }.benefits-list p { margin: 0; color: #aebdcb; font-size: .83rem; }

.process-section { padding: 94px 0; background: #fff; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-grid::before { content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, #b7d5ee 12%, #b7d5ee 88%, transparent); }
.process-grid article { position: relative; text-align: center; }
.process-grid b { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 18px; color: var(--blue-600); border: 2px solid #cfe6f8; border-radius: 50%; background: #fff; box-shadow: 0 0 0 8px #fff; font-size: 1rem; }
.process-grid h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 1rem; }.process-grid p { margin: 0; color: var(--muted); font-size: .82rem; }

.contact { position: relative; overflow: hidden; background: linear-gradient(120deg, #071b33, #0b2d52); }
.contact::after { content: ""; position: absolute; width: 520px; height: 520px; left: -260px; bottom: -300px; border: 80px solid rgba(36,148,238,.08); border-radius: 50%; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.contact-copy > p { color: #b8c7d6; }
.contact-details { display: grid; gap: 17px; margin: 31px 0 25px; }
.contact-details > a, .contact-item { display: flex; align-items: center; gap: 14px; width: fit-content; color: #fff; }
.contact-details > a > span, .contact-item > span { display: grid; place-items: center; width: 42px; height: 42px; color: #80c9ff; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; background: rgba(255,255,255,.07); }
.contact-details svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.contact-details small, .contact-details strong { display: block; }.contact-details small { color: #92a8bc; font-size: .68rem; }.contact-details strong { font-size: .88rem; }
.socials { display: flex; gap: 10px; }.socials a { display: grid; place-items: center; width: 39px; height: 39px; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; transition: background .2s, transform .2s; }.socials a:hover { background: var(--blue-600); transform: translateY(-2px); }.socials svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.form-card { padding: 36px; border-radius: 24px; background: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.25); }
.form-card h3 { margin: 0; color: var(--navy-900); font-size: 1.45rem; }.form-card > p { margin: 6px 0 25px; color: var(--muted); font-size: .87rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { display: block; margin-bottom: 15px; color: #2d4155; font-size: .78rem; font-weight: 750; }.form-card label > span { color: var(--red); }
.form-card input:not([type="checkbox"]), .form-card textarea { width: 100%; margin-top: 7px; padding: 12px 14px; color: var(--ink); border: 1px solid #d7e0e8; border-radius: 9px; outline: none; background: #fbfcfd; transition: border-color .2s, box-shadow .2s, background .2s; }
.form-card input:not([type="checkbox"]) { height: 47px; }.form-card textarea { resize: vertical; min-height: 115px; }
.form-card input:focus, .form-card textarea:focus { border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(36,148,238,.12); }
.form-card .invalid { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(239,42,50,.1) !important; }
.privacy-check { display: flex !important; align-items: flex-start; gap: 9px; margin: 2px 0 19px !important; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.45; }.privacy-check input { margin-top: 3px; accent-color: var(--blue-600); }.privacy-check span { color: inherit !important; }.privacy-check a { color: var(--blue-600); text-decoration: underline; }
.btn-submit { width: 100%; border: 0; }.btn-submit svg { width: 18px; }
.form-status { min-height: 21px; margin: 10px 0 -5px; color: #238254; text-align: center; font-size: .77rem; font-weight: 700; }.form-status.error { color: var(--red); }

.site-footer { color: #9dabb9; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 35px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { width: 145px; height: 50px; overflow: hidden; border-radius: 5px; background: #fff; }.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-main p { margin: 0; font-size: .8rem; }.footer-links { display: flex; gap: 22px; color: #c4d0db; font-size: .76rem; }.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 19px 0 23px; font-size: .73rem; }.footer-bottom p { margin: 0; }.footer-bottom a { color: #d7e1ea; }
.whatsapp-fab { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; place-items: center; width: 55px; height: 55px; color: #fff; border: 3px solid #fff; border-radius: 50%; background: #25d366; box-shadow: 0 10px 28px rgba(0,0,0,.22); transition: transform .2s; }.whatsapp-fab:hover { transform: translateY(-4px) scale(1.03); }.whatsapp-fab svg { width: 29px; fill: currentColor; }
.legal-dialog { width: min(620px, calc(100% - 28px)); padding: 28px; color: var(--ink); border: 0; border-radius: 18px; box-shadow: 0 25px 80px rgba(4,18,34,.3); }.legal-dialog::backdrop { background: rgba(4,18,34,.72); backdrop-filter: blur(4px); }.legal-dialog .dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }.legal-dialog h2 { margin: 0; color: var(--navy-900); font-size: 1.45rem; }.legal-dialog p { color: var(--muted); font-size: .9rem; }.legal-dialog button { display: grid; place-items: center; width: 36px; height: 36px; color: var(--navy-900); border: 0; border-radius: 9px; background: var(--surface); font-size: 1.6rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 19px; }.nav-link { font-size: .85rem; }.nav-cta { padding-inline: 15px; }
  .hero-grid { gap: 30px; }.hero { min-height: 730px; }.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4rem); }
  .why-grid, .contact-grid { gap: 50px; }
}

@media (max-width: 860px) {
  .site-header, .site-header.scrolled { height: 74px; }.brand { width: 151px; height: 53px; }.menu-toggle { display: flex; }
  .main-nav { position: fixed; inset: 74px 0 auto; display: grid; gap: 0; padding: 14px 20px 24px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 20px 35px rgba(7,27,51,.13); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .28s, opacity .2s, visibility .2s; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }.nav-link { padding: 14px 4px; border-bottom: 1px solid #edf1f5; font-size: .95rem; }.nav-link::after { display: none; }.nav-cta { margin-top: 13px; }
  .hero { padding: 132px 0 90px; }.hero-grid { grid-template-columns: 1fr; text-align: center; }.hero-copy > p { margin-inline: auto; }.hero-actions, .hero-trust { justify-content: center; }.hero-visual { min-height: 440px; margin-top: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 25px; }.stats-grid > div:nth-child(2) { border: 0; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }.why-visual { order: 2; min-height: 430px; }.why-copy { order: 1; }.contact-grid { gap: 45px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }.process-grid::before { display: none; }
  .footer-main { grid-template-columns: 1fr; justify-items: center; text-align: center; }.footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 610px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 17px; }
  .hero { min-height: auto; padding-top: 116px; }.hero h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }.hero-copy > p { font-size: 1rem; }.hero-actions { flex-direction: column; }.hero-actions .btn { width: 100%; }.hero-trust { gap: 12px; font-size: .78rem; }
  .hero-visual { min-height: 380px; }.visual-glow { width: 330px; height: 330px; }.talent-panel { width: 93%; padding: 17px; }.floating-badge { padding: 9px 11px; }.badge-top { top: 18px; right: -5px; }.badge-bottom { left: -5px; bottom: 24px; }
  .stats-grid { padding-top: 22px; }.stats-grid strong { font-size: 1.6rem; }.stats-grid span { font-size: .7rem; }
  .section, .process-section { padding: 76px 0; }.section-heading { margin-bottom: 35px; }.section-heading h2, .why-copy h2, .contact-copy h2 { font-size: 2rem; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }.service-card { min-height: auto; padding: 25px; }
  .why-visual { min-height: 360px; }.orbit-one { width: 315px; height: 315px; }.orbit-two { width: 225px; height: 225px; }.why-center { width: 145px; height: 145px; }.benefit-tag { min-width: 106px; padding: 9px; }.tag-one { right: 0; top: 25px; }.tag-two { left: 0; }.tag-three { right: 0; bottom: 20px; }
  .contact { padding-bottom: 88px; }.form-card { padding: 25px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }.contact-details strong { font-size: .78rem; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }.whatsapp-fab { right: 15px; bottom: 15px; }
  .legal-dialog { padding: 22px 18px; }
}

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