/* ================================================================
   EGOTALLY — home.css
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    padding: 80px 0 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -200px;
    width: 780px;
    height: 780px;
    background: radial-gradient(
        circle,
        rgba(255, 116, 108, 0.07) 0%,
        transparent 62%
    );
    pointer-events: none;
    z-index: 0;
}
.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-xs);
    border: 1px solid rgba(255, 116, 108, 0.2);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 22px;
}
.hero-kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: kdot 2.5s ease-in-out infinite;
}

@keyframes kdot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    color: var(--ink);
    margin-bottom: 22px;
}
.hero-headline em {
    font-style: normal;
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-headline em::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.22;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--ink-2);
    line-height: 1.8;
    max-width: 510px;
    margin-bottom: 22px;
}

/* AI badge in hero */
.hero-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 63, 0.07) 0%,
        rgba(255, 116, 108, 0.08) 100%
    );
    border: 1px solid rgba(30, 30, 63, 0.12);
    border-radius: var(--r-pill);
    padding: 7px 16px;
    margin-bottom: 28px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary);
}
.hero-ai-badge-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-ai-badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}
.hero-ai-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: kdot 2s ease-in-out infinite;
}

.hero-actions {
    margin-bottom: 46px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hs-val {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
}
.hs-lbl {
    font-size: 0.8rem;
    color: var(--ink-3);
    margin-top: 3px;
}

/* ── Phone mockup ──────────────────────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 20px;
    position: relative;
}
.phone-wrap {
    position: relative;
    width: 258px;
    filter: drop-shadow(0 36px 64px rgba(11, 11, 26, 0.22));
}
.phone-shell {
    border: 2px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.phone-screen-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #f4f4fb 0%, #ebebf7 100%);
    padding: 44px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.psp-slab {
    background: rgba(30, 30, 63, 0.09);
    border-radius: 7px;
    flex-shrink: 0;
}
.psp-header {
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    margin-bottom: 4px;
}
.psp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.psp-grid-item {
    height: 68px;
    border-radius: 12px;
    background: rgba(30, 30, 63, 0.07);
}

.phone-badge {
    position: absolute;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 10px 14px;
    box-shadow: 0 8px 28px rgba(11, 11, 26, 0.13);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    border: 1px solid var(--border-xs);
    z-index: 10;
}
.pb-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.pb-val {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.pb-lbl {
    font-size: 0.68rem;
    color: var(--ink-3);
    margin-top: 2px;
}

.badge-a {
    left: -52px;
    top: 22%;
    animation: floatA 3.8s ease-in-out infinite;
}
.badge-b {
    right: -46px;
    top: 46%;
    animation: floatB 4.4s ease-in-out infinite;
}
.badge-c {
    left: -44px;
    bottom: 20%;
    animation: floatA 5s ease-in-out infinite reverse;
}

@keyframes floatA {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
@keyframes floatB {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
    padding: 26px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border-xs);
    border-bottom: 1px solid var(--border-xs);
}
.trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    flex-shrink: 0;
}
.trust-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-4);
    white-space: nowrap;
}
.trust-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-logo {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: -0.01em;
    user-select: none;
}

.trust-logo:hover {
    color: var(--ink-4);
}

/* ================================================================
   SCROLLING HAPPY MEMBERS SECTION
   ================================================================ */
.happy-section {
    padding: 88px 0;
    background: var(--bg-2);
    overflow: hidden;
}
.happy-section .section-head {
    margin-bottom: 52px;
}
.happy-section h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

/* Track + cards */
.scroll-track-wrapper {
    position: relative;
    overflow: hidden;
}
/* fade edges */
.scroll-track-wrapper::before,
.scroll-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.scroll-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-2), transparent);
}
.scroll-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-2), transparent);
}

.scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 28s linear infinite;
    will-change: transform;
}
.scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Individual member card */
.member-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 26px;
    width: 280px;
    flex-shrink: 0;
    transition:
        box-shadow 0.22s var(--ease),
        border-color 0.22s,
        transform 0.22s var(--ease);
    cursor: default;
}
.member-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 116, 108, 0.3);
    transform: translateY(-3px);
}
.member-card.is-featured {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 116, 108, 0.15);
}

.mc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.mc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px;
}
.mc-desc {
    font-size: 0.875rem;
    color: var(--ink-2);
    line-height: 1.7;
}

/* ── Steps ───────────────────────────────────────────────────── */
.steps-section {
    background: var(--bg);
}
.step-card {
    display: flex;
    flex-direction: column;
}
.step-num {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.sn-1 {
    background: var(--primary);
    color: #fff;
}
.sn-2 {
    background: var(--secondary);
    color: #fff;
}
.sn-3 {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    color: #fff;
}

/* ================================================================
   FEATURES — with image slot
   ================================================================ */
.features-section {
    background: var(--bg-2);
}

.feat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 100%;
    transition:
        box-shadow 0.25s var(--ease),
        transform 0.25s var(--ease),
        border-color 0.25s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}
.feat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.feat-card:hover::before {
    transform: scaleX(1);
}

/* Image area at top of card */
.feat-img-wrap {
    width: 100%;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border-xs);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.feat-card:hover .feat-img-wrap img {
    transform: scale(1.04);
}

/* Placeholder when no image yet */
.feat-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 116, 108, 0.06) 0%,
        rgba(30, 30, 63, 0.04) 100%
    );
}
.feat-img-placeholder i {
    font-size: 2.25rem;
    opacity: 0.35;
}
.feat-img-placeholder span {
    font-size: 0.75rem;
    color: var(--ink-4);
    font-weight: 500;
}

/* Card content */
.feat-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feat-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.fi-red {
    background: rgba(255, 116, 108, 0.1);
}
.fi-navy {
    background: rgba(30, 30, 63, 0.07);
}
.fi-indigo {
    background: rgba(99, 102, 241, 0.08);
}
.fi-green {
    background: rgba(16, 185, 129, 0.08);
}
.fi-amber {
    background: rgba(245, 158, 11, 0.08);
}
.fi-blue {
    background: rgba(59, 130, 246, 0.08);
}

.feat-ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
    border-radius: var(--r-pill);
    padding: 2px 8px;
    flex-shrink: 0;
}

.feat-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.feat-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}
.feat-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.feat-list li {
    font-size: 0.875rem;
    color: var(--ink-2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.feat-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── Security ────────────────────────────────────────────────── */
.security-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}
.security-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -160px;
    width: 680px;
    height: 680px;
    background: radial-gradient(
        circle,
        rgba(255, 116, 108, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.security-section .eyebrow {
    color: var(--primary-light);
    background: rgba(255, 116, 108, 0.12);
    border-color: rgba(255, 116, 108, 0.2);
}
.security-section h2 {
    color: #fff;
}
.security-section .section-desc {
    color: rgba(255, 255, 255, 0.58);
}
.security-section .btn-ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.18s;
    margin-top: 20px;
}
.security-section .btn-ghost-link:hover {
    color: #fff;
}

.sec-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    padding: 24px;
    transition:
        background 0.22s,
        border-color 0.22s;
    height: 100%;
}
.sec-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}
.sec-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255, 116, 108, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.15rem;
}
.sec-card h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}
.sec-card p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section {
    background: var(--bg);
}

.price-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 34px 28px;
    height: 100%;
    position: relative;
    transition:
        box-shadow 0.25s var(--ease),
        transform 0.25s var(--ease),
        border-color 0.25s;
}
.price-card:hover:not(.is-hero) {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}
.price-card.is-hero {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 24px 64px rgba(30, 30, 63, 0.28);
    transform: scale(1.02);
}
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    box-shadow: var(--shadow-primary);
}
.price-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}
.is-hero .price-tier {
    color: var(--primary-light);
}
.price-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}
.is-hero h3 {
    color: #fff;
}
.price-amount {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
    margin: 14px 0 4px;
}
.is-hero .price-amount {
    color: #fff;
}
.price-cycle {
    font-size: 0.875rem;
    color: var(--ink-3);
    margin-bottom: 14px;
}
.is-hero .price-cycle {
    color: rgba(255, 255, 255, 0.45);
}
.price-tagline {
    font-size: 0.875rem;
    color: var(--ink-2);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.is-hero .price-tagline {
    color: rgba(255, 255, 255, 0.55);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.price-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink-2);
}
.is-hero .price-features li {
    color: rgba(255, 255, 255, 0.72);
}
.price-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--primary-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.6rem;
    color: var(--primary);
}
.is-hero .price-check {
    background: rgba(255, 116, 108, 0.2);
    color: var(--primary-light);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section {
    background: var(--bg-2);
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9875rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.18s;
}
.faq-btn:hover {
    color: var(--primary);
}
.faq-btn[aria-expanded="true"] {
    color: var(--primary);
}
.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    color: var(--ink-3);
    flex-shrink: 0;
    transition: all 0.22s var(--ease);
}
.faq-btn[aria-expanded="true"] .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-body {
    font-size: 0.9375rem;
    color: var(--ink-2);
    line-height: 1.8;
    padding-bottom: 18px;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testi-section {
    background: var(--bg);
}
.testi-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 26px;
    height: 100%;
    transition:
        box-shadow 0.25s var(--ease),
        transform 0.25s var(--ease);
}
.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    background: var(--bg);
}
.testi-stars {
    color: #f59e0b;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testi-quote {
    font-size: 0.9375rem;
    color: var(--ink-2);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 11px;
}
.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testi-av.alt {
    background: var(--secondary);
}
.testi-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
}
.testi-role {
    font-size: 0.78rem;
    color: var(--ink-3);
    margin-top: 2px;
}

/* ── CTA / Waitlist ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(
        140deg,
        var(--secondary) 0%,
        var(--secondary-dark) 55%,
        #1e0d2d 100%
    );
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 116, 108, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.cta-section::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(
        circle,
        rgba(255, 116, 108, 0.07) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.cta-section .eyebrow {
    color: var(--primary-light);
    background: rgba(255, 116, 108, 0.14);
    border-color: rgba(255, 116, 108, 0.22);
}
.cta-section h2 {
    color: #fff;
}
.cta-section .section-desc {
    color: rgba(255, 255, 255, 0.58);
}
.cta-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 28px;
}
.cta-stat-val {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.cta-stat-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 3px;
}

.waitlist-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-2xl);
    padding: 40px 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
}
.waitlist-box h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.waitlist-box .wb-sub {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    margin-bottom: 26px;
}
.waitlist-box .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.waitlist-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.36);
}
.waitlist-box .form-control:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 116, 108, 0.2);
    color: #fff;
}
.waitlist-box .form-label {
    color: rgba(255, 255, 255, 0.68);
}

.wl-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.42);
}
.wl-avs {
    display: flex;
}
.wl-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid rgba(22, 22, 45, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    margin-left: -7px;
}
.wl-av:first-child {
    margin-left: 0;
}
.wl-success {
    text-align: center;
    padding: 12px 0;
}
.wl-success-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.14);
    border: 2px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}
.wl-success h3 {
    color: #fff;
    margin-bottom: 8px;
}
.wl-success p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .badge-a {
        left: -10px;
    }
    .badge-b {
        right: -10px;
    }
    .badge-c {
        display: none;
    }
}
@media (max-width: 991px) {
    .hero {
        padding: 60px 0 0;
    }
    .hero-visual {
        margin-top: 50px;
    }
    .phone-wrap {
        width: 230px;
    }
    .price-card.is-hero {
        transform: none;
    }
    .waitlist-box {
        padding: 28px 22px;
    }
    .member-card {
        width: 240px;
    }
}
@media (max-width: 767px) {
    .phone-badge {
        display: none;
    }
    .hero-stats {
        gap: 22px;
    }
    .member-card {
        width: 220px;
        padding: 22px 18px;
    }
}
@media (max-width: 575px) {
    .phone-wrap {
        width: 200px;
    }
    .member-card {
        width: 200px;
    }
}
