/* ============================================
   Thank You Page Styles
   ============================================ */

.thank-you-page {
    padding: 80px 18px;
    background:
        radial-gradient(circle at top right, rgba(241, 86, 44, 0.08), transparent 26%),
        linear-gradient(180deg, #fbfbfa 0%, #f2f4f7 100%);
}

.thank-you-shell {
    max-width: 980px;
    margin: 0 auto;
}

.thank-you-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.thank-you-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(241, 86, 44, 0.08);
}

.thank-you-header {
    padding: 34px 38px 10px;
}

.thank-you-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(241, 86, 44, 0.1);
    color: #f1562c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.thank-you-body {
    padding: 0 38px 38px;
}

.thank-you-title {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    color: #202124;
    margin: 0 0 18px;
}

.thank-you-text {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 0;
}

.thank-you-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.thank-you-panel {
    border-radius: 24px;
    padding: 24px 24px 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.thank-you-panel.accent {
    background: linear-gradient(135deg, #1f2328 0%, #29313a 60%, #f1562c 180%);
    color: #fff;
    border: 0;
}

.thank-you-panel-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}

.thank-you-panel p {
    font-size: 15px;
    line-height: 1.8;
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: 0;
}

.thank-you-panel.accent .thank-you-panel-text,
.thank-you-panel.accent .thank-you-panel-title,
.thank-you-panel.accent .thank-you-list li,
.thank-you-panel.accent .thank-you-email {
    color: #fff;
}

.thank-you-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.thank-you-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: inherit;
}

.thank-you-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f1562c;
    box-shadow: 0 0 0 5px rgba(241, 86, 44, 0.12);
}

.thank-you-panel.accent .thank-you-list li::before {
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.thank-you-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    text-decoration: none;
}

.thank-you-action.primary {
    background: #f1562c;
    color: #fff;
}

.thank-you-action.secondary {
    background: #fff;
    color: #202124;
    border: 1px solid #e5e7eb;
}

.thank-you-action:hover {
    transform: translateY(-1px);
    color: inherit;
}

.thank-you-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    word-break: break-word;
    font-weight: 600;
}

@media (max-width: 991px) {
    .thank-you-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .thank-you-header,
    .thank-you-body {
        padding-left: 20px;
        padding-right: 20px;
    }
    .thank-you-card {
        border-radius: 24px;
    }
    .thank-you-actions {
        flex-direction: column;
    }
    .thank-you-action {
        width: 100%;
    }
}
