/*
 * PropFirmMap Global Stylesheet
 * Consolidated from: tokens.css, layout.css, breadcrumbs.css, pfm-score.css,
 *                    accessibility.css, cookie-consent.css, feedback-widget.css, newsletter.css
 * Purpose: Single CSS file loaded on ALL pages to reduce HTTP requests.
 */

/* ════════════════════════════════════════════════════════════════
   DESIGN TOKENS (from tokens.css)
   ════════════════════════════════════════════════════════════════ */

:root {
    /* ── Brand Colors ── */
    --color-primary:        #7A95F8;
    --color-primary-dark:   #6453CA;
    --color-primary-alt:    #7489e1;
    --color-success:        #41b618;

    /* ── Brand Gradients ── */
    --gradient-brand:       linear-gradient(to bottom, #7A95F8 8%, #6453CA 92%);
    --gradient-brand-h:     linear-gradient(to right, #7A95F8 8%, #6453CA 92%);
    --gradient-brand-diag:  linear-gradient(100deg, #7A95F8 0%, #6453CA 100%);

    /* ── Surfaces ── */
    --color-surface-warm:   #FBF5F3;
    --color-surface-gray:   #DFDFDF;
    --color-surface-input:  #E7E7E7;
    --color-surface-search: #f8f9fa;
    --color-surface-rating: #D9D9D9;

    /* ── Text Colors ── */
    --color-text-primary:   #000000;
    --color-text-dark:      #5B5B5B;
    --color-text-mid:       #626262;
    --color-text-gray:      #828282;
    --color-text-muted:     #909090;
    --color-text-subtle:    #8E8888;
    --color-text-light:     #747474;
    --color-text-table:     #6F6F6F;
    --color-text-section:   #898989;
    --color-text-link:      #757575;

    /* ── Border Colors ── */
    --color-border-light:   #dfdede;
    --color-border-mid:     #878787;
    --color-border-footer:  #7d8aba;

    /* ── Typography ── */
    --font-family-base:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* ── Border Radius ── */
    --radius-sm:            5px;
    --radius-md:            8px;
    --radius-lg:            12px;
    --radius-xl:            20px;
    --radius-pill:          24px;
    --radius-round:         50px;
}


/* ════════════════════════════════════════════════════════════════
   LAYOUT (from layout.css)
   ════════════════════════════════════════════════════════════════ */

a:hover {
    text-decoration: none;
}

.btn-block,
.frmbtn {
    color: white !important;
}

.img_data {
    width: 60px !important;
}

.about_img {
    width: 32px !important;
}

.search-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

#searchInput {
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px;
    border: 2px solid white;
    background-color: white;
    font-size: 16px;
    color: #333;
    z-index: 2;
}

.suggestions {
    position: absolute;
    width: 92%;
    background-color: white;
    border: none;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    top: 64px;
    left: 16px;
    z-index: 10000;
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background-color: #f1f1f1;
}

.footer-version {
    text-align: center;
    margin-top: 8px;
    font-size: 11px;
}

.footer-version a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-bottom: none;
}

.footer-version a:hover {
    color: rgba(255, 255, 255, 0.6);
}


/* ════════════════════════════════════════════════════════════════
   BREADCRUMBS (from breadcrumbs.css)
   ════════════════════════════════════════════════════════════════ */

.pfm-breadcrumbs {
    margin-bottom: 8px;
}

.pfm-breadcrumbs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.pfm-breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    line-height: 1;
}

.pfm-breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    font-size: 0.75rem;
}

.pfm-breadcrumbs__link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pfm-breadcrumbs__link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.pfm-breadcrumbs__link i {
    font-size: 0.9rem;
}

.pfm-breadcrumbs__current {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .pfm-breadcrumbs {
        margin-bottom: 6px;
    }

    .pfm-breadcrumbs__item {
        font-size: 0.75rem;
    }

    .pfm-breadcrumbs__current {
        max-width: 160px;
    }
}


/* ════════════════════════════════════════════════════════════════
   PFM SCORE BADGES (from pfm-score.css)
   ════════════════════════════════════════════════════════════════ */

.pfm-score-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6453CA 0%, #7A95F8 100%);
    box-shadow: 0 2px 8px rgba(100, 83, 202, 0.35);
    z-index: 2;
}

.pfm-score-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.pfm-score-label {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 2px;
}

.pfm-score-badge-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6453CA 0%, #7A95F8 100%);
    box-shadow: 0 2px 10px rgba(100, 83, 202, 0.3);
    min-width: 56px;
}

.pfm-score-value-lg {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.pfm-score-label-sm {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 3px;
}

.pfm-score-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.pfm-score-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    overflow: hidden;
}

.pfm-score-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #6453CA 0%, #7A95F8 100%);
    transition: width 0.6s ease;
}

.pfm-score-inline {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    min-width: 32px;
    text-align: right;
}

.top-rated-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-rated-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.top-rated-card .firm-logo-sm {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.top-rated-card .firm-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.top-rated-card .firm-name:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.top-rated-rank {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    min-width: 20px;
}

@media (max-width: 576px) {
    .pfm-score-badge {
        padding: 4px 8px;
    }

    .pfm-score-value {
        font-size: 15px;
    }

    .pfm-score-label {
        font-size: 8px;
    }

    .pfm-score-badge-detail {
        padding: 6px 8px;
    }

    .pfm-score-value-lg {
        font-size: 18px;
    }
}


/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY (from accessibility.css)
   ════════════════════════════════════════════════════════════════ */

.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 12px 24px;
    background: #fff;
    color: #1f2937;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid rgba(122, 149, 248, 0.8);
    outline-offset: 2px;
    border-radius: 4px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(122, 149, 248, 0.8);
    outline-offset: 2px;
}

.menu a:focus-visible,
.menu button:focus-visible,
.quick-link-card:focus-visible,
.popular-firm-chip:focus-visible,
.top-rated-card a:focus-visible,
.finder-cta-btn:focus-visible,
footer a:focus-visible {
    outline-color: rgba(255, 255, 255, 0.9);
}

.firm-card__cta:focus-visible {
    outline-color: #fff;
    outline-offset: -2px;
}

.search-box input:focus-visible,
#searchInput:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(122, 149, 248, 0.5);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: inherit;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    transition: background 0.15s ease;
}

.suggestion-item:hover {
    background: #f1f1f1;
    text-decoration: none;
    color: #333;
}

.suggestion-item__logo {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ════════════════════════════════════════════════════════════════
   COOKIE CONSENT (from cookie-consent.css)
   ════════════════════════════════════════════════════════════════ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    max-width: 900px;
    margin: 0 auto 20px;
    background: rgba(30, 20, 60, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.cookie-consent__text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-family-base);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #fff;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cookie-consent__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-consent__btn--accept {
    background: var(--color-primary);
    color: #fff;
}

.cookie-consent__btn--decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--decline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
    .cookie-consent__inner {
        flex-direction: column;
        margin: 0 10px 10px;
        padding: 16px 20px;
        gap: 14px;
    }

    .cookie-consent__text {
        font-size: 13px;
        text-align: center;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }
}


/* ════════════════════════════════════════════════════════════════
   FEEDBACK WIDGET (from feedback-widget.css)
   ════════════════════════════════════════════════════════════════ */

.feedback-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feedback-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.55);
}

.feedback-fab svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.feedback-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

.feedback-modal {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 120px);
    background: rgba(30, 15, 60, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    z-index: 9999;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.feedback-modal.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.feedback-modal__header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feedback-modal__title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.feedback-modal__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
}

.feedback-modal__close:hover {
    color: #fff;
}

.feedback-modal__body {
    padding: 16px 20px 20px;
}

.feedback-types {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.feedback-type-btn {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.feedback-type-btn:hover {
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
}

.feedback-type-btn.selected {
    background: rgba(168, 85, 247, 0.25);
    border-color: #a855f7;
    color: #fff;
}

.feedback-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.15s;
}

.feedback-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.feedback-textarea:focus {
    outline: none;
    border-color: #a855f7;
}

.feedback-email {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 13px;
    margin-top: 10px;
    font-family: inherit;
    transition: border-color 0.15s;
}

.feedback-email::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.feedback-email:focus {
    outline: none;
    border-color: #a855f7;
}

.feedback-submit {
    width: 100%;
    padding: 10px;
    margin-top: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
}

.feedback-submit:hover {
    opacity: 0.9;
}

.feedback-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.feedback-error {
    color: #f87171;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.feedback-error.visible {
    display: block;
}

.feedback-success {
    text-align: center;
    padding: 32px 20px;
}

.feedback-success__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feedback-success__icon svg {
    width: 28px;
    height: 28px;
    fill: #22c55e;
}

.feedback-success__title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feedback-success__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.feedback-charcount {
    text-align: right;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

@media (max-width: 576px) {
    .feedback-modal {
        right: 8px;
        bottom: 80px;
        width: calc(100vw - 16px);
    }

    .feedback-fab {
        bottom: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .feedback-fab svg {
        width: 18px;
        height: 18px;
    }
}


/* ════════════════════════════════════════════════════════════════
   NEWSLETTER (from newsletter.css)
   ════════════════════════════════════════════════════════════════ */

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    width: 100%;
}

.newsletter-form__input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form__input:focus {
    border-color: rgba(122, 149, 248, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7A95F8, #6366f1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.newsletter-form__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(122, 149, 248, 0.4);
}

.newsletter-form__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-form__btn i {
    margin-right: 6px;
}

.newsletter-alert {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-top: 8px;
    max-width: 480px;
}

.newsletter-alert--success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.newsletter-alert--error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.newsletter-cta {
    text-align: center;
    padding: 48px 24px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-cta__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(122, 149, 248, 0.2), rgba(99, 102, 241, 0.2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.newsletter-cta__icon i {
    font-size: 24px;
    color: #7A95F8;
}

.newsletter-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.newsletter-cta__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-cta .newsletter-form {
    margin: 0 auto;
    justify-content: center;
}

.newsletter-cta .newsletter-alert {
    margin-left: auto;
    margin-right: auto;
}

.newsletter-cta__privacy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

.newsletter-cta__privacy a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.footer-newsletter {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter__title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px;
}

.footer-newsletter .newsletter-form__input {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
}

.footer-newsletter .newsletter-form__btn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 10px;
}

.newsletter-sidebar {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
}

.newsletter-sidebar__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.newsletter-sidebar__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px;
}

.newsletter-sidebar .newsletter-form {
    flex-direction: column;
}

.newsletter-sidebar .newsletter-form__input {
    width: 100%;
}

.newsletter-sidebar .newsletter-form__btn {
    width: 100%;
}

.newsletter-unsub-card {
    text-align: center;
    padding: 60px 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.newsletter-unsub-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.newsletter-unsub-icon--success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.newsletter-unsub-icon--error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.newsletter-unsub-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.newsletter-unsub-message {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 8px;
}

.newsletter-unsub-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
}

.newsletter-unsub-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #7A95F8, #6366f1);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-unsub-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(122, 149, 248, 0.4);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 520px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form__btn {
        width: 100%;
    }

    .newsletter-cta {
        padding: 32px 16px;
    }

    .newsletter-cta__title {
        font-size: 18px;
    }

    .newsletter-unsub-card {
        padding: 40px 20px;
    }
}
