*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-900: #091a35;
    --navy-800: #0f2d59;
    --navy-700: #1b4b8e;
    --teal-500: #0ca9a2;
    --teal-600: #0a8e88;
    --amber-500: #ff9b39;
    --amber-100: #fff2e3;
    --surface-0: #ffffff;
    --surface-50: #f5f8fe;
    --surface-100: #edf3fb;
    --text-900: #0f1f38;
    --text-700: #334a67;
    --text-600: #506684;
    --border-200: #d9e4f2;
    --shadow-1: 0 18px 42px rgba(11, 30, 61, 0.12);
    --shadow-2: 0 8px 24px rgba(17, 40, 76, 0.08);
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-900);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 0% 0%, #dbe9ff 0, transparent 28%),
        radial-gradient(circle at 90% 10%, #d8fff6 0, transparent 26%),
        linear-gradient(180deg, #f3f7ff 0%, #eef4fd 100%);
}

h1, h2, h3, summary {
    font-family: "Sora", "Segoe UI", sans-serif;
}

.page-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    background: linear-gradient(90deg, rgba(9, 26, 53, 0.95), rgba(15, 45, 89, 0.92));
}

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #f4f7ff;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 7px;
    background: #ffffff;
    padding: 3px;
}

.header-support-link {
    color: #e0eeff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.header-support-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page {
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 2rem 1rem 2.5rem;
    display: grid;
    gap: 1.25rem;
}

.top-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 1.25rem;
}

.panel {
    background: var(--surface-0);
    border: 1px solid var(--border-200);
    border-radius: 18px;
    box-shadow: var(--shadow-2);
}

.hero-panel {
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(12, 169, 162, 0.2), transparent 70%);
    pointer-events: none;
}

.status-pill {
    display: inline-block;
    background: var(--amber-100);
    border: 1px solid #ffd5aa;
    color: #96510d;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-radius: 999px;
    padding: 0.38rem 0.8rem;
    margin-bottom: 0.85rem;
}

h1 {
    font-size: clamp(1.7rem, 2.1vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.7rem;
    max-width: 21ch;
}

.lead {
    color: var(--text-700);
    line-height: 1.65;
    max-width: 62ch;
    margin-bottom: 1.2rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    min-height: 46px;
    padding: 0.8rem 1.15rem;
    border-radius: 11px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, var(--amber-500), #ed7f19);
    box-shadow: 0 10px 18px rgba(237, 127, 25, 0.28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(237, 127, 25, 0.34);
}

.btn-secondary {
    color: var(--navy-700);
    background: var(--surface-0);
    border-color: #bed2eb;
}

.btn-secondary:hover {
    background: var(--surface-50);
}

.recovery-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.recovery-steps li {
    background: var(--surface-50);
    border: 1px solid #d8e4f4;
    border-radius: 12px;
    padding: 0.85rem;
}

.recovery-steps h2 {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 0.34rem;
}

.recovery-steps p {
    font-size: 0.82rem;
    color: var(--text-600);
    line-height: 1.5;
}

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

.trust-strip p {
    background: linear-gradient(180deg, #f6faff, #eff5ff);
    border: 1px solid #d8e4f4;
    border-radius: 10px;
    padding: 0.72rem;
    text-align: center;
}

.trust-strip strong {
    display: block;
    color: var(--navy-800);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.trust-strip span {
    font-size: 0.77rem;
    color: var(--text-600);
}

.help-panel {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: var(--shadow-1);
}

.help-panel h2 {
    font-size: 1.05rem;
}

.help-panel p {
    color: var(--text-700);
    font-size: 0.92rem;
    line-height: 1.6;
}

.support-link {
    text-decoration: none;
    color: var(--navy-700);
    border: 1px solid #c9daef;
    border-radius: 10px;
    padding: 0.72rem 0.78rem;
    font-weight: 700;
    background: #ffffff;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.support-link:hover {
    border-color: #8db0dc;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(19, 56, 102, 0.1);
}

.faq-panel {
    padding: 1.25rem;
}

.faq-panel h2 {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

.faq-panel details {
    border: 1px solid #d8e4f4;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    background: #ffffff;
}

.faq-panel details + details {
    margin-top: 0.6rem;
}

.faq-panel summary {
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    list-style: none;
}

.faq-panel summary::-webkit-details-marker {
    display: none;
}

.faq-panel p {
    color: var(--text-700);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-top: 0.45rem;
}

.services {
    border-radius: 18px;
    border: 1px solid var(--border-200);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(3px);
    padding: 1.3rem;
}

.services h2 {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.services-grid {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid #d9e5f5;
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: #9ebbe1;
    box-shadow: 0 10px 20px rgba(13, 36, 71, 0.08);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.service-card h3 {
    font-size: 0.95rem;
    color: var(--navy-800);
    margin-bottom: 0.25rem;
}

.service-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-600);
}

.btn:focus-visible,
.support-link:focus-visible,
.service-card:focus-visible,
.footer-links a:focus-visible,
.faq-panel summary:focus-visible,
.header-support-link:focus-visible,
.brand-link:focus-visible {
    outline: 3px solid var(--teal-500);
    outline-offset: 3px;
}

footer {
    margin-top: auto;
    border-top: 1px solid #d5e1f0;
    background: rgba(255, 255, 255, 0.9);
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-700);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-700);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--navy-700);
    text-decoration: underline;
}

@media (max-width: 940px) {
    .top-grid {
        grid-template-columns: 1fr;
    }

    .help-panel {
        box-shadow: var(--shadow-2);
    }
}

@media (max-width: 760px) {
    .recovery-steps,
    .trust-strip,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .help-panel,
    .faq-panel,
    .services {
        padding: 1rem;
    }

    .btn {
        width: 100%;
    }

    .cta-row {
        flex-direction: column;
    }
}
