:root {
    --ger-background: #180728;
    --ger-accent: #e847f7;
    --ger-white: #fff;
    --ger-ink: #110018;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--ger-background);
}

body.ger-page {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background: var(--ger-background);
    color: var(--ger-white);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ger-landing {
    flex: 1 0 auto;
    display: grid;
    grid-template-columns: 392px 324px;
    grid-template-areas: "copy visual";
    align-items: start;
    column-gap: 70px;
    width: 786px;
    min-height: calc(100vh - 34px);
    margin: 0 auto;
    padding: max(28px, calc(50vh - 210px)) 0 40px;
    position: relative;
    left: 1px;
}

.ger-footer {
    flex: 0 0 auto;
    width: 100%;
    min-height: 34px;
    padding: 10px 20px;
    background: #e858f7;
    color: var(--ger-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.ger-copy {
    grid-area: copy;
    padding-top: 4px;
}

.ger-heading {
    margin: 0 0 16px;
    color: var(--ger-white);
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.ger-panel {
    width: 100%;
    min-height: 305px;
    padding: 33px 25px 22px;
    border-radius: 9px;
    background: var(--ger-accent);
}

.ger-form {
    margin: 0;
}

.ger-field {
    margin: 0 0 8px;
}

.ger-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
}

.ger-row .ger-field {
    margin-bottom: 0;
}

.ger-form input[type="text"],
.ger-form input[type="email"],
.ger-form input[type="tel"] {
    display: block;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    outline: 0;
    background: var(--ger-white);
    color: var(--ger-ink);
    font: 400 11px/38px Arial, Helvetica, sans-serif;
}

.ger-form input::placeholder {
    color: #000;
    opacity: 1;
}

.ger-form input:focus-visible,
.ger-submit:focus-visible,
.ger-check input:focus-visible + label::before {
    outline: 2px solid var(--ger-ink);
    outline-offset: 2px;
}

.ger-consents {
    margin-top: 10px;
}

.ger-check {
    position: relative;
    margin: 0 0 10px;
    padding-left: 20px;
    color: var(--ger-white);
    font-size: 8px;
    font-weight: 400;
    line-height: 1.12;
}

.ger-check input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.ger-check label {
    display: block;
    cursor: pointer;
}

.ger-check label::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    content: "";
}

.ger-check input:checked + label::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ger-white);
    content: "";
}

.ger-check a {
    color: inherit;
    text-decoration: underline;
}

.ger-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 23px;
}

.ger-submit {
    min-width: 93px;
    height: 31px;
    padding: 0 22px;
    border: 0;
    border-radius: 7px;
    background: var(--ger-white);
    color: #111;
    cursor: pointer;
    font: 700 11px/31px Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ger-submit:hover {
    background: #f7f7f7;
}

.ger-error {
    margin: 0 0 12px;
    padding: 8px 10px;
    border-radius: 5px;
    background: rgba(27, 0, 47, .16);
    color: var(--ger-white);
    font-size: 11px;
    line-height: 1.25;
}

.ger-call-cta {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 76px;
    margin-top: 14px;
    padding: 11px 12px;
    overflow: hidden;
    border: 1px solid rgba(232, 88, 247, .42);
    border-radius: 13px;
    background:
        radial-gradient(circle at 10% 10%, rgba(232, 88, 247, .18), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
    box-shadow: 0 12px 28px rgba(4, 0, 10, .22), inset 0 1px 0 rgba(255, 255, 255, .12);
    color: var(--ger-white);
    text-decoration: none;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ger-call-cta::after {
    position: absolute;
    top: -80%;
    left: -45%;
    width: 34%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
    content: "";
    pointer-events: none;
    transform: rotate(20deg);
    animation: ger-call-shine 5.5s ease-in-out infinite;
}

.ger-call-cta:hover {
    border-color: rgba(232, 88, 247, .82);
    box-shadow: 0 16px 34px rgba(4, 0, 10, .3), 0 0 0 3px rgba(232, 88, 247, .09);
    color: var(--ger-white);
    transform: translateY(-2px);
}

.ger-call-cta:focus-visible {
    outline: 3px solid var(--ger-white);
    outline-offset: 3px;
}

.ger-call-cta__visual {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f16bfb, #d52ce7);
    box-shadow: 0 7px 16px rgba(232, 88, 247, .3);
}

.ger-call-cta__visual > svg {
    position: relative;
    z-index: 2;
    width: 21px;
    height: 21px;
    fill: currentColor;
    animation: ger-call-phone 4s ease-in-out infinite;
}

.ger-call-cta__pulse {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(232, 88, 247, .7);
    border-radius: inherit;
    animation: ger-call-pulse 2.4s ease-out infinite;
}

.ger-call-cta__copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.ger-call-cta__eyebrow {
    margin-bottom: 2px;
    color: #f5b9fb;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.ger-call-cta__copy strong {
    color: var(--ger-white);
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .01em;
    white-space: nowrap;
}

.ger-call-cta__copy small {
    margin-top: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, .72);
    font-size: 8px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ger-call-cta__action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 7px 8px;
    border-radius: 20px;
    background: rgba(232, 88, 247, .15);
    color: #f8c9fc;
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.ger-call-cta__action svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform .2s ease;
}

.ger-call-cta:hover .ger-call-cta__action svg {
    transform: translateX(2px);
}

@keyframes ger-call-pulse {
    0% {
        opacity: .75;
        transform: scale(1);
    }
    75%,
    100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

@keyframes ger-call-phone {
    0%,
    8%,
    16%,
    100% {
        transform: rotate(0);
    }
    4%,
    12% {
        transform: rotate(-10deg);
    }
}

@keyframes ger-call-shine {
    0%,
    68% {
        left: -45%;
    }
    88%,
    100% {
        left: 125%;
    }
}

.ger-visual {
    grid-area: visual;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-5px);
}

.ger-logo {
    display: block;
    width: 115px;
    height: 74px;
    margin: 0 auto 16px;
    object-fit: contain;
    transform: translateY(3px);
}

.ger-illustration {
    display: block;
    width: 333px;
    height: auto;
    margin: 0 auto;
    image-rendering: auto;
    transform: translateX(-4px);
}

.ger-message-panel {
    min-height: 0;
    padding: 30px 24px;
    color: var(--ger-white);
}

.ger-message-panel h1,
.ger-message-panel h2,
.ger-message-panel h3,
.ger-message-panel p {
    margin: 0;
}

.ger-message-panel h1,
.ger-message-panel h2 {
    font-size: 22px;
    line-height: 1.15;
}

.ger-message-panel h3 {
    font-size: 17px;
    line-height: 1.25;
}

.ger-message-panel p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.35;
}

.ger-legal-shell {
    flex: 1 0 auto;
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.ger-legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ger-legal-header img {
    display: block;
    width: 92px;
    height: auto;
}

.ger-legal-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border-radius: 7px;
    background: var(--ger-accent);
    color: var(--ger-white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.ger-legal-home:hover {
    background: #e858f7;
    transform: translateY(-1px);
}

.ger-legal-home:focus-visible {
    outline: 2px solid var(--ger-white);
    outline-offset: 3px;
}

.ger-legal-content {
    overflow-wrap: anywhere;
    padding: 30px;
    border-radius: 10px;
    background: var(--ger-white);
    color: #242027;
    font-size: 14px;
    line-height: 1.55;
}

.ger-legal-content h1 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
}

.ger-legal-content h2 {
    margin: 22px 0 10px;
    border: 0;
    font-size: 15px;
    line-height: 1.3;
}

.ger-legal-content table {
    display: table;
    width: 100%;
    margin: 12px 0 18px;
    border-collapse: collapse;
    table-layout: fixed;
}

.ger-legal-content th,
.ger-legal-content td {
    padding: 10px;
    border: 1px solid #ccc;
    vertical-align: top;
}

.ger-legal-content p {
    margin: 0 0 13px;
}

.ger-legal-content ul {
    margin: 0 0 16px;
    padding-left: 42px;
}

.ger-legal-content li {
    margin-bottom: 12px;
    padding-left: 4px;
}

.ger-legal-content .ger-legal-subtitle {
    margin-bottom: 13px;
}

.ger-privacy-table .ger-col-point {
    width: 11%;
}

.ger-privacy-table .ger-col-purpose {
    width: 46%;
}

.ger-privacy-table .ger-col-basis {
    width: 43%;
}

.ger-legal-content a {
    color: #7d148d;
}

.ger-update-date {
    margin-top: 24px;
    font-size: 12px;
    font-style: italic;
    text-align: right;
}

@media (min-width: 1280px) {
    .ger-landing {
        grid-template-columns: 539px 446px;
        column-gap: 97px;
        width: 1082px;
        padding-top: max(28px, calc(50vh - 286px));
        left: 0;
    }

    .ger-copy {
        width: 392px;
        transform: scale(1.375);
        transform-origin: top left;
    }

    .ger-visual {
        width: 470px;
        transform: translateY(-5px) scale(1.375);
        transform-origin: top center;
    }
}

@media (min-width: 1440px) {
    .ger-landing {
        grid-template-columns: 604px 499px;
        column-gap: 108px;
        width: 1211px;
        padding-top: max(28px, calc(50vh - 323px));
    }

    .ger-copy {
        transform: scale(1.54);
    }

    .ger-visual {
        transform: translateY(-5px) scale(1.54);
    }
}

@media (min-width: 1800px) {
    .ger-landing {
        grid-template-columns: 669px 552px;
        column-gap: 120px;
        width: 1341px;
        padding-top: max(28px, calc(50vh - 359px));
    }

    .ger-copy {
        transform: scale(1.705);
    }

    .ger-visual {
        transform: translateY(-5px) scale(1.705);
    }
}

@media (max-width: 767px) {
    .ger-landing {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        padding: 38px 34px 90px;
        left: 0;
    }

    .ger-footer {
        padding: 10px 16px;
        font-size: 11px;
    }

    .ger-visual {
        order: 1;
        width: 100%;
        transform: none;
    }

    .ger-logo {
        margin-bottom: 24px;
        transform: none;
    }

    .ger-illustration {
        width: 288px;
        max-width: 100%;
        transform: none;
    }

    .ger-copy {
        order: 2;
        width: 100%;
        padding-top: 56px;
    }

    .ger-heading {
        width: 288px;
        max-width: 100%;
        margin: 0 auto 38px;
        font-size: 18px;
        line-height: 1.12;
        text-align: center;
    }

    .ger-panel {
        min-height: 419px;
        padding: 42px 31px 29px;
        border-radius: 7px;
    }

    .ger-field {
        margin-bottom: 9px;
    }

    .ger-row {
        gap: 11px;
    }

    .ger-form input[type="text"],
    .ger-form input[type="email"],
    .ger-form input[type="tel"] {
        height: 48px;
        padding: 0 18px;
        border-radius: 7px;
        font-size: 13px;
        line-height: 48px;
    }

    .ger-consents {
        margin-top: 33px;
        padding: 0 15px 0 9px;
    }

    .ger-check {
        margin-bottom: 21px;
        padding-left: 25px;
        font-size: 12px;
        line-height: 1.2;
    }

    .ger-check label::before {
        width: 16px;
        height: 16px;
    }

    .ger-check input:checked + label::after {
        top: 4px;
        left: 4px;
    }

    .ger-actions {
        margin-top: 21px;
        padding-right: 1px;
    }

    .ger-submit {
        min-width: 117px;
        height: 38px;
        border-radius: 8px;
        font-size: 13px;
        line-height: 38px;
    }

    .ger-call-cta {
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 14px;
        min-height: 106px;
        margin-top: 20px;
        padding: 16px;
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(4, 0, 10, .26), inset 0 1px 0 rgba(255, 255, 255, .13);
    }

    .ger-call-cta__visual {
        width: 54px;
        height: 54px;
    }

    .ger-call-cta__visual > svg {
        width: 24px;
        height: 24px;
    }

    .ger-call-cta__eyebrow {
        margin-bottom: 4px;
        font-size: 9px;
    }

    .ger-call-cta__copy strong {
        font-size: 20px;
    }

    .ger-call-cta__copy small {
        margin-top: 5px;
        font-size: 10px;
        white-space: normal;
    }

    .ger-call-cta__action {
        padding: 9px 11px;
        font-size: 9px;
    }

    .ger-message-panel {
        min-height: 0;
        padding: 30px;
    }

    .ger-legal-shell {
        width: calc(100% - 28px);
        padding-top: 20px;
    }

    .ger-legal-content {
        padding: 22px 18px;
        font-size: 13px;
    }

    .ger-legal-home {
        padding: 9px 12px;
        font-size: 12px;
    }

    .ger-privacy-table .ger-col-point {
        width: 14%;
    }

    .ger-privacy-table .ger-col-purpose,
    .ger-privacy-table .ger-col-basis {
        width: 43%;
    }
}

@media (max-width: 390px) {
    .ger-landing {
        padding-right: 18px;
        padding-left: 18px;
    }

    .ger-panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ger-consents {
        padding: 0;
    }

    .ger-call-cta {
        grid-template-columns: 54px minmax(0, 1fr) 32px;
        gap: 11px;
        padding: 15px 13px;
    }

    .ger-call-cta__action {
        justify-content: center;
        width: 32px;
        height: 32px;
        padding: 0;
    }

    .ger-call-cta__action span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ger-call-cta,
    .ger-call-cta::after,
    .ger-call-cta__visual > svg,
    .ger-call-cta__pulse,
    .ger-call-cta__action svg {
        animation: none;
        transition: none;
    }
}
