/* Hero v2 + landing polish (imported via landing.css append) */

:root {
    --hero-v2-bg: #faf9f7;
    --hero-glass: rgba(255, 255, 255, 0.72);
    --hero-glass-border: rgba(255, 255, 255, 0.85);
    --hero-shadow: 0 32px 80px -24px rgba(53, 48, 48, 0.22);
    --hero-shadow-soft: 0 16px 48px -20px rgba(255, 87, 0, 0.25);
}

.g-xl-6 {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

.section-title {
    letter-spacing: -0.025em;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.hero-gradient-text {
    background: linear-gradient(120deg, #ff5700 0%, #ff8a3d 45%, #fbcd00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ——— Hero v2 ——— */

.hero-v2 {
    background: var(--hero-v2-bg);
    min-height: min(92vh, 920px);
    display: flex;
    align-items: center;
}

.hero-v2__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-v2__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(53, 48, 48, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53, 48, 48, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hero-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: hero-orb-drift 14s ease-in-out infinite alternate;
}

.hero-v2__orb--1 {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -120px;
    background: rgba(255, 87, 0, 0.28);
}

.hero-v2__orb--2 {
    width: 420px;
    height: 420px;
    bottom: -100px;
    left: -80px;
    background: rgba(251, 205, 0, 0.22);
    animation-delay: -4s;
}

.hero-v2__orb--3 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 42%;
    background: rgba(255, 138, 61, 0.15);
    animation-delay: -8s;
}

@keyframes hero-orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(24px, -18px) scale(1.06); }
}

.hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f5132;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(25, 135, 84, 0.2);
    box-shadow: 0 4px 20px rgba(25, 135, 84, 0.08);
    backdrop-filter: blur(8px);
}

.hero-v2__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #198754;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.2);
    animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.92); }
}

.hero-v2__kicker {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 0;
}

.hero-v2__title {
    font-size: clamp(2.1rem, 4.8vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--brand-dark);
    max-width: 14ch;
}

.site-body--ar .hero-v2__title {
    max-width: none;
}

.hero-v2__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--site-muted);
    max-width: 34rem;
}

.hero-v2__cta-primary {
    background: linear-gradient(135deg, #ff6a1a 0%, #ff5700 50%, #e04d00 100%);
    border: none;
    box-shadow: 0 10px 32px rgba(255, 87, 0, 0.38);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-v2__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 87, 0, 0.45);
    background: linear-gradient(135deg, #ff7729 0%, #ff6214 100%);
}

.hero-v2__cta-secondary {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--site-border);
    color: var(--site-text);
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-v2__cta-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 87, 0, 0.35);
    box-shadow: var(--shadow-soft);
    color: var(--site-text);
    background: #fff;
}

.hero-v2__metric {
    padding: 0.85rem 0.65rem;
    text-align: center;
    border-radius: 1rem;
    background: var(--hero-glass);
    border: 1px solid var(--hero-glass-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(53, 48, 48, 0.04);
}

.hero-v2__metric strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--site-accent);
    line-height: 1.2;
}

.hero-v2__metric span {
    display: block;
    font-size: 0.6875rem;
    color: var(--site-muted);
    line-height: 1.3;
    margin-top: 0.15rem;
}

.hero-v2__footnote {
    font-size: 0.8125rem;
    color: var(--site-muted);
}

.hero-v2__footnote i {
    color: #198754;
}

/* Product preview */

.hero-v2__preview {
    position: relative;
    perspective: 1200px;
}

.hero-v2__browser {
    position: relative;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--hero-shadow), var(--hero-shadow-soft);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.hero-v2__preview:hover .hero-v2__browser {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.hero-v2__browser-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, #f8f7f6 0%, #f0eeeb 100%);
    border-bottom: 1px solid var(--site-border);
}

.hero-v2__browser-dots {
    display: flex;
    gap: 0.35rem;
}

.hero-v2__browser-dots i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.hero-v2__browser-dots i:nth-child(1) { background: #ff5f57; }
.hero-v2__browser-dots i:nth-child(2) { background: #febc2e; }
.hero-v2__browser-dots i:nth-child(3) { background: #28c840; }

.hero-v2__browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: var(--site-muted);
    background: #fff;
    border: 1px solid var(--site-border);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-v2__browser-url i {
    color: #198754;
    font-size: 0.65rem;
}

.hero-v2__browser-live {
    display: none;
    font-size: 0.65rem;
    font-weight: 600;
    color: #198754;
    white-space: nowrap;
}

.hero-v2__browser-live i {
    font-size: 0.4rem;
    margin-right: 0.25rem;
}

@media (min-width: 576px) {
    .hero-v2__browser-live {
        display: inline-flex;
        align-items: center;
    }
}

.hero-v2__browser-tabs {
    display: flex;
    gap: 0.35rem;
    padding: 0.65rem 1rem 0;
    background: #fff;
    border-bottom: 1px solid var(--site-border);
}

.hero-v2__tab {
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-muted);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: color 0.15s ease, background 0.15s ease;
}

.hero-v2__tab.active {
    color: var(--site-accent);
    background: rgba(255, 87, 0, 0.08);
}

.hero-v2__screen {
    position: relative;
    min-height: 320px;
    background: #fff;
}

.hero-v2__pane {
    display: none;
    padding: 1rem;
    animation: hero-pane-in 0.35s ease;
}

.hero-v2__pane.active {
    display: block;
}

@keyframes hero-pane-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Storefront mock */

.hero-v2__store-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.hero-v2__store-logo {
    width: 72px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow));
}

.hero-v2__store-links {
    display: flex;
    gap: 0.35rem;
}

.hero-v2__store-links i {
    display: block;
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: #eceae7;
}

.hero-v2__store-cart {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(255, 87, 0, 0.1);
    color: var(--site-accent);
    font-size: 0.9rem;
}

.hero-v2__store-hero {
    padding: 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255, 87, 0, 0.12) 0%, rgba(251, 205, 0, 0.1) 100%);
    border: 1px solid rgba(255, 87, 0, 0.12);
}

.hero-v2__store-kicker {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--site-accent);
    margin-bottom: 0.35rem;
}

.hero-v2__store-hero h2 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--brand-dark);
}

.hero-v2__store-cta {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    color: #fff;
    background: var(--site-accent);
}

.hero-v2__store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero-v2__product {
    padding: 0.65rem;
    border-radius: 0.85rem;
    border: 1px solid var(--site-border);
    background: #fafafa;
}

.hero-v2__product-img {
    height: 72px;
    border-radius: 0.65rem;
    margin-bottom: 0.5rem;
}

.hero-v2__product-img--1 {
    background: linear-gradient(145deg, #ffe8dc, #ffd4b8);
}

.hero-v2__product-img--2 {
    background: linear-gradient(145deg, #fff3cc, #fbcd00);
}

.hero-v2__product strong {
    display: block;
    font-size: 0.75rem;
    color: var(--site-text);
}

.hero-v2__product span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--site-accent);
}

/* Panel mock */

.hero-v2__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.hero-v2__panel-head strong {
    font-size: 0.875rem;
}

.hero-v2__panel-live {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #198754;
}

.hero-v2__panel-live i {
    font-size: 0.4rem;
    margin-right: 0.2rem;
}

.hero-v2__panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.hero-v2__panel-stat {
    padding: 0.65rem;
    border-radius: 0.75rem;
    background: #f8f7f6;
    border: 1px solid var(--site-border);
}

.hero-v2__panel-stat--accent {
    background: rgba(255, 87, 0, 0.08);
    border-color: rgba(255, 87, 0, 0.15);
}

.hero-v2__panel-stat span {
    display: block;
    font-size: 0.625rem;
    color: var(--site-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-v2__panel-stat strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.hero-v2__panel-stat--accent strong {
    color: var(--site-accent);
}

.hero-v2__panel-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 64px;
    padding: 0.5rem 0.25rem;
    margin-bottom: 0.85rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
    border: 1px solid var(--site-border);
}

.hero-v2__panel-chart span {
    flex: 1;
    height: var(--h);
    border-radius: 0.25rem 0.25rem 0 0;
    background: linear-gradient(180deg, rgba(255, 87, 0, 0.85), rgba(255, 87, 0, 0.35));
    min-height: 12px;
}

.hero-v2__panel-rows {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-v2__panel-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    background: #f8f7f6;
    border: 1px solid var(--site-border);
}

.hero-v2__panel-row span:last-child {
    font-weight: 700;
    color: var(--site-accent);
    text-align: end;
}

/* Floating cards */

.hero-v2__float {
    position: absolute;
    z-index: 3;
    border-radius: 1rem;
    background: var(--hero-glass);
    border: 1px solid var(--hero-glass-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(53, 48, 48, 0.12);
    animation: hero-float-card 5s ease-in-out infinite;
}

.hero-v2__float--order {
    top: 6%;
    left: -4%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    max-width: 220px;
}

.hero-v2__float--order strong {
    display: block;
    font-size: 0.75rem;
    color: var(--site-text);
}

.hero-v2__float--order span {
    font-size: 0.6875rem;
    color: var(--site-muted);
}

.hero-v2__float-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    flex-shrink: 0;
}

.hero-v2__float--revenue {
    bottom: 8%;
    right: -3%;
    padding: 0.75rem 1rem;
    animation-delay: 1.2s;
}

.hero-v2__float-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--site-muted);
}

.hero-v2__float--revenue strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--site-accent);
}

.hero-v2__float--revenue small {
    font-size: 0.75rem;
    font-weight: 600;
}

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

@media (max-width: 991.98px) {
    .hero-v2 {
        min-height: auto;
    }

    .hero-v2__browser {
        transform: none;
    }

    .hero-v2__preview:hover .hero-v2__browser {
        transform: translateY(-2px);
    }

    .hero-v2__float--order {
        left: 0;
        top: -1rem;
    }

    .hero-v2__float--revenue {
        right: 0;
        bottom: -1rem;
    }

    .hero-v2__title {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .hero-v2__float {
        display: none;
    }
}

/* Trust bar */

.hero-v2__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.25rem;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid rgba(53, 48, 48, 0.06);
    margin-top: 0.5rem;
}

.hero-v2__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--site-muted);
}

.hero-v2__trust-item i {
    color: var(--site-accent);
    font-size: 0.9rem;
}

/* Why bento */

.why-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.why-bento__item {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: var(--hero-glass);
    border: 1px solid var(--hero-glass-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(53, 48, 48, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-bento__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(255, 87, 0, 0.2);
}

.why-bento__item--1 {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(255, 87, 0, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.why-bento__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--site-accent);
    background: rgba(255, 87, 0, 0.12);
}

@media (max-width: 991.98px) {
    .why-bento {
        grid-template-columns: 1fr 1fr;
    }

    .why-bento__item--1 {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .why-bento {
        grid-template-columns: 1fr;
    }

    .why-bento__item--1 {
        grid-column: span 1;
    }
}

/* Value strip v2 */

.value-strip-v2 {
    background: linear-gradient(180deg, #fff 0%, var(--site-bg) 100%);
    border-bottom: 1px solid var(--site-border);
}

.value-strip-v2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.value-strip-v2__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid var(--site-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-strip-v2__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(53, 48, 48, 0.06);
}

.value-strip-v2__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--site-accent);
    background: rgba(255, 87, 0, 0.1);
}

.value-strip-v2__item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--site-text);
    margin-bottom: 0.15rem;
}

.value-strip-v2__item span {
    font-size: 0.8125rem;
    color: var(--site-muted);
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .value-strip-v2__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .value-strip-v2__grid {
        grid-template-columns: 1fr;
    }
}
