:root {
    --navy-950: #06101c;
    --navy-900: #081321;
    --navy-850: #0a1727;
    --navy-800: #0e2035;
    --navy-700: #15304d;
    --solar: #ffb800;
    --solar-strong: #ffc933;
    --solar-soft: #fff4cf;
    --green: #25d366;
    --green-dark: #17a94f;
    --text: #101827;
    --muted: #697386;
    --line: #e6eaf0;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --shadow: 0 24px 70px rgba(5, 18, 34, .16);
    --shadow-soft: 0 15px 45px rgba(5, 18, 34, .10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1220px;
    --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
    position: fixed; left: 16px; top: -70px; z-index: 9999;
    background: var(--solar); color: #111; padding: 12px 18px; border-radius: 10px;
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
    height: var(--header-h);
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(7, 16, 29, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(7, 16, 29, .96);
    box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.15rem; letter-spacing: -.02em; }
.brand-copy small { font-size: .58rem; letter-spacing: .38em; margin-top: 5px; opacity: .8; }
.brand-mark { width: 36px; height: 36px; position: relative; display: inline-block; }
.sun-core { position: absolute; width: 16px; height: 16px; background: var(--solar); border-radius: 50%; inset: 10px; }
.sun-ray { position: absolute; width: 3px; height: 8px; background: var(--solar); border-radius: 4px; left: 16.5px; top: 0; transform-origin: 1.5px 18px; }
.ray-2 { transform: rotate(45deg); }
.ray-3 { transform: rotate(90deg); }
.ray-4 { transform: rotate(135deg); }
.ray-5 { transform: rotate(180deg); }
.ray-6 { transform: rotate(225deg); }
.ray-7 { transform: rotate(270deg); }
.ray-8 { transform: rotate(315deg); }

.main-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.main-nav a {
    color: rgba(255,255,255,.78);
    font-size: .91rem;
    position: relative;
    padding-block: 28px;
    transition: color .2s ease;
}
.main-nav a::after {
    content: "";
    position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px;
    background: var(--solar); transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: #fff; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { display: flex; gap: 9px; align-items: center; color: #fff; }
.phone-link > span:first-child { color: var(--solar); font-size: 1.1rem; }
.phone-link span:last-child { display: grid; line-height: 1.2; }
.phone-link strong { font-size: .88rem; }
.phone-link small { font-size: .62rem; opacity: .65; margin-top: 3px; }

.menu-toggle {
    display: none;
    width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06); border-radius: 12px;
    align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: #fff; transition: .25s ease; }

.btn {
    min-height: 50px;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 0 22px; border-radius: 12px; border: 0;
    font-weight: 800; letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-solar { background: linear-gradient(135deg, var(--solar-strong), var(--solar)); color: #121212; box-shadow: 0 12px 30px rgba(255, 184, 0, .26); }
.btn-solar:hover { box-shadow: 0 16px 38px rgba(255, 184, 0, .34); filter: brightness(1.03); }
.btn-whatsapp { background: linear-gradient(135deg, #2add70, var(--green-dark)); color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .25); }
.btn-whatsapp:hover { box-shadow: 0 16px 38px rgba(37, 211, 102, .32); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: .86rem; border-radius: 10px; }

.hero {
    min-height: 720px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--navy-950);
    padding: calc(var(--header-h) + 54px) 0 56px;
}
.hero-slider, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
    background-image: var(--bg);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1.15s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1.085); }
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(4, 13, 23, .96) 0%, rgba(6, 17, 29, .83) 42%, rgba(6, 17, 29, .47) 71%, rgba(6, 17, 29, .58) 100%),
        linear-gradient(180deg, rgba(3, 10, 18, .12), rgba(3, 10, 18, .70));
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .65fr);
    gap: clamp(38px, 6vw, 86px);
    align-items: center;
}
.hero-copy { padding-block: 18px; max-width: 740px; }
.eyebrow { display: inline-block; color: var(--solar-strong); font-size: .74rem; font-weight: 800; letter-spacing: .18em; margin-bottom: 16px; }
.eyebrow.dark { color: #7b8798; }
.hero h1 {
    color: #fff; margin: 0;
    font-size: clamp(2.8rem, 5vw, 5.25rem);
    line-height: .98;
    letter-spacing: -.055em;
    max-width: 830px;
}
.hero h1 span, .section-head h2 span, .section-head-dark h2 span, .final-cta h2 span { color: var(--solar); }
.hero-copy > p {
    max-width: 670px; color: rgba(255,255,255,.84);
    font-size: clamp(1rem, 1.35vw, 1.15rem); margin: 24px 0 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; color: rgba(255,255,255,.76); font-size: .82rem; }
.hero-trust span { display: inline-flex; gap: 8px; align-items: center; }
.hero-trust i { color: var(--solar); font-style: normal; font-weight: 900; }
.hero-dots { display: flex; gap: 7px; margin-top: 26px; }
.hero-dot { width: 30px; height: 4px; border: 0; background: rgba(255,255,255,.25); border-radius: 999px; padding: 0; transition: .25s ease; }
.hero-dot.is-active { width: 54px; background: var(--solar); }

.quote-card {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 24px;
    backdrop-filter: blur(14px);
}
.quote-card-head { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.quote-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--solar-soft); color: #9a6c00; display: grid; place-items: center; font-size: 1.25rem; }
.quote-card h2 { margin: 0; font-size: 1.45rem; letter-spacing: -.03em; }
.quote-card-head p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field > span { font-size: .74rem; color: #485369; font-weight: 750; }
.field input, .field select {
    width: 100%; min-height: 45px;
    border: 1px solid #dfe4eb; border-radius: 10px;
    background: #fff; padding: 0 12px; outline: none; color: var(--text);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus { border-color: var(--solar); box-shadow: 0 0 0 4px rgba(255,184,0,.13); }
.field.has-error input, .field.has-error select { border-color: #de4a4a; box-shadow: 0 0 0 3px rgba(222,74,74,.08); }
.field-error { min-height: 13px; font-size: .66rem; color: #c83c3c; }
.btn-form { width: 100%; margin-top: 10px; }
.privacy-note { font-size: .69rem; text-align: center; color: #7b8494; margin: 10px 0 0; }
.form-feedback { display: none; margin-top: 12px; padding: 12px 14px; border-radius: 10px; font-size: .82rem; font-weight: 650; }
.form-feedback.is-success { display: block; background: #eaf9ef; color: #176d38; }
.form-feedback.is-error { display: block; background: #fff0f0; color: #a73131; }
.form-feedback a { text-decoration: underline; font-weight: 800; }
.hp-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.stats-section {
    background: linear-gradient(135deg, #081421, #0b1d30);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
    min-height: 132px;
    display: flex; align-items: center; gap: 16px;
    padding: 26px 24px;
    border-right: 1px solid rgba(255,255,255,.10);
}
.stat:last-child { border-right: 0; }
.stat-icon {
    width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid rgba(255,184,0,.32); background: rgba(255,184,0,.06);
    display: grid; place-items: center; color: var(--solar); font-size: 1.35rem;
}
.stat strong { font-size: 1.65rem; letter-spacing: -.04em; line-height: 1; display: block; }
.stat p { margin: 5px 0 2px; font-size: .87rem; font-weight: 700; }
.stat small { color: rgba(255,255,255,.48); font-size: .68rem; }

.section { padding: 92px 0; }
.section-light { background: #fff; }
.section-head {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    gap: 50px; align-items: end; margin-bottom: 38px;
}
.section-head h2 { font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: 1.03; letter-spacing: -.045em; margin: 0; max-width: 800px; }
.section-head p { margin: 0; color: var(--muted); }
.solutions-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card {
    background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 27, 45, .04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: #d8dde6; }
.solution-media {
    height: 178px; display: flex; align-items: flex-end; justify-content: flex-start; padding: 18px;
    background-size: cover; background-position: center; position: relative;
}
.solution-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 35%, rgba(6,16,28,.55)); }
.solution-media span { position: relative; z-index: 2; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--solar); color: #101010; font-weight: 900; }
.media-home { background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=900&q=78'); }
.media-business { background-image: url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=900&q=78'); }
.media-rural { background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=900&q=78'); }
.media-finance { background-image: linear-gradient(135deg, #152a44, #305377); }
.media-install { background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=900&q=78'); }
.media-support { background-image: linear-gradient(135deg, #f1f5fa, #dce5ef); }
.solution-body { padding: 20px; }
.solution-body h3 { margin: 0 0 8px; font-size: 1.07rem; }
.solution-body p { color: var(--muted); font-size: .9rem; margin: 0 0 18px; min-height: 68px; }
.solution-body a { color: #158b42; font-weight: 800; font-size: .84rem; }

.section-dark {
    background:
        radial-gradient(circle at 75% 20%, rgba(255,184,0,.06), transparent 28%),
        linear-gradient(145deg, #07111e, #0b2138);
    color: #fff;
}
.section-head-dark h2 { color: #fff; }
.section-head-dark p { color: rgba(255,255,255,.62); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; overflow: hidden; }
.benefit { padding: 28px; background: rgba(255,255,255,.025); transition: background .2s ease, transform .2s ease; }
.benefit:hover { background: rgba(255,255,255,.055); }
.benefit > span { width: 48px; height: 48px; border: 1px solid rgba(255,184,0,.35); border-radius: 14px; display: grid; place-items: center; color: var(--solar); margin-bottom: 17px; font-size: 1.15rem; }
.benefit h3 { margin: 0 0 8px; font-size: 1rem; }
.benefit p { margin: 0; color: rgba(255,255,255,.58); font-size: .86rem; }

.process-section { background: var(--surface-soft); }
.process-line { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; }
.process-card { min-height: 166px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: grid; grid-template-columns: auto auto 1fr; gap: 14px; align-items: start; box-shadow: 0 10px 30px rgba(10,25,42,.04); }
.step-number { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--solar); font-weight: 900; }
.process-icon { width: 48px; height: 48px; display: grid; place-items: center; background: #f1f4f8; border-radius: 14px; color: var(--navy-800); font-weight: 900; font-size: 1.15rem; }
.process-card h3 { margin: 2px 0 8px; font-size: 1rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.process-arrow { color: #a5afbc; font-size: 1.5rem; }

.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr .72fr; gap: 20px; }
.testimonial-card, .trust-card { border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: #fff; box-shadow: 0 10px 30px rgba(10,25,42,.04); }
.avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; color: #fff; margin-bottom: 14px; }
.avatar-one { background: linear-gradient(135deg, #d69b5c, #8b4f36); }
.avatar-two { background: linear-gradient(135deg, #446e92, #1d3a52); }
.stars { color: var(--solar); letter-spacing: .08em; font-size: .9rem; }
.testimonial-card blockquote { margin: 14px 0 18px; color: #4b566a; font-size: .94rem; }
.testimonial-card strong, .testimonial-card small { display: block; }
.testimonial-card small { color: var(--muted); margin-top: 2px; }
.trust-card { background: #f7f9fc; }
.google-g { width: 46px; height: 46px; background: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(10,25,42,.08); font-size: 1.45rem; font-weight: 900; color: #4285f4; }
.trust-card h3 { font-size: 1.15rem; margin: 16px 0; }
.trust-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 11px; color: #4e596d; font-size: .85rem; }
.trust-card li { display: flex; gap: 9px; }
.trust-card li span { color: #198d43; font-weight: 900; }

.final-cta { position: relative; padding: 86px 0; overflow: hidden; background: var(--navy-950); color: #fff; }
.final-cta-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(5,14,24,.95), rgba(5,14,24,.72) 52%, rgba(5,14,24,.35)),
        url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=2000&q=82') center/cover;
}
.final-cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .65fr; gap: 60px; align-items: center; }
.final-cta h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.6rem); line-height: 1; letter-spacing: -.05em; }
.final-cta p { max-width: 650px; color: rgba(255,255,255,.75); margin: 20px 0 26px; }
.cta-benefits { background: rgba(5,17,30,.55); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; backdrop-filter: blur(12px); padding: 24px; display: grid; gap: 13px; }
.cta-benefits span { padding: 14px 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.035); display: flex; gap: 11px; align-items: center; color: rgba(255,255,255,.84); }
.cta-benefits span::first-letter { color: var(--solar); }

.site-footer { background: #050d17; color: rgba(255,255,255,.74); padding: 62px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr .7fr; gap: 48px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-grid h3 { color: #fff; margin: 0 0 8px; font-size: .92rem; }
.footer-grid a, .footer-grid span { font-size: .8rem; }
.footer-grid a:hover { color: var(--solar); }
.footer-brand p { color: #fff; font-weight: 700; }
.footer-brand > small { display: block; max-width: 410px; line-height: 1.6; color: rgba(255,255,255,.45); margin-top: 14px; }
.brand-footer { width: fit-content; }
.footer-bottom { margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; font-size: .7rem; color: rgba(255,255,255,.42); }
.floating-whatsapp {
    position: fixed; z-index: 900; right: 18px; bottom: 18px;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: var(--green); color: #fff; font-size: 1.4rem;
    box-shadow: 0 15px 38px rgba(37,211,102,.35);
    transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }

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

@media (max-width: 1160px) {
    .main-nav { gap: 18px; }
    .main-nav a { font-size: .84rem; }
    .phone-link { display: none; }
    .hero-grid { grid-template-columns: 1fr .75fr; gap: 34px; }
    .hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.45rem); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
    .solutions-track { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .process-line { grid-template-columns: 1fr; }
    .process-arrow { display: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .trust-card { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    :root { --header-h: 68px; }
    .container { width: min(calc(100% - 30px), var(--container)); }
    .menu-toggle { display: flex; margin-left: auto; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        display: grid; gap: 0; padding: 12px 20px 22px;
        background: rgba(7,16,29,.985);
        transform: translateY(-130%); opacity: 0; visibility: hidden;
        transition: transform .28s ease, opacity .22s ease, visibility .22s ease;
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 24px 45px rgba(0,0,0,.22);
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.06); }
    .main-nav a::after { display: none; }
    .nav-actions { display: none; }
    .hero { padding-top: calc(var(--header-h) + 44px); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 760px; }
    .quote-card { max-width: 720px; }
    .section { padding: 74px 0; }
    .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
    .final-cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand-copy strong { font-size: 1rem; }
    .brand-mark { width: 32px; height: 32px; transform: scale(.9); transform-origin: left center; }
    .hero { min-height: auto; padding-bottom: 38px; }
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(4,13,23,.79) 0%, rgba(4,13,23,.92) 49%, rgba(4,13,23,.98) 100%);
    }
    .hero h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
    .hero-copy > p { font-size: .96rem; }
    .hero-ctas { display: grid; grid-template-columns: 1fr; }
    .hero-ctas .btn { width: 100%; }
    .hero-trust { gap: 13px; font-size: .76rem; }
    .quote-card { padding: 18px; border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat { min-height: 126px; padding: 18px 12px; gap: 10px; flex-direction: column; align-items: flex-start; }
    .stat:nth-child(2n) { border-right: 0; }
    .stat strong { font-size: 1.4rem; }
    .stat p { font-size: .78rem; }
    .stat small { display: none; }
    .stat-icon { width: 40px; height: 40px; }
    .section { padding: 62px 0; }
    .section-head h2 { font-size: 2.15rem; }
    .solutions-track {
        display: flex; overflow-x: auto; gap: 14px;
        margin-inline: -12px; padding: 0 12px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .solutions-track::-webkit-scrollbar { display: none; }
    .solution-card { min-width: min(84vw, 340px); scroll-snap-align: start; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-card { grid-template-columns: auto 1fr; }
    .process-card .process-icon { grid-row: 1 / 3; }
    .process-card .step-number { position: absolute; opacity: 0; pointer-events: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-card { grid-column: auto; }
    .final-cta { padding: 70px 0; }
    .final-cta h2 { font-size: 2.7rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; }
}

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