/* Landing — Brackets SaaS marketing site (brand: orange #FF5700 · gold #FBCD00 · charcoal #353030) */

:root {
    --brand-orange: #ff5700;
    --brand-yellow: #fbcd00;
    --brand-dark: #353030;
    --site-bg: #f8f7f6;
    --site-surface: #ffffff;
    --site-accent: var(--brand-orange);
    --site-accent-hover: #e04d00;
    --site-text: #333333;
    --site-muted: #666666;
    --site-border: rgba(53, 48, 48, 0.1);
    --hero-gradient: linear-gradient(145deg, #fff8f0 0%, #fffefb 45%, #ffffff 100%);
    --shadow-soft: 0 18px 50px -12px rgba(53, 48, 48, 0.12);
    --bs-primary: #ff5700;
    --bs-primary-rgb: 255, 87, 0;
    --site-header-height: 3.75rem;
}

.site-body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--site-text);
    background: var(--site-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    scroll-padding-top: var(--site-header-height);
}

.site-body:has(> .site-header.fixed-top) > main {
    padding-top: var(--site-header-height);
}

.site-body--ar {
    font-family: "Tajawal", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

.auth-body {
    background: linear-gradient(180deg, #f0f4f8 0%, var(--site-bg) 45%, #e8eef5 100%);
}

.auth-shell {
    max-width: 100%;
}

.auth-card {
    border: 1px solid var(--site-border) !important;
}

.input-group-lg .password-toggle {
    min-width: 3rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.input-group-lg .password-toggle:focus {
    z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
    .site-body {
        scroll-behavior: auto;
    }
}

.site-header.fixed-top {
    z-index: 1030;
    width: 100%;
}

.site-header .navbar {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.88) !important;
    --bs-navbar-padding-y: 0.35rem;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header--glass .navbar {
    border-bottom-color: rgba(53, 48, 48, 0.06) !important;
}

@media (min-width: 768px) {
    .site-header .navbar {
        --bs-navbar-padding-y: 0.5rem;
    }
}

/* Mobile / tablet: logo centered in header row; menu toggler at inline-end */
@media (max-width: 991.98px) {
    .site-header .navbar > .site-header-inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-items: center;
    }

    .site-header .navbar-brand {
        grid-row: 1;
        grid-column: 1;
        justify-self: center;
        align-self: center;
        margin: 0 !important;
        z-index: 1;
    }

    .site-header .navbar-toggler {
        grid-row: 1;
        grid-column: 1;
        justify-self: end;
        align-self: center;
        z-index: 2;
    }

    .site-header .navbar-collapse {
        grid-row: 2;
        grid-column: 1;
        width: 100%;
    }

    .site-header .site-header-logo {
        object-position: center center;
    }

    .site-body--ar .site-header .navbar-toggler {
        justify-self: start;
    }
}

@media (min-width: 992px) {
    .site-header .navbar-brand {
        position: static;
        transform: none;
        margin-right: 0;
        margin-left: 0;
    }
}

.letter-spacing {
    letter-spacing: 0.08em;
}

.hero-section {
    background: var(--hero-gradient);
}

/* Legacy hero helpers (auth/subscribe pages) */
.hero-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    box-shadow: var(--shadow-soft);
}

.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 87, 0, 0.1);
    color: var(--site-accent);
    font-size: 1.25rem;
}

.section-alt {
    background: var(--site-surface);
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.section-muted {
    background: linear-gradient(180deg, #f1f5f9 0%, var(--site-bg) 100%);
    border-top: 1px solid var(--site-border);
}

.section-intro {
    max-width: 640px;
}

.value-strip {
    background: var(--site-surface);
}

.value-strip-icon {
    font-size: 1.35rem;
    color: var(--site-accent);
}

.value-strip-item strong {
    color: var(--site-text);
}

.split-panel {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border-color: var(--site-border) !important;
}

.split-panel--accent {
    border-color: rgba(255, 87, 0, 0.28) !important;
    background: linear-gradient(160deg, #ffffff 0%, #fff8f0 100%) !important;
}

.split-panel-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    background: rgba(15, 23, 42, 0.06);
    color: var(--site-text);
}

.split-panel-badge--accent {
    background: rgba(255, 87, 0, 0.12);
    color: var(--site-accent);
}

.platform-list li {
    position: relative;
    padding-left: 0.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.925rem;
    color: var(--site-muted);
    line-height: 1.5;
}

.platform-list li:last-child {
    margin-bottom: 0;
}

.platform-list li i {
    margin-right: 0.5rem;
    vertical-align: -0.1em;
}

.growth-mini {
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.growth-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.how-steps {
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--site-border) !important;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 87, 0, 0.12);
    color: var(--site-accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.cta-band {
    background: linear-gradient(135deg, #353030 0%, #ff5700 52%, #fbcd00 100%);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 255, 255, 0.12), transparent);
    pointer-events: none;
}

.cta-band .container {
    position: relative;
    z-index: 1;
}

.pricing-features li {
    line-height: 1.45;
}

.section-models {
    background: linear-gradient(180deg, var(--site-bg) 0%, #eef2f7 50%, var(--site-bg) 100%);
    border-bottom: 1px solid var(--site-border);
}

.model-card {
    border-color: var(--site-border) !important;
    box-shadow: 0 6px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.model-card--accent {
    border-color: rgba(255, 87, 0, 0.3) !important;
    background: linear-gradient(165deg, #ffffff 0%, #fff8f0 100%) !important;
}

.model-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 87, 0, 0.1);
    color: var(--site-accent);
    font-size: 1.15rem;
}

.model-card-icon--accent {
    background: rgba(255, 87, 0, 0.18);
}

.model-list li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.6rem;
    line-height: 1.55;
}

.model-list li:last-child {
    margin-bottom: 0;
}

.model-bullet {
    color: var(--site-accent);
    font-weight: 700;
    margin-right: 0.35rem;
}

.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-color: var(--site-border) !important;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 87, 0, 0.08);
    color: var(--site-accent);
    font-size: 1.2rem;
}

.pricing-section {
    background: linear-gradient(180deg, var(--site-bg) 0%, #eef2f7 100%);
}

.billing-toggle {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--site-border);
}

.billing-toggle .btn {
    border: none;
    color: var(--site-muted);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.billing-toggle .btn:hover,
.billing-toggle .btn:focus-visible {
    color: var(--site-text);
}

.billing-toggle .btn.active {
    background: var(--site-surface);
    color: var(--site-accent);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.billing-toggle .btn:focus-visible {
    outline: 2px solid var(--site-accent);
    outline-offset: 2px;
}

.pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-color: var(--site-border) !important;
}

.pricing-card:hover {
    transform: translateY(-2px);
}

.pricing-card-featured {
    z-index: 1;
}

@media (min-width: 992px) {
    .pricing-plans-row {
        --bs-gutter-x: 1rem;
    }

    .pricing-section .pricing-card-desc {
        min-height: 3.25rem;
    }

    .pricing-section .pricing-card-price {
        font-size: clamp(1.35rem, 1.5vw, 1.75rem);
    }

    .pricing-section .pricing-features {
        font-size: 0.8125rem;
    }

    .pricing-section .pricing-features li {
        line-height: 1.4;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 991.98px) {
    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-2px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .pricing-section .pricing-card .card-body {
        padding: 1rem !important;
    }

    .pricing-section .pricing-card-price {
        font-size: 1.35rem;
    }
}

.site-footer {
    background: var(--site-surface);
    margin-top: auto;
}

.site-footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: var(--site-muted);
    background: transparent;
    border: 1px solid var(--site-border);
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.site-footer-social-btn:hover {
    color: var(--site-accent);
    border-color: var(--site-accent);
    background: rgba(255, 87, 0, 0.08);
}

a.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--site-accent);
    outline-offset: 2px;
}

/* Feature comparison tables (Vondera-style clarity) */
.compare-table-wrap {
    border-color: var(--site-border) !important;
}

.compare-table {
    --compare-sticky-bg: var(--site-surface);
    font-size: 0.9rem;
}

.compare-table thead th {
    vertical-align: middle;
    padding: 1rem 0.75rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--site-border);
    font-weight: 600;
    font-size: 0.85rem;
}

.compare-table tbody th {
    font-weight: 500;
    text-align: start;
    padding: 0.85rem 1rem;
    background: var(--compare-sticky-bg);
    border-color: var(--site-border);
    min-width: 11rem;
}

.compare-table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    border-color: var(--site-border);
}

.compare-table tbody tr:nth-child(even) th,
.compare-table tbody tr:nth-child(even) td {
    background: rgba(248, 250, 252, 0.85);
}

.compare-table tbody tr:nth-child(even) th {
    --compare-sticky-bg: #f8fafc;
}

.compare-plan-col {
    min-width: 6.5rem;
}

.compare-table-two-plan .compare-plan-col {
    min-width: 8.5rem;
}

.compare-agent-note {
    background: rgba(255, 87, 0, 0.05) !important;
}

.trial-badge {
    color: #0f5132;
    background: rgba(25, 135, 84, 0.12);
    border: 1px solid rgba(25, 135, 84, 0.25);
}

.trial-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(25, 135, 84, 0.15);
    color: #146c43;
    font-size: 1.2rem;
}

.compare-plan-col-highlight {
    background: rgba(255, 87, 0, 0.09) !important;
    color: var(--site-accent);
}

.compare-highlight-cell {
    background: rgba(255, 87, 0, 0.05) !important;
}

@media (min-width: 768px) {
    .compare-table-wrap .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-feature-col,
    .compare-table tbody th[scope="row"] {
        position: sticky;
        left: 0;
        z-index: 2;
        box-shadow: 4px 0 12px -6px rgba(15, 23, 42, 0.12);
    }
}

.compare-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
}

.compare-icon--yes {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

.compare-icon--no {
    background: rgba(100, 116, 139, 0.1);
    color: var(--site-muted);
}

.compare-partial {
    font-size: 0.8rem;
}

.faq-accordion .accordion-button {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 87, 0, 0.07);
    color: var(--site-accent);
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 1.25rem 1.25rem;
}

/* Brand lockups */
.site-header-logo,
.auth-header-logo {
    display: block;
    height: 34px;
    width: auto;
    max-width: min(220px, 55vw);
    object-fit: contain;
    object-position: left center;
}

.site-body--ar .site-header-logo,
.site-body--ar .auth-header-logo {
    object-position: right center;
}

/* Primary actions — orange → deep orange (matches logo gradient feel) */
.btn-primary {
    --bs-btn-bg: #ff5700;
    --bs-btn-border-color: #ff5700;
    --bs-btn-hover-bg: #e04d00;
    --bs-btn-hover-border-color: #cc4500;
    --bs-btn-active-bg: #cc4500;
    --bs-btn-active-border-color: #b33d00;
    background: linear-gradient(180deg, #ff6a1a 0%, #ff5700 55%, #e04d00 100%);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ff7a33 0%, #ff6214 100%);
}

.text-primary {
    color: var(--brand-orange) !important;
}

.site-footer-logo {
    height: 28px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.92;
}

@media (max-width: 767.98px) {
    :root {
        --site-header-height: 3.25rem;
    }

    .site-header-logo,
    .auth-header-logo {
        height: 28px;
        max-width: min(210px, 70vw);
    }

    .site-header .navbar-toggler {
        padding: 0.2rem 0.45rem;
    }

    .auth-header .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.75rem !important;
    }

    .auth-header-logo {
        object-position: center center;
    }
}

@media (max-width: 575.98px) {
    .site-header-logo,
    .auth-header-logo {
        height: 26px;
        max-width: min(200px, 68vw);
    }

    .site-header .navbar-collapse .nav-link {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
}

/* Register — compact card (less visual weight than large “lg” fields) */
.auth-register-compact {
    max-width: 23rem;
}

.auth-register-compact .card-body {
    padding: 1rem 1.125rem;
}

@media (min-width: 576px) {
    .auth-register-compact .card-body {
        padding: 1.125rem 1.35rem;
    }
}

.auth-register-compact__lead {
    font-size: 0.8125rem;
    line-height: 1.35;
}

.auth-register-compact__hint {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.auth-register-compact .form-control {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    font-size: 0.9375rem;
}

.auth-register-compact .input-group .password-toggle.auth-register-compact__eye {
    min-width: 2.5rem;
    padding: 0.35rem 0.5rem;
}

.auth-register-compact .input-group .password-toggle.auth-register-compact__eye:focus {
    z-index: 3;
}

.auth-register-compact .btn-check:checked + .btn {
    background: linear-gradient(180deg, #ff6a1a 0%, #ff5700 55%, #e04d00 100%);
    border-color: #ff5700;
    color: #fff;
}

/* Subscribe / billing checkout */
.subscribe-page--checkout {
    background: var(--hero-gradient);
    min-height: auto;
}

.subscribe-checkout {
    max-width: 960px;
}

.subscribe-checkout__kicker {
    letter-spacing: 0.14em;
    font-size: 0.6875rem;
}

.subscribe-checkout__title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.subscribe-checkout__lead {
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 36rem;
}

.subscribe-checkout__lead strong {
    color: var(--site-text);
    font-weight: 650;
}

.subscribe-checkout__shell {
    background: var(--site-surface);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--site-border) !important;
}

.subscribe-checkout__aside {
    background: linear-gradient(
        165deg,
        rgba(255, 87, 0, 0.07) 0%,
        rgba(251, 205, 0, 0.05) 42%,
        rgba(248, 247, 246, 0.95) 100%
    );
    border-bottom: 1px solid var(--site-border);
}

@media (min-width: 992px) {
    .subscribe-checkout__aside {
        border-bottom: none;
        border-inline-end: 1px solid var(--site-border);
    }
}

.subscribe-checkout__plan-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.35rem;
    background: rgba(255, 87, 0, 0.12);
    color: var(--site-accent);
}

.subscribe-billing-desc {
    line-height: 1.5;
}

.subscribe-checkout__price {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--site-border);
    backdrop-filter: blur(6px);
}

.subscribe-checkout__price-num {
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.subscribe-checkout__main .form-label {
    color: var(--site-text);
}

.subscribe-billing-card .form-control-lg {
    border-radius: 0.65rem;
    border-color: rgba(53, 48, 48, 0.12);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    font-size: 1rem;
}

.subscribe-billing-card .form-control-lg:focus {
    border-color: rgba(255, 87, 0, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 0, 0.12);
}

.subscribe-billing-card .input-group-lg > .form-control {
    min-height: calc(1.5em + 1.3rem + 2px);
}

.subscribe-billing-card .input-group-lg .subscribe-checkout__eye {
    min-width: 3rem;
    padding: 0.5rem 0.75rem;
}

.subscribe-billing-card .input-group-lg .subscribe-checkout__eye:focus {
    z-index: 3;
}

.subscribe-checkout__due {
    background: linear-gradient(180deg, rgba(255, 87, 0, 0.07) 0%, rgba(248, 247, 246, 0.9) 100%);
    border: 1px solid rgba(255, 87, 0, 0.18);
}

.subscribe-checkout__hint {
    line-height: 1.5;
}

.subscribe-checkout__submit {
    background: linear-gradient(180deg, #ff6a1a 0%, #ff5700 52%, #e04d00 100%);
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 6px 20px rgba(255, 87, 0, 0.32);
}

.subscribe-checkout__submit:hover {
    background: linear-gradient(180deg, #ff7729 0%, #e04d00 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(255, 87, 0, 0.38);
}

.subscribe-checkout__submit:active {
    transform: translateY(0);
}

.billing-toggle a.btn {
    text-decoration: none;
}

.payment-result-page {
    background: linear-gradient(180deg, var(--site-bg) 0%, #eef2f7 100%);
    min-height: 70vh;
}

.payment-result-page--success {
    background: linear-gradient(180deg, rgba(25, 135, 84, 0.06) 0%, var(--site-bg) 45%, #eef2f7 100%);
}

.payment-result-page--failed {
    background: linear-gradient(180deg, rgba(220, 53, 69, 0.06) 0%, var(--site-bg) 45%, #eef2f7 100%);
}

.payment-result-page--process {
    background: linear-gradient(180deg, var(--site-bg) 0%, #e8ecf4 100%);
}

.payment-result-icon {
    width: 5rem;
    height: 5rem;
    font-size: 2.25rem;
}

.payment-result-icon--success {
    background: rgba(25, 135, 84, 0.15);
    color: #198754;
}

.payment-result-icon--failed {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.payment-result-lead {
    max-width: 420px;
}

.payment-process-card {
    border: 1px solid var(--site-border) !important;
}

.payment-process-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
    background: rgba(255, 87, 0, 0.1);
    color: var(--site-accent);
}

/* ——— Redesigned landing (v15) ——— */

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.section-kicker::before {
    content: "";
    width: 1.5rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow));
}

.section-kicker--light {
    color: rgba(255, 255, 255, 0.85);
}

.section-kicker--light::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(251, 205, 0, 0.7));
}

.landing-section .value-strip-v2__item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(53, 48, 48, 0.05);
}

.landing-section .why-bento__item {
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(53, 48, 48, 0.06);
}

.landing-section .why-bento__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -16px rgba(255, 87, 0, 0.15);
    border-color: rgba(255, 87, 0, 0.18) !important;
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.45;
}

.hero-glow--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -60px;
    background: rgba(255, 87, 0, 0.25);
}

.hero-glow--2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    left: -80px;
    background: rgba(251, 205, 0, 0.2);
}

.hero-title {
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 36rem;
}

.shadow-primary {
    box-shadow: 0 8px 28px rgba(255, 87, 0, 0.35);
}

.hero-stat {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.hero-visual {
    min-height: 420px;
}

.hero-visual-card--main {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
}

.hero-visual-float {
    position: absolute;
    z-index: 2;
    animation: hero-float 4s ease-in-out infinite;
}

.hero-visual-float--stats {
    top: 8%;
    left: -8%;
}

.hero-visual-float--revenue {
    bottom: 12%;
    right: -6%;
    animation-delay: 1.5s;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
    .hero-visual-float {
        display: none;
    }

    .hero-visual {
        min-height: auto;
    }
}

.section-why {
    background: var(--site-surface);
    border-bottom: 1px solid var(--site-border);
}

.why-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-color: var(--site-border) !important;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.why-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--site-accent);
    background: rgba(255, 87, 0, 0.1);
}

.model-card-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.site-body--ar .model-card-ribbon {
    right: auto;
    left: 1rem;
}

.stack-card {
    border-color: var(--site-border) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stack-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.stack-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
    color: var(--site-accent);
    background: rgba(255, 87, 0, 0.1);
}

.stack-badge {
    font-size: 0.75rem;
    font-weight: 500 !important;
}

.crm-card {
    border-color: var(--site-border) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crm-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.crm-card-icon {
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
    color: var(--site-accent);
    background: rgba(255, 87, 0, 0.1);
}

.step-num--lg {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
}

.section-affiliate {
    background: linear-gradient(145deg, #353030 0%, #2a2525 40%, #353030 100%);
    position: relative;
    overflow: hidden;
}

.section-affiliate::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 20% 30%, rgba(255, 87, 0, 0.18) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(251, 205, 0, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.section-affiliate .container {
    position: relative;
    z-index: 1;
}

.affiliate-panel {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.affiliate-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: var(--site-muted);
    line-height: 1.5;
}

.affiliate-list li i {
    position: absolute;
    left: 0;
    top: 0.15rem;
}

.site-body--ar .affiliate-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

.site-body--ar .affiliate-list li i {
    left: auto;
    right: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-v2__orb,
    .hero-v2__float,
    .hero-v2__badge-dot {
        animation: none !important;
    }
}
