:root {
    --bg:           #0c0c0c;
    --bg-card:      #141414;
    --bg-card-2:    #1a1a1a;
    --red:          #ED131C;
    --red-hover:    #c5000a;
    --white:        #ffffff;
    --muted:        #6b6b6b;
    --border:       #222222;
    --radius:       12px;
    --max-w:        1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.header__nav-link {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}
.header__nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.header__cta {
    margin-left: auto;
    background: var(--red);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.header__cta:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}
.hero {
    position: relative;
    background: #111;
    overflow: hidden;
    padding-top: 72px; 
}
.hero__circles {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    z-index: 1;
    pointer-events: none;
}
.hero__circle {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(180, 0, 0, 0.35);
}
.hero__circle--1 { width: 140px; height: 140px; }
.hero__circle--2 { width: 260px; height: 260px; border-color: rgba(180,0,0,0.28); }
.hero__circle--3 { width: 390px; height: 390px; border-color: rgba(180,0,0,0.20); }
.hero__circle--4 { width: 530px; height: 530px; border-color: rgba(180,0,0,0.13); }
.hero__circle--5 { width: 680px; height: 680px; border-color: rgba(180,0,0,0.07); }
.hero__chess {
    position: absolute;
    top: 0; right: 0;
    width: 200px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    background-image:
        repeating-conic-gradient(#1a0000 0% 25%, transparent 0% 50%);
    background-size: 28px 28px;
    opacity: 0.6;
    -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    min-height: 420px;
}
.hero__text {
    flex: 0 0 auto;
    padding: 52px 0 0;
    z-index: 3;
}
.hero__eyebrow {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero__title-white {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
}
.hero__title .hero__title-white:first-child {
    color: var(--red);
    font-size: clamp(4rem, 11vw, 10rem);
}
.hero__title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}
.hero__title-x {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.hero__photo-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero__photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1c1010;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 1rem;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
}
.hero__photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-feedback {
    background: #f5f5f5;
    padding: 56px 24px 52px;
}
.hero-feedback__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.hero-feedback__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.hero-feedback__sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 28px;
}
.hero-feedback__form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 16px;
    border: 1px solid #ccc;
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
}
.hero-feedback__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #111;
    background: transparent;
}
.hero-feedback__input::placeholder { color: #aaa; }
.hero-feedback__btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.2s;
    margin: 4px;
}
.hero-feedback__btn:hover { background: var(--red-hover); }
.hero-feedback__check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: center;
    font-size: 0.78rem;
    color: #999;
    cursor: pointer;
}
.hero-feedback__check input { margin-top: 2px; accent-color: var(--red); }
.hero-feedback__check a { color: #999; text-decoration: underline; }
.btn__arrow {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
}
.about-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}
.about-section__inner {
    max-width: 860px;
}
.about-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}
.about-section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.about-section__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 52px;
}
.about-section__stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.stat__val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}
.stat__label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}
.section-header {
    margin-bottom: 40px;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.05;
}
.slider-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-container {
    flex: 1;
    height: 460px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-track-3d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}
.basta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: absolute;
    width: 320px;
    max-width: 82%;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.55s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    will-change: transform, opacity;
    cursor: pointer;
}
.basta-card.active-center {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateZ(50px) scale(1.08);
    border-color: var(--red);
    box-shadow: 0 0 40px rgba(237,19,28,0.18), 0 20px 40px rgba(0,0,0,0.5);
    z-index: 5;
}
.basta-card.side-left {
    opacity: 0.35;
    pointer-events: auto;
    transform: translateX(-270px) translateZ(-100px) scale(0.85) rotateY(18deg);
    z-index: 3;
}
.basta-card.side-right {
    opacity: 0.35;
    pointer-events: auto;
    transform: translateX(270px) translateZ(-100px) scale(0.85) rotateY(-18deg);
    z-index: 3;
}
.basta-card.hidden-slide {
    opacity: 0;
    transform: translateZ(-200px) scale(0.5);
    z-index: 1;
}
.slider-track-3d.static-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    height: auto;
    perspective: none;
    transform-style: flat;
}
.slider-track-3d.static-grid .basta-card {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    border-color: var(--border);
    box-shadow: none;
    width: calc(33.333% - 16px);
}
.card-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-card-2);
}
.card-image-container--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.placeholder-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.student-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    will-change: transform;
}
.interactive-card:hover .student-photo {
    transform: scale(1.06);
}
.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, transparent 50%);
}
.hover-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 12, 12, 0.97) 0%,
        rgba(12, 12, 12, 0.85) 50%,
        rgba(20, 0, 0, 0.7) 100%
    );
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 2;
    border-radius: var(--radius);
}
.hover-info::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    width: 32px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease 0.1s;
}
.hover-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.35s ease 0.05s, opacity 0.35s ease 0.05s;
}
.interactive-card:hover .hover-info {
    opacity: 1;
    visibility: visible;
}
.interactive-card:hover .hover-info::before {
    transform: scaleX(1);
}
.interactive-card:hover .hover-info p {
    transform: translateY(0);
    opacity: 1;
}
.card-content {
    padding: 18px 20px 20px;
    background: var(--bg-card);
    position: relative;
}
.card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.card-meta {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}
.basta-card.active-center .card-name::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    margin-top: 8px;
}
.slide-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.6rem;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    z-index: 10;
}
.slide-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.08);
}
.cta-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(237,19,28,0.06) 0%, transparent 60%);
}
.cta-section__inner {
    max-width: 680px;
}
.cta-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}
.cta-section__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
}
.cta-section__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.cta-section__form .hero__input {
    flex: 0 0 260px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 13px 18px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.cta-section__form .hero__input::placeholder { color: var(--muted); }
.cta-section__form .hero__input:focus { border-color: rgba(255,255,255,0.5); }
.cta-section__form .hero__btn {
    flex-shrink: 0;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 13px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.cta-section__form .hero__btn:hover { background: var(--red-hover); }
.footer {
    padding: 48px 0 36px;
    border-top: 1px solid var(--border);
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.footer__logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -1px;
}
.footer__nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.footer__nav-link {
    color: var(--muted);
    font-size: 0.88rem;
    padding: 6px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}
.footer__nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.footer__copy, .footer__hotline {
    font-size: 0.82rem;
    color: var(--muted);
}
.footer__hotline a {
    color: var(--white);
    font-weight: 600;
}
.footer__hotline a:hover { color: var(--red); }
@media (max-width: 768px) {
    .header__nav { display: none; }
    .header__container { gap: 16px; }
    .hero__inner { min-height: 300px; padding-bottom: 0; }
    .hero__photo-wrap { width: 50%; }
    .hero__title-white { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero__title .hero__title-white:first-child { font-size: clamp(3rem, 12vw, 5rem); }
    .hero__title-x { font-size: clamp(2rem, 7vw, 3rem); }
    .hero__eyebrow { font-size: 0.8rem; }
    .hero-feedback__form { flex-direction: column; border-radius: 16px; gap: 8px; border: none; background: transparent; }
    .hero-feedback__input { border: 1px solid #ccc; border-radius: 100px; background: #fff; }
    .hero-feedback__btn { justify-content: center; border-radius: 100px; }
    .about-section__stats { gap: 32px; }
    .stat__val { font-size: 2.2rem; }
    .slider-container { height: 420px; }
    .basta-card { width: 260px; }
    .basta-card.side-left {
        transform: translateX(-130px) translateZ(-50px) scale(0.78) rotateY(10deg);
        opacity: 0.15;
    }
    .basta-card.side-right {
        transform: translateX(130px) translateZ(-50px) scale(0.78) rotateY(-10deg);
        opacity: 0.15;
    }
    .slider-track-3d.static-grid { flex-direction: column; align-items: center; }
    .slider-track-3d.static-grid .basta-card { width: 100%; }
    .slide-btn { width: 36px; height: 36px; font-size: 1.2rem; line-height: 34px; }
    .footer__top { flex-direction: column; align-items: flex-start; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .cta-section__form { flex-direction: column; }
}
.concert-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.concert-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(
        to top,
        rgba(12,12,12,0.85) 0%,
        rgba(12,12,12,0.5) 50%,
        rgba(0,0,0,0.3) 100%
    );
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2;
    border-radius: var(--radius);
}
.concert-play-btn {
    width: 64px;
    height: 64px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 20px rgba(237,19,28,0.5));
}
.concert-play-btn svg {
    width: 100%;
    height: 100%;
}
.concert-play-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.3s ease 0.05s, opacity 0.3s ease 0.05s;
}
.concert-card:hover .concert-play-overlay {
    opacity: 1;
    visibility: visible;
}
.concert-card:hover .concert-play-btn {
    transform: scale(1);
}
.concert-card:hover .concert-play-label {
    transform: translateY(0);
    opacity: 1;
}
.concert-card.active-center:hover {
    border-color: var(--red);
    box-shadow: 0 0 40px rgba(237,19,28,0.3), 0 20px 40px rgba(0,0,0,0.5);
}
.concert-card .hover-info {
    display: none;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-window {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover {
    color: var(--white);
}
.modal-title {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.2;
}
.modal-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.4;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-field-group {
    position: relative;
    display: flex;
    flex-direction: column;
}
.modal-input {
    width: 100%;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 18px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-input::placeholder {
    color: var(--muted);
}
.modal-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
}
.modal-input.invalid {
    border-color: var(--red) !important;
    box-shadow: 0 0 8px rgba(237, 19, 28, 0.3);
}
.modal-error-message {
    color: var(--red);
    font-size: 0.78rem;
    margin-top: 5px;
    display: none;
    text-align: left;
    font-weight: 500;
}
.modal-input.invalid + .modal-error-message {
    display: block;
}
.modal-submit-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 5px;
}
.modal-submit-btn:hover {
    background: var(--red-hover);
}
.success-window {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(237, 19, 28, 0.1);
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.cta__btn-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}
.cta__btn-modal {
    background: var(--red);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta__btn-modal:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}
.cta__btn-modal .btn__arrow {
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s;
}
.cta__btn-modal:hover .btn__arrow {
    transform: translateX(3px);
}