:root {
    --gradient-start: var(--color-primary);
    --gradient-end: var(--color-secondary);
}

/* ================= Reset ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 800; /* Good for headings */
    background: var(--color-background);
    color: var(--color-text);
    line-height: 1.5;
}

/* ================= Container ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ================= Header ================= */
header {
    background: var(--color-background);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.logo svg {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    transition: all 0.3s ease;
    --gradient-start: var(--color-primary);
    --gradient-end: var(--color-secondary);
}




.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 9px;
    background: var(--gradient-primary);
    color: var(--color-text-invert);
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn:hover {
    transform: translateY(-2px);
}

/* ================= Mobile Nav ================= */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}


.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav a {
    margin: 0.5rem 0;
    text-align: center;
}

.mobile-nav.active {
    display: flex;
}

/* ================= Desktop Nav ================= */
.desktop-nav {
    display: none; /* скрыта на мобильных */
}


/* ================= Breakpoint: от 768px и выше ================= */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .menu-toggle {
        display: none; /* бургер убираем на десктопе */
    }

    .mobile-nav {
        display: none !important; /* меню мобильное всегда скрыто на десктопе */
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 3.5rem;
    }
    .logo {
        font-size: 1.3rem;

    }

    .logo svg {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
}

/* ================= Hero ================= */
.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.hero-text {
    flex: 1 1 500px;
    min-width: 280px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;

}

.hero-text h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
    max-width: 600px;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: var(--color-text-accent);
}

/* ================= Signup Card ================= */
.signup-card {
    flex: 1 1 400px;
    min-width: 280px;
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.signup-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.signup-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;

}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-form input {
    padding: 1rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--gradient-primary);

}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; /* FIX mobile issue: allows surname field to move to new line */
}

.form-row input {
    flex: 1 1 48%; /* responsive: takes half on desktop, full width on mobile */
    min-width: 120px;
}

.checkbox.full-width {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.85rem;

    color: var(--color-text-accent);
}

.checkbox.full-width input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 5px 0 0;
    padding: 0;

}

.btn.full {
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    color: var(--color-background);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.full:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.places-left {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;

}

.places-left strong {
    color: #dc2626;
    animation: pulse 1.5s infinite;
}

.iti {
    color: black;
}

.iti input {
    color: inherit; /* or your desired color */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem; /* match your other inputs */
    line-height: 1.5rem;
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}


/* ================= Live Ticker ================= */
.live-ticker {
    background-color: var(--color-surface);
    padding: 1rem 0;
    overflow: hidden;

}

.ticker-wrapper {
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 1.5rem;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-background);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    min-width: 220px;
    flex-shrink: 0;
    animation: scroll-left linear infinite;
}

.ticker-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.ticker-item .info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.ticker-item .info .profit {
    color: #16a34a;
    font-weight: 600;
}

.ticker-item .info .balance {
    color: var(--color-text-accent);
    font-weight: 500;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .signup-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-text .subtitle {
        text-align: center;
        max-width: 100%;
    }

    .signup-card {
        width: 100%;
        max-width: 400px;
    }

    .form-row input {
        flex: 1 1 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .signup-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
}


/* ================= INFO Section ================= */
.info-section {
    padding: 4rem 1rem;
    background: var(--gradient-primary);
}

.info-inner {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.info-text {

    flex: 1 1 500px;
    font-weight: 400;
}

.info-title {
    color: var(--color-text-invert);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;

}

.info-paragraph {
    color: var(--color-text-invert);
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlighted-text {
    color: var(--color-text-invert);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlighted-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.highlighted-text:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}


/* ================= INFO Section Responsive ================= */
@media (max-width: 1024px) {
    .info-inner {
        gap: 2rem;
    }

    .info-title {
        font-size: 2.2rem;
    }

    .info-paragraph {
        font-size: 0.95rem;
    }

    .highlighted-text {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .info-inner {
        flex-direction: column;
        align-items: center;
    }

    .info-text {
        text-align: center;
        flex: 1 1 100%;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-paragraph {
        font-size: 0.9rem;
    }

    .highlighted-text {
        justify-content: center;
        text-align: center;
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }

    .highlighted-text .highlight-icon {
        font-size: 1.3rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 3rem 1rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .info-paragraph {
        font-size: 0.85rem;
    }

    .highlighted-text {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .highlighted-text .highlight-icon {
        font-size: 1.2rem;
        margin: 0;
    }
}


/* ================= PROBLEMS Section ================= */
.problems-section {
    padding: 4rem 1rem;
    background: var(--color-surface);;
    border-radius: 30px;
}

.problems-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;

}

/* Problem Items */
.problem-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: center;
}

.problem-item.reverse {
    flex-direction: row-reverse;
}

.problem-text {
    flex: 1 1 500px;
    position: relative;
    padding: 2rem;
    background-color: var(--color-background);
    border-radius: 25px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-text:hover {
    background-color: var(--color-background);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.problem-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.problem-text p {
    color: var(--color-text-accent);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* Solution Block */
.solution-block {
    background: var(--gradient-primary);
    color: var(--color-text-invert);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.solution-block::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gradient-primary);
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
    border-radius: 30px;
}

.solution-block h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.solution-block p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ================= STEPS Section ================= */
.steps-section {
    margin-top: 4rem;
    text-align: center;

}

.steps-section h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--color-background);
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.step-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-medium);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;

}

/* ================= PROBLEMS & STEPS Responsive ================= */
@media (max-width: 1024px) {
    .problem-item {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Problems: stack text above image */
    .problem-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .problem-item.reverse {
        flex-direction: column; /* ignore reverse on mobile */
    }

    .problem-text {
        flex: 1 1 100%;
    }

    /* Steps: 2 per row */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

}

@media (max-width: 480px) {
    /* Problems: padding & font sizes */
    .problems-section {
        padding: 3rem 1rem;
        border-radius: 20px;
    }

    .problem-text h3 {
        font-size: 1.4rem;
    }

    .problem-text p {
        font-size: 0.9rem;
    }


    /* Steps: 1 per row on mobile */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 0.95rem;
    }
}


/* FEARLESS SECTION */
.fearless-section {
    padding: 4rem 1rem;
    background: var(--color-background);
    border-radius: 25px;
}

.fearless-inner {
    display: flex;
    gap: 3rem;
    align-items: stretch; /* make both sides stretch to same height */
    flex-wrap: wrap;
}

.fearless-image {
    position: relative;
    flex: 1 1 50%; /* make image take roughly half the width */
    min-width: 400px;
    max-width: 600px; /* adjust max width to taste */
    border-radius: 25px;
    overflow: hidden;
}

.fearless-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the image fully covers the container */
    display: block;
    border-radius: 25px;
    filter: grayscale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay with semi-transparent gradient */
.fearless-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: var(--gradient-primary);
    opacity: 0.5;
    pointer-events: none;
}

/* Hover effect */
.fearless-image img:hover {
    transform: translateY(-5px) scale(1.05); /* slightly bigger scale for perfection */
    box-shadow: var(--shadow-medium);
}

.fearless-texts {
    flex: 1 1 250px;
}

.fearless-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;


}

.fearless-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fearless-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ================= FEARLESS Responsive ================= */
@media (max-width: 1024px) {
    .fearless-inner {
        gap: 2rem;
    }

    .fearless-title {
        font-size: 2.2rem;
    }

    .fearless-item {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .fearless-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .fearless-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fearless-image {
        flex: 1 1 100%;
        min-width: auto;
        max-width: 100%;
    }

    .fearless-title {
        font-size: 1.8rem;
    }

    .fearless-item {
        justify-content: center;
        gap: 0.5rem;
    }

    .fearless-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .fearless-section {
        padding: 3rem 1rem;
    }

    .fearless-title {
        font-size: 1.5rem;
    }

    .fearless-item {
        flex-direction: row; /* make icon appear next to text */
        align-items: flex-start; /* align top of icon with first line of text */
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .fearless-icon {
        font-size: 1rem;
        order: 1; /* move icon after the text */
    }

    .fearless-item p {
        order: 2; /* ensure text comes first */
        margin: -2px; /* remove extra spacing */
    }
}

/* ADVISORS SECTION */
.advisors-section {
    padding: 4rem 1rem;
    background: var(--color-surface);
    border-radius: 25px;
}

.advisors-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;

}

.advisors-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;

}

/* кастомный скролл */
.advisors-scroll::-webkit-scrollbar {
    height: 10px;
    background: var(--gradient-primary);
}

.advisors-scroll::-webkit-scrollbar-track {
    background: var(--color-background);
    border-radius: 10px;
}

/* Карточки */
.advisor-card {
    background: var(--color-background);
    width: 300px;
    flex-shrink: 0;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advisor-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.advisor-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.advisor-card .position {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.advisor-card .advisor-text {
    color: var(--color-text-accent);
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Scrollbar style */
.advisors-scroll::-webkit-scrollbar {
    height: 8px;
}

.advisors-scroll::-webkit-scrollbar-track {
    background: var(--color-background);
    border-radius: 4px;
}

.advisors-scroll::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* ================= STATISTICS Section ================= */
.statistics-section {
    text-align: center;
    background: var(--color-background);
    border-radius: 30px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.statistics-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

/* Grid layout */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}

/* Statistic Card */
.statistics-item {
    background: var(--color-background);
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}

/* Accent bar on top (optional for visual consistency with steps) */
.statistics-item::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.statistics-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-medium);
}

/* Number / Value */
.statistics-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Label */
.statistics-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ================= STATISTICS Responsive ================= */
@media (max-width: 1024px) {
    .statistics-section h2 {
        font-size: 2.2rem;
    }

    .statistics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 3rem 1rem;
        border-radius: 20px;
    }

    .statistics-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    /* One per row on mobile */
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .statistics-item {
        padding: 1.5rem 1rem;
    }

    .statistics-item h3 {
        font-size: 2rem;
    }

    .statistics-item p {
        font-size: 0.9rem;
    }
}


/* Footer */
footer {
    padding: 1rem 1rem;
    text-align: center;
    font-size: 1rem;

}

footer a {
    color: var(--color-text);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ================= Footer Responsive ================= */
@media (max-width: 480px) {
    footer {
        font-size: 0.7rem;

    }
}




/*-------------------SUCCESS----------------------*/
.success-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
    position: relative;
    padding: 2rem 1rem;
}

.success-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 20;
}

.success-header {
    margin-bottom: 2rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-indicator::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.success-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.1;
}

.success-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-accent);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.success-card {
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 2.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    color: var(--color-text-accent);
    font-weight: 400;
}

.success-message strong {
    color: var(--color-text);
    font-weight: 600;
}

.next-steps {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-invert);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 3rem;
    color: var(--color-text-invert);
    font-weight: 700;
    border-radius: 12px;
}

.step-text {
    font-size: 1rem;
    color: var(--color-text-invert);
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    flex: 1;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;

}

.btn-success {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--color-background);
    color: var(--color-text);
    text-decoration: none;
    border-radius: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;

    position: relative;
    overflow: hidden;
}



.btn-success:hover {
    transform: translateY(-3px);
}



/* Responsive */
@media (max-width: 1024px) {
    .success-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .success-hero {
        padding: 1.5rem 1rem;
    }

    .success-title {
        font-size: 2.2rem;
    }

    .success-subtitle {
        font-size: 1.1rem;
    }

    .success-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin-bottom: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .step-item {
        padding: 1.2rem;
    }

    .step-icon {
        font-size: 1.7rem;
        width: 45px;
        height: 45px;
    }

    .next-steps {
        padding: 2rem 1.5rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-success {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .success-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .success-title {
        font-size: 2rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

    .success-card {
        padding: 1.5rem;
    }

    .success-message p{

        font-size: 0.9rem;
    }

    .step-item{
        padding: 0.7rem;

    }
    .next-steps {
        padding: 1.5rem;
    }

    .status-indicator {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 2rem;
    }

    .step-text {
        font-size: 0.9rem;
    }
}
@media print {
    body {
        zoom: 0.8;
    }
}
