/* ============================================================
   WooPlugins Pages — Pricing & Docs styles
   ============================================================ */

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
    background: linear-gradient(135deg, #0B0C0F 0%, #1a1b20 50%, #0B0C0F 100%);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}
/* Push fixed header down when announcement bar is present */
.announcement-bar ~ .site-header { top: 40px; }
.announcement-bar ~ .site-header ~ .site-main { padding-top: calc(var(--header-height, 72px) + 40px); }
.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.announcement-bar__text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.announcement-bar__badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}
.announcement-bar__link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s;
}
.announcement-bar__link:hover {
    border-bottom-color: #fff;
}
.announcement-bar__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.15s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-bar__close:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

/* ---------- COMPATIBILITY BAR ---------- */
.compat-bar {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.compat-bar__label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin: 0 0 1.25rem;
}
.compat-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.compat-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}
.compat-bar__item svg {
    color: #94a3b8;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .announcement-bar {
        position: relative;
    }
    .announcement-bar ~ .site-header {
        top: 0;
    }
    .announcement-bar ~ .site-header ~ .site-main {
        padding-top: 0;
    }
    .announcement-bar__text {
        font-size: 0.78rem;
        gap: 0.5rem;
    }
    .compat-bar__logos {
        gap: 1.5rem;
    }
    .compat-bar__item {
        font-size: 0.78rem;
    }
}
@media (max-width: 480px) {
    .compat-bar__logos {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ---------- DROPDOWN TRIGGER FIX ---------- */
.site-nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body, 'Inter', sans-serif);
    transition: color 0.15s, background 0.15s;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.site-nav__dropdown-trigger:hover {
    color: #0B0C0F;
    background: rgba(37,99,235,0.06);
}
.site-nav__dropdown-trigger svg {
    transition: transform 0.2s;
}
.site-nav__dropdown-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* ---------- MEGA MENU ---------- */
.site-nav__item--has-dropdown .site-nav__dropdown.mega-dropdown {
    width: 1020px !important;
    max-width: 94vw;
    padding: 0 !important;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}
.mega-dropdown__columns {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 0.8fr !important;
    width: 100%;
}
.mega-dropdown__col {
    padding: 20px 8px 12px;
}
.mega-dropdown__col:not(:last-child) {
    border-right: 1px solid #f1f5f9;
}
.mega-dropdown__col-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    padding: 0 16px 8px;
    margin: 0;
}
.mega-dropdown__promo {
    margin: 0 8px 8px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(139,92,246,0.06));
    border-radius: 12px;
    border: 1px solid rgba(37,99,235,0.1);
}
.mega-dropdown__promo-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0B0C0F;
    margin: 0 0 4px;
}
.mega-dropdown__promo-text {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0 0 10px;
}
.mega-dropdown__promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}
.mega-dropdown__promo-btn:hover { text-decoration: underline; }

/* Stats column */
.mega-dropdown__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 8px 0;
}
.mega-dropdown__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.15s;
}
.mega-dropdown__stat:hover {
    background: #f8fafc;
}
.mega-dropdown__stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mega-dropdown__stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0B0C0F;
    display: block;
    line-height: 1.2;
}
.mega-dropdown__stat-label {
    font-size: 0.72rem;
    color: #64748b;
    display: block;
}
.mega-dropdown__grid {
    padding: 0;
}
.mega-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
}
.mega-dropdown__item:hover {
    background: #f8fafc;
}
.mega-dropdown__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.mega-dropdown__item:hover .mega-dropdown__icon {
    transform: scale(1.08);
}
.mega-dropdown__content {
    flex: 1;
    min-width: 0;
}
.mega-dropdown__name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0B0C0F;
    margin-bottom: 1px;
    letter-spacing: -0.005em;
}
.mega-dropdown__desc {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.35;
}
.mega-dropdown__tag {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 6px;
    line-height: 1.4;
}
.mega-dropdown__tag--hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
}
.mega-dropdown__tag--popular {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #fff;
}
.mega-dropdown__tag--new {
    background: linear-gradient(135deg, #2563eb, #818cf8);
    color: #fff;
}
.mega-dropdown__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}
.mega-dropdown__footer-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
}
.mega-dropdown__footer-link:hover {
    color: #2563eb;
}
.mega-dropdown__footer-link svg {
    transition: transform 0.15s;
}
.mega-dropdown__footer-link:hover svg {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .site-nav__item--has-dropdown .site-nav__dropdown.mega-dropdown {
        width: 100% !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0;
        background: transparent;
    }
    .mega-dropdown__columns {
        grid-template-columns: 1fr !important;
    }
    .mega-dropdown__col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .mega-dropdown__col--stats {
        display: none;
    }
    .mega-dropdown__grid { padding: 0; }
    .mega-dropdown__item { padding: 10px 12px; }
    .mega-dropdown__icon { width: 36px; height: 36px; }
    .mega-dropdown__meta { display: none; }
    .mega-dropdown__promo { display: none; }
    .mega-dropdown__footer {
        background: transparent;
        border-top: 1px solid #e2e8f0;
        padding: 8px 12px;
    }
    .mega-dropdown__footer-link { color: #64748b; }
    .mega-dropdown__name { color: #0B0C0F; }
    .mega-dropdown__desc { color: #64748b; }
    .mega-dropdown__item:hover { background: rgba(37,99,235,0.04); }
    .mega-dropdown__item::after { background: rgba(0,0,0,0.02) !important; }
}

/* ---------- PAGE HERO — Light Sky ---------- */
.page-hero {
    position: relative;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 40%, #f8fbff 80%, #ffffff 100%);
    padding: calc(var(--header-height, 72px) + 80px) 0 5rem;
    overflow: hidden;
    text-align: center;
    color: #0B0C0F;
}
.page-hero--short {
    padding: calc(var(--header-height, 72px) + 60px) 0 4rem;
}
.page-hero__decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
}
.page-hero__decor--1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
    top: -15%; left: -5%;
}
.page-hero__decor--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
    bottom: -10%; right: -5%;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero__title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #0B0C0F;
}
.page-hero__sub {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ---------- PRICING SECTION ---------- */
.pricing-section {
    padding: 4rem 0 5rem;
    background: #f8fafc;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.pricing-toggle__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}
.pricing-toggle__label--active {
    color: #0B0C0F;
}
.pricing-toggle__switch {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 9999px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    padding: 0;
    flex-shrink: 0;
}
.pricing-toggle__switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: transform 0.25s;
}
.pricing-toggle__switch[aria-checked="true"] {
    background: #2563eb;
}
.pricing-toggle__switch[aria-checked="true"]::after {
    transform: translateX(24px);
}
.pricing-toggle__badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.08);
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(16,185,129,0.15);
}

/* Pricing Grid */
.v2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Pricing Card */
.v2-pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.v2-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
    border-color: var(--pc-accent, #2563eb);
}

/* Featured card */
.v2-pricing-card--featured {
    border-color: var(--pc-accent, #8b5cf6);
    box-shadow: 0 12px 40px rgba(139,92,246,0.12);
    transform: scale(1.04);
    z-index: 2;
}
.v2-pricing-card--featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 56px rgba(139,92,246,0.18);
}

/* Badge */
.v2-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pc-accent, #8b5cf6);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(139,92,246,0.3);
}

/* Card top section */
.v2-pricing-card__top {
    text-align: center;
    margin-bottom: 1.5rem;
}
.v2-pricing-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.v2-pricing-card__name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0B0C0F;
    margin-bottom: 0.25rem;
}
.v2-pricing-card__tagline {
    font-size: 0.85rem;
    color: #64748b;
}

/* Price */
.v2-pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.25rem;
}
.v2-pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0C0F;
    align-self: flex-start;
    margin-top: 0.35rem;
}
.v2-pricing-card__amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: #0B0C0F;
    letter-spacing: -0.03em;
    line-height: 1;
}
.v2-pricing-card__period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}
.v2-pricing-card__billing {
    text-align: center;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Divider */
.v2-pricing-card__divider {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 1.5rem;
}

/* Feature list */
.v2-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.v2-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #334155;
    padding: 7px 0;
}
.v2-pricing-card__features li svg {
    flex-shrink: 0;
}
.v2-pricing-card__feature-highlight {
    font-weight: 600;
    color: #0B0C0F !important;
}

/* CTA button */
.v2-pricing-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.v2-pricing-card__cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ---------- COMPARISON TABLE ---------- */
.comparison-section {
    padding: 5rem 0;
    background: #fff;
}
.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.v2-comparison {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.v2-comparison thead th {
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
    background: #f8fafc;
    position: sticky;
    top: 0;
}
.v2-comparison__feature-col {
    text-align: left !important;
    min-width: 200px;
}
.v2-comparison__plugin-name {
    font-weight: 800;
    font-size: 0.9rem;
}
.v2-comparison tbody td {
    padding: 0.85rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.v2-comparison tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #0B0C0F;
}
.v2-comparison tbody td.check {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}
.v2-comparison tbody td.empty {
    color: #cbd5e1;
}
.v2-comparison__category td {
    background: #f8fafc;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b !important;
    padding: 0.65rem 1.25rem !important;
}
.v2-comparison tbody tr:hover td {
    background: rgba(37,99,235,0.02);
}
.v2-comparison tbody tr.v2-comparison__category:hover td {
    background: #f8fafc;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 0.75rem;
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B0C0F;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: var(--font-body, 'Inter', sans-serif);
}
.faq-item__question:hover {
    border-color: #2563eb;
    background: #fafcff;
}
.faq-item__question svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: #94a3b8;
}
.faq-item__question[aria-expanded="true"] {
    border-color: #2563eb;
    border-radius: 14px 14px 0 0;
    border-bottom: none;
    background: #fff;
}
.faq-item__question[aria-expanded="true"] svg {
    transform: rotate(180deg);
    color: #2563eb;
}
.faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid #2563eb;
    border-top: none;
    border-radius: 0 0 14px 14px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.75;
}
.faq-item__answer[aria-hidden="true"] {
    display: none;
}

/* ---------- DOCS HUB ---------- */
.docs-hub {
    padding: 3rem 0 4rem;
    background: #fff;
}
.docs-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Docs Plugin Card */
.docs-plugin-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.docs-plugin-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    border-color: var(--dp-accent, #2563eb);
}

.docs-plugin-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.75rem 1.75rem 0;
}
.docs-plugin-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.docs-plugin-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0B0C0F;
    margin: 0 0 2px;
}
.docs-plugin-card__tagline {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

/* Section groups */
.docs-plugin-card__sections {
    padding: 1.25rem 1.75rem;
}
.docs-section-group {
    margin-bottom: 1rem;
}
.docs-section-group:last-child {
    margin-bottom: 0;
}
.docs-section-group__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Doc links */
.docs-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.15s ease;
    margin: 0 -8px;
}
.docs-link:hover {
    background: var(--dp-bg, rgba(37,99,235,0.06));
    color: var(--dp-accent, #2563eb);
}
.docs-link svg {
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.15s;
}
.docs-link:hover svg {
    color: var(--dp-accent, #2563eb);
}

/* Card footer */
.docs-plugin-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.75rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8rem;
    color: #94a3b8;
}
.docs-plugin-card__link {
    color: var(--dp-accent, #2563eb);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
}
.docs-plugin-card__link:hover {
    opacity: 0.8;
}

/* ---------- DOCS SEARCH ---------- */
.docs-search {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 480px;
    margin: 2rem auto 0;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 0 20px;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.docs-search:focus-within {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.docs-search__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #0B0C0F;
    font-size: 0.95rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    padding: 14px 0;
}
.docs-search__input::placeholder {
    color: #94a3b8;
}

/* ---------- QUICKLINKS ---------- */
.docs-quicklinks {
    padding: 4rem 0 5rem;
    background: #f8fafc;
}
.docs-quicklinks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.docs-quicklink {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.docs-quicklink:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: #2563eb;
}
.docs-quicklink__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.docs-quicklink strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0B0C0F;
}
.docs-quicklink p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PLUGIN LANDING PAGE STYLES
   ============================================================ */

/* ---------- Hero Accent Variants ---------- */
.page-hero--crm .page-hero__decor--1 { background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%); }
.page-hero--crm .page-hero__decor--2 { background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%); }
.page-hero--loyalty .page-hero__decor--1 { background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%); }
.page-hero--loyalty .page-hero__decor--2 { background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%); }
.page-hero--seo .page-hero__decor--1 { background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%); }
.page-hero--seo .page-hero__decor--2 { background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%); }

.page-hero__icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(8px);
}
.page-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ---------- Trust Badges ---------- */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}
.trust-badge svg { flex-shrink: 0; }
.trust-badge--light { color: #64748b; }
.trust-badges--hero {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1.5rem;
}

/* ---------- Stats Bar (plugin pages) ---------- */
.plugin-stats {
    padding: 3.5rem 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}
.plugin-stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.plugin-stats__item {
    text-align: center;
    padding: 0 3rem;
}
.plugin-stats__number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0B0C0F;
    letter-spacing: -0.03em;
    line-height: 1;
}
.plugin-stats__number span { color: var(--plugin-accent, #2563eb); }
.plugin-stats__label {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 0.4rem;
    font-weight: 500;
}
.plugin-stats__divider {
    width: 1px;
    height: 44px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ---------- Problem/Solution Section ---------- */
.plugin-problem {
    padding: 5rem 0;
    background: #fff;
}
.plugin-problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.plugin-problem__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plugin-accent, #2563eb);
    margin-bottom: 0.75rem;
    background: var(--plugin-accent-light, rgba(37,99,235,0.08));
    padding: 6px 14px;
    border-radius: 9999px;
}
.plugin-problem__title {
    font-size: 2rem;
    font-weight: 800;
    color: #0B0C0F;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.plugin-problem__desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.plugin-problem__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plugin-problem__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    padding: 8px 0;
    line-height: 1.5;
}
.plugin-problem__list li svg { flex-shrink: 0; margin-top: 3px; }
.plugin-problem__mockup {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.plugin-problem__mockup-inner {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}
.plugin-problem__mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.plugin-problem__mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.plugin-problem__mockup-content {
    padding: 1.5rem;
}
.plugin-problem__mockup-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.plugin-problem__mockup-row:last-child { border-bottom: none; }
.plugin-problem__mockup-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}
.plugin-problem__mockup-line {
    height: 10px;
    border-radius: 4px;
    background: #e2e8f0;
}
.plugin-problem__mockup-badge {
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- Feature Grid (plugin pages) ---------- */
.plugin-features {
    padding: 5rem 0 6rem;
    background: #f8fafc;
}
.plugin-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.plugin-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.plugin-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: var(--plugin-accent, #2563eb);
}
.plugin-feature-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.plugin-feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.plugin-feature-card__desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

/* ---------- How It Works ---------- */
.plugin-steps {
    padding: 5rem 0;
    background: #fff;
}
.plugin-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.plugin-steps__grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}
.plugin-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.plugin-step__number {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.25rem;
    position: relative;
}
.plugin-step__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.plugin-step__desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* ---------- Screenshot Tabs ---------- */
.plugin-screenshots {
    position: relative;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
    padding: 5rem 0 6rem;
    color: #0B0C0F;
    overflow: hidden;
}
.screenshot-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.screenshot-tabs__btn {
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body, 'Inter', sans-serif);
}
.screenshot-tabs__btn:hover {
    color: #0B0C0F;
    background: rgba(255,255,255,0.9);
}
.screenshot-tabs__btn--active {
    color: #fff;
    background: #0B0C0F;
    border-color: #0B0C0F;
}
.screenshot-panel {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}
.screenshot-panel--active { display: block; }
.screenshot-panel__frame {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.screenshot-panel__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.screenshot-panel__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.screenshot-panel__content {
    padding: 2rem;
    min-height: 300px;
}
.screenshot-panel__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.screenshot-panel__stat {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}
.screenshot-panel__stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B0C0F;
    margin-bottom: 0.25rem;
}
.screenshot-panel__stat-label {
    font-size: 0.78rem;
    color: #64748b;
}
.screenshot-panel__table {
    width: 100%;
}
.screenshot-panel__table-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
}
.screenshot-panel__table-row:last-child { border-bottom: none; }
.screenshot-panel__table-avatar {
    width: 36px; height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
}
.screenshot-panel__table-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.88rem;
    color: #0B0C0F;
}
.screenshot-panel__table-meta {
    font-size: 0.8rem;
    color: #94a3b8;
}
.screenshot-panel__table-badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* ---------- Single Plugin Pricing ---------- */
.plugin-pricing {
    padding: 5rem 0;
    background: #f8fafc;
}
.plugin-pricing__card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--plugin-accent, #2563eb);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    text-align: center;
}
.plugin-pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.25rem;
}
.plugin-pricing__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0C0F;
    align-self: flex-start;
    margin-top: 0.35rem;
}
.plugin-pricing__amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0B0C0F;
    letter-spacing: -0.03em;
    line-height: 1;
}
.plugin-pricing__period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}
.plugin-pricing__billing {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}
.plugin-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}
.plugin-pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #334155;
    padding: 7px 0;
}
.plugin-pricing__features li svg { flex-shrink: 0; }
.plugin-pricing__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 1.25rem;
    font-weight: 500;
}

/* ---------- Bundle Card ---------- */
.bundle-section {
    padding: 4rem 0 5rem;
    background: #fff;
}
.bundle-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0B0C0F, #1a1b20);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bundle-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f59e0b;
    color: #0B0C0F;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 9999px;
}
.bundle-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.bundle-card__sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.bundle-card__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.bundle-card__plugin {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}
.bundle-card__plugin-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bundle-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}
.bundle-card__price {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.bundle-card__price strong {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}
.bundle-card__price del {
    color: rgba(255,255,255,0.35);
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

/* ============================================================
   DOCS ARTICLE PAGE STYLES
   ============================================================ */

/* ---------- Docs Article Layout ---------- */
.docs-article-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    padding: 3rem 0 5rem;
    align-items: start;
}

/* Docs Sidebar */
.docs-sidebar {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 1rem;
}
.docs-sidebar__back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.15s;
}
.docs-sidebar__back:hover { color: #0B0C0F; }
.docs-sidebar__section {
    margin-bottom: 1.5rem;
}
.docs-sidebar__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
}
.docs-sidebar__link {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    margin-left: -2px;
    transition: all 0.15s ease;
}
.docs-sidebar__link:hover {
    color: #0B0C0F;
    background: #f8fafc;
}
.docs-sidebar__link--active {
    color: var(--plugin-accent, #2563eb);
    font-weight: 600;
    border-left-color: var(--plugin-accent, #2563eb);
    background: var(--plugin-accent-light, rgba(37,99,235,0.06));
}

/* Docs Content */
.docs-content {
    min-width: 0;
}
.docs-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0B0C0F;
    margin: 3rem 0 1rem;
    padding-top: 1rem;
    letter-spacing: -0.02em;
}
.docs-content h2:first-child { margin-top: 0; padding-top: 0; }
.docs-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B0C0F;
    margin: 2rem 0 0.75rem;
}
.docs-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.docs-content ul, .docs-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.docs-content li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

/* Code blocks */
.code-block {
    position: relative;
    margin-bottom: 1.5rem;
}
.code-block pre {
    background: #0B0C0F;
    color: #e2e8f0;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
}
.code-block__copy {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body, 'Inter', sans-serif);
}
.code-block__copy:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.code-block__copy--success {
    color: #10b981 !important;
    border-color: rgba(16,185,129,0.3);
}

/* Inline code */
.docs-content code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: #e11d48;
}
.code-block code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Callout boxes */
.docs-callout {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    border-left: 4px solid;
}
.docs-callout strong {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.docs-callout--tip {
    background: rgba(16,185,129,0.06);
    border-left-color: #10b981;
    color: #065f46;
}
.docs-callout--warning {
    background: rgba(245,158,11,0.06);
    border-left-color: #f59e0b;
    color: #92400e;
}
.docs-callout--info {
    background: rgba(37,99,235,0.06);
    border-left-color: #2563eb;
    color: #1e40af;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .v2-pricing-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 760px;
    }
    .v2-pricing-card--featured {
        transform: none;
    }
    .v2-pricing-card--featured:hover {
        transform: translateY(-8px);
    }
    .docs-hub__grid {
        grid-template-columns: 1fr 1fr;
    }
    .plugin-features__grid {
        grid-template-columns: 1fr 1fr;
    }
    .plugin-problem__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .bundle-card__grid {
        grid-template-columns: 1fr 1fr;
    }
    .screenshot-panel__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--header-height, 64px) + 50px) 0 3rem;
    }
    .page-hero--short {
        padding: calc(var(--header-height, 64px) + 40px) 0 2.5rem;
    }
    .page-hero__title {
        font-size: 2.2rem;
    }
    .page-hero__sub {
        font-size: 1rem;
    }

    .v2-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .v2-pricing-card--featured {
        order: -1;
    }

    .comparison-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    .v2-comparison {
        font-size: 0.8rem;
    }
    .v2-comparison thead th,
    .v2-comparison tbody td {
        padding: 0.65rem 0.75rem;
    }

    .docs-hub__grid {
        grid-template-columns: 1fr;
    }

    .docs-quicklinks__grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-item__question {
        font-size: 0.88rem;
        padding: 1rem 1.25rem;
    }
    .plugin-features__grid {
        grid-template-columns: 1fr;
    }
    .plugin-stats__grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .plugin-stats__divider {
        width: 60px;
        height: 1px;
    }
    .plugin-stats__item { padding: 0; }
    .plugin-steps__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .plugin-steps__grid::before { display: none; }
    .docs-article-layout {
        grid-template-columns: 1fr;
    }
    .docs-sidebar {
        position: static;
        max-height: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        padding-right: 0;
    }
    .screenshot-panel__grid {
        grid-template-columns: 1fr;
    }
    .bundle-card__grid {
        grid-template-columns: 1fr;
    }
    .bundle-card__footer {
        flex-direction: column;
        text-align: center;
    }
    .trust-badges { gap: 1rem; }
    .page-hero__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .docs-quicklinks__grid {
        grid-template-columns: 1fr;
    }
    .pricing-toggle {
        gap: 8px;
    }
    .pricing-toggle__badge {
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }
}

/* ============================================================
   CONVERSION OPTIMIZATION COMPONENTS
   ============================================================ */

/* ---------- SOCIAL PROOF NOTIFICATION ---------- */
.social-proof {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 20px 14px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 340px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    pointer-events: none;
}
.social-proof--visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.social-proof__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.social-proof__body {
    flex: 1;
    min-width: 0;
}
.social-proof__text {
    font-size: 0.82rem;
    color: #334155;
    line-height: 1.4;
    margin: 0;
}
.social-proof__text strong { color: #0B0C0F; }
.social-proof__time {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 2px;
}
.social-proof__close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}
.social-proof__close:hover { color: #64748b; }
.social-proof__icon {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* ---------- EXIT-INTENT POPUP ---------- */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(11, 12, 15, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.exit-popup-overlay--visible { display: flex; }
.exit-popup {
    background: #fff;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
    animation: exitPopupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
@keyframes exitPopupIn {
    from { transform: scale(0.85) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.exit-popup__header {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    color: #fff;
}
.exit-popup__emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.exit-popup__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.exit-popup__sub {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}
.exit-popup__body {
    padding: 2rem;
    text-align: center;
}
.exit-popup__form {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}
.exit-popup__input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    outline: none;
    transition: border-color 0.2s;
}
.exit-popup__input:focus { border-color: #2563eb; }
.exit-popup__btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.2s, transform 0.2s;
    font-family: var(--font-body, 'Inter', sans-serif);
}
.exit-popup__btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.exit-popup__note {
    font-size: 0.78rem;
    color: #94a3b8;
}
.exit-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.exit-popup__close:hover { background: rgba(255,255,255,0.35); }

/* ---------- COUNTDOWN TIMER ---------- */
.countdown-bar {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    padding: 14px 0;
    text-align: center;
    color: #fff;
}
.countdown-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.countdown-bar__text {
    font-size: 0.9rem;
    font-weight: 600;
}
.countdown-bar__timer {
    display: flex;
    gap: 6px;
}
.countdown-bar__unit {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 44px;
    text-align: center;
}
.countdown-bar__num {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.countdown-bar__label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}
.countdown-bar__cta {
    display: inline-block;
    background: #fff;
    color: #ef4444;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.countdown-bar__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ---------- CUSTOMER LOGO BAR ---------- */
.logo-bar {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.logo-bar__label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}
.logo-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(1);
    transition: filter 0.3s, opacity 0.3s;
}
.logo-bar__grid:hover {
    opacity: 0.7;
    filter: grayscale(0.5);
}
.logo-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
}
.logo-bar__item svg { flex-shrink: 0; }

/* ---------- COMPETITOR COMPARISON ("WHY US") ---------- */
.why-us {
    padding: 5rem 0;
    background: #fff;
}
.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}
.why-us__col { }
.why-us__col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-us__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-us__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.why-us__list li:last-child { border-bottom: none; }
.why-us__list li svg { flex-shrink: 0; }
.why-us__col--us .why-us__list li { color: #0B0C0F; font-weight: 500; }
.why-us__col--others .why-us__list li { color: #94a3b8; }

/* ---------- LIVE CHAT WIDGET ---------- */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
}
.chat-widget__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.chat-widget__btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37,99,235,0.45);
}
.chat-widget__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 2px solid #fff;
    border-radius: 50%;
}
.chat-widget__tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: #0B0C0F;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}
.chat-widget__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 18px;
    border: 5px solid transparent;
    border-top-color: #0B0C0F;
}
.chat-widget__btn:hover + .chat-widget__badge ~ .chat-widget__tooltip,
.chat-widget:hover .chat-widget__tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- SECURITY BADGES (expanded) ---------- */
.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}
.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
}
.security-badge svg { flex-shrink: 0; color: #10b981; }

/* ---------- VIDEO DEMO SECTION ---------- */
.video-demo {
    padding: 5rem 0;
    background: #f8fafc;
}
.video-demo__player {
    max-width: 800px;
    margin: 0 auto;
    background: #0B0C0F;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.video-demo__play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s, background 0.3s;
}
.video-demo__player:hover .video-demo__play {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}
.video-demo__label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- RESPONSIVE: NEW COMPONENTS ---------- */
@media (max-width: 768px) {
    .social-proof { left: 12px; right: 12px; bottom: 80px; max-width: none; }
    .countdown-bar__inner { gap: 0.75rem; }
    .countdown-bar__unit { padding: 4px 6px; min-width: 36px; }
    .countdown-bar__num { font-size: 0.9rem; }
    .logo-bar__grid { gap: 1.5rem; }
    .logo-bar__item { font-size: 0.85rem; }
    .why-us__grid { grid-template-columns: 1fr; gap: 2rem; }
    .chat-widget__btn { width: 48px; height: 48px; }
    .exit-popup__form { flex-direction: column; }
    .security-badges { gap: 0.75rem; }
    .security-badge { padding: 6px 12px; font-size: 0.72rem; }
    .auth-card { padding: 2rem 1.25rem; }
    .auth-trust { flex-direction: column; align-items: center; }
}

/* ---------- AUTH PAGE ---------- */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: calc(var(--header-height, 72px) + 60px) 1.5rem 3rem;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 30%, #f8fbff 60%, #ffffff 100%);
}
/* When rendered inside WooCommerce shortcode wrapper */
.woocommerce .auth-section,
.entry__content .auth-section {
    margin: -2rem -1rem;
}
.auth-section > .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.auth-card {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem 3rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
@media (max-width: 600px) {
    .auth-card {
        padding: 2rem 1.5rem 1.5rem;
        max-width: 100%;
        border-radius: 12px;
    }
}
.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(37,99,235,0.08);
    border-radius: 14px;
    margin-bottom: 1rem;
}
.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0B0C0F;
    margin: 0 0 0.35rem;
}
.auth-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

/* Tabs */
.auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 1.5rem;
}
.auth-tab {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.auth-tab--active {
    background: #fff;
    color: #0B0C0F;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Form */
.auth-form--hidden { display: none !important; }
.auth-field { margin-bottom: 1rem; }
.auth-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
}
.auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}
.auth-hint {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.3rem;
}
.auth-input-wrap {
    position: relative;
}
.auth-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    overflow: visible;
}
.auth-input,
.auth-card input.auth-input,
.auth-card input[type="text"].auth-input,
.auth-card input[type="email"].auth-input,
.auth-card input[type="password"].auth-input {
    width: 100% !important;
    padding: 12px 16px 12px 48px !important;
    font-size: 0.88rem !important;
    font-family: 'Inter', sans-serif;
    color: #0B0C0F;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box !important;
}
.auth-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.auth-input::placeholder { color: #cbd5e1; }

/* Checkbox */
.auth-checkbox-row { margin-bottom: 1.25rem; }
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #475569;
    cursor: pointer;
    line-height: 1.4;
}
.auth-checkbox input { display: none; }
.auth-checkbox__mark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    position: relative;
    transition: all 0.15s;
    margin-top: 1px;
}
.auth-checkbox input:checked + .auth-checkbox__mark {
    background: #2563eb;
    border-color: #2563eb;
}
.auth-checkbox input:checked + .auth-checkbox__mark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Submit */
.auth-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: #94a3b8;
    font-size: 0.78rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Social button */
.auth-social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #334155;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.auth-social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Links */
.auth-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
}
.auth-link:hover { text-decoration: underline; }

/* Footer text */
.auth-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1.25rem;
}

/* Success */
.auth-success {
    text-align: center;
    padding: 2rem 0;
}
.auth-success__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B0C0F;
    margin: 1rem 0 0.35rem;
}
.auth-success__text {
    font-size: 0.88rem;
    color: #64748b;
}

/* Trust badges */
.auth-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.auth-trust__item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-mission__content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0B0C0F;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.about-mission__content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-mission__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.about-stat {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.about-stat__number {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.02em;
}
.about-stat__label {
    display: block;
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Values */
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.about-value {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
}
.about-value:hover {
    border-color: rgba(37,99,235,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.about-value__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #2563eb;
    background: #eff6ff;
}
.about-value__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.about-value__desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* Products */
.about-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.about-product {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
}
.about-product:hover {
    border-color: rgba(37,99,235,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.about-product__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.about-product h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.about-product p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.about-product__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
}
.about-product__link:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .about-mission { grid-template-columns: 1fr; gap: 2rem; }
    .about-values { grid-template-columns: 1fr; }
    .about-products { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-wrap h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.contact-form__intro {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form__field {
    margin-bottom: 1rem;
}
.contact-form__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0B0C0F;
    margin-bottom: 0.375rem;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #0B0C0F;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-card {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fbff;
}
.contact-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: #2563eb;
    background: rgba(37,99,235,0.1);
}
.contact-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.25rem;
}
.contact-card p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.contact-card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
}
.contact-card__link:hover { text-decoration: underline; }
.contact-card__meta {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.page-hero--compact {
    padding-bottom: 3rem;
}
.search-hero-form {
    max-width: 560px;
    margin: 1.5rem auto 0;
}
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 9999px;
    padding: 0.375rem 0.5rem 0.375rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.search-input-wrap svg {
    flex-shrink: 0;
    color: #94a3b8;
}
.search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: #0B0C0F;
    padding: 0.5rem 0;
    box-shadow: none !important;
}
.search-input-wrap input:focus {
    box-shadow: none !important;
}
.search-count {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.search-results {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.search-result {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}
.search-result:first-child {
    padding-top: 0;
}
.search-result__type {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2563eb;
    background: #eff6ff;
    padding: 2px 10px;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}
.search-result__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}
.search-result__title a {
    color: #0B0C0F;
}
.search-result__title a:hover {
    color: #2563eb;
}
.search-result__excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.search-result__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
}
.search-result__link:hover { text-decoration: underline; }

.search-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.search-pagination a,
.search-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.15s;
}
.search-pagination a:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}
.search-pagination .current {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* Search empty state */
.search-empty {
    text-align: center;
    padding: 3rem 0;
}
.search-empty__icon {
    color: #94a3b8;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}
.search-empty__icon svg {
    width: 48px;
    height: 48px;
}
.search-empty h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.search-empty p {
    font-size: 0.9375rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}
.search-empty__links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   LEGAL PAGES (Terms, Privacy, Refund)
   ============================================================ */
.legal-content {
    max-width: 100%;
}
.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0B0C0F;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.legal-content p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.375rem;
}
.legal-content a {
    color: #2563eb;
    font-weight: 500;
}
.legal-content a:hover { text-decoration: underline; }

/* Refund highlight box */
.refund-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #eff6ff;
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.refund-highlight__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
    background: rgba(37,99,235,0.1);
}
.refund-highlight h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0B0C0F;
    margin: 0 0 0.25rem;
}
.refund-highlight p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}
