:root {
    --digo-cs-bg: #f8fafc;
    --digo-cs-surface: #ffffff;
    --digo-cs-surface-soft: #f4f3ff;
    --digo-cs-text: #101828;
    --digo-cs-muted: #667085;
    --digo-cs-border: #e4e7ec;
    --digo-cs-primary: #6941c6;
    --digo-cs-primary-dark: #53389e;
    --digo-cs-primary-soft: #eee9ff;
    --digo-cs-whatsapp: #20b85a;
    --digo-cs-whatsapp-dark: #159447;
    --digo-cs-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.digo-coming-soon-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 5%, rgba(105, 65, 198, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--digo-cs-bg) 62%, #ffffff 100%);
    color: var(--digo-cs-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.digo-cs-decoration {
    position: fixed;
    z-index: 0;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.42;
}

.digo-cs-decoration-one {
    top: 130px;
    right: -220px;
    background: rgba(105, 65, 198, 0.12);
}

.digo-cs-decoration-two {
    bottom: 70px;
    left: -230px;
    background: rgba(32, 184, 90, 0.08);
}

.digo-cs-shell {
    position: relative;
    z-index: 1;
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.digo-cs-header {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(228, 231, 236, 0.8);
}

.digo-cs-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--digo-cs-text);
    font-size: 19px;
    font-weight: 760;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.digo-cs-brand img {
    display: block;
    max-width: min(220px, 45vw);
    max-height: var(--digo-cs-logo-size, 64px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.digo-cs-monogram {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--digo-cs-primary), #9b8afb);
    color: #ffffff;
    font-weight: 850;
    box-shadow: 0 10px 26px rgba(105, 65, 198, 0.22);
}

.digo-cs-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid #d9d6fe;
    border-radius: 999px;
    background: #f4f3ff;
    color: var(--digo-cs-primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.digo-cs-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--digo-cs-whatsapp);
    box-shadow: 0 0 0 5px rgba(32, 184, 90, 0.1);
    animation: digoCsPulse 2s ease-in-out infinite;
}

.digo-cs-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 104px 0 78px;
    text-align: center;
}

.digo-cs-eyebrow {
    margin: 0 0 24px;
    color: var(--digo-cs-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.digo-cs-hero h1 {
    margin: 0;
    font-size: clamp(62px, 9vw, 108px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.digo-cs-highlight {
    position: relative;
    display: inline-block;
    padding: 0.08em 0.24em 0.15em;
    isolation: isolate;
    color: var(--digo-cs-text);
}

.digo-cs-highlight::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.4em;
    border-radius: 12px;
    background: linear-gradient(90deg, #ddd6fe, #f5d0fe, #fde68a);
    transform: rotate(-1deg);
}

.digo-cs-business-heading {
    max-width: 790px;
    margin: 34px auto 0;
    font-size: clamp(27px, 4vw, 43px);
    line-height: 1.16;
    letter-spacing: -0.045em;
    color: var(--digo-cs-text);
}

.digo-cs-lead {
    max-width: 720px;
    margin: 24px auto 0;
    color: var(--digo-cs-muted);
    font-size: 17px;
    line-height: 1.75;
}

.digo-cs-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.digo-cs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.digo-cs-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.digo-cs-button:hover {
    transform: translateY(-2px);
}

.digo-cs-button:focus-visible,
.digo-cs-floating-whatsapp:focus-visible,
.digo-cs-contact-whatsapp:focus-visible {
    outline: 3px solid rgba(105, 65, 198, 0.25);
    outline-offset: 3px;
}

.digo-cs-button-whatsapp {
    background: var(--digo-cs-whatsapp);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(32, 184, 90, 0.22);
}

.digo-cs-button-whatsapp:hover {
    background: var(--digo-cs-whatsapp-dark);
    box-shadow: 0 18px 40px rgba(32, 184, 90, 0.28);
}

.digo-cs-button-secondary {
    border-color: var(--digo-cs-border);
    background: var(--digo-cs-surface);
    color: var(--digo-cs-text);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.digo-cs-button-secondary:hover {
    border-color: #c9cdd5;
    background: #f9fafb;
}

.digo-cs-trust-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 32px;
    color: #475467;
    font-size: 13px;
    font-weight: 650;
}

.digo-cs-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.digo-cs-trust-line i {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ecfdf3;
    color: #039855;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.digo-cs-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0 0 74px;
}

.digo-cs-service-card {
    min-height: 230px;
    padding: 30px;
    border: 1px solid var(--digo-cs-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.045);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.digo-cs-service-card:hover {
    transform: translateY(-4px);
    border-color: #d6ccff;
    box-shadow: 0 20px 46px rgba(16, 24, 40, 0.08);
}

.digo-cs-service-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--digo-cs-primary-soft);
    color: var(--digo-cs-primary);
}

.digo-cs-service-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.digo-cs-service-card h2 {
    margin: 23px 0 11px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.digo-cs-service-card p {
    margin: 0;
    color: var(--digo-cs-muted);
    font-size: 14px;
    line-height: 1.72;
}

.digo-cs-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 54px;
    align-items: center;
    padding: 48px;
    border: 1px solid #ddd6fe;
    border-radius: 26px;
    background: linear-gradient(135deg, #f7f5ff 0%, #ffffff 62%, #f0fdf4 100%);
    box-shadow: var(--digo-cs-shadow);
}

.digo-cs-contact-copy h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 39px);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.digo-cs-contact-copy p {
    margin: 15px 0 0;
    color: var(--digo-cs-muted);
    line-height: 1.72;
}

.digo-cs-contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--digo-cs-whatsapp-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.digo-cs-contact-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.digo-cs-contact-whatsapp:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.digo-cs-contact-details {
    display: grid;
    gap: 12px;
}

.digo-cs-contact-details a,
.digo-cs-contact-details > div {
    display: block;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid var(--digo-cs-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--digo-cs-text);
    text-decoration: none;
}

.digo-cs-contact-details a:hover {
    border-color: #c9cdd5;
    background: #ffffff;
}

.digo-cs-contact-details span,
.digo-cs-contact-details strong {
    display: block;
}

.digo-cs-contact-details span {
    color: var(--digo-cs-muted);
    font-size: 10px;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.digo-cs-contact-details strong {
    margin-top: 6px;
    overflow-wrap: anywhere;
    font-size: 14px;
}

.digo-cs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 0 42px;
    color: #98a2b3;
    font-size: 12px;
}

.digo-cs-footer p {
    margin: 0;
}

.digo-cs-floating-whatsapp {
    position: fixed;
    z-index: 20;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 18px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    background: var(--digo-cs-whatsapp);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(32, 184, 90, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.digo-cs-floating-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.digo-cs-floating-whatsapp:hover {
    transform: translateY(-3px);
    background: var(--digo-cs-whatsapp-dark);
    box-shadow: 0 20px 44px rgba(32, 184, 90, 0.34);
}

@keyframes digoCsPulse {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(32, 184, 90, 0.1);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(32, 184, 90, 0.03);
    }
}

@media (max-width: 900px) {
    .digo-cs-hero {
        padding-top: 86px;
    }

    .digo-cs-services {
        grid-template-columns: 1fr 1fr;
    }

    .digo-cs-service-card:last-child {
        grid-column: 1 / -1;
    }

    .digo-cs-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 680px) {
    .digo-cs-shell {
        width: min(100% - 28px, 1140px);
    }

    .digo-cs-header {
        min-height: 80px;
    }

    .digo-cs-brand {
        font-size: 16px;
    }

    .digo-cs-brand img {
        max-width: min(160px, 44vw);
        max-height: min(var(--digo-cs-logo-size, 48px), 48px);
    }

    .digo-cs-monogram {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .digo-cs-status {
        padding: 8px 10px;
        font-size: 11px;
    }

    .digo-cs-hero {
        padding: 72px 0 58px;
    }

    .digo-cs-hero h1 {
        font-size: clamp(54px, 18vw, 78px);
    }

    .digo-cs-highlight {
        padding-inline: 0.14em;
    }

    .digo-cs-business-heading {
        margin-top: 29px;
        font-size: clamp(25px, 8vw, 34px);
    }

    .digo-cs-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .digo-cs-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .digo-cs-button {
        width: 100%;
    }

    .digo-cs-trust-line {
        align-items: flex-start;
        flex-direction: column;
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .digo-cs-services {
        grid-template-columns: 1fr;
        padding-bottom: 54px;
    }

    .digo-cs-service-card:last-child {
        grid-column: auto;
    }

    .digo-cs-service-card {
        min-height: 0;
        padding: 24px;
    }

    .digo-cs-contact {
        padding: 30px 23px;
        border-radius: 21px;
    }

    .digo-cs-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        padding-bottom: 94px;
    }

    .digo-cs-floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        width: 54px;
        padding: 0;
        justify-content: center;
    }

    .digo-cs-floating-whatsapp span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

@media (max-width: 430px) {
    .digo-cs-header {
        align-items: flex-start;
        padding: 18px 0;
    }

    .digo-cs-status {
        max-width: 126px;
        white-space: normal;
    }

    .digo-cs-eyebrow {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .digo-cs-hero h1 {
        font-size: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .digo-cs-status-dot {
        animation: none;
    }

    .digo-cs-button,
    .digo-cs-service-card,
    .digo-cs-floating-whatsapp {
        transition: none;
    }
}
