:root {
    --primary: #1a73e8;
    --primary-hover: #174ea6;
    --text-main: #202124;
    --text-secondary: #5f6368;
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #dadce0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    --shadow-md: 0 4px 6px -1px rgba(60,64,67,0.1), 0 2px 4px -1px rgba(60,64,67,0.06);
    --radius-sm: 8px;
}

.ty-workspace-page {
    --primary: #1a73e8;
    --primary-hover: #174ea6;
    --text-main: #202124;
    --text-secondary: #5f6368;
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #dadce0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    --shadow-md: 0 4px 6px -1px rgba(60,64,67,0.1), 0 2px 4px -1px rgba(60,64,67,0.06);
    --radius-sm: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.ty-workspace-page,
.ty-workspace-page *,
.ty-workspace-page *::before,
.ty-workspace-page *::after {
    box-sizing: border-box;
}

.ty-workspace-page main,
.ty-workspace-page footer,
.ty-workspace-page div,
.ty-workspace-page h1,
.ty-workspace-page h2,
.ty-workspace-page h3,
.ty-workspace-page p,
.ty-workspace-page ul,
.ty-workspace-page li,
.ty-workspace-page figure {
    margin: 0;
    padding: 0;
}

.ty-workspace-page h1,
.ty-workspace-page h2,
.ty-workspace-page h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

.ty-workspace-page a {
    color: #cc0000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ty-workspace-page a:hover {
    color: var(--primary-hover);
}

.ty-workspace-page a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.ty-workspace-page img,
.ty-workspace-page svg {
    max-width: 100%;
    height: auto;
    border: 0;
    box-shadow: none;
}

.ty-workspace-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.ty-workspace-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.ty-workspace-page .btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.ty-workspace-page .btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: #ffffff;
}

.ty-workspace-page .thank-you-main {
    background: #ffffff;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 96px 0 104px;
}

.ty-workspace-page .thank-you-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ty-workspace-page .thank-you-logo {
    display: block;
    width: auto;
    height: 126px;
    max-width: 540px;
    margin: 0 auto 40px;
    object-fit: contain;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ty-workspace-page .thank-you-content h1 {
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0;
}

.ty-workspace-page .thank-you-subheadline {
    max-width: 680px;
    margin: 0 auto 20px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.ty-workspace-page .thank-you-note {
    max-width: 620px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.ty-workspace-page .return-link {
    display: inline-block;
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
}

.ty-workspace-page .site-footer {
    background-color: #505050;
    color: #cfcfcf;
    padding: 90px 0 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.ty-workspace-page .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.ty-workspace-page .footer-col h3 {
    color: #ffffff;
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ty-workspace-page .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ty-workspace-page .footer-links li {
    margin-bottom: 12px;
    padding: 0;
    list-style: none;
}

.ty-workspace-page .footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.2s;
}

.ty-workspace-page .footer-links a:hover {
    color: #ffffff;
}

.ty-workspace-page .footer-links a.active {
    color: #E64619;
}

.ty-workspace-page .footer-contact p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #cfcfcf;
}

.ty-workspace-page .footer-contact a {
    color: #cfcfcf;
    text-decoration: none;
}

.ty-workspace-page .footer-contact a:hover {
    color: #ffffff;
}

.ty-workspace-page .footer-contact svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: text-bottom;
    fill: currentColor;
}

.ty-workspace-page .btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cfcfcf;
    text-decoration: none;
    margin-top: 16px;
}

.ty-workspace-page .btn-whatsapp-footer svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ty-workspace-page .partner-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.ty-workspace-page .partner-badges img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
}

.ty-workspace-page .footer-bottom {
    display: flex;
    align-items: center;
    padding-top: 24px;
    color: #cfcfcf;
    font-size: 13px;
}

.ty-workspace-page .footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 24px;
}

.ty-workspace-page .footer-bottom-left img {
    height: 30px;
    width: auto;
    border-radius: 4px;
    padding: 4px;
}

.ty-workspace-page .footer-bottom a,
.ty-workspace-page .footer-bottom span {
    color: #cfcfcf;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .ty-workspace-page .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ty-workspace-page .container {
        padding: 0 20px;
    }

    .ty-workspace-page .thank-you-main {
        min-height: 560px;
        padding: 72px 0 84px;
    }

    .ty-workspace-page .thank-you-logo {
        height: 36px;
        margin-bottom: 32px;
    }

    .ty-workspace-page .thank-you-content h1 {
        font-size: 40px;
    }

    .ty-workspace-page .thank-you-subheadline {
        font-size: 18px;
    }

    .ty-workspace-page .btn {
        width: 100%;
        max-width: 360px;
    }

    .ty-workspace-page .footer-grid {
        grid-template-columns: 1fr;
    }

    .ty-workspace-page .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .ty-workspace-page .footer-bottom-left {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .ty-workspace-page .thank-you-main {
        padding: 64px 0 76px;
    }

    .ty-workspace-page .thank-you-content h1 {
        font-size: 34px;
    }

    .ty-workspace-page .thank-you-subheadline {
        font-size: 17px;
    }
}
