/* Support Center Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* BEM naming convention implemented throughout */
.support-page {
    font-family: 'Open Sans', sans-serif;
    color: #495057;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Header component */
.support-page__header {
    background: linear-gradient(135deg, #553c9a, #6b46c1);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-page__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml, %3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.support-page__header-content {
    position: relative;
    z-index: 2;
}

.support-page__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-page__subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Search component */
.support-page__search-container {
    margin: 2rem auto 0;
    max-width: 600px;
}

.support-page__search-form {
    width: 100%;
}

.support-page__search-wrapper {
    position: relative;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.support-page__search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    color: #495057;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.support-page__search-input:focus {
    outline: none;
    background-color: #ffffff;
}

.support-page__search-button {
    background-color: #6b46c1;
    color: white;
    border: none;
    padding: 0 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-page__search-button:hover {
    background-color: #553c9a;
}

/* Info bar component */
.support-page__info-bar {
    background-color: #ffffff;
    color: #553c9a;
    padding: 1.25rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    border-bottom: 3px solid #d6bcfa;
}

.support-page__info-text {
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.support-page__info-highlight {
    color: #6b46c1;
    position: relative;
    padding-bottom: 2px;
}

.support-page__info-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6b46c1;
}

/* Main content component */
.support-page__content {
    padding: 4rem 0;
}

.support-page__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    border-left: 5px solid #6b46c1;
    position: relative;
    overflow: hidden;
}

.support-page__card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #d6bcfa 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

/* Section header component */
.support-page__section-header {
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.support-page__section-title {
    font-family: 'Montserrat', sans-serif;
    color: #553c9a;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.support-page__section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #553c9a, #6b46c1);
    border-radius: 4px;
}

.support-page__section-lead {
    color: #6b46c1;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-weight: 400;
}

.support-page__section-content {
    position: relative;
    z-index: 1;
}

.support-page__text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

/* Feature grid component */
.support-page__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.support-page__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #6b46c1;
    position: relative;
    overflow: hidden;
}

.support-page__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-page__feature-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(106, 61, 232, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.support-page__feature-icon {
    font-size: 3rem;
    color: #6b46c1;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.1), rgba(214, 188, 250, 0.3));
    padding: 1rem;
    border-radius: 50%;
}

.support-page__feature-title {
    color: #553c9a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.support-page__feature-description {
    color: #495057;
    font-size: 1rem;
}

/* Available Resources Section */
.support-page__available-resources {
    margin-top: 4rem;
}

.support-page__resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-page__resource-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-left: 3px solid #9f7aea;
}

.support-page__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-left-color: #6b46c1;
}

.support-page__resource-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(106, 61, 232, 0.15);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.support-page__resource-icon {
    font-size: 2rem;
    color: #6b46c1;
}

.support-page__resource-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #553c9a;
    margin-bottom: 0.75rem;
}

.support-page__resource-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.support-page__resource-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #6b46c1;
    font-size: 0.95rem;
}

.support-page__resource-link i {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.support-page__resource-card:hover .support-page__resource-link i {
    transform: translateX(4px);
}

/* Countdown component */
.support-page__countdown {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.support-page__countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #6b46c1, #7d5bd2);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 85px;
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.support-page__countdown-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.support-page__countdown-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.support-page__countdown-value {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.support-page__countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Launch message styling */
.support-page__launch-message {
    background: linear-gradient(145deg, #6b46c1, #7d5bd2);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
    animation: pulse 2s infinite;
}

.support-page__launch-message .material-icons {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-page__launch-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
    }

    50% {
        box-shadow: 0 12px 24px rgba(107, 70, 193, 0.5);
    }

    100% {
        box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
    }
}

/* CTA component */
.support-page__cta {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, #ffffff 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #d6bcfa;
    position: relative;
    overflow: hidden;
}

.support-page__cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106, 61, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.support-page__cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106, 61, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.support-page__cta-title {
    font-family: 'Montserrat', sans-serif;
    color: #553c9a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.support-page__cta-description {
    font-size: 1.1rem;
    color: #495057;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.support-page__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Button components */
.support-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    gap: 0.5rem;
}

.support-page__btn .button-icon {
    display: flex;
    align-items: center;
}

.support-page__btn--primary {
    background-color: #6b46c1;
    border-color: #6b46c1;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.support-page__btn--primary:hover,
.support-page__btn--primary:focus {
    background-color: #553c9a;
    border-color: #553c9a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.4);
    color: #ffffff;
}

.support-page__btn--outline {
    background-color: transparent;
    border: 2px solid #6b46c1;
    color: #6b46c1;
}

.support-page__btn--outline:hover,
.support-page__btn--outline:focus {
    background-color: #6b46c1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

/* Form component */
.support-page__form {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #6b46c1;
    position: relative;
    overflow: hidden;
}

.support-page__form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(106, 61, 232, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.support-page__form-title {
    font-family: 'Montserrat', sans-serif;
    color: #553c9a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-page__form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.support-page__form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 600;
}

.support-page__form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.support-page__form-input:focus {
    border-color: #6b46c1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
    outline: none;
    background-color: #ffffff;
}

.support-page__form-submit {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* FAQ component */
.support-page__faq {
    margin-top: 4rem;
}

.support-page__faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-page__faq-item {
    margin-bottom: 1.25rem;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-page__faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.support-page__faq-question {
    position: relative;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #553c9a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #9f7aea;
    transition: all 0.3s ease;
}

.support-page__faq-question::after {
    content: '\002B';
    font-size: 1.5rem;
    color: #6b46c1;
    transition: all 0.3s ease;
}

.support-page__faq-question.active {
    background-color: rgba(106, 61, 232, 0.05);
    border-left: 4px solid #6b46c1;
}

.support-page__faq-question.active::after {
    content: '\2212';
    transform: rotate(180deg);
}

.support-page__faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background-color: #ffffff;
}

.support-page__faq-answer-content {
    padding: 0 0 1.5rem;
    color: #495057;
}

/* Timeline component */
.support-page__timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.support-page__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #9f7aea, #6b46c1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.support-page__timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.support-page__timeline-content {
    position: relative;
    width: 45%;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-page__timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.support-page__timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.support-page__timeline-item:nth-child(even) .support-page__timeline-content {
    margin-left: auto;
}

.support-page__timeline-item:nth-child(odd) .support-page__timeline-content::before {
    right: -10px;
}

.support-page__timeline-item:nth-child(even) .support-page__timeline-content::before {
    left: -10px;
}

.support-page__timeline-date {
    position: absolute;
    top: 20px;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #6b46c1, #9f7aea);
    color: #ffffff;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(107, 70, 193, 0.3);
}

.support-page__timeline-item:nth-child(odd) .support-page__timeline-date {
    right: -140px;
}

.support-page__timeline-item:nth-child(even) .support-page__timeline-date {
    left: -140px;
}

.support-page__timeline-point {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 24px;
    height: 24px;
    background-color: #6b46c1;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 4px #ffffff, 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.support-page__timeline-item:hover .support-page__timeline-point {
    background-color: #9f7aea;
    transform: translateX(-50%) scale(1.2);
}

.support-page__timeline-title {
    font-family: 'Montserrat', sans-serif;
    color: #553c9a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Animation classes */
.support-page__fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.support-page__delay-100 {
    animation-delay: 0.1s;
}

.support-page__delay-200 {
    animation-delay: 0.2s;
}

.support-page__delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countdownUpdate {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.countdown-update {
    animation: countdownUpdate 0.6s ease;
}

/* Utility classes */
.support-page__text-center {
    text-align: center;
}

.support-page__text-purple {
    color: #6b46c1;
}

.support-page__text-bold {
    font-weight: 700;
}

.support-page__mb-sm {
    margin-bottom: 0.75rem;
}

.support-page__mb-md {
    margin-bottom: 1.5rem;
}

.support-page__mb-lg {
    margin-bottom: 2.5rem;
}

.support-page__mt-lg {
    margin-top: 2.5rem;
}

.support-page__mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles */
@media(max-width: 1200px) {
    .support-page__title {
        font-size: 2.75rem;
    }

    .support-page__subtitle {
        font-size: 1.3rem;
    }

    .support-page__section-title {
        font-size: 2rem;
    }
}

@media(max-width: 992px) {
    .support-page__title {
        font-size: 2.5rem;
    }

    .support-page__section-title {
        font-size: 1.8rem;
    }

    .support-page__section-lead {
        font-size: 1.2rem;
    }

    .support-page__timeline::before {
        left: 60px;
    }

    .support-page__timeline-content {
        width: calc(100% - 120px);
        margin-left: 120px !important;
    }

    .support-page__timeline-item:nth-child(odd) .support-page__timeline-content::before,
    .support-page__timeline-item:nth-child(even) .support-page__timeline-content::before {
        left: -10px;
        right: auto;
    }

    .support-page__timeline-item:nth-child(odd) .support-page__timeline-date,
    .support-page__timeline-item:nth-child(even) .support-page__timeline-date {
        left: 0;
        right: auto;
        top: -40px;
        position: relative;
        display: inline-block;
        margin-bottom: 0.75rem;
    }

    .support-page__timeline-point {
        left: 60px;
    }

    .support-page__search-container {
        max-width: 90%;
    }
}

@media(max-width: 768px) {
    .support-page__header {
        padding: 3.5rem 0;
    }

    .support-page__title {
        font-size: 2.2rem;
    }

    .support-page__subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .support-page__search-input {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .support-page__card {
        padding: 2rem 1.5rem;
    }

    .support-page__section-title {
        font-size: 1.7rem;
    }

    .support-page__section-lead {
        font-size: 1.1rem;
    }

    .support-page__feature-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .support-page__feature-item {
        padding: 1.5rem;
    }

    .support-page__feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .support-page__feature-title {
        font-size: 1.3rem;
    }

    .support-page__cta {
        padding: 2rem 1.5rem;
    }

    .support-page__cta-title {
        font-size: 1.6rem;
    }

    .support-page__cta-description {
        font-size: 1rem;
    }

    .support-page__cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .support-page__form {
        padding: 2rem 1.5rem;
    }

    .support-page__countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .support-page__countdown-item {
        min-width: calc(50% - 1rem);
        flex: 1 0 calc(50% - 1rem);
    }

    .support-page__resources-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 576px) {
    .support-page__title {
        font-size: 1.8rem;
    }

    .support-page__subtitle {
        font-size: 1rem;
    }

    .support-page__info-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .support-page__section-title {
        font-size: 1.5rem;
    }

    .support-page__section-lead {
        font-size: 1rem;
    }

    .support-page__text {
        font-size: 1rem;
    }

    .support-page__timeline::before {
        left: 30px;
    }

    .support-page__timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        padding: 1.5rem;
    }

    .support-page__timeline-point {
        left: 30px;
        width: 20px;
        height: 20px;
    }

    .support-page__feature-grid {
        grid-template-columns: 1fr;
    }

    .support-page__countdown-item {
        min-width: calc(50% - 0.5rem);
        flex: 1 0 calc(50% - 0.5rem);
        padding: 1.25rem 1rem;
    }

    .support-page__countdown-value {
        font-size: 1.8rem;
    }

    .support-page__countdown-label {
        font-size: 0.75rem;
    }

    .support-page__search-button {
        padding: 0 1.25rem;
    }

    .support-page__search-container {
        max-width: 95%;
    }

    .support-page__btn {
        width: 100%;
    }
}