/* Base styles for desktop (>= 768px) */
@font-face {
    font-family: 'Play-Regular';
    src: url('../fonts/Play-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Play-Bold';
    src: url('../fonts/Play-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #dadada;
    --main-fg-color: #000000;
    --white-fg-color: #ffffff;
    --btn1-hover-bg-color: #929FA6;
    --btn1-active-bg-color: #485865;
    --placeholder-color: #333333;
    --dark-input-bg: #575757;
    --dark-placeholder: #cecece;
    --dark-btn2-bg: #575757;
    --dark-btn2-color: #cecece;
}

[data-theme="dark"] {
    --bg-color: #3D3D3D;
    --main-fg-color: #ffffff;
    --placeholder-color: #cecece;
}

body {
    font-family: 'Play-Regular', Arial, sans-serif;
    background-color: var(--bg-color);
    text-align: center;
    padding: 0px;
    max-width: 1920px;
    margin: 0px;
}

.header {
    padding-left: 0px;
    padding-right: 0px;
    position: fixed;
    top: 0;
    max-width: 1920px;
    width: 100%;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
}

.header-icon {
    width: 114px;
    height: 106px;
    padding-left: 15px;
}

[data-theme="dark"] .header-icon {
    content: url("../images/icons/logo-white.svg");
}

.company-name {
    font-size: 48px;
    color: var(--main-fg-color);
}

.header-icons {
    width: 240px;
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 15px;
}

.theme-switcher {
    width: 40px;
    height: 40px;
}

[data-theme="dark"] .theme-switcher {
    filter: invert(1);
}

.theme-switcher:hover {
    transform: scale(1.1);
}

.theme-switcher:active {
    transform: scale(0.9);
}

.main-content {
    padding-top: 120px;
}

.hero {
    position: relative;
    width: 100%;
    height: 1045px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/site/cardi-gif.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px) brightness(0.7);
    z-index: -1;
}

.hero-main {
    font-size: 96px;
    color: var(--white-fg-color);
    margin: 5px;
}

.hero-text {
    width: 768px;
    font-size: 36px;
    color: var(--white-fg-color);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    margin: auto;
}

.hero-buttons .btn1 {
    margin: auto;
    min-width: 246px;
}

.btn1 {
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    font-size: 32px;
    outline: none;
}

.btn2 {
    background-color: var(--main-fg-color);
    color: var(--white-fg-color);
    border: none;
    border-radius: 5px;
    box-shadow: none;
    font-size: 32px;
    outline: none;
}

[data-theme="dark"] .btn2 {
    background-color: var(--dark-btn2-bg);
    color: var(--dark-btn2-color);
}

.btn1:hover {
    background-color: var(--btn1-hover-bg-color);
}

.btn1:active {
    background-color: var(--btn1-active-bg-color);
}

.hero-wrapper {
    margin: auto;
}

/* === УСЛУГИ === */
.uslugi {
    display: flex;
    flex-direction: column;
}

.uslugi h1 {
    font-size: 48px;
    color: var(--main-fg-color);
}

.uslugis {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.usluga {
    max-width: 440px;
    border: 1px solid var(--main-fg-color);
    border-radius: 5px;
    margin: auto;
}

.usluga img {
    max-width: 200px;
    max-height: 200px;
    margin: 5px;
}

[data-theme="dark"] .usluga img {
    filter: invert(1);
}

.usluga h2 {
    font-size: 32px;
    margin: 5px;
    color: var(--main-fg-color);
}

.usluga p {
    font-size: 20px;
    color: var(--main-fg-color);
}

/* === МЫ / ПЛЮСЫ === */
.myu {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.myu h1 {
    font-size: 48px;
    color: var(--main-fg-color);
}

.plusy {
    display: flex;
    flex-direction: column;
}

.plus {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid var(--main-fg-color);
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    max-width: 814px;
    max-height: 120px;
    width: 100%;
    height: 100%;
}

.plus img {
    width: 122px;
    height: 122px;
}

[data-theme="dark"] .plus img {
    filter: invert(1);
}

.plus-text {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
}

.plus-text-main {
    margin: 5px;
    color: var(--main-fg-color);
}

.plus-text-paragraph {
    margin: 5px;
    color: var(--main-fg-color);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* === ГАЛЕРЕЯ === */
.gallery {
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: auto;
}

.gallery h1 {
    color: var(--main-fg-color);
    font-size: 48px;
    margin-bottom: 30px;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 450px;
    background: #0f0f1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-container img.loading {
    opacity: 0.5;
}

.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--main-fg-color);
    font-size: 1.1rem;
    text-align: center;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: rgb(160, 160, 160);
    color: var(--main-fg-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.gallery-btn:hover {
    background: rgb(90, 90, 90);
    transform: scale(1.1);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.gallery-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-counter {
    margin-top: 20px;
    color: var(--main-fg-color);
    font-size: 1rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--white-fg-color);
    transform: scale(1.2);
}

.no-images {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding: 100px 20px;
}

/* === ЗАЯВКА === */
.zayavka {
    display: flex;
    flex-direction: column;
    width: 622px;
    margin: auto;
    border: 1px solid var(--main-fg-color);
    border-radius: 5px;
    margin-top: 60px;
}

.zayavka h1 {
    font-size: 48px;
    color: var(--main-fg-color);
}

.zayavka-calc {
    display: flex;
    flex-direction: column;
    width: 622px;
    margin: auto;
    margin-top: 125px;
    border: 1px solid var(--main-fg-color);
    border-radius: 5px;
}

.zayavka-calc h1 {
    font-size: 48px;
    color: var(--main-fg-color);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form .btn2 {
    width: 230px;
    height: 45px;
    margin: auto;
    margin-bottom: 10px;
}

.form-text-block label {
    display: block;
    font-size: 24px;
    text-align: left;
    margin: 0px;
    margin-top: 10px;
    margin-left: 50px;
    margin-bottom: 5px;
    color: var(--main-fg-color);
}

.form-text-block-check {
    display: flex;
    flex-direction: row;
    color: #000;
    justify-content: space-between;
}

.form-text-block-check input[type="checkbox"] {
    margin-right: 50px;
}

[data-theme="dark"] .form-text-block-check {
    display: flex;
    flex-direction: row;
    color: #fff;
}

.form-text-block input[type="text"] {
    width: 520px;
    height: 54px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    padding-left: 10px;
}

[data-theme="dark"] .form-text-block input[type="text"] {
    background-color: var(--dark-input-bg);
    color: #fff;
}


.form-text-block input::placeholder {
    font-size: 20px;
    color: var(--placeholder-color);
}

.form-text-block input[type="number"] {
    width: 520px;
    height: 54px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    padding-left: 10px;
}

[data-theme="dark"] .form-text-block input[type="number"] {
    background-color: var(--dark-input-bg);
    color: #fff;
}


.form-text-block textarea {
    font-size: 20px;
    border: none;
    border-radius: 5px;
    padding: 10px;
}

[data-theme="dark"] .form-text-block textarea {
    background-color: var(--dark-input-bg);
    color: #fff;
}

.form-text-block textarea::placeholder {
    font-size: 20px;
    color: var(--placeholder-color);
}

.radio-wrap {
    display: flex;
    flex-direction: row;
    margin-left: 50px;
}

.radio-wrap label {
    margin-left: 5px;
    color: var(--main-fg-color);
}


.polit-konf {
    margin: 1px;
    margin-top: 0px;
    color: #929FA6;
    font-size: 14px;
}

a:link {
    color: #808080;
}

a:visited {
    color: #333;
}

/* === FOOTER === */
.footer {
    color: #fff;
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.company-info {
    height: 270px;
    margin-left: 100px;
    width: 190px;
    display: flex;
    flex-direction: column;
}

.company-info h3 {
    margin: 3px;
    font-size: 15px;
    color: #808080;
    font-weight: normal;
    text-align: left;
}

.company-info h2 {
    margin: 3px;
    font-size: 15px;
    font-weight: normal;
    text-align: left;
}

.theme-switcher-white {
    width: 40px;
    height: 40px;
}

.theme-switcher-white:hover {
    transform: scale(1.1);
}

.theme-switcher-white:active {
    transform: scale(0.9);
}

.footer-icons-wrap {
    margin-right: 100px;
}

.footer-icons-wrap h2 {
    font-weight: normal;
}

.hz-wrap {
    margin: auto;
}

.result-box {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        font-size: 1.1rem;
    }
    .result-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .result-error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    .result-loader {
        background: #fff3cd;
        color: #856404;
        border: 1px solid #ffeaa7;
    }
    #result-value {
        font-size: 1.5rem;
        color: #28a745;
    }
    .btn2:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.ai-assistant-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ai-assistant-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.ai-assistant-btn svg {
    width: 28px;
    height: 28px;
}

/* Popup окно */
.ai-assistant-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-height: 450px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ai-assistant-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ai-popup-header {
    padding: 14px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.ai-close-btn:hover {
    opacity: 0.8;
}

.ai-popup-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f9fa;
    font-size: 14px;
    color: #333;
}

.ai-popup-body p {
    margin: 8px 0;
}

.ai-popup-footer {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
}

.ai-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.ai-input:focus {
    border-color: #667eea;
}

.ai-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-send-btn:hover {
    background: #5568d3;
}

/* Затемнение фона */
.ai-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ai-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ai-assistant-btn {
    position: fixed; bottom: 20px; right: 20px;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; border: none; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 9998; transition: transform 0.2s;
}
.ai-assistant-btn:hover { transform: scale(1.05); }

/* === Popup === */
.ai-assistant-popup {
    position: fixed; bottom: 90px; right: 20px;
    width: 380px; max-height: 550px;
    background: white; border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    display: flex; flex-direction: column;
    z-index: 9999; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.3s ease;
    overflow: hidden;
    text-align: left;
}
.ai-assistant-popup.active {
    opacity: 1; visibility: visible; transform: translateY(0);
}

/* === Header === */
.chat-header {
    padding: 14px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; font-weight: 600; font-size: 15px;
    display: flex; justify-content: space-between; align-items: center;
}
.ai-close-btn {
    background: none; border: none; color: white;
    font-size: 24px; cursor: pointer; line-height: 1;
}

/* === Messages === */
.chat-messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
    background: #f8f9fa; font-size: 14px;
}
.message {
    max-width: 85%; padding: 10px 14px;
    border-radius: 16px; line-height: 1.4; word-wrap: break-word;
}
.message.user {
    background: #667eea; color: white;
    align-self: flex-end; border-bottom-right-radius: 4px;
}
.message.assistant {
    background: #f0f0f0; color: #333;
    align-self: flex-start; border-bottom-left-radius: 4px;
}
.message.error {
    background: #fee; color: #c00;
    align-self: center; text-align: center; font-size: 13px;
}

/* === Input === */
.chat-input-area {
    padding: 12px 16px; border-top: 1px solid #eee;
    display: flex; gap: 10px; background: white;
}
.chat-input {
    flex: 1; padding: 10px 14px; border: 1px solid #ddd;
    border-radius: 20px; outline: none; font-size: 14px;
}
.chat-input:focus { border-color: #667eea; }
.chat-send {
    width: 40px; height: 40px; border-radius: 50%;
    background: #667eea; color: white; border: none;
    cursor: pointer; font-size: 16px; display: flex;
    align-items: center; justify-content: center;
}
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* === Typing indicator === */
.typing {
    display: flex; gap: 4px; padding: 10px 14px;
    background: #f0f0f0; border-radius: 16px;
    align-self: flex-start; border-bottom-left-radius: 4px;
}
.typing span {
    width: 8px; height: 8px; background: #999;
    border-radius: 50%; animation: typing 1.4s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

/* === Overlay === */
.ai-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: 9997;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.ai-overlay.active { opacity: 1; visibility: visible; }

/* === Markdown styles === */
.message.assistant p { margin: 0 0 8px 0; }
.message.assistant p:last-child { margin-bottom: 0; }
.message.assistant code {
    background: #e0e0e0; padding: 2px 6px;
    border-radius: 4px; font-family: monospace; font-size: 13px;
}
.message.assistant pre {
    background: #2d2d2d; color: #f8f8f2;
    padding: 12px; border-radius: 8px;
    overflow-x: auto; margin: 8px 0;
}
.message.assistant pre code { background: none; padding: 0; color: inherit; }
.message.assistant ul, .message.assistant ol {
    margin: 8px 0; padding-left: 20px;
}
.message.assistant li { margin: 4px 0; }
.message.assistant strong { font-weight: 600; }

.flash-message {
            padding: 15px;
            margin: 10px 0;
            border-radius: 4px;
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            text-align: center;
            font-weight: bold;
        }


/* ============================================
   Mobile styles (767px and below)
   ============================================ */
@media screen and (max-width: 767px) {
    body {
        max-width: 100%;
        padding: 0;
    }

    .ai-assistant-popup {
        width: calc(100vw - 40px); right: 20px; left: 20px;
        bottom: 80px; max-height: 70vh;
    }


    /* --- HEADER --- */
    .header {
        position: fixed;
        top: 0;
        max-width: 100%;
        padding: 5px 0;
        flex-direction: column;
        align-items: center;
        padding-left: 5px;
    }

    .header-icon {
        width: 60px;
        height: 55px;
        padding-left: 5px;
        padding-bottom: 5px;
    }

    .company-name {
        font-size: 24px;
        padding-left: 5px;
    }

    .header-icons {
        width: 100%;
        justify-content: center;
        padding-right: 10px;
        padding-top: 5px;
    }

    .theme-switcher {
        width: 25px;
        height: 25px;
    }

    .main-content {
        padding-top: 160px;
    }

    /* --- HERO --- */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 10px 0;
    }

    .hero-main {
        font-size: 36px;
        margin: 5px 0;
    }

    .hero-text {
        width: 95%;
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 250px;
    }

    .hero-buttons .btn1 {
        width: 100%;
        min-width: auto;
        font-size: 20px;
        padding: 10px;
    }

    /* --- УСЛУГИ --- */
    .uslugi h1 {
        font-size: 28px;
        padding: 0 10px;
    }

    .uslugis {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 10px;
    }

    .usluga {
        max-width: 100%;
        width: 95%;
        margin: 0;
        padding: 10px;
    }

    .usluga img {
        max-width: 100px;
        max-height: 100px;
    }

    .usluga h2 {
        font-size: 20px;
    }

    .usluga p {
        font-size: 14px;
    }

    /* --- МЫ / ПЛЮСЫ --- */
    .myu h1 {
        font-size: 28px;
        padding: 0 10px;
    }

    .plus {
        flex-direction: column;
        max-width: 95%;
        max-height: none;
        height: auto;
        align-items: center;
        text-align: center;
        padding: 10px;
        margin: 5px auto;
    }

    .plus img {
        width: 70px;
        height: 70px;
        order: 0;
    }

    .plus-text {
        margin-top: 10px;
        order: 1;
    }

    .text-left,
    .text-right {
        text-align: center;
    }

    /* --- ГАЛЕРЕЯ --- */
    .gallery {
        max-width: 100%;
        padding: 0 5px;
    }

    .gallery h1 {
        font-size: 28px;
    }

    .image-container {
        max-width: 100%;
        height: 250px;
    }

    .gallery-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
    }

    .gallery-dots {
        gap: 5px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* --- ЗАЯВКА / ФОРМА --- */
    .zayavka {
        width: 98%;
        margin: auto;
        margin-top: 60px;
        padding: 10px;
        box-sizing: border-box;
    }

    .zayavka h1 {
        font-size: 28px;
    }

    .zayavka-calc {
        width: 98%;
        margin: auto;
        margin-top: 185px;
        padding: 10px;
        box-sizing: border-box;
    }

    .zayavka-calc h1 {
        font-size: 48px;
        color: var(--main-fg-color);
    }

    .form .btn2 {
        width: 100%;
        max-width: 200px;
        height: 40px;
        font-size: 20px;
    }

    .form-text-block label {
        font-size: 16px;
        margin-left: 10px;
        margin-bottom: 5px;
    }

    .form-text-block-check {
    display: flex;
    flex-direction: row;
    color: #000;
    }

    .form-text-block-check input[type="checkbox"] {
        margin-right: 15px;
    }

    [data-theme="dark"] .form-text-block-check {
        display: flex;
        flex-direction: row;
        color: #fff;
    }

    .form-text-block input[type="text"] {
        width: calc(100% - 30px);
        height: 40px;
        font-size: 14px;
        margin-left: 10px;
        box-sizing: border-box;
    }

    .form-text-block input[type="number"] {
        width: calc(100% - 30px);
        height: 40px;
        font-size: 14px;
        margin-left: 10px;
        box-sizing: border-box;
    }

    [data-theme="dark"] .form-text-block input[type="number"] {
        background-color: var(--dark-input-bg);
        color: #fff;
    }

    .form-text-block input::placeholder {
        font-size: 14px;
    }

    .form-text-block textarea {
        width: calc(100% - 30px);
        margin-left: 10px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .form-text-block textarea::placeholder {
        font-size: 14px;
    }

    .radio-wrap {
        margin-left: 10px;
        flex-direction: row;
        gap: 5px;
    }

    .polit-konf {
        font-size: 12px;
    }

    /* --- FOOTER --- */
    .footer {
        flex-direction: column;
        padding: 15px 0;
        gap: 15px;
    }

    .company-info {
        margin-left: 0;
        width: auto;
        align-items: center;
        height: auto;
    }

    .company-info h2,
    .company-info h3 {
        font-size: 14px;
    }

    .footer-icons-wrap {
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-icons-wrap h2 {
        font-weight: normal;
    }

    .footer-icons {
        justify-content: center;
        gap: 10px;
    }

    .theme-switcher-white {
        width: 25px;
        height: 25px;
    }
}
