:root {
    --navy: #071b2d;
    --navy-2: #0b2940;
    --navy-3: #123a55;
    --blue: #087ca7;
    --blue-light: #43b6d8;
    --gold: #f4aa22;
    --gold-dark: #d78b08;
    --green: #16a36a;
    --ink: #152434;
    --muted: #607083;
    --line: #dce5eb;
    --soft: #f3f7f9;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(7, 27, 45, .12);
    --radius: 18px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--navy); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.screen-reader-text,
.skip-link:not(:focus) { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 14px; color: var(--navy); background: #fff; border-radius: 8px; box-shadow: var(--shadow); }

h1, h2, h3, h4 { margin: 0 0 .65em; color: var(--navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 5vw, 4.65rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.15rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.2em; }
ul, ol { margin-top: 0; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 52px;
    padding: .85rem 1.35rem;
    color: var(--navy);
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 10px;
    font-weight: 750;
    line-height: 1.1;
    box-shadow: 0 10px 28px rgba(244, 170, 34, .22);
}
.button:hover { color: var(--navy); background: #ffc14b; border-color: #ffc14b; transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 44px; padding: .7rem 1rem; font-size: .9rem; }
.button-secondary { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); box-shadow: none; }
.button-secondary:hover { color: var(--white); background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }
.button-light { color: var(--navy); background: var(--white); border-color: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.button-light:hover { color: var(--navy); background: #fff6e5; border-color: #fff6e5; }

.topbar { color: rgba(255,255,255,.82); background: #04131f; font-size: .84rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; color: inherit; }
.topbar-item:hover { color: var(--white); }
.topbar-item svg { width: 15px; height: 15px; color: var(--gold); }
.main-header { position: relative; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(7,27,45,.08); transition: box-shadow .2s ease; }
.main-header.is-scrolled { position: sticky; top: 0; box-shadow: 0 10px 30px rgba(7,27,45,.1); }
.header-inner { min-height: 82px; display: grid; grid-template-columns: 245px 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; }
.brand img, .custom-logo { width: 235px; height: auto; }
.custom-logo-link { display: inline-flex; }
.primary-nav { justify-self: end; }
.site-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.site-menu > li { position: relative; }
.site-menu a { display: block; padding: 12px 11px; color: var(--ink); font-size: .94rem; font-weight: 700; border-radius: 8px; }
.site-menu a:hover, .site-menu .current-menu-item > a, .site-menu .current_page_item > a { color: var(--blue); background: var(--soft); }
.site-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 240px; margin: 0; padding: 10px; list-style: none; visibility: hidden; opacity: 0; transform: translateY(8px); background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); transition: .2s ease; }
.site-menu li:hover > .sub-menu, .site-menu li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: var(--soft); border: 0; border-radius: 9px; }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 2px; }

.hero-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #061a2b 0%, #0b314a 54%, #075d77 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18) 0 1px, transparent 1.5px), linear-gradient(115deg, transparent 58%, rgba(255,255,255,.08) 58.2%, transparent 58.5%); background-size: 26px 26px, 100% 100%; }
.hero-grid { position: relative; z-index: 1; min-height: 670px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 50px; padding-top: 70px; padding-bottom: 65px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #d8eef7; font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--gold); }
.eyebrow-dark { color: var(--blue); }
.hero-content h1 { max-width: 780px; color: var(--white); font-size: clamp(2.65rem, 5vw, 4.6rem); }
.hero-lead { max-width: 730px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; color: rgba(255,255,255,.84); font-size: .9rem; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points svg { color: var(--gold); }
.hero-visual { position: relative; align-self: end; min-height: 590px; display: flex; align-items: flex-end; justify-content: center; }
.hero-visual > img { position: relative; z-index: 2; width: min(100%, 590px); filter: drop-shadow(0 28px 30px rgba(0,0,0,.24)); }
.hero-glow { position: absolute; z-index: 1; width: 470px; height: 470px; left: 50%; top: 44%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(67,182,216,.4), rgba(67,182,216,0) 68%); }
.hero-card { position: absolute; z-index: 3; width: 205px; padding: 15px 17px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.7); border-radius: 13px; box-shadow: 0 15px 35px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.hero-card strong, .hero-card span { display: block; }
.hero-card strong { color: var(--navy); font-size: .98rem; }
.hero-card span { margin-top: 3px; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.hero-card-one { top: 24%; right: -18px; }
.hero-card-two { bottom: 15%; left: -12px; }

.trust-strip { position: relative; z-index: 4; margin-top: -1px; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid > div { padding: 24px 32px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; padding-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 3px; color: var(--navy); font-size: 1rem; }
.trust-grid span { color: var(--muted); font-size: .88rem; line-height: 1.45; }

.section { padding: 100px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 65px; margin-bottom: 48px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 1.02rem; }
.section-heading.centered { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { position: relative; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 30px rgba(7,27,45,.05); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(8,124,167,.35); box-shadow: var(--shadow); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 23px; color: var(--blue); background: #e7f6fb; border-radius: 14px; }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { min-height: 105px; color: var(--muted); font-size: .95rem; }
.service-card > a { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 800; }
.service-card > a svg { width: 16px; height: 16px; }

.software-section { position: relative; overflow: hidden; color: rgba(255,255,255,.83); background: linear-gradient(135deg, var(--navy), #0c405b); }
.software-section::before { content: ""; position: absolute; right: -180px; top: -180px; width: 500px; height: 500px; border: 100px solid rgba(255,255,255,.025); border-radius: 50%; }
.software-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.software-intro { position: sticky; top: 120px; align-self: start; }
.software-intro h2 { color: var(--white); }
.software-intro p { margin-bottom: 30px; font-size: 1.04rem; }
.solution-list { display: grid; gap: 16px; }
.solution-card { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; backdrop-filter: blur(7px); }
.solution-number { color: var(--gold); font-size: 1.5rem; font-weight: 850; }
.solution-card h3 { color: var(--white); }
.solution-card p { margin-bottom: 9px; color: rgba(255,255,255,.72); font-size: .94rem; }
.solution-card strong { color: #d9f3fb; font-size: .86rem; }

.process-section { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: process; }
.process-grid article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.process-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 22px; color: var(--navy); background: var(--gold); border-radius: 50%; font-weight: 850; }
.process-grid h3 { margin-bottom: 10px; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.technology-section { padding-top: 85px; padding-bottom: 85px; }
.technology-copy { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.technology-copy p { color: var(--muted); }
.logo-cloud { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.logo-cloud > div { min-height: 105px; display: grid; place-items: center; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.logo-cloud img { max-width: 130px; max-height: 55px; object-fit: contain; filter: grayscale(100%); opacity: .72; transition: filter .2s ease, opacity .2s ease, transform .2s ease; }
.logo-cloud > div:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }

.final-cta-section { padding-top: 0; }
.final-cta { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; padding: 55px 60px; color: rgba(255,255,255,.8); background: linear-gradient(120deg, #0b3450, #087ca7); border-radius: 24px; box-shadow: var(--shadow); }
.final-cta::after { content: ""; position: absolute; right: -100px; bottom: -160px; width: 380px; height: 380px; border: 70px solid rgba(255,255,255,.06); border-radius: 50%; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; }
.final-cta p { margin-bottom: 0; }
.final-cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.text-link-light { color: #fff; font-weight: 700; }
.text-link-light:hover { color: var(--gold); }

.page-hero { position: relative; overflow: hidden; color: rgba(255,255,255,.8); background: linear-gradient(135deg, #061a2b, #0b405c); }
.page-hero::after { content: ""; position: absolute; right: 5%; top: -160px; width: 440px; height: 440px; border: 85px solid rgba(255,255,255,.04); border-radius: 50%; }
.page-hero-inner { min-height: 330px; display: flex; align-items: center; padding-top: 65px; padding-bottom: 65px; }
.page-hero-inner > div { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { max-width: 730px; margin-bottom: 0; font-size: 1.08rem; }
.page-section { background: var(--soft); }
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 46px; align-items: start; }
.entry-content { padding: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(7,27,45,.06); }
.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; }
.entry-content h2 { font-size: 2rem; }
.entry-content h3 { color: var(--blue); font-size: 1.35rem; }
.entry-content p, .entry-content li { color: #435467; }
.entry-content ul { padding-left: 1.2rem; }
.entry-content li { margin-bottom: .65rem; }
.entry-content li::marker { color: var(--gold-dark); }
.entry-content a { font-weight: 700; }
.entry-content img { border-radius: 12px; }
.contact-panel { position: sticky; top: 110px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(7,27,45,.06); }
.contact-panel h2 { font-size: 1.65rem; }
.contact-panel p { color: var(--muted); }
.contact-panel .button { width: 100%; margin: 10px 0 22px; }
.contact-panel ul { margin: 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line); }
.contact-panel li { display: flex; align-items: center; gap: 10px; margin: 10px 0; font-size: .9rem; }
.contact-panel li svg { color: var(--blue); }

.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-details > p { color: var(--muted); }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-cards > * { display: grid; grid-template-columns: 50px 1fr; column-gap: 14px; align-items: center; padding: 17px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.contact-cards > *:hover { border-color: rgba(8,124,167,.4); box-shadow: 0 10px 25px rgba(7,27,45,.06); }
.contact-cards .contact-icon { grid-row: 1 / 3; width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); background: #e8f6fa; border-radius: 12px; }
.contact-cards small { color: var(--muted); }
.form-card { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card > p { color: var(--muted); }
.wpcf7-form label { display: block; color: var(--ink); font-size: .9rem; font-weight: 700; }
.wpcf7-form-control-wrap { display: block; margin-top: 7px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="url"], .wpcf7 textarea, .wpcf7 select {
    width: 100%; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #cfdce4; border-radius: 9px; outline: 0;
}
.wpcf7 textarea { min-height: 145px; resize: vertical; }
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,124,167,.12); }
.wpcf7 input[type="submit"] { min-height: 50px; padding: 12px 24px; color: var(--navy); background: var(--gold); border: 0; border-radius: 9px; font-weight: 800; cursor: pointer; }
.wpcf7-not-valid-tip { margin-top: 5px; font-size: .82rem; }
.wpcf7-response-output { margin: 16px 0 0 !important; border-radius: 9px; }

.site-footer { color: rgba(255,255,255,.74); background: #051522; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr .7fr; gap: 48px; padding-top: 70px; padding-bottom: 60px; }
.footer-brand img { width: 235px; margin-bottom: 22px; }
.footer-brand p { max-width: 360px; font-size: .92rem; }
.site-footer h2 { margin-bottom: 18px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links, .footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.72); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0; font-size: .88rem; }
.footer-contact svg { flex: 0 0 auto; margin-top: 4px; color: var(--gold); }
.footer-dot { flex: 0 0 auto; width: 7px; height: 7px; margin: 8px 6px 0 5px; background: var(--gold); border-radius: 50%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; font-size: .82rem; }
.whatsapp-float { position: fixed; z-index: 1500; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; color: #fff; background: #25d366; border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.whatsapp-float:hover { color: #fff; transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 33px; height: 33px; fill: currentColor; stroke: none; }
.not-found-section { min-height: 60vh; display: grid; place-items: center; background: var(--soft); }
.not-found { text-align: center; }
.not-found > span { display: block; color: var(--gold-dark); font-size: 5rem; font-weight: 900; line-height: 1; }
.post-card { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }

@media (max-width: 1080px) {
    .header-inner { grid-template-columns: 220px 1fr auto; gap: 14px; }
    .brand img, .custom-logo { width: 210px; }
    .site-menu a { padding-inline: 8px; font-size: .88rem; }
    .header-cta { display: none; }
    .hero-grid { grid-template-columns: 1fr .8fr; }
    .hero-card-one { right: 0; }
    .hero-card-two { left: 0; }
    .service-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .logo-cloud { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .footer-grid > div:last-child { display: none; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .topbar-inner { min-height: 34px; justify-content: center; }
    .topbar-inner > .topbar-item { display: none; }
    .topbar-contact { width: 100%; justify-content: space-between; gap: 12px; }
    .topbar-contact .topbar-item:first-child { display: none; }
    .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
    .brand img, .custom-logo { width: 205px; }
    .menu-toggle { display: block; }
    .primary-nav { position: fixed; inset: 106px 0 auto 0; max-height: calc(100vh - 106px); overflow-y: auto; padding: 20px 15px 30px; visibility: hidden; opacity: 0; transform: translateY(-12px); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 20px 40px rgba(7,27,45,.18); transition: .2s ease; }
    .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .site-menu { display: block; }
    .site-menu a { padding: 13px 12px; font-size: 1rem; }
    .site-menu .sub-menu { position: static; min-width: 0; padding: 0 0 0 15px; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; }
    .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 15px; padding-top: 65px; padding-bottom: 0; text-align: center; }
    .hero-content { max-width: 720px; margin-inline: auto; }
    .eyebrow { justify-content: center; }
    .hero-actions, .hero-points { justify-content: center; }
    .hero-visual { min-height: 470px; }
    .hero-visual > img { width: min(100%, 520px); }
    .hero-card-one { top: 25%; right: 3%; }
    .hero-card-two { left: 3%; bottom: 12%; }
    .trust-grid { grid-template-columns: 1fr; padding: 12px 0; }
    .trust-grid > div, .trust-grid > div:first-child, .trust-grid > div:last-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-grid > div:last-child { border-bottom: 0; }
    .section { padding: 75px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .software-grid { grid-template-columns: 1fr; gap: 45px; }
    .software-intro { position: static; text-align: center; }
    .software-intro .eyebrow { justify-content: center; }
    .final-cta { grid-template-columns: 1fr; gap: 28px; padding: 42px 32px; text-align: center; }
    .final-cta .eyebrow { justify-content: center; }
    .final-cta-actions { align-items: center; }
    .content-layout, .contact-grid { grid-template-columns: 1fr; }
    .contact-panel { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-grid > div:last-child { display: block; }
    .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
}

@media (max-width: 560px) {
    h1 { font-size: 2.35rem; }
    h2 { font-size: 1.9rem; }
    .topbar-contact { justify-content: center; }
    .hero-content h1 { font-size: 2.45rem; }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-points { display: grid; gap: 8px; text-align: left; }
    .hero-visual { min-height: 390px; }
    .hero-card { width: 170px; padding: 11px 13px; }
    .hero-card-one { top: 18%; right: -4px; }
    .hero-card-two { bottom: 8%; left: -4px; }
    .service-grid, .process-grid, .logo-cloud { grid-template-columns: 1fr; }
    .service-card p { min-height: 0; }
    .solution-card { grid-template-columns: 45px 1fr; padding: 22px; }
    .logo-cloud { grid-template-columns: repeat(2,1fr); }
    .content-layout { gap: 24px; }
    .entry-content, .form-card { padding: 24px; }
    .page-hero-inner { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

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