:root {
            --ink: #08090b;
            --ink-2: #161719;
            --gold: #c49a48;
            --gold-dark: #9b7430;
            --paper: #ffffff;
            --soft: #f6f4ef;
            --line: #e7dfd0;
            --muted: #66645f;
            --success: #0f766e;
            --shadow: 0 22px 70px rgba(8, 9, 11, 0.13);
        }

        * { box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            font-family: "Heebo", Arial, sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
        }

        img { max-width: 100%; display: block; }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        textarea {
            font: inherit;
        }

        .site-shell {
            overflow: visible;
            width: 100%;
        }

        main {
            padding-top: 78px;
        }

        [id] {
            scroll-margin-top: 96px;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        .topbar {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 90;
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(196, 154, 72, 0.18);
            backdrop-filter: blur(16px);
            box-shadow: 0 0 0 rgba(8, 9, 11, 0);
            transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
        }

        .topbar.is-floating {
            background: rgba(255, 255, 255, 0.96);
            border-bottom-color: rgba(196, 154, 72, 0.28);
            box-shadow: 0 12px 34px rgba(8, 9, 11, 0.08);
        }

        .nav {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: min(360px, 34vw);
        }

        .brand img {
            width: 58px;
            height: 58px;
            object-fit: contain;
        }

        .brand-name {
            display: grid;
            gap: 1px;
        }

        .brand-name strong {
            font-size: clamp(1.28rem, 1.7vw, 1.82rem);
            line-height: 1.08;
            letter-spacing: 0;
            color: var(--gold-dark);
            white-space: normal;
        }

        .brand-name span {
            font-size: 0.82rem;
            color: var(--muted);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            color: #36342f;
            font-weight: 600;
            font-size: 0.98rem;
        }

        .nav-links a {
            transition: color 180ms ease;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--gold-dark);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 46px;
            padding: 0 20px;
            border-radius: 6px;
            border: 1px solid transparent;
            font-weight: 800;
            line-height: 1;
            cursor: pointer;
            transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
        }

        .btn:disabled {
            cursor: wait;
            opacity: 0.72;
            transform: none;
        }

        .btn:focus-visible,
        .icon-link:focus-visible,
        .field:focus-visible,
        textarea:focus-visible {
            outline: 3px solid rgba(196, 154, 72, 0.38);
            outline-offset: 3px;
        }

        .btn-primary {
            background: var(--gold);
            color: #111;
            border-color: var(--gold);
        }

        .btn-primary:hover {
            background: #d6ad58;
            border-color: #d6ad58;
        }

        .btn-dark {
            background: var(--ink);
            color: #fff;
        }

        .btn-dark:hover {
            background: #252016;
        }

        .btn-light {
            background: #fff;
            color: var(--ink);
            border-color: var(--line);
        }

        .btn-light:hover {
            border-color: var(--gold);
            color: var(--gold-dark);
        }

        .btn i,
        .icon-link i,
        .service-item i,
        .proof-item i,
        .contact-line i {
            width: 20px;
            height: 20px;
            stroke-width: 2.1;
            flex: 0 0 auto;
        }

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid var(--line);
            border-radius: 6px;
            background: #fff;
            color: var(--ink);
            cursor: pointer;
        }

        .hero {
            position: relative;
            min-height: min(700px, calc(100svh - 118px));
            display: flex;
            align-items: center;
            overflow: hidden;
            background:
                linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 47%, rgba(246,244,239,0.74) 100%),
                radial-gradient(circle at 18% 78%, rgba(196,154,72,0.16), transparent 30%),
                var(--soft);
            border-bottom: 1px solid var(--line);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(8, 9, 11, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(8, 9, 11, 0.045) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.9) 45%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: -22%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.22;
            filter: blur(18px) saturate(1.08);
            background-image:
                repeating-linear-gradient(
                    108deg,
                    rgba(196, 154, 72, 0.0) 0%,
                    rgba(196, 154, 72, 0.0) 10%,
                    rgba(196, 154, 72, 0.28) 15%,
                    rgba(120, 92, 42, 0.12) 19%,
                    rgba(15, 23, 42, 0.08) 24%,
                    rgba(196, 154, 72, 0.0) 31%
                );
            background-size: 210% 160%;
            background-position: 50% 50%;
            animation: deluxe-aurora 46s linear infinite;
            mask-image:
                radial-gradient(ellipse at 74% 22%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.45) 38%, transparent 68%),
                linear-gradient(90deg, transparent 0%, #000 28%, #000 82%, transparent 100%);
            mask-composite: intersect;
        }

        @keyframes deluxe-aurora {
            from { background-position: 50% 50%; }
            to { background-position: 290% 50%; }
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.9fr);
            align-items: center;
            gap: clamp(34px, 4.4vw, 62px);
            padding: clamp(42px, 5.2vw, 58px) 0 clamp(38px, 4.4vw, 52px);
        }

        .hero-copy h1 {
            margin: 0;
            max-width: 720px;
            font-size: clamp(2.68rem, 5.4vw, 5.42rem);
            line-height: 1;
            letter-spacing: 0;
            font-weight: 800;
        }

.hero-copy h1 > span {
    color: var(--gold-dark);
    display: block;
}

.hero-copy h1 .hero-title-main {
    color: var(--ink);
}

.hero-copy h1 .hero-business-line {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.18em;
    margin-top: 0.12em;
    color: var(--ink);
    font-size: clamp(1.78rem, 2.85vw, 2.95rem);
    line-height: 1.2;
    font-weight: 800;
}

.business-word {
    position: relative;
    display: inline-grid;
    place-items: center;
    min-width: 4.12em;
    padding: 0 0.08em 0.06em;
    color: var(--gold-dark);
    isolation: isolate;
    transform-origin: 50% 70%;
    will-change: transform, opacity, filter;
    transition: color 220ms ease, text-shadow 220ms ease;
}

.business-word::before {
    content: "";
    position: absolute;
    inset: 0.12em -0.1em 0.04em;
    z-index: -1;
    border-radius: 4px;
    background:
        linear-gradient(90deg, transparent, rgba(196, 154, 72, 0.18), transparent),
        linear-gradient(180deg, rgba(196, 154, 72, 0.0), rgba(196, 154, 72, 0.1));
    opacity: 0;
    transform: scaleX(0.75);
    transition: opacity 260ms ease, transform 260ms ease;
}

.business-word::after {
    content: "";
    position: absolute;
    right: 0.06em;
    left: 0.06em;
    bottom: -0.03em;
    height: 0.08em;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(196, 154, 72, 0.95), transparent);
    opacity: 0.56;
    transform: scaleX(0.78);
    transform-origin: center;
}

.business-word.is-leaving {
    animation: business-word-leave 240ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.business-word.is-entering {
    background-image: linear-gradient(105deg, var(--gold-dark) 0%, #d7ad58 38%, #fff4c7 50%, #a98239 62%, var(--gold-dark) 100%);
    background-size: 260% 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 8px 22px rgba(196, 154, 72, 0.16);
    animation:
        business-word-enter 520ms cubic-bezier(0.16, 1, 0.3, 1) both,
        business-word-ink 720ms ease-out both;
}

.business-word.is-entering::before {
    opacity: 1;
    transform: scaleX(1);
    animation: business-word-glow 820ms ease-out both;
}

.business-word.is-entering::after {
    animation: business-word-underline 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes business-word-leave {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateY(-0.34em) scale(0.985);
        filter: blur(2px);
    }
}

@keyframes business-word-enter {
    from {
        opacity: 0;
        transform: translateY(0.44em) scale(0.98);
        filter: blur(3px);
    }
    62% {
        opacity: 1;
        transform: translateY(-0.04em) scale(1.01);
        filter: blur(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes business-word-underline {
    from {
        opacity: 0;
        transform: scaleX(0.16) translateX(0.18em);
    }
    55% {
        opacity: 0.82;
        transform: scaleX(1.04) translateX(0);
    }
    to {
        opacity: 0.56;
        transform: scaleX(0.78) translateX(0);
    }
}

@keyframes business-word-glow {
    from {
        opacity: 0;
        transform: scaleX(0.64);
    }
    42% {
        opacity: 1;
        transform: scaleX(1.08);
    }
    to {
        opacity: 0;
        transform: scaleX(1);
    }
}

@keyframes business-word-ink {
    from {
        background-position: 120% 50%;
    }
    to {
        background-position: -80% 50%;
    }
}

        .hero-copy p {
            margin: 24px 0 0;
            max-width: 620px;
            color: #4b4842;
            font-size: clamp(1.08rem, 1.7vw, 1.34rem);
            line-height: 1.72;
            font-weight: 500;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 30px;
        }

        .trust-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            margin-top: 38px;
            max-width: 720px;
            background: var(--line);
            border: 1px solid var(--line);
        }

        .trust-strip div {
            background: rgba(255,255,255,0.9);
            padding: 18px 16px;
        }

        .trust-strip strong {
            display: block;
            font-size: 1.02rem;
            line-height: 1.25;
        }

        .trust-strip span {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .hero-visual {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-panel {
            position: relative;
            width: min(468px, 100%);
            min-height: 488px;
            background: var(--ink);
            color: #fff;
            border-radius: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(196,154,72,0.34);
        }

        .visual-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(196,154,72,0.18), transparent 38%),
                linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
            background-size: auto, 100% 56px;
            pointer-events: none;
        }

        .visual-logo {
            position: absolute;
            inset: 34px 46px auto;
            display: grid;
            justify-items: center;
            gap: 20px;
            text-align: center;
        }

        .visual-logo img {
            width: 190px;
            height: 190px;
            object-fit: contain;
            filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
        }

        .visual-logo strong {
            display: none;
        }

        .visual-logo span {
            display: none;
        }

        .service-board {
            position: absolute;
            right: 26px;
            left: 26px;
            bottom: 26px;
            display: grid;
            gap: 10px;
        }

        .board-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 13px 14px;
            border: 1px solid rgba(255,255,255,0.13);
            background: rgba(255,255,255,0.055);
            border-radius: 6px;
            color: rgba(255,255,255,0.88);
            font-size: 0.95rem;
            font-weight: 700;
            min-width: 0;
        }

        .board-row span {
            min-width: 0;
        }

        .board-row span:first-child {
            overflow-wrap: anywhere;
        }

        .board-row span:last-child {
            color: var(--gold);
            font-size: 0.88rem;
            white-space: nowrap;
        }

        .section {
            padding: 84px 0;
        }

        .section-head {
            display: grid;
            grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.52fr);
            gap: 48px;
            align-items: end;
            margin-bottom: 38px;
        }

        .section h2 {
            margin: 0;
            font-size: clamp(1.95rem, 3.25vw, 3.55rem);
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: 0;
        }

        .section-head p,
        .lead {
            color: var(--muted);
            margin: 0;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .problem {
            background: #fff;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .problem-card,
        .service-card,
        .proof-card {
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fff;
        }

        .problem-card {
            padding: 26px 24px;
            min-height: 194px;
            display: grid;
            align-content: start;
            gap: 14px;
        }

        .problem-card strong {
            font-size: 1.14rem;
            line-height: 1.25;
        }

        .problem-card p {
            margin: 0;
            color: var(--muted);
            font-weight: 500;
            line-height: 1.62;
        }

        .mark {
            width: 34px;
            height: 3px;
            background: var(--gold);
            border-radius: 999px;
        }

        .solution {
            background: var(--soft);
            border-block: 1px solid var(--line);
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 58px;
            align-items: center;
        }

        .solution-copy h2 {
            max-width: 650px;
        }

        .solution-copy p {
            margin: 24px 0 0;
            color: #4b4842;
            font-size: 1.16rem;
            font-weight: 500;
        }

        .process {
            display: grid;
            gap: 12px;
        }

        .process-row {
            display: grid;
            grid-template-columns: 62px 1fr;
            gap: 18px;
            align-items: start;
            padding: 22px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 8px;
        }

        .process-num {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            background: var(--ink);
            color: var(--gold);
            border-radius: 6px;
            font-weight: 800;
        }

        .process-row strong {
            display: block;
            font-size: 1.12rem;
            line-height: 1.25;
        }

        .process-row span {
            display: block;
            margin-top: 5px;
            color: var(--muted);
            font-weight: 500;
        }

        .services {
            background: #fff;
        }

        .services-layout {
            display: grid;
            grid-template-columns: 0.72fr 1.28fr;
            gap: 34px;
            align-items: start;
        }

        .service-summary {
            position: sticky;
            top: 104px;
            border-radius: 8px;
            background: var(--ink);
            color: #fff;
            padding: 34px;
            border: 1px solid rgba(196,154,72,0.35);
            min-height: 400px;
            display: grid;
            align-content: space-between;
            gap: 34px;
        }

        .service-summary img {
            width: 150px;
            height: 150px;
            object-fit: contain;
            margin-right: auto;
            opacity: 0.95;
        }

        .service-summary h2 {
            font-size: clamp(2rem, 3.6vw, 3.4rem);
            color: #fff;
        }

        .service-summary p {
            margin: 18px 0 0;
            color: rgba(255,255,255,0.72);
            font-weight: 500;
        }

        .service-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .service-card {
            padding: 26px;
        }

        .service-card h3 {
            margin: 0 0 18px;
            font-size: 1.28rem;
            line-height: 1.28;
        }

        .service-items {
            display: grid;
            gap: 12px;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #47433c;
            font-weight: 600;
            line-height: 1.35;
        }

        .service-item i {
            color: var(--gold-dark);
        }

        .proof {
            background: var(--ink);
            color: #fff;
        }

        .proof .section-head p {
            color: rgba(255,255,255,0.68);
        }

        .proof-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .proof-card {
            background: rgba(255,255,255,0.055);
            border-color: rgba(255,255,255,0.12);
            padding: 28px;
            color: #fff;
        }

        .proof-item {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 6px;
            background: rgba(196,154,72,0.16);
            color: var(--gold);
            margin-bottom: 20px;
        }

        .proof-card strong {
            display: block;
            font-size: 1.2rem;
            line-height: 1.25;
        }

        .proof-card p {
            margin: 10px 0 0;
            color: rgba(255,255,255,0.68);
            font-weight: 500;
        }

        .contact {
            background:
                linear-gradient(180deg, #fff, var(--soft));
            padding-bottom: 112px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 0.86fr 1.14fr;
            gap: 52px;
            align-items: start;
        }

        .contact-info {
            display: grid;
            gap: 22px;
        }

        .contact-info h2 {
            margin-bottom: 8px;
        }

        .contact-info p {
            margin: 0;
            color: var(--muted);
            font-size: 1.08rem;
            font-weight: 500;
        }

        .contact-lines {
            display: grid;
            gap: 12px;
            margin-top: 10px;
        }

        .contact-line {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: #3e3a34;
        }

        .contact-line i {
            color: var(--gold-dark);
        }

        .contact-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(8,9,11,0.08);
            padding: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .field-wrap {
            display: grid;
            gap: 7px;
        }

        .field-wrap.full {
            grid-column: 1 / -1;
        }

        label {
            color: #3d3932;
            font-weight: 800;
            font-size: 0.95rem;
        }

        .field,
        textarea {
            width: 100%;
            border: 1px solid #d8cfbf;
            border-radius: 6px;
            min-height: 50px;
            padding: 12px 14px;
            color: var(--ink);
            background: #fff;
        }

        textarea {
            min-height: 116px;
            resize: vertical;
        }

        .form-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 22px;
        }

        .form-note {
            color: var(--muted);
            font-size: 0.92rem;
            font-weight: 500;
        }

        .form-message {
            min-height: 24px;
            margin: 14px 0 0;
            color: var(--muted);
            font-size: 0.95rem;
            font-weight: 800;
        }

        .form-message:empty {
            display: none;
        }

        .form-message[data-realm-contact-state="loading"] {
            color: var(--gold-dark);
        }

        .form-message[data-realm-contact-state="success"] {
            color: #1f7a4d;
        }

        .form-message[data-realm-contact-state="error"] {
            color: #a83c2d;
        }

        .realm-hp {
            position: absolute;
            inset-inline-start: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .footer {
            background: var(--ink);
            color: rgba(255,255,255,0.72);
            padding: 34px 0 92px;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            font-weight: 600;
            font-size: 0.94rem;
        }

        .footer strong {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .floating-contact {
            position: fixed;
            inset: auto 0 22px;
            z-index: 70;
            pointer-events: none;
        }

        .icon-link,
        .floating-logo {
            position: absolute;
            pointer-events: auto;
        }

        .icon-link {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            background: var(--ink);
            color: #fff;
            border: 1px solid rgba(196,154,72,0.55);
            box-shadow: 0 12px 34px rgba(8,9,11,0.22);
            transition: transform 180ms ease, background 180ms ease;
        }

        .icon-link-phone {
            right: 20px;
            bottom: 0;
        }

        .icon-link-whatsapp {
            left: 20px;
            bottom: 0;
            background: #1f8f57;
            border-color: rgba(255,255,255,0.22);
        }

        .floating-logo {
            left: 50%;
            bottom: 0;
            width: 64px;
            height: 64px;
            display: grid;
            place-items: center;
            transform: translateX(-50%);
            border-radius: 999px;
            background: rgba(255,255,255,0.94);
            border: 1px solid rgba(196,154,72,0.42);
            box-shadow: 0 12px 34px rgba(8,9,11,0.18);
            backdrop-filter: blur(10px);
        }

        .floating-logo img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .icon-link:hover {
            transform: translateY(-2px);
            background: #24201a;
        }

        .icon-link-whatsapp:hover {
            background: #177946;
        }

        .floating-logo:hover {
            transform: translateX(-50%) translateY(-2px);
        }

        .mobile-panel {
            display: none;
        }

        .mobile-title-break {
            display: none;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }

        @media (max-width: 980px) {
            .container {
                width: min(100% - 28px, 760px);
            }

            main {
                padding-top: 72px;
            }

            [id] {
                scroll-margin-top: 88px;
            }

            .nav {
                min-height: 72px;
                gap: 14px;
            }

            .nav-links,
            .nav-actions {
                display: none;
            }

            .menu-toggle {
                display: grid;
                place-items: center;
            }

            .mobile-panel {
                display: none;
                border-top: 1px solid var(--line);
                padding: 14px 0 18px;
            }

            .mobile-panel.open {
                display: grid;
                gap: 10px;
            }

            .mobile-panel a {
                padding: 10px 0;
                font-weight: 700;
                color: #34302b;
            }

            .mobile-panel .btn {
                margin-top: 6px;
                width: 100%;
            }

            .hero {
                min-height: auto;
            }

            .hero::after {
                opacity: 0.16;
                filter: blur(16px) saturate(1);
                mask-image: radial-gradient(ellipse at 54% 16%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, transparent 72%);
            }

            .hero-grid,
            .solution-grid,
            .services-layout,
            .contact-grid,
            .section-head {
                grid-template-columns: 1fr;
            }

            .hero-grid {
                gap: 30px;
                padding: 38px 0 40px;
            }

            .hero-copy h1 {
                max-width: 690px;
                font-size: clamp(2.65rem, 9.4vw, 4.18rem);
                line-height: 1.03;
                overflow-wrap: break-word;
            }

            .hero-copy h1 .hero-business-line {
                justify-content: center;
                font-size: clamp(1.65rem, 5.2vw, 2.28rem);
            }

            .hero-visual {
                min-height: 378px;
                justify-content: stretch;
            }

            .visual-panel {
                width: 100%;
                min-height: 378px;
            }

            .visual-logo {
                inset: 26px 26px auto;
            }

            .visual-logo img {
                width: 156px;
                height: 156px;
            }

            .service-summary {
                position: static;
                min-height: auto;
            }

            .service-summary img {
                margin-right: 0;
            }

            .problem-grid,
            .proof-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section {
                padding: 66px 0;
            }

            .floating-contact {
                bottom: 16px;
            }
        }

        @media (max-width: 640px) {
            .brand {
                min-width: 0;
            }

            .brand img {
                width: 46px;
                height: 46px;
            }

            .brand-name strong {
                font-size: 0.96rem;
                max-width: 176px;
            }

            .brand-name span {
                font-size: 0.72rem;
            }

            .hero-actions,
            .form-actions,
            .footer-inner {
                align-items: stretch;
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .hero-grid {
                padding: 34px 0 34px;
                gap: 26px;
            }

            .hero-copy h1 {
                font-size: clamp(1.84rem, 7.9vw, 2.18rem);
                line-height: 1.12;
                max-width: 100%;
            }

            .mobile-title-break {
                display: block;
            }

            .hero-copy h1 .hero-business-line {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 0 0.18em;
                font-size: clamp(1.32rem, 6.4vw, 1.82rem);
                line-height: 1.18;
            }

            .business-word {
                min-width: 3.8em;
            }

            .hero-copy p {
                margin-top: 18px;
                font-size: 0.98rem;
                line-height: 1.75;
                max-width: 100%;
            }

            .hero-actions {
                margin-top: 24px;
                gap: 12px;
            }

            .trust-strip {
                margin-top: 28px;
            }

            .trust-strip div {
                padding: 15px 16px;
            }

            .trust-strip,
            .problem-grid,
            .service-list,
            .proof-grid,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .section-head {
                gap: 18px;
                margin-bottom: 28px;
            }

            .section h2,
            .service-summary h2 {
                font-size: clamp(2rem, 10vw, 2.8rem);
                line-height: 1.12;
            }

            .process-row {
                grid-template-columns: 1fr;
            }

            .service-board {
                right: 16px;
                left: 16px;
                bottom: 18px;
            }

            .visual-logo img {
                width: 128px;
                height: 128px;
            }

            .visual-logo strong {
                display: none;
            }

            .visual-logo span {
                display: none;
            }

            .board-row {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: center;
                gap: 10px;
                padding: 11px 12px;
                font-size: 0.88rem;
            }

            .contact-card,
            .service-summary {
                padding: 22px;
            }

            .footer {
                padding-bottom: 108px;
            }

            .icon-link {
                width: 50px;
                height: 50px;
            }

            .icon-link-phone {
                right: 14px;
            }

            .icon-link-whatsapp {
                left: 14px;
            }

            .floating-logo {
                width: 58px;
                height: 58px;
            }

            .floating-logo img {
                width: 42px;
                height: 42px;
            }
        }

