/* === GENERAL SETTINGS === */
body {
    color: #102a43;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
}
.btn-primary {
    background-color: #3157f6;
}
.bg-light-pattern {
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.03) 25%, transparent 25%), linear-gradient(225deg, rgba(0,0,0,0.03) 25%, transparent 25%), linear-gradient(45deg, rgba(0,0,0,0.03) 25%, transparent 25%), linear-gradient(315deg, rgba(0,0,0,0.03) 25%, transparent 25%);
    background-size: 1000px 1600px;
}
.d-none {
    display: none !important;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/*HERO SECTION*/
.hero-section {
    color: #393e9b;
    padding: 0 15px;
}

    .hero-section h1 {
        font-weight: bold;
    }

    .hero-section p {
        font-size: 1.5rem;
        opacity: 0.85;
    }

/* Fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
.fullScreen {
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-color: #eaeef2;
}

    .fullScreen h1,
    .fullScreen h3 {
        text-align: center;
    }


.feature-item {
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

    /* Добавим эффект hover */
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .feature-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

.fade-grow {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .fade-grow.visible {
        opacity: 1;
        transform: scale(1);
    }

    .fade-grow.delay {
        transition-delay: 0.3s;
    }
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-in-out;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* === ACCORDION BUTTON STYLES === */
.accordion-button {
    background-color: #1E3A8A; /* Тёмно-синий */
    color: #ffffff;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    box-shadow: none;
}

    /* Hover effect */
    .accordion-button:hover {
        background-color: #152C5B; /* Ещё темнее при наведении */
        color: #ffffff;
    }

    /* Expanded (active) button */
    .accordion-button:not(.collapsed) {
        background-color: #1E3A8A;
        color: #ffffff;
    }

    /* White arrow */
    .accordion-button::after {
        filter: brightness(0) invert(1); /* Делает стрелку белой */
        transition: transform 0.3s ease;
    }

    /* Arrow rotation */
    .accordion-button.collapsed::after {
        transform: rotate(0deg);
    }

    .accordion-button:not(.collapsed)::after {
        transform: rotate(-180deg);
    }
.navbar-toggler {
    font-size: 1.8rem;
    border: none;
    background: none;
    color: #1E3A8A;
}

.burger-icon,
.close-icon {
    font-size: 2rem;
    transition: opacity 0.3s ease;
    color: #1E3A8A;
}


/* === MAIN CONTENT === */
.container {
    color: black;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .container {
        min-width: calc(100% - 20px);
    }
}
/* Styles for the dual-column section */
.dual-columns {
    display: flex;
    gap: 20px;
}

    .dual-columns .col {
        flex: 1;
    }

/* === FOOTER LINK === */
.col-md-4 a {
    color: white;
}

    .col-md-4 a:hover {
        color: lightgray;
    }

/* Column padding */
.column {
    padding: 0px;
}

 /*=== COOKIE MODAL STYLES === */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1050;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s ease-in-out;
    font-size: 0.95rem;
}

    .cookie-banner.show {
        opacity: 1;
        transform: translateY(0);
        bottom: 0;
    }

    .cookie-banner a {
        color: #393e9b;
    }

        .cookie-banner a:hover {
            text-decoration: underline;
        }

    .cookie-banner .btn {
        min-width: 100px;
    }

/* === FORM RANGE STYLES === */
.form-range {
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 30px;
    height: 3px;
    outline: none;
    transition: background-color 0.3s ease;
    width: 100%;
}
    .form-range::-webkit-slider-runnable-track {
        background: #a0c4f4;
        border-radius: 30px;
        height: 3px;
    }

    .form-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: #1E3A8A;
        border: 2px solid #fff;
        border-radius: 50%;
        cursor: pointer;
        width: 16px;
        height: 16px;
        margin-top: -7px;
    }
    .form-range:hover {
        background: #a0c4f4;
    }
#generateQrBtn {
    background-color: #1f3d8e;
    border: none;
    transition: all 0.3s ease-in-out;
}

    #generateQrBtn:hover {
        background-color: #0056b3;
        transform: scale(1.05);
    }
/* === ICONS PREVIEW ===*/
.icon-option {
    display: inline-block;
    margin: 10px;
}
    .icon-option input[type="radio"] {
        display: none;
    }

.icon-label {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .icon-label:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    }

.icon-img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.icon-option input[type="radio"]:checked + .icon-label {
    border: 2px solid #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.7);
}

/* === LOGO STYLES === */
.logo {
    height: 80px;
    padding-right: 0px;
}

/* === MODAL STYLES === */
.modal {
    align-items: center;
    background-color: rgba(0, 03, 0, 0.5);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    z-index: 1000;
}

    .modal.show {
        display: flex;
        opacity: 1;
    }

.modal-content {
    animation: fadeIn 0.3s ease-in-out;
    background: #eaeef2;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 35px;
    text-align: center;
}

.modal-footerMy {
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    -ms-flex-pack: end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}


.close {
    color: #333;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: color 0.3s;
}

    .close:hover {
        color: #ff4d4d;
    }

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === NAVBAR STYLES === */
.navbar {
    background-color: rgb(75, 75, 75) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #1E3A8A !important;
}

.navbar-brand {
    color: #1E3A8A !important;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #1E3A8A !important;
    font-size: 1.1rem;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

    .navbar-nav .nav-link:hover {
        color: dodgerblue !important;
        transform: scale(1.1);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231E3A8A' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none !important;
}

    .navbar-toggler:focus:not(:focus-visible) {
        outline: none;
        box-shadow: none;
    }
.burger-icon,
.close-icon {
    display: inline-block;
    width: 1em;
    text-align: center;
}


/* === ICON PREVIEW PREVIEW ===*/
.preview-container {
    margin-top: 10px;
    display: inline-block;
    position: relative;
    width: 70px;
    height: 70px;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.preview-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: bold;
    color: #007bff;
    background-color: #fff;
    padding: 0 5px;
    border-radius: 5px;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* === QR CODE CONTAINER === */
.qr-code-container {
    margin-bottom: 0;
    text-align: center;
}

    /* Styles for the QR code image */
    .qr-code-container svg {
        display: block;
        height: auto;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }


/* === TITLE STYLES === */
.title {
    font-size: 24px;
    font-weight: bold;
    padding-left: 30px;
}

/* === PCR-APP STYLES === */
.pcr-app {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 9999 !important;
}

/* Адаптация для десктопов */
@media (min-width: 992px) {
    .qr-code-frame-container {
        max-width: 400px;
    }
    #infoPopup {
        min-width: 600px;
        display: none;
    }
    .hero-section {
        padding: 60px 20px;
        padding-bottom: 0;
    }

    .features-section {
        padding: 60px 10px;
    }

    .feature-item {
        margin-bottom: 25px;
        padding: 15px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .container-info {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (orientation: landscape) {
    .hero-section {
        padding: 60px 20px;
        padding-bottom: 0;
    }

    .features-section {
        padding: 60px 10px;
    }
}

/*Container Privacy and AGB*/
.container-info {
    padding-left: 100px;
    padding-right: 50px;
    /*min-height: 100vh;*/
    padding-bottom: 50px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 10px;
}

.shadow-3d {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), /* основная тень */
    1px 1px 0 rgba(255, 255, 255, 0.1) inset, /* свет изнутри */
    -2px -2px 5px rgba(255, 255, 255, 0.2); /* эффект возвышенности */
    border-radius: 8px; /* для мягких углов */
    transition: box-shadow 0.3s ease;
}


/* === RESPONSIVE STYLES === */
@media (max-width: 760px) {
    .hero-section {
        padding: 60px 20px;
        padding-bottom: 0;
    }
    .features-section {
        padding: 60px 10px;
    }

    .feature-item {
        margin-bottom: 25px;
        padding: 15px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .container-info {
        padding-left: 20px;
        padding-right: 20px;
    }

    #mainContent.blurred {
        filter: blur(4px);
        transition: filter 0.3s ease;
    }


    .pcr-app {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.5);
        z-index: 9999 !important;
    }

    .qr-code-container {
        padding-bottom: 20px;
    }
    .shape-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Центрирование по горизонтали */
        gap: 10px; /* Отступ между кнопками */
    }
    .setting-group {
        width: 100%;
    }
    .shape-btn {
        flex: 0 1 calc(50% - 20px); /* Две кнопки в ряд с учётом gap */
        text-align: center;
        box-sizing: border-box;
    }
    .accordion-body {
        justify-content: center;
        align-items: center;
    }
    #colorOptions {
        justify-content: center;
    }
    #gradientOptions .d-flex.gap-4 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #gradientOptions .form-group {
        width: 90%;
        text-align: center;
    }

    #gradientOptions .btn-group {
        flex-direction: row !important;
        justify-content: center;
    }

    #gradientOptions label.btn {
        width: 100px;
    }

    #oneColorOptions {
        justify-content: center;
        margin-left: 0px;
    }
    #iconSelect {
        justify-content: center;
        margin-left: 0px;
    }
    .form-label {
        text-align: center;
    }
    .modal-footerMy {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    .custom-content {
        font-size: 1.25rem;
        padding: 2rem;
        max-width: 300px;
        margin: auto;
        
    }
    #infoPopup {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #222;
        padding: 10px;
        border-radius: 5px;
        z-index: 10;
    }
    .unstyled1 li {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        padding: 8px 12px;
        margin-bottom: 10px;
        transition: background 0.3s, border-color 0.3s;
    }

        .unstyled1 li:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

}
@media (max-width: 991.98px) {
    /* Меняем выравнивание на flex-start (в начало) */
    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Теперь всё прижимается к левому краю */
        padding-left: 15px; /* Добавляем отступ слева для лучшего вида */
    }

    /* Убираем отступы с меню */
    .navbar-nav.ms-auto,
    .navbar-nav.ms-0.ms-md-3 {
        margin-left: 0 !important;
        margin-bottom: 0.5rem;
        width: 100%; /* Растягиваем на всю ширину */
    }

    /* Меняем выравнивание ссылок на левое */
    .navbar-nav .nav-link {
        text-align: left; /* Теперь текст по левому краю */
        box-sizing: border-box;
        border-left: 2px solid transparent;
        transition: border-color 0.3s ease, color 0.3s ease;
        margin: 0;
        padding-left: 0; /* Убираем лишний отступ слева */
        justify-content: flex-start; /* Выравниваем содержимое по левому краю */
    }

        .navbar-nav .nav-link.dropdown-toggle {
            white-space: nowrap;
            padding-right: 1.5rem;
            transition: none !important;
        }

            .navbar-nav .nav-link.dropdown-toggle:focus,
            .navbar-nav .nav-link.dropdown-toggle:active {
                outline: none;
                box-shadow: none;
            }

        /* Убираем центрирование для dropdown-toggle */
        .navbar-nav .nav-link.dropdown-toggle {
            justify-content: flex-start;
        }
        /* Убираем все визуальные изменения при взаимодействии */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus,
        .navbar-nav .nav-link:active {
            transform: none !important; /* Убираем возможные трансформации */
            padding-left: 0 !important; /* Фиксируем отступ слева */
            margin-left: 0 !important; /* Фиксируем margin */
            border-left-color: transparent !important; /* Фиксируем рамку */
        }

    /* Для dropdown-элементов */
    .navbar-nav .dropdown-toggle:hover,
    .navbar-nav .dropdown-toggle:focus,
    .navbar-nav .dropdown-toggle:active {
        padding-right: 1.5rem !important; /* Фиксируем отступ справа */
    }

    /* Если есть сдвиги из-за border */
    .navbar-nav .nav-link {
        border-left: 2px solid transparent !important; /* Фиксируем прозрачную рамку */
    }

        /* Убираем любые transition, которые могут вызывать сдвиги */
        .navbar-nav .nav-link,
        .navbar-nav .nav-link * {
            transition: none !important;
        }
}


.tooltip-inner {
    max-width: 850px;
    white-space: normal;
}

.qr-settings-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.setting-group {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.setting-title {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.setting-description {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.shape-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.shape-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .shape-btn:hover {
        border-color: #3498db;
        box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    }

    .shape-btn.active {
        border-color: #3498db;
        background-color: #f0f8ff;
    }

    .shape-btn svg {
        width: 70px;
        height: 70px;
        margin-bottom: 8px;
        color: #2c3e50;
        display: block;
    }

    .shape-btn span {
        font-size: 0.85rem;
        color: #34495e;
    }

.custom-content {
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

/* === MAP POPUP STYLES === */
#infoPopup {
    display: none;
}

.popup {
    max-width: 550px;
    max-height: 250px;
    padding-right: 10px;
    font-size: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    line-height: 1.4;
}


.popup-content {
    font-size: 10px;
    border-radius: 8px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 5px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    font-weight: bold;
    user-select: none;
    transition: color 0.3s;
    margin-bottom: 10px;
}

.popup-close:hover {
        color: #000;
    }

/* =========================================================
   STATIC QR START PAGE — 2026 REDESIGN
   Scoped to the start page so the pricing page and layout can
   be redesigned independently.
   ========================================================= */
.static-qr-page {
    --static-brand: #3157f6;
    --static-brand-dark: #2445d8;
    --static-ink: #102a43;
    --static-copy: #486079;
    --static-muted: #6f8195;
    --static-line: #dce4ee;
    --static-soft: #f5f7fb;
    --static-tint: #eef2ff;
    --static-white: #ffffff;
    color: var(--static-ink);
    background: var(--static-white);
    overflow: clip;
}

.static-qr-page *,
.static-qr-page *::before,
.static-qr-page *::after {
    box-sizing: border-box;
}

.static-qr-page .container {
    width: min(100% - 40px, 1180px);
    min-width: 0;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 0;
    color: inherit;
}

.static-qr-page h1,
.static-qr-page h2,
.static-qr-page h3,
.static-qr-page h4,
.static-qr-page p {
    overflow-wrap: break-word;
}

.static-qr-page h1,
.static-qr-page h2,
.static-qr-page h3,
.static-qr-page h4 {
    color: var(--static-ink);
}

.static-qr-page a,
.static-qr-page button,
.static-qr-page input,
.static-qr-page textarea,
.static-qr-page select {
    font: inherit;
}

.static-qr-page a:focus-visible,
.static-qr-page button:focus-visible,
.static-qr-page input:focus-visible,
.static-qr-page textarea:focus-visible,
.static-qr-page select:focus-visible {
    outline: 3px solid rgba(49, 87, 246, .28);
    outline-offset: 3px;
}

.marketing-eyebrow {
    margin: 0 0 .9rem;
    color: var(--static-brand);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.static-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .78rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.static-button--primary {
    color: #fff;
    background: var(--static-brand);
    border-color: var(--static-brand);
}

.static-button--primary:hover {
    color: #fff;
    background: var(--static-brand-dark);
    border-color: var(--static-brand-dark);
    transform: translateY(-1px);
}

/* Hero */
.static-hero {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5.5rem);
    background: var(--static-soft);
    border-bottom: 1px solid var(--static-line);
}

.static-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.static-hero__copy {
    max-width: 720px;
}

.static-hero h1 {
    max-width: 620px;
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.static-hero__lead {
    max-width: 680px;
    margin: 1.4rem 0 0;
    color: var(--static-copy);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.65;
}

.static-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.25rem;
    margin: 1.45rem 0 1.8rem;
    color: #314b64;
    font-size: .95rem;
    font-weight: 600;
}

.static-hero__benefits span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.static-hero__benefits i {
    color: var(--static-brand);
    font-size: 1.05rem;
}

.static-hero__visual {
    min-height: 310px;
    display: grid;
    grid-template-columns: 128px 42px minmax(150px, 1fr);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
    isolation: isolate;
}

.static-hero__visual::before {
    content: "";
    position: absolute;
    inset: 5% 0;
    z-index: -1;
    border-radius: 48% 52% 46% 54%;
    background: var(--static-tint);
}

.static-hero__qr,
.static-hero__result {
    background: #fff;
    border: 1px solid var(--static-line);
    box-shadow: 0 18px 45px rgba(16, 42, 67, .10);
}

.static-hero__qr {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 18px;
}

.static-hero__qr i {
    color: var(--static-ink);
    font-size: 5.8rem;
    line-height: 1;
}

.static-hero__arrow {
    color: var(--static-brand);
    font-size: 2rem;
}

.static-hero__result {
    min-height: 166px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .55rem;
    padding: 1.35rem;
    border-radius: 18px;
}

.static-hero__result > i {
    color: var(--static-brand);
    font-size: 2.4rem;
}

.static-hero__result strong {
    font-size: 1rem;
}

.static-hero__result span {
    color: var(--static-muted);
    font-size: .88rem;
    line-height: 1.45;
}

/* Generator */
#mainContent {
    scroll-margin-top: 96px;
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.generator-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.8rem;
}

.generator-heading > div {
    max-width: 720px;
}

.generator-heading h2 {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.8rem);
    font-weight: 650;
    letter-spacing: -.015em;
    line-height: 1.2;
}

.generator-heading > div > p:last-child {
    max-width: 630px;
    margin: .9rem 0 0;
    color: var(--static-copy);
    font-size: 1.05rem;
    line-height: 1.6;
}

.generator-heading__note {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    flex: 0 0 auto;
    padding: .65rem .8rem;
    color: #2d4962;
    background: #fff;
    border: 1px solid var(--static-line);
    border-radius: 10px;
    font-size: .87rem;
    font-weight: 650;
}

.generator-heading__note i {
    color: var(--static-brand);
    font-size: 1.05rem;
}

.qr-builder {
    overflow: hidden;
    border: 1px solid var(--static-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(16, 42, 67, .09);
}

.qr-builder__editor {
    padding: clamp(1.3rem, 3vw, 2.5rem);
    background: #fff;
}

.qr-builder__editor > .content-container {
    width: 100%;
    max-width: none;
}

.qr-builder__step {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0;
    color: var(--static-ink);
    font-size: .96rem;
    font-weight: 650;
}

.qr-builder__step span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--static-ink);
    border-radius: 50%;
    font-size: .88rem;
}

.qr-type-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.qr-type-list .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .58rem .82rem;
    color: #35506b;
    background: #fff;
    border: 1px solid var(--static-line);
    border-radius: 10px;
    font-size: .86rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.qr-type-list .btn:hover {
    color: var(--static-brand);
    border-color: #9fb0ff;
}

.qr-type-list .btn.btn-light {
    color: var(--static-brand-dark);
    background: var(--static-tint);
    border-color: #9fb0ff;
}

.qr-type-list .btn i {
    font-size: 1.05rem;
}

.qr-builder__editor hr {
    margin: 1.5rem 0;
    color: var(--static-line);
    opacity: 1;
}

.qr-builder__editor .form-group > label,
.qr-builder__editor .form-label {
    margin-bottom: .5rem;
    color: var(--static-ink);
    font-size: .92rem;
    font-weight: 700;
}

.qr-builder__editor .form-control,
.qr-builder__editor .form-select {
    min-height: 46px;
    color: var(--static-ink);
    background: #fff;
    border: 1px solid #cfd9e5;
    border-radius: 9px;
    box-shadow: none;
}

.qr-builder__editor textarea.form-control {
    min-height: 112px;
    resize: vertical;
}

.qr-builder__editor .form-control:focus,
.qr-builder__editor .form-select:focus {
    border-color: var(--static-brand);
    box-shadow: 0 0 0 3px rgba(49, 87, 246, .12);
}

.qr-builder__section-heading {
    margin: 2.2rem 0 1rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--static-line);
}

.qr-builder__section-heading > p:last-child,
.qr-builder__preview-heading > p:last-child {
    margin: .65rem 0 0 2.75rem;
    color: var(--static-muted);
    font-size: .9rem;
    line-height: 1.5;
}

#mainContent .accordion {
    margin-top: .65rem;
}

#mainContent .accordion-item {
    overflow: hidden;
    margin-bottom: .65rem;
    border: 1px solid var(--static-line);
    border-radius: 11px;
    background: #fff;
}

#mainContent .accordion-button {
    min-height: 52px;
    padding: .85rem 1rem;
    color: var(--static-ink);
    background: #fff;
    border: 0;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: none;
}

#mainContent .accordion-button:hover,
#mainContent .accordion-button:not(.collapsed) {
    color: var(--static-brand-dark);
    background: var(--static-tint);
}

#mainContent .accordion-button::after {
    filter: none;
}

#mainContent .accordion-button svg {
    fill: currentColor;
}

#mainContent .accordion-body {
    padding: 1rem;
    color: var(--static-copy);
    background: #f8fafc !important;
}

.qr-settings-form {
    max-width: none;
    padding: 0;
    font-family: inherit;
}

.setting-group {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--static-line);
    border-radius: 10px;
    box-shadow: none;
}

.shape-btn {
    min-height: 92px;
    background: #fff;
    border-color: var(--static-line);
    border-radius: 9px;
}

.shape-btn:hover,
.shape-btn.active {
    border-color: var(--static-brand);
    background: var(--static-tint);
    box-shadow: none;
}

.shape-btn svg {
    color: var(--static-ink);
}

.qr-builder__preview {
    align-self: stretch;
    padding: clamp(1.3rem, 3vw, 2.25rem);
    background: var(--static-soft);
    border-left: 1px solid var(--static-line);
}

.qr-builder__preview-heading {
    margin-bottom: 1.5rem;
}

.qr-code-container {
    width: min(100%, 330px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin: 0 auto;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--static-line);
    border-radius: 16px;
}

.qr-code-container svg {
    width: 100%;
    max-width: 100%;
}

.shadow-3d {
    box-shadow: 0 12px 34px rgba(16, 42, 67, .10);
}

#downloadDesktop {
    padding: 1rem 0 0 !important;
}

#generateQrBtn,
#downloadBtn {
    min-height: 52px;
    width: 100%;
    max-width: 330px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .75rem 1rem;
    border-radius: 11px !important;
    font-size: 1rem;
    font-weight: 650;
    box-shadow: none !important;
}

#generateQrBtn {
    color: #fff;
    background: var(--static-brand);
}

#generateQrBtn:hover,
#generateQrBtn:active {
    background: var(--static-brand-dark);
    transform: none;
}

#downloadBtn {
    max-width: none;
    background: #12895b;
    border-color: #12895b;
}

.qr-builder__preview #accordionExample {
    margin-top: 1rem !important;
}

.download-formats {
    margin-top: 1rem;
    padding: 1rem;
    color: var(--static-copy);
    background: #fff;
    border: 1px solid var(--static-line);
    border-radius: 11px;
}

.download-formats > p {
    margin: 0 0 .7rem;
    color: var(--static-ink);
    font-size: .84rem;
    font-weight: 700;
}

.download-formats .form-check {
    min-height: 42px;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
}

.download-formats .form-check-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.download-formats .form-check-label {
    min-height: 42px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .55rem .65rem;
    color: var(--static-copy);
    background: #fff;
    border: 1px solid var(--static-line);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.download-formats .form-check-input:checked + .form-check-label {
    color: var(--static-brand-dark);
    background: var(--static-tint);
    border-color: var(--static-brand);
}

.download-formats .form-check-input:focus-visible + .form-check-label {
    outline: 3px solid rgba(49, 87, 246, .22);
    outline-offset: 2px;
}

/* Marketing content */
.static-marketing {
    background: #fff;
}

.marketing-intro,
.about-section,
.faq-section {
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.marketing-intro {
    padding-bottom: 2rem;
    text-align: center;
}

.marketing-intro h2,
.section-heading h2 {
    max-width: 820px;
    margin: 0 auto;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.8rem);
    font-weight: 650;
    letter-spacing: -.015em;
    line-height: 1.2;
}

.marketing-intro > .container > p:last-child,
.section-heading > p:last-child {
    max-width: 690px;
    margin: 1rem auto 0;
    color: var(--static-copy);
    font-size: 1.05rem;
    line-height: 1.65;
}

.features-section {
    padding-top: 1.5rem;
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.static-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 2.4rem;
}

.static-features .feature-item {
    margin: 0;
    padding: 2rem 0;
    text-align: left;
    background: transparent;
    border-top: 1px solid var(--static-line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
}

.static-features .feature-item:hover {
    transform: none;
    box-shadow: none;
}

.static-features .feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    color: var(--static-brand);
    background: var(--static-tint);
    border-radius: 10px;
    font-size: 1.35rem;
}

.static-features h4 {
    margin: 0 0 .6rem;
    font-size: 1rem;
    font-weight: 650;
}

.static-features p {
    margin: 0;
    color: var(--static-copy);
    line-height: 1.65;
}

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

.section-heading {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.static-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.static-trust article {
    min-width: 0;
    padding-left: 1.1rem;
    border-left: 2px solid #b9c5ff;
}

.static-trust article > i {
    color: var(--static-brand);
    font-size: 1.55rem;
}

.static-trust h3 {
    margin: .85rem 0 .5rem;
    font-size: 1rem;
    font-weight: 650;
}

.static-trust p {
    margin: 0;
    color: var(--static-copy);
    line-height: 1.6;
}

.dynamic-promo {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: #dce7f6;
    background: var(--static-ink);
    border-radius: 18px;
}

.dynamic-promo__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #23425f;
    border-radius: 13px;
    font-size: 1.6rem;
}

.dynamic-promo .marketing-eyebrow {
    color: #9bb0ff;
}

.dynamic-promo h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 650;
    letter-spacing: -.02em;
}

.dynamic-promo__copy > p:last-child {
    max-width: 650px;
    margin: .65rem 0 0;
    color: #c5d3e1;
    line-height: 1.55;
}

.dynamic-promo .static-button {
    white-space: nowrap;
}

.faq-section .section-heading {
    margin-bottom: 1.4rem;
}

.faq-section .marketing-eyebrow {
    font-size: .66rem;
}

.faq-section .section-heading h2 {
    max-width: 560px;
    font-size: clamp(1.15rem, 1.5vw, 1.35rem) !important;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.3;
}

#faqAccordion {
    max-width: 860px;
    margin: 0 auto;
}

#faqAccordion .accordion-item {
    overflow: hidden;
    margin-bottom: .5rem;
    border: 1px solid var(--static-line);
    border-radius: 9px;
}

#faqAccordion .accordion-button {
    min-height: 42px;
    padding: .6rem .8rem;
    color: var(--static-ink);
    background: #fff;
    font-size: .84rem !important;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    box-shadow: none;
}

#faqAccordion .accordion-button:hover,
#faqAccordion .accordion-button:not(.collapsed) {
    color: var(--static-brand-dark);
    background: var(--static-tint);
}

#faqAccordion .accordion-button::after {
    width: .85rem;
    height: .85rem;
    background-size: .85rem;
    filter: none;
}

#faqAccordion .accordion-body {
    padding: .1rem .9rem .9rem;
    color: var(--static-copy);
    font-size: .91rem;
    line-height: 1.6;
}

.static-modal {
    max-width: 400px;
    border: 1px solid var(--static-line);
    border-top: 4px solid var(--static-brand);
}

@media (max-width: 991.98px) {
    .static-hero__inner {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 2.5rem;
    }

    .static-hero__visual {
        min-height: 270px;
        grid-template-columns: 100px 28px minmax(130px, 1fr);
        padding: 1.2rem;
    }

    .static-hero__qr i {
        font-size: 4.5rem;
    }

    .static-hero__result {
        min-height: 145px;
        padding: 1rem;
    }

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

    .dynamic-promo {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .dynamic-promo .static-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .static-qr-page .container {
        width: min(100% - 32px, 1180px);
    }

    .static-hero {
        padding-top: 3.25rem;
    }

    .static-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.25rem;
    }

    .static-hero__copy {
        text-align: left;
    }

    .static-hero__visual {
        width: min(100%, 430px);
        min-height: 220px;
        grid-template-columns: 92px 26px minmax(125px, 1fr);
        justify-self: center;
    }

    .static-hero__result {
        min-height: 132px;
    }

    .generator-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .generator-heading__note {
        white-space: normal;
    }

    .qr-builder {
        border-radius: 18px;
    }

    .qr-builder__preview {
        padding-top: 2rem;
        border-top: 1px solid var(--static-line);
        border-left: 0;
    }

    #downloadPhone {
        padding: 1.25rem 0 0 !important;
    }

    #downloadPhone #generateQrBtn {
        max-width: none;
    }

    #mySpacerContainer {
        display: none;
    }

    .static-trust {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dynamic-promo {
        grid-template-columns: 1fr;
    }

    .dynamic-promo__icon {
        display: none;
    }

    .dynamic-promo .static-button {
        grid-column: auto;
        justify-self: stretch;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .static-qr-page .container {
        width: min(100% - 28px, 1180px);
    }

    .static-hero h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.2rem);
        line-height: 1.14;
    }

    .static-hero__benefits {
        align-items: flex-start;
        flex-direction: column;
    }

    .static-hero .static-button {
        width: 100%;
    }

    .static-hero__visual {
        grid-template-columns: 78px 22px minmax(110px, 1fr);
        gap: .65rem;
        padding: 1rem;
    }

    .static-hero__qr {
        border-radius: 12px;
    }

    .static-hero__qr i {
        font-size: 3.6rem;
    }

    .static-hero__arrow {
        font-size: 1.35rem;
    }

    .static-hero__result {
        min-height: 112px;
        gap: .25rem;
        padding: .8rem;
        border-radius: 12px;
    }

    .static-hero__result > i {
        font-size: 1.7rem;
    }

    .static-hero__result strong {
        font-size: .8rem;
    }

    .static-hero__result span {
        font-size: .72rem;
    }

    .qr-builder__editor,
    .qr-builder__preview {
        padding: 1rem;
    }

    .qr-type-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-inline: -1rem;
        padding: 0 1rem .45rem;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline proximity;
    }

    .qr-type-list::-webkit-scrollbar {
        display: none;
    }

    .qr-type-list .btn {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .qr-builder__section-heading > p:last-child,
    .qr-builder__preview-heading > p:last-child {
        margin-left: 0;
    }

    .static-features {
        grid-template-columns: 1fr;
    }

    .static-features .feature-item {
        padding: 1.5rem 0;
    }

    .faq-section .section-heading h2 {
        font-size: 1.15rem !important;
    }

    #faqAccordion .accordion-button {
        min-height: 40px;
        padding: .55rem .75rem;
        font-size: .82rem !important;
        line-height: 1.3;
    }

    #faqAccordion .accordion-body {
        padding: .1rem .8rem .85rem;
        font-size: .9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .static-qr-page *,
    .static-qr-page *::before,
    .static-qr-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Final typography lock.
   Alpha.styles.css is loaded after site.css in the current layout, therefore
   the start page uses explicit selectors and pixel values here. */
.static-qr-page {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.static-qr-page button,
.static-qr-page input,
.static-qr-page textarea,
.static-qr-page select,
.static-qr-page label {
    font-family: inherit !important;
}

.static-qr-page .static-hero h1 {
    font-size: 48px !important;
    font-weight: 650 !important;
    line-height: 1.12 !important;
}

.static-qr-page .generator-heading h2,
.static-qr-page .marketing-intro h2,
.static-qr-page .section-heading h2 {
    font-size: 32px !important;
    font-weight: 650 !important;
    line-height: 1.18 !important;
}

.static-qr-page #mainContent .accordion-button {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.static-qr-page .static-features h4,
.static-qr-page .static-trust h3 {
    font-size: 16px !important;
    font-weight: 650 !important;
}

.static-qr-page .dynamic-promo h3 {
    font-size: 24px !important;
    font-weight: 650 !important;
}

.static-qr-page .faq-section .section-heading h2 {
    font-size: 25px !important;
    font-weight: 600 !important;
}

.static-qr-page #faqAccordion .accordion-button {
    min-height: 46px !important;
    padding: 11px 14px !important;
    font-size: 15px !important;
    font-weight: 550 !important;
    line-height: 1.35 !important;
}

.static-qr-page .download-formats > p {
    margin-bottom: 10px;
    font-size: 14px !important;
    font-weight: 600 !important;
}

@media (max-width: 575.98px) {
    .static-qr-page .static-hero h1 {
        font-size: 36px !important;
    }

    .static-qr-page .generator-heading h2,
    .static-qr-page .marketing-intro h2,
    .static-qr-page .section-heading h2 {
        font-size: 26px !important;
    }

    .static-qr-page .faq-section .section-heading h2 {
        font-size: 22px !important;
    }

    .static-qr-page #faqAccordion .accordion-button {
        font-size: 14px !important;
    }
}


