﻿:root {
    --cyan: #00aed0;
    --cyan-soft: #65d9eb;
    --cyan-dark: #08758a;
    --navy: #101722;
    --navy-2: #182130;
    --ink: #202838;
    --text: #526071;
    --muted: #8792a2;
    --paper: #fffdf8;
    --bg: #f8faf9;
    --white: #ffffff;
    --line: rgba(16,23,34,.10);
    --shadow: 0 26px 76px rgba(12,22,34,.14);
    --soft-shadow: 0 14px 44px rgba(16,23,34,.075);
    --radius: 30px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at 86% 8%, rgba(0,174,208,.18), transparent 28%), radial-gradient(circle at 8% 18%, rgba(0,174,208,.10), transparent 26%), linear-gradient(180deg, #fbfaf6 0%, #f3f7f8 52%, #fbfaf6 100%);
}

.hero {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1260px, 92%);
    margin: 0 auto;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .025;
    z-index: 100;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,250,246,.84);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(16,23,34,.08);
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    color: var(--navy);
}

    .brand img {
        width: 44px;
        height: 44px;
        object-fit: contain;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #667386;
    font-size: .95rem;
}

.nav-contact {
    font-weight: 850;
    color: var(--cyan-dark);
    border-bottom: 2px solid rgba(0,174,208,.28);
    padding-bottom: 3px;
}

.nav-item {
    position: relative;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

    .dropdown-trigger::after {
        content: "⌄";
        font-size: .8rem;
        color: var(--cyan-dark);
    }

.dropdown {
    position: absolute;
    top: 32px;
    left: -18px;
    width: 320px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(16,23,34,.10);
    box-shadow: 0 18px 45px rgba(16,23,34,.12);
    backdrop-filter: blur(18px);
    display: none;
    z-index: 60;
}

.nav-item:hover .dropdown {
    display: grid;
    gap: 6px;
}

.dropdown a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25;
}

    .dropdown a span {
        display: block;
        color: var(--muted);
        font-size: .82rem;
        font-weight: 500;
        margin-top: 3px;
    }

    .dropdown a:hover {
        background: rgba(0,174,208,.08);
    }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: .25s ease;
}

    .social-icon:hover {
        transform: translateY(-2px);
        background: rgba(0,174,208,.20);
        border-color: rgba(101,217,235,.35);
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 999px;
    font-weight: 850;
    transition: .25s ease;
    white-space: nowrap;
}

.pill-primary {
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    box-shadow: 0 16px 34px rgba(0,174,208,.28);
}

    .pill-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 44px rgba(0,174,208,.35);
    }

.pill-ghost {
    color: var(--navy);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(16,23,34,.10);
}

.hero {
    padding: 92px 0 58px;
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        right: -18%;
        top: -18%;
        width: 680px;
        height: 680px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,174,208,.16), transparent 65%);
        z-index: -1;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan-dark);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 20px;
}

    .eyebrow::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--cyan);
        box-shadow: 0 0 0 7px rgba(0,174,208,.12);
    }

h1 {
    max-width: 830px;
    font-size: clamp(3.05rem, 7vw, 6.2rem);
    line-height: .9;
    letter-spacing: -.075em;
    color: var(--navy);
    margin-bottom: 28px;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(135deg, #101722 8%, #00aed0 74%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy {
    max-width: 670px;
    color: #5a687a;
    font-size: clamp(1.08rem, 2vw, 1.26rem);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.micro {
    color: #7e8b9d;
    font-size: .96rem;
}

.hero-card {
    position: relative;
    border-radius: 38px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(16,23,34,.08);
    box-shadow: var(--shadow);
    padding: 22px;
    overflow: visible;
    backdrop-filter: blur(18px);
    animation: floatCard 6s ease-in-out infinite;
}

    .hero-card::before {
        content: "";
        position: absolute;
        right: -70px;
        top: -80px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(0,174,208,.16);
    }

    .hero-card::after {
        content: "";
        position: absolute;
        inset: -38px;
        border: 1px solid rgba(0,174,208,.24);
        border-radius: 46px;
        z-index: -1;
        animation: pulseFrame 4.8s ease-in-out infinite;
    }

.orbit-ring {
    position: absolute;
    inset: -34px;
    border: 1px solid rgba(0,174,208,.22);
    border-radius: 50%;
    pointer-events: none;
    animation: spinOrbit 18s linear infinite;
    z-index: 0;
}

    .orbit-ring.second {
        inset: 18px;
        animation-duration: 26s;
        animation-direction: reverse;
        opacity: .72;
    }

    .orbit-ring::after {
        content: "";
        position: absolute;
        top: 42px;
        left: 78px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: var(--cyan);
        box-shadow: 0 0 0 8px rgba(0,174,208,.14);
    }

@keyframes spinOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseFrame {
    0%, 100% {
        opacity: .36;
        transform: scale(.98);
    }

    50% {
        opacity: .78;
        transform: scale(1.02);
    }
}

/* nueva animación sutil tipo partículas */
.floating-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

    .floating-dots span {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        opacity: .5;
        animation: floatDots 8s linear infinite;
    }

        .floating-dots span:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-dots span:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-dots span:nth-child(3) {
            top: 40%;
            left: 50%;
            animation-delay: 4s;
        }

@keyframes floatDots {
    0% {
        transform: translateY(0);
        opacity: .2;
    }

    50% {
        opacity: .6;
    }

    100% {
        transform: translateY(-30px);
        opacity: .2;
    }
}

/* animación adicional: brillo en bloque */
.shimmer {
    position: relative;
    overflow: hidden;
}

    .shimmer::after {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
        transform: skewX(-20deg);
        animation: shimmerMove 4s ease-in-out infinite;
    }

@keyframes shimmerMove {
    0% {
        left: -120%;
    }

    60% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* animación adicional: grid pulsante */
.pulse-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 36px 36px;
    animation: gridPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@Keyframes gridPulse {
    0%, 100% {
        opacity: .15;
    }

    50% {
        opacity: .35;
    }
}

.operation-panel {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
    padding: 26px;
    color: white;
    min-height: 460px;
    overflow: hidden;
}

    .operation-panel::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
        background-size: 38px 38px;
        mask-image: radial-gradient(circle at center, black, transparent 78%);
    }

.panel-head, .panel-body {
    position: relative;
    z-index: 2;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

    .panel-head img {
        width: 78px;
        filter: drop-shadow(0 18px 28px rgba(0,0,0,.34));
    }

.panel-label {
    color: rgba(255,255,255,.64);
    font-size: .9rem;
}

.panel-title {
    font-weight: 950;
    font-size: 1.08rem;
}

.panel-body {
    display: grid;
    gap: 14px;
}

.data-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
}

.data-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(0,174,208,.20);
    color: var(--cyan-soft);
    font-weight: 950;
}

.data-row strong {
    display: block;
    color: white;
    line-height: 1.2;
}

.data-row span {
    color: rgba(255,255,255,.56);
    font-size: .9rem;
}

.status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 850;
    color: #dff9ff;
    background: rgba(0,174,208,.18);
    border: 1px solid rgba(100,217,235,.20);
}

.section {
    padding: 82px 0;
}

.section-head {
    max-width: 810px;
    margin-bottom: 38px;
}

.kicker {
    color: var(--cyan-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    margin-bottom: 12px;
}

h2 {
    font-size: clamp(2.12rem, 4.5vw, 4rem);
    line-height: .98;
    letter-spacing: -.055em;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text);
    font-size: 1.12rem;
}

.home-diagnostic {
    margin-top: 34px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
    border-radius: 42px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(16,23,34,.08);
    box-shadow: var(--soft-shadow);
    padding: 22px;
}

.home-diagnostic-visual {
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy), #1e2a3b);
}

    .home-diagnostic-visual svg {
        width: 100%;
        height: 100%;
        min-height: 360px;
        display: block;
    }

.home-diagnostic-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .home-diagnostic-content h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .home-diagnostic-content p {
        color: var(--text);
        font-size: 1.08rem;
        margin-bottom: 24px;
    }

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.chip {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(0,174,208,.10);
    color: var(--cyan-dark);
    font-weight: 800;
    font-size: .92rem;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.image-note {
    min-height: 245px;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(16,23,34,.08);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

    .image-note svg {
        width: 100%;
        height: 150px;
        display: block;
    }

    .image-note div {
        padding: 16px 18px 18px;
    }

    .image-note strong {
        display: block;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .image-note p {
        color: var(--text);
        font-size: .94rem;
    }

.bento {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 18px;
}

.box {
    min-height: 230px;
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(16,23,34,.08);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

    .box.dark {
        color: white;
        background: linear-gradient(145deg, var(--navy), #1f2b3d);
    }

    .box.accent {
        color: white;
        background: linear-gradient(145deg, var(--cyan), var(--cyan-dark));
    }

    .box.paper {
        background: var(--paper);
    }

    .box.tall {
        grid-row: span 2;
        min-height: 478px;
    }

    .box.wide {
        grid-column: span 2;
    }

    .box h3 {
        font-size: 1.45rem;
        line-height: 1.1;
        letter-spacing: -.03em;
        color: inherit;
        margin-bottom: 12px;
        position: relative;
        z-index: 2;
    }

    .box p, .box li {
        color: inherit;
        opacity: .80;
        position: relative;
        z-index: 2;
    }

    .box ul {
        list-style: none;
        display: grid;
        gap: 14px;
        margin-top: 18px;
    }

    .box li {
        padding-left: 30px;
        position: relative;
    }

        .box li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 0 7px rgba(0,174,208,.13);
        }

    .box.accent li::before, .box.dark li::before {
        background: white;
        box-shadow: 0 0 0 7px rgba(255,255,255,.14);
    }

.ghost-logo {
    position: absolute;
    right: -52px;
    bottom: -44px;
    width: 220px;
    opacity: .09;
    filter: grayscale(1);
}

.split {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 26px;
    align-items: center;
}

.mockup {
    min-height: 520px;
    border-radius: 38px;
    background: linear-gradient(145deg, #101722, #1e2a3b);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(255,255,255,.18);
}

    .mockup svg {
        width: 100%;
        height: 100%;
        min-height: 520px;
        display: block;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.benefit {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(16,23,34,.08);
    box-shadow: var(--soft-shadow);
}

    .benefit strong {
        display: block;
        font-size: 1.2rem;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .benefit p {
        color: var(--text);
    }

.process-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
}

.process-card {
    min-height: 360px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(16,23,34,.08);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    position: relative;
}

    .process-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        background: #eaf7fa;
    }

.process-fallback {
    width: 100%;
    height: 170px;
    background: linear-gradient(145deg, var(--navy), var(--cyan-dark));
    display: grid;
    place-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .process-fallback::after {
        content: "";
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        position: absolute;
        right: -28px;
        top: -28px;
    }

    .process-fallback span {
        position: relative;
        z-index: 2;
        font-size: 2.4rem;
        font-weight: 950;
    }

.process-content {
    padding: 24px;
}

.process-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.process-card p {
    color: var(--text);
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 66px 34px;
    border-radius: 44px;
    background: linear-gradient(145deg, var(--navy), #1e2a3b);
    color: white;
    box-shadow: var(--shadow);
    text-align: center;
}

    .final-cta::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: radial-gradient(circle at center, black, transparent 78%);
    }

    .final-cta > * {
        position: relative;
        z-index: 2;
    }

    .final-cta h2 {
        color: white;
        max-width: 880px;
        margin-inline: auto;
    }

    .final-cta p {
        color: rgba(255,255,255,.74);
        max-width: 680px;
        margin: 0 auto 28px;
        font-size: 1.1rem;
    }

.footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 86% 10%, rgba(0,174,208,.28), transparent 30%), radial-gradient(circle at 10% 90%, rgba(0,174,208,.14), transparent 28%), linear-gradient(145deg, var(--navy), #0d131d 72%);
    color: var(--white);
    padding: 78px 0 34px;
}

    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
        background-size: 44px 44px;
        mask-image: radial-gradient(circle at center, black, transparent 82%);
        pointer-events: none;
    }

    .footer::after {
        content: "";
        position: absolute;
        right: -110px;
        bottom: -130px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 1px solid rgba(101,217,235,.22);
        box-shadow: 0 0 0 70px rgba(0,174,208,.035);
        pointer-events: none;
    }

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr .9fr;
    gap: 46px;
    align-items: start;
}

.footer-brand img {
    width: 260px;
    filter: brightness(0) invert(1);
    opacity: .96;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 390px;
    color: var(--muted-white);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.075);
    border: 1px solid var(--line);
    color: rgba(255,255,255,.82);
    font-weight: 750;
    font-size: .9rem;
}

    .footer-badge::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--cyan-soft);
        box-shadow: 0 0 0 7px rgba(101,217,235,.12);
    }

.footer-column h3 {
    font-size: .86rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--cyan-soft);
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-column li,
.footer-column a,
.footer-column p {
    color: var(--muted-white);
    font-size: .96rem;
    line-height: 1.5;
}

.footer-column a {
    transition: .25s ease;
}

    .footer-column a:hover {
        color: var(--white);
        padding-left: 4px;
    }

.contact-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.075);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

    .contact-card p + p {
        margin-top: 10px;
    }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: .25s ease;
}

    .social-icon:hover {
        transform: translateY(-3px);
        background: rgba(0,174,208,.22);
        border-color: rgba(101,217,235,.42);
        box-shadow: 0 16px 32px rgba(0,174,208,.16);
    }

    .social-icon svg {
        width: 21px;
        height: 21px;
        fill: currentColor;
    }

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 58px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.46);
    font-size: .92rem;
}

    .footer-bottom a {
        color: rgba(255,255,255,.58);
    }

        .footer-bottom a:hover {
            color: var(--white);
        }

.footer ul {
    padding-left: 0rem;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-grid, .split, .home-diagnostic {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-grid {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .container {
        width: min(1260px, 100%);
        margin: 0 auto;
        padding: 0 25px;
    }

    .bento {
        grid-template-columns: 1fr 1fr;
    }

    .box.wide {
        grid-column: span 2;
    }

    .process-visual, .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .header .nav-contact {
        display: none;
    }

    .hero {
        padding: 64px 0 42px;
    }

        .hero::before {
            width: 320px;
            height: 320px;
            right: -30%;
            top: -10%;
        }

    .hero-actions .pill {
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card::after {
        inset: -8px;
    }

    .hero-card::before {
        width: 140px;
        height: 140px;
        right: -30px;
        top: -30px;
    }

    .operation-panel {
        min-height: 420px;
    }

    .bento, .process-visual, .benefits-grid, .gallery-strip {
        grid-template-columns: 1fr;
    }

    .box.wide, .box.tall {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .mockup svg {
        min-height: 360px;
    }

    .section {
        padding: 62px 0;
    }

    .home-diagnostic {
        padding: 14px;
        border-radius: 32px;
    }

    .home-diagnostic-content {
        padding: 22px;
    }

    .final-cta {
        padding: 48px 22px;
    }

    .brand span {
        font-size: .88rem;
    }

    .footer {
        padding: 58px 0 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand img {
        width: 230px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
