* {
    box-sizing: border-box;
}

/* Responsive polish: tablets and phones */
@media (max-width: 1120px) {
    .nav-inner,
    .section,
    .footer-inner {
        width: min(100% - 32px, 980px);
    }

    .nav-inner {
        gap: 16px;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
        flex-wrap: nowrap;
    }

    .nav-cta {
        padding: 0 14px;
        font-size: 13px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
        gap: 30px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    main {
        padding-top: 188px;
    }

    .nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 10px 14px;
        line-height: 1.3;
    }

    .language-switcher {
        order: 3;
    }

    .nav-cta {
        order: 4;
        width: 100%;
    }

    .hero,
    .grid-2,
    .grid-3,
    .cta-box,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 14px;
    }

    .footer-inner {
        flex-direction: column;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-contacts {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    main {
        padding-top: 260px;
    }

    body {
        background:
            radial-gradient(circle at 20% 0%, rgba(0, 241, 254, 0.12), transparent 24rem),
            radial-gradient(circle at 82% 8%, rgba(168, 85, 247, 0.1), transparent 22rem),
            var(--bg);
    }

    .nav-inner,
    .section,
    .footer-inner {
        width: calc(100% - 24px);
    }

    .brand {
        font-size: 21px;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-links a {
        min-height: 36px;
        display: flex;
        align-items: center;
        padding: 0 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
    }

    .language-switcher {
        width: 100%;
        justify-content: space-between;
    }

    .language-switcher button {
        flex: 1;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        padding-top: 48px;
    }

    h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(26px, 8vw, 34px);
    }

    h3 {
        font-size: 20px;
    }

    .lead {
        font-size: 17px;
        line-height: 1.58;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        min-height: 48px;
        text-align: center;
    }

    .hero-panel,
    .card,
    .cta-box,
    .form-card {
        border-radius: 14px;
    }

    .hero-panel,
    .card {
        padding: 18px;
    }

    .card-media {
        margin: -18px -18px 18px;
        min-height: 150px;
    }

    .visual-frame {
        min-height: 220px;
        margin-bottom: 18px;
    }

    .visual-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        font-size: 12px;
    }

    .float-chip {
        right: 12px;
        top: 12px;
        max-width: calc(100% - 24px);
        white-space: normal;
    }

    .media-band {
        min-height: 340px;
        border-radius: 16px;
    }

    .media-band-content {
        inset: auto 16px 16px 16px;
    }

    .media-band-content h2 {
        font-size: 25px;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .grid {
        gap: 14px;
    }

    .steps li {
        min-height: auto;
        padding: 48px 16px 16px;
    }

    .cta-box {
        padding: 24px;
    }

    .form-card {
        padding: 20px;
    }

    input,
    textarea,
    select {
        min-height: 46px;
        font-size: 16px;
    }

    .chat-widget {
        right: 12px;
        bottom: 78px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 96px);
        border-radius: 18px;
    }

    .chat-head,
    .chat-messages,
    .chat-chips,
    .chat-captcha,
    .chat-form {
        padding-left: 14px;
        padding-right: 14px;
    }

    .chat-messages {
        min-height: 240px;
    }
}

@media (max-width: 390px) {
    main {
        padding-top: 340px;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    .eyebrow {
        max-width: 100%;
        white-space: normal;
    }

.chat-message {
        max-width: 94%;
    }
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--text);
    font-weight: 800;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
    line-height: 1.6;
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-weight: 700;
}

.contact-details {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.contact-name {
    color: var(--muted);
    font-size: 12px;
}

.contact-value {
    color: var(--text);
    overflow-wrap: anywhere;
    user-select: text;
    -webkit-user-select: text;
}

.contact-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.contact-copy,
.contact-open {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--cyan);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-copy:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.contact-copy:hover,
.contact-open:hover {
    color: var(--text);
}

.contact-link[aria-disabled="true"] {
    cursor: default;
    opacity: 0.68;
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 10020;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: var(--text);
    background: rgba(5, 20, 36, 0.94);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.form-card button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    margin-top: 14px;
    color: var(--cyan);
    font-weight: 800;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .contact-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Text overflow guards for translated and mobile UI */
h1,
h2,
h3,
.lead,
.nav-links,
.nav-cta,
.button-primary,
.button-secondary,
.card,
.hero-panel,
.cta-box,
.form-card,
.chat-widget {
    overflow-wrap: anywhere;
}

.nav-links,
.nav-inner,
.hero,
.grid,
.card,
.hero-panel {
    min-width: 0;
}

.nav-links,
.nav-links a,
.nav-cta,
.language-switcher button {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}


:root {
    --bg: #051424;
    --surface: rgba(13, 28, 45, 0.72);
    --surface-strong: #0d1c2d;
    --text: #d4e4fa;
    --muted: #a9bdcf;
    --cyan: #00f1fe;
    --purple: #a855f7;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 241, 254, 0.14), transparent 32rem),
        radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.12), transparent 30rem),
        var(--bg);
    overflow-x: hidden;
}

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

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(to right, rgba(0, 241, 254, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 241, 254, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.page::after {
    content: "";
    position: fixed;
    inset: auto -12rem -18rem auto;
    width: 34rem;
    height: 34rem;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 241, 254, 0.13), transparent 68%);
    filter: blur(12px);
    animation: slow-drift 14s ease-in-out infinite alternate;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 20, 36, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

main {
    padding-top: 72px;
}

.nav-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    flex-wrap: nowrap;
}

.nav-links a {
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.language-switcher button {
    min-width: 38px;
    min-height: 32px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
}

.language-switcher button.active {
    color: #041927;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.nav-cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
    color: #00272b;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.button-secondary {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    padding: 0 18px;
    font-size: 14px;
    white-space: nowrap;
}

.button-primary,
.button-secondary {
    padding: 0 22px;
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover {
    transform: translateY(-1px);
}

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

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 46px;
    align-items: center;
    padding-top: 86px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    border: 1px solid rgba(0, 241, 254, 0.28);
    background: rgba(0, 241, 254, 0.06);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
}

h1 {
    margin-top: 22px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.04;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

h3 {
    font-size: 22px;
    line-height: 1.2;
}

.lead {
    margin: 24px 0 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-panel,
.card,
.cta-box,
.form-card {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-panel {
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero-panel::after,
.card::after,
.cta-box::after,
.form-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(0, 241, 254, 0.15), transparent 34%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-panel:hover::after,
.card:hover::after,
.cta-box:hover::after,
.form-card:hover::after {
    opacity: 1;
}

.panel-title {
    color: var(--cyan);
    font-weight: 800;
    margin-bottom: 18px;
}

.problem-list,
.check-list,
.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.problem-list li,
.check-list li,
.steps li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.55;
}

.problem-list li + li,
.check-list li + li,
.steps li + li {
    margin-top: 14px;
}

.problem-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06131f;
    background: var(--purple);
    font-size: 12px;
    font-weight: 900;
}

.check-list li::before,
.steps li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--cyan);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
}

.section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.grid {
    display: grid;
    gap: 18px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    border-color: rgba(0, 241, 254, 0.3);
    box-shadow: 0 24px 90px rgba(0, 241, 254, 0.1);
}

.card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 12px 0 0;
}

.tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 241, 254, 0.08);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.steps li {
    min-height: 132px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 48px 16px 16px;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #06131f;
    font-weight: 900;
}

.cta-box {
    border-radius: 20px;
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.cta-box p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.form-card {
    border-radius: 18px;
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(1, 15, 31, 0.8);
    color: var(--text);
    padding: 13px 14px;
    font: inherit;
}

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

.wide {
    grid-column: 1 / -1;
}

.form-contact-intro {
    display: grid;
    gap: 5px;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.form-contact-intro strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.visual-frame {
    position: relative;
    min-height: 260px;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.visual-frame img,
.media-band img,
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.08);
    transform: scale(1.02);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.visual-frame:hover img,
.media-band:hover img,
.card-media:hover img {
    transform: scale(1.08);
    filter: saturate(1.2) contrast(1.1);
}

.visual-frame::before,
.media-band::before,
.card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(5, 20, 36, 0.88), transparent 58%),
        radial-gradient(circle at 25% 20%, rgba(0, 241, 254, 0.28), transparent 38%),
        radial-gradient(circle at 76% 76%, rgba(168, 85, 247, 0.22), transparent 34%);
}

.visual-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    max-width: calc(100% - 32px);
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(1, 15, 31, 0.64);
    backdrop-filter: blur(12px);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.media-band {
    position: relative;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--surface);
}

.media-band-content {
    position: absolute;
    inset: auto 28px 28px 28px;
    z-index: 2;
    max-width: 560px;
}

.media-band-content p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.card-media {
    position: relative;
    min-height: 180px;
    margin: -24px -24px 20px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.float-chip {
    position: absolute;
    z-index: 3;
    right: 18px;
    top: 18px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #041927;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    font-size: 12px;
    font-weight: 900;
    animation: float-soft 4s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes slow-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-6rem, -4rem, 0) scale(1.08); }
}

.chat-launcher {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10000;
    width: auto;
    min-width: 184px;
    min-height: 62px;
    padding: 11px 17px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    color: #031620;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    box-shadow: 0 18px 60px rgba(0, 241, 254, 0.2);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-launcher:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 80px rgba(168, 85, 247, 0.28);
}

.chat-launcher-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    letter-spacing: 0;
}

.chat-launcher-icon {
    font-size: 19px;
    line-height: 1;
}

.chat-launcher-short {
    display: none;
}

.chat-launcher-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 27px;
    font-size: 11px;
    font-weight: 800;
    opacity: 0.86;
}

.chat-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #2dfc78;
    box-shadow: 0 0 12px rgba(45, 252, 120, 0.9);
}

.chat-widget {
    position: fixed;
    right: 22px;
    bottom: 96px;
    z-index: 50;
    width: min(390px, calc(100vw - 32px));
    max-height: min(680px, calc(100vh - 126px));
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(5, 20, 36, 0.92);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(20px);
    transform: translateY(18px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.chat-widget.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 241, 254, 0.18), transparent 42%),
        rgba(255, 255, 255, 0.03);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #031620;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    font-weight: 900;
}

.chat-title strong {
    display: block;
    font-size: 15px;
}

.chat-status {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.chat-close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-size: 20px;
}

.chat-messages {
    min-height: 290px;
    overflow-y: auto;
    padding: 18px;
}

.chat-message {
    width: fit-content;
    max-width: 88%;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    line-height: 1.45;
    font-size: 14px;
}

.chat-message.bot {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.chat-message.user {
    margin-left: auto;
    color: #041927;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    font-weight: 800;
}

.chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 14px;
}

.chat-captcha {
    min-height: 0;
    padding: 0 18px 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.chat-captcha[data-captcha-state="demo"] {
    color: rgba(212, 228, 250, 0.68);
}

.chat-chip {
    border: 1px solid rgba(0, 241, 254, 0.24);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(0, 241, 254, 0.06);
    padding: 8px 10px;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
}

.chat-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--border);
    background: rgba(1, 15, 31, 0.62);
}

.chat-form input {
    min-height: 44px;
}

.chat-form button {
    min-width: 52px;
    border: 0;
    border-radius: 12px;
    color: #041927;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    cursor: pointer;
    font-weight: 900;
}

.footer {
    border-top: 1px solid var(--border);
    background: rgba(1, 15, 31, 0.82);
}

.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.8fr) minmax(260px, 1fr);
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 12px;
}

.footer-contacts a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-contacts a:hover {
    color: var(--cyan);
}

@media (max-width: 920px) {
    .nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero,
    .grid-2,
    .grid-3,
    .cta-box,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .visual-frame,
    .media-band {
        min-height: 240px;
    }

    .media-band-content {
        inset: auto 18px 18px 18px;
    }

    .chat-launcher {
        right: 16px;
        bottom: 16px;
    }

    .chat-widget {
        right: 16px;
        bottom: 86px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 14px;
    }
}

@media (max-width: 640px) {
    .chat-launcher {
        min-width: 92px;
        min-height: 54px;
        padding: 10px 14px;
        border-radius: 16px;
    }

    .chat-launcher-label,
    .chat-launcher-status {
        display: none;
    }

    .chat-launcher-short {
        display: inline;
    }

    .chat-launcher-main {
        gap: 7px;
        font-size: 16px;
    }
}
