﻿/* ========================================================================== */
/* TopSitesDanke – Internal Pages */
/* ========================================================================== */

/* ---- Page header banner ---- */
.tsd-page-banner {
    background: linear-gradient(135deg, var(--tsd-blue-dark) 0%, var(--tsd-blue) 100%);
    padding: 64px 24px;
    text-align: center;
}

.tsd-page-banner__inner {
    max-width: 860px;
    margin: 0 auto;
}

.tsd-page-banner h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--tsd-white);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tsd-page-banner__lead {
    font-size: 18px;
    color: #bfdbfe;
    margin: 0;
    line-height: 1.6;
}

/* ---- Page body ---- */
.tsd-page-body {
    padding: 64px 24px;
    background: var(--tsd-white);
}

.tsd-page-body__inner {
    max-width: 960px;
    margin: 0 auto;
}

.tsd-page-body__inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--tsd-text);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.25;
    border-left: 4px solid var(--tsd-blue);
    padding-left: 14px;
}

.tsd-page-body__inner h2:first-child {
    margin-top: 0;
}

.tsd-page-body__inner h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tsd-text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.tsd-page-body__inner p {
    font-size: 16px;
    color: var(--tsd-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.tsd-page-body__inner a {
    color: var(--tsd-blue);
    text-decoration: none;
    font-weight: 600;
}

.tsd-page-body__inner a:hover {
    text-decoration: underline;
}

.tsd-page-body__inner ul,
.tsd-page-body__inner ol {
    font-size: 16px;
    color: var(--tsd-muted);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 20px;
}

.tsd-page-body__inner li {
    margin-bottom: 10px;
}

.tsd-page-body__inner strong {
    color: var(--tsd-text);
    font-weight: 700;
}

/* ---- Policy pages ---- */
.tsd-policy {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 24px;
}

.tsd-policy h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--tsd-text);
    margin-bottom: 40px;
    line-height: 1.2;
}

.tsd-policy__section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--tsd-border);
}

.tsd-policy__section:last-child {
    border-bottom: none;
}

.tsd-policy__section h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--tsd-text);
    margin-bottom: 18px;
    margin-top: 0;
    line-height: 1.3;
}

.tsd-policy__section h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--tsd-text);
    margin-top: 22px;
    margin-bottom: 12px;
}

.tsd-policy__section p {
    font-size: 16px;
    color: var(--tsd-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.tsd-policy__section ul {
    font-size: 16px;
    color: var(--tsd-muted);
    line-height: 1.8;
    padding-left: 24px;
    margin: 14px 0 18px;
}

.tsd-policy__section li {
    margin-bottom: 10px;
}

.tsd-policy__section strong {
    color: var(--tsd-text);
}

.tsd-policy__section a {
    color: var(--tsd-blue);
    text-decoration: none;
    font-weight: 600;
}

.tsd-policy__section a:hover {
    text-decoration: underline;
}

/* ---- Contact Form ---- */
.tsd-contact-form {
    max-width: 580px;
    margin: 36px 0 0;
    padding: 32px;
    background: var(--tsd-surface);
    border-radius: var(--tsd-radius-lg);
    border: 1px solid var(--tsd-border);
}

.tsd-form-group {
    margin-bottom: 20px;
}

.tsd-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--tsd-text);
    font-size: 15px;
}

.tsd-form-group input,
.tsd-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--tsd-border);
    border-radius: var(--tsd-radius);
    font-family: inherit;
    font-size: 15px;
    background: var(--tsd-white);
    color: var(--tsd-text);
    transition: border-color var(--tsd-transition), box-shadow var(--tsd-transition);
}

.tsd-form-group input:focus,
.tsd-form-group textarea:focus {
    outline: none;
    border-color: var(--tsd-blue);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.tsd-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.tsd-form-submit {
    background: var(--tsd-blue);
    color: var(--tsd-white);
    padding: 13px 36px;
    border: none;
    border-radius: var(--tsd-radius);
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: background var(--tsd-transition);
}

.tsd-form-submit:hover {
    background: var(--tsd-blue-dark);
}

/* ---- Thank You page ---- */
.tsd-thankyou {
    background: var(--tsd-blue-bg);
    padding: 100px 24px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tsd-thankyou__box {
    text-align: center;
    max-width: 500px;
}

.tsd-thankyou__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--tsd-blue);
    border-radius: 50%;
    margin-bottom: 28px;
}

.tsd-thankyou__check-mark {
    font-size: 36px;
    font-weight: 900;
    color: var(--tsd-white);
    line-height: 1;
}

.tsd-thankyou__title {
    font-size: 38px;
    font-weight: 800;
    color: var(--tsd-text);
    margin-bottom: 18px;
    line-height: 1.2;
}

.tsd-thankyou__msg {
    font-size: 18px;
    color: var(--tsd-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.tsd-thankyou__desc {
    font-size: 15px;
    color: var(--tsd-subtle);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tsd-thankyou__btn {
    display: inline-block;
    background: var(--tsd-blue);
    color: var(--tsd-white);
    padding: 13px 40px;
    border-radius: var(--tsd-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background var(--tsd-transition);
}

.tsd-thankyou__btn:hover {
    background: var(--tsd-blue-dark);
    color: var(--tsd-white);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .tsd-page-banner {
        padding: 44px 16px;
    }

    .tsd-page-banner h1 {
        font-size: 30px;
    }

    .tsd-page-banner__lead {
        font-size: 16px;
    }

    .tsd-page-body {
        padding: 44px 16px;
    }

    .tsd-policy {
        padding: 44px 16px;
    }

    .tsd-policy h1 {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .tsd-policy__section h2 {
        font-size: 22px;
    }

    .tsd-contact-form {
        padding: 22px 16px;
    }

    .tsd-thankyou {
        padding: 64px 16px;
    }

    .tsd-thankyou__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .tsd-page-banner h1 {
        font-size: 24px;
    }

    .tsd-policy h1 {
        font-size: 24px;
    }

    .tsd-policy__section h2 {
        font-size: 19px;
    }

    .tsd-thankyou__title {
        font-size: 22px;
    }

    .tsd-thankyou__check {
        width: 64px;
        height: 64px;
    }

    .tsd-thankyou__check-mark {
        font-size: 28px;
    }
}

