/* ============================================================
   new-sections.css — All new section styles for BeaSmart
   ============================================================ */

/* ============================================================
   IPHONE PRO PHONE FRAME (Hero)
   ============================================================ */
.phone-frame.iphone-pro {
    width: 300px;
    height: 620px;
    border-radius: 52px;
    border: 2px solid rgba(255,255,255,0.12);
    background: #0a0a0c;
    overflow: hidden;
    position: relative;
    padding: 0;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 120px rgba(0,0,0,0.7),
        0 0 80px rgba(249,178,196,0.06);
    will-change: transform;
    flex-shrink: 0;
}

.phone-dynamic-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

/* Floating tooltip beside phone */
.hero-float-tooltip {
    position: absolute;
    left: 330px;
    top: 55%;
    margin-top: -18px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #22C55E;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(34,197,94,0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
    z-index: 10;
}

.hero-float-tooltip::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #22C55E;
}

@media (max-width: 1024px) {
    .hero-float-tooltip {
        left: 50%;
        top: auto;
        bottom: -40px;
        margin-top: 0;
        margin-left: -80px;
    }
    .hero-float-tooltip::before {
        left: 50%;
        top: -4px;
        bottom: auto;
        transform: translateX(-50%) rotate(45deg);
    }
}

/* ============================================================
   DM PHONE INNER (hero phone chat)
   ============================================================ */
.dm-phone-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0e0e14;
    overflow: hidden;
    text-align: left;
}

.dm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 52px 14px 12px;
    background: rgba(10,10,18,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.dm-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    opacity: 0.7;
    flex-shrink: 0;
}

.dm-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.dm-avatar-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dm-avatar-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.dm-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

.dm-status {
    font-size: 10px;
    color: #22C55E;
    font-weight: 500;
}

.dm-status-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0;
}

.dm-active-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    margin-right: 4px;
    flex-shrink: 0;
}

.dm-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-phone-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 14px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.dm-phone-messages::-webkit-scrollbar {
    width: 0;
}

.dm-msg {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 18px;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    word-break: break-word;
}

.dm-msg.visible {
    opacity: 1;
    transform: translateY(0);
}

.dm-msg-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.dm-msg-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.dm-msg-row .dm-msg {
    opacity: 1;
    transform: none;
}

.dm-msg-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dm-msg-in {
    background: #833AB4;
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.dm-msg-out {
    background: #262626;
    color: rgba(255,255,255,0.92);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.dm-typing {
    display: none;
    gap: 4px;
    padding: 10px 14px;
    background: #262626;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    align-self: flex-start;
}

.dm-typing.visible {
    display: flex;
    animation: dmTypingFadeIn 0.25s ease forwards;
}

@keyframes dmTypingFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dm-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: dmTypingDot 1.2s infinite ease-in-out;
}

.dm-typing span:nth-child(2) { animation-delay: 0.2s; }
.dm-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dmTypingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.1); }
}

/* DM Input Bar */
.dm-input-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 20px;
    background: #0e0e14;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.dm-input-camera {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-input-field {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    padding: 8px 14px;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.dm-input-field span {
    color: rgba(255,255,255,0.28);
    font-size: 11.5px;
}

.dm-input-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Floating cards */
.phone-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(15,15,22,0.92);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    white-space: nowrap;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 10;
}

.phone-float-top {
    top: 60px;
    right: -140px;
    animation-delay: 0s;
}

.phone-float-bottom {
    bottom: 80px;
    left: -100px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.float-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(249,178,196,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-icon-green {
    background: rgba(34,197,94,0.12);
}

.float-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.float-card-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.float-card-value {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}

.float-card-value-green {
    color: #22C55E;
}

/* ============================================================
   HERO PHONE SHOWCASE
   ============================================================ */
.hero-phone-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Step navigation */
.hero-steps-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-step-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-step-tab.active {
    background: rgba(249,178,196,0.1);
    border-color: rgba(249,178,196,0.25);
}

.hero-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(249,178,196,0.08);
    border: 1px solid rgba(249,178,196,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(249,178,196,0.5);
    transition: all 0.4s ease;
}

.hero-step-tab.active .hero-step-num {
    background: rgba(249,178,196,0.15);
    border-color: rgba(249,178,196,0.4);
    color: #F9B2C4;
}

.hero-step-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    transition: color 0.4s ease;
}

.hero-step-tab.active .hero-step-text {
    color: rgba(255,255,255,0.8);
}

.hero-step-divider {
    display: flex;
    align-items: center;
    padding: 0 2px;
    opacity: 0.5;
}

/* Single phone frame */
.hero-showcase-mockup .phone-frame.iphone-pro {
    width: 320px;
    height: min(660px, 75vh);
}

/* Laptop screens — scale down phone and step tabs */
@media (max-width: 1440px) {
    .hero-showcase-mockup .phone-frame.iphone-pro {
        width: 280px;
        height: min(580px, 70vh);
    }
    .hero-steps-nav {
        gap: 4px;
    }
    .hero-step-tab {
        padding: 6px 10px;
    }
    .hero-step-text {
        font-size: 11px;
    }
    .hero-step-num {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .hero-float-tooltip {
        left: 290px;
        top: 65%;
    }
}

/* Screen cycling */
.hero-screens-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 40px;
    background: #0e0e14;
}

.hero-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    background: #0e0e14;
    z-index: 1;
}

.hero-screen.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ============================================================
   PHONE 2: BOOKING POPUP SCREEN
   ============================================================ */
.booking-popup-screen {
    height: 100%;
    background: #141118;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
}

.bp-app-bg {
    flex: 1;
    padding: 48px 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

/* Nav bar */
.bp-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px 6px;
}

.bp-nav-back {
    width: 20px;
    display: flex;
    align-items: center;
}

.bp-nav-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    flex: 1;
}

.bp-nav-spacer {
    width: 20px;
}

/* AI Assistant card */
.bp-ai-card {
    background: rgba(194,138,180,0.12);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bp-ai-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-ai-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bp-ai-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22C55E;
}

.bp-ai-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bp-ai-label {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
}

.bp-ai-status {
    font-size: 10px;
    font-weight: 600;
    color: #22C55E;
}

.bp-ai-badge {
    font-size: 8px;
    font-weight: 600;
    color: #22C55E;
    background: rgba(34,197,94,0.15);
    padding: 3px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.bp-ai-badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #22C55E;
}

.bp-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4px 0 2px;
}

.bp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.bp-stat-number {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.bp-stat-label {
    font-size: 7px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.03em;
}

.bp-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.08);
}

/* Pending Bookings card */
.bp-pending-card {
    border: 1px solid rgba(200,168,50,0.3);
    border-radius: 10px;
    overflow: hidden;
}

.bp-pending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(200,168,50,0.08);
}

.bp-pending-title {
    font-size: 9px;
    font-weight: 700;
    color: #C8A832;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bp-pending-approve {
    font-size: 8px;
    font-weight: 600;
    color: #22C55E;
}

.bp-pending-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bp-pending-item-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.bp-pending-name {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
}

.bp-pending-detail {
    font-size: 8px;
    color: rgba(255,255,255,0.4);
}

/* Next Up card */
.bp-nextup-card {
    border: 1px solid rgba(200,168,50,0.2);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bp-nextup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.bp-nextup-label {
    font-size: 7px;
    font-weight: 700;
    color: #C8A832;
    letter-spacing: 0.05em;
}

.bp-nextup-badge {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 6px;
}

.bp-nextup-time {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.bp-nextup-service {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.bp-nextup-client {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}

/* Popup overlay */
.bp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.bp-overlay.visible {
    opacity: 1;
}

/* The popup modal */
.bp-modal {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    margin: auto;
    height: fit-content;
    z-index: 2;
    background: rgba(37,33,49,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    backdrop-filter: blur(20px);
}

.bp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

.bp-modal-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(180,150,60,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-modal-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.bp-modal-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    background: #1A1821;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
}

.bp-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.bp-detail-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    flex-shrink: 0;
}

.bp-modal-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid transparent;
    background: transparent;
    cursor: default;
    transition: transform 0.15s, opacity 0.15s;
}

.bp-btn-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bp-btn-icon-green {
    background: #22C55E;
}

.bp-btn-icon-red {
    background: #EF4444;
}

.bp-btn-icon-pink {
    background: #C28AB4;
}

.bp-btn-accept {
    color: #fff;
    background: #22C55E;
    border-color: #22C55E;
}

.bp-btn-accept.tapped {
    transform: scale(0.96);
}

.bp-btn-decline {
    color: #EF4444;
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.3);
}

.bp-btn-manual {
    color: #C28AB4;
    background: rgba(194,138,180,0.1);
    border-color: rgba(194,138,180,0.3);
}

/* Booking popup bottom tab bar */
.bp-tab-bar {
    display: flex;
    justify-content: space-around;
    padding: 8px 20px 22px;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    background: #141118;
    position: relative;
    z-index: 0;
}

.bp-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
}

.bp-tab-active {
    color: #C28AB4;
}

.bp-tab svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   PHONE 3: CALENDAR SCREEN
   ============================================================ */
.calendar-screen {
    height: 100%;
    background: #141118;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.cal-header {
    padding: 48px 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cal-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4px;
}

.cal-back {
    width: 24px;
    display: flex;
    align-items: center;
}

.cal-back-spacer {
    width: 24px;
}

.cal-business-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    flex: 1;
}

.cal-date-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cal-arrow {
    display: flex;
    align-items: center;
    cursor: default;
}

.cal-date {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

.cal-today-btn {
    font-size: 11px;
    font-weight: 600;
    color: #C28AB4;
    margin-left: auto;
}

.cal-meta-row {
    display: flex;
    align-items: center;
}

.cal-view-toggle {
    display: flex;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 3px;
}

.cal-toggle-item {
    flex: 1;
    text-align: center;
    padding: 4px 0;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    border-radius: 6px;
}

.cal-toggle-active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.cal-day-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
}

.cal-day-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cal-day-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.cal-day-date {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}

.cal-hours-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: #22C55E;
    background: rgba(34,197,94,0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.cal-bookings-count {
    font-size: 10px;
    color: #22C55E;
    font-weight: 500;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Calendar body */
.cal-body {
    flex: 1;
    overflow-y: auto;
    padding: 4px 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cal-body::-webkit-scrollbar {
    width: 0;
}

.cal-slot {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 48px;
}

.cal-time {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    width: 38px;
    flex-shrink: 0;
    padding-top: 2px;
    text-align: right;
    font-weight: 500;
    padding-right: 8px;
}

.cal-timeline {
    width: 1px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
    margin-right: 8px;
}

.cal-event {
    flex: 1;
    padding: 8px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: #C4A0B8;
    position: relative;
    margin-bottom: 4px;
}

.cal-event-confirmed {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 8px;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 6px;
}

.cal-event-new {
    background: #C4A0B8;
    opacity: 0;
    transform: scale(0.95);
    border: 2px solid #22C55E;
    box-shadow: 0 0 24px rgba(34,197,94,0.25);
}

.cal-event-service {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.cal-event-client {
    font-size: 9px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cal-event-timerange {
    font-size: 9px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.cal-slot-empty {
    flex: 1;
    min-height: 48px;
}

.cal-fab {
    position: absolute;
    bottom: 90px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(249,178,196,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cal-add-booking {
    padding: 6px 14px 6px;
    flex-shrink: 0;
}

.cal-add-booking span {
    display: block;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    background: rgba(194,138,180,0.15);
    border: 1px solid rgba(194,138,180,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
}

/* Calendar bottom tab bar */
.cal-tab-bar {
    display: flex;
    justify-content: space-around;
    padding: 8px 20px 22px;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    background: #141118;
}

.cal-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
}

.cal-tab-active {
    color: #C28AB4;
}

.cal-tab svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   HERO PHONE SHOWCASE — Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .hero-showcase-mockup .phone-frame.iphone-pro {
        width: 300px;
        height: auto;
        aspect-ratio: 9 / 19.5;
    }

    .hero-step-text {
        display: none;
    }

    .hero-step-tab {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .hero-showcase-mockup .phone-frame.iphone-pro {
        width: min(300px, 80vw);
        height: auto;
        aspect-ratio: 9 / 19.5;
    }

    .hero-float-tooltip {
        display: none;
    }

    .hero-phone-showcase {
        gap: 14px;
    }

    .hero-steps-nav {
        gap: 4px;
    }

    .hero-step-tab {
        padding: 6px 8px;
    }

    .hero-step-num {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* ============================================================
   VALUE BAR (below hero)
   ============================================================ */
.value-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}

.value-bar-subtitle {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
}

.value-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    cursor: default;
}

.value-bar-item:hover {
    transform: translateY(-3px);
    background: rgba(249, 178, 196, 0.06);
}

.value-bar-item:last-child {
    border-right: none;
}

.value-bar-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.value-bar-item:hover .value-bar-number {
    transform: scale(1.08);
}

.value-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .value-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-bar-item:nth-child(2) {
        border-right: none;
    }
    .value-bar-item:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .value-bar-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.06);
        border-right: none;
    }
}

@media (max-width: 480px) {
    .value-bar-grid {
        grid-template-columns: 1fr;
    }
    .value-bar-item {
        border-right: none !important;
    }
    .value-bar-item:nth-child(n+2) {
        border-top: 1px solid rgba(255,255,255,0.06);
    }
}

/* ============================================================
   DAILY REALITY — Storytelling Timeline (Premium Dark Card)
   ============================================================ */
.daily-reality {
    padding: var(--section-padding) 0;
    position: relative;
    background: #F5F0ED;
    background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663410503269/SxGetEEZoJaJt625betmWF/maistery-texture-light_4125ada8.png');
    background-size: cover;
    background-position: center;
}

/* Dark elevated container card */
.daily-reality .container {
    background: linear-gradient(165deg, #1E1B28 0%, #2A2636 50%, #1E1B28 100%);
    border-radius: 28px;
    padding: 56px 48px 48px;
    max-width: 880px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 24px 64px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow inside the card */
.daily-reality .container::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(107, 91, 123, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Badge on dark */
.daily-reality .section-badge {
    color: #C4A8E0;
    background: rgba(196, 168, 224, 0.1);
    border-color: rgba(196, 168, 224, 0.2);
}

/* Title on dark */
.daily-reality .section-title {
    color: #F0ECF4;
}

/* Timeline container */
.dr-timeline {
    max-width: 680px;
    margin: 48px auto 0;
    position: relative;
}

/* Vertical line with subtle glow */
.dr-timeline::before {
    content: '';
    position: absolute;
    left: 115px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.12) 20%,
        rgba(200, 90, 90, 0.4) 55%,
        rgba(200, 90, 90, 0.3) 80%,
        rgba(255, 255, 255, 0.06)
    );
    box-shadow: 0 0 8px rgba(200, 90, 90, 0.1);
}

/* Timeline items — CSS Grid */
.dr-item {
    display: grid;
    grid-template-columns: 85px 20px 1fr;
    gap: 0 20px;
    align-items: center;
    padding-bottom: 20px;
}

.dr-item:last-child {
    padding-bottom: 0;
}

/* Time labels on dark */
.dr-time {
    text-align: right;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.dr-item--bad .dr-time {
    color: rgba(230, 100, 100, 0.8);
}

/* Timeline dots */
.dr-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.06);
    justify-self: center;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.dr-item--bad .dr-dot {
    background: rgba(230, 100, 100, 0.85);
    border-color: rgba(230, 100, 100, 0.3);
    box-shadow: 0 0 0 1.5px rgba(230, 100, 100, 0.2), 0 0 16px rgba(230, 100, 100, 0.3);
}

/* Content cards — frosted glass on dark */
.dr-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.dr-content:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dr-content p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Bad item card overrides */
.dr-item--bad .dr-content {
    background: rgba(230, 100, 100, 0.08);
    border-color: rgba(230, 100, 100, 0.18);
}

.dr-item--bad .dr-content:hover {
    background: rgba(230, 100, 100, 0.12);
    box-shadow: 0 8px 32px rgba(200, 60, 60, 0.15);
}

.dr-item--bad .dr-content p {
    color: rgba(240, 130, 130, 0.95);
    font-weight: 600;
}

/* Bottom CTA */
.dr-bottom {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.dr-hook {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    background: linear-gradient(135deg, rgba(196, 168, 224, 0.1), rgba(255, 255, 255, 0.05));
    padding: 20px 36px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Daily Reality responsive */
@media (max-width: 768px) {
    .daily-reality .container {
        padding: 40px 28px 36px;
        border-radius: 22px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .dr-item {
        grid-template-columns: 70px 16px 1fr;
        gap: 0 14px;
    }

    .dr-time {
        font-size: 0.7rem;
    }

    .dr-timeline::before {
        left: 92px;
    }
}

@media (max-width: 600px) {
    .daily-reality .container {
        padding: 32px 20px 28px;
        border-radius: 20px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .dr-item {
        display: flex;
        flex-direction: column;
        padding-bottom: 16px;
    }

    .dr-time {
        text-align: left;
        font-size: 0.7rem;
        margin-bottom: 6px;
        padding-left: 4px;
        color: rgba(255, 255, 255, 0.3);
    }

    .dr-item--bad .dr-time {
        color: rgba(230, 100, 100, 0.7);
    }

    .dr-dot {
        display: none;
    }

    .dr-timeline::before {
        display: none;
    }

    .dr-content {
        padding: 16px 20px;
        border-radius: 14px;
    }

    .dr-content p {
        font-size: 0.92rem;
    }

    .dr-hook {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}

/* ============================================================
   SHOWCASE — "How BeaSmart works" storyboard
   ============================================================ */
.showcase {
    padding: 96px 0;
    position: relative;
}

.showcase-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 72px;
    align-items: start;
}

.showcase-intro {
    position: sticky;
    top: 100px;
}

.showcase-intro .section-badge {
    margin-bottom: 20px;
}

.showcase-intro .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.showcase-intro .section-subtitle {
    text-align: left;
    margin: 0 0 28px;
    max-width: 540px;
}

.showcase-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
}

.showcase-bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C28AB4, #F9B2C4);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(249, 178, 196, 0.4);
}

.showcase-storyboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-card {
    background: linear-gradient(135deg, rgba(40, 26, 50, 0.6), rgba(28, 18, 40, 0.4));
    border: 1px solid rgba(194, 138, 180, 0.18);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.showcase-card:hover {
    border-color: rgba(194, 138, 180, 0.35);
    transform: translateY(-2px);
}

.showcase-card-header {
    margin-bottom: 20px;
}

.showcase-card-use-case {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(249, 178, 196, 0.85);
    padding: 4px 10px;
    background: rgba(249, 178, 196, 0.1);
    border: 1px solid rgba(249, 178, 196, 0.2);
    border-radius: 100px;
    margin-bottom: 10px;
}

.showcase-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.showcase-flow {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.showcase-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    position: relative;
}

.showcase-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 38px;
    bottom: -2px;
    width: 2px;
    background: linear-gradient(180deg, rgba(194, 138, 180, 0.3), rgba(194, 138, 180, 0.1));
}

.showcase-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(194, 138, 180, 0.12);
    border: 1px solid rgba(194, 138, 180, 0.3);
    color: rgba(249, 178, 196, 0.9);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.showcase-step-final .showcase-step-num {
    background: linear-gradient(135deg, #C28AB4, #F9B2C4);
    border-color: transparent;
    color: #1a0d20;
    box-shadow: 0 0 16px rgba(249, 178, 196, 0.4);
}

.showcase-step-text {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    padding-top: 4px;
}

.showcase-step-final .showcase-step-text {
    color: #fff;
    font-weight: 500;
}

.showcase-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .showcase {
        padding: 64px 0;
    }

    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-intro {
        position: static;
    }

    .showcase-card {
        padding: 24px 20px;
    }

    .showcase-card-title {
        font-size: 1.15rem;
    }
}

/* ============================================================
   PERSONA STRIP — Who BeaSmart is for
   ============================================================ */
.persona-strip {
    padding: 80px 0;
    position: relative;
}

.persona-strip-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.persona-strip-header .section-title {
    margin-bottom: 16px;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.persona-pill {
    background: linear-gradient(135deg, rgba(40, 26, 50, 0.5), rgba(28, 18, 40, 0.3));
    border: 1px solid rgba(194, 138, 180, 0.15);
    border-radius: 16px;
    padding: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.persona-pill:hover {
    border-color: rgba(194, 138, 180, 0.35);
    transform: translateY(-2px);
}

.persona-pill-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.persona-pill-examples {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .persona-strip {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .persona-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HOW IT WORKS — Steps V2
   ============================================================ */
.steps-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 64px;
}

.step-v2 {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 32px;
    padding-bottom: 64px;
}

.step-v2:last-child {
    padding-bottom: 0;
}

.step-v2-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.step-v2-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(249,178,196,0.08);
    border: 1px solid rgba(249,178,196,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #F9B2C4;
    flex-shrink: 0;
    position: relative;
}

.step-v2-number::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F9B2C4;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.step-v2-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, rgba(249,178,196,0.2), transparent);
    margin-top: 12px;
    min-height: 40px;
}

.step-v2-right {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 4px;
}

.step-v2-phone {
    display: flex;
    justify-content: center;
}

.step-v2-phone .phone-frame {
    width: 200px;
    height: 400px;
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.step-v2-phone .phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.step-v2-phone .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.step-v2-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.step-v2-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.95);
}

.step-v2-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.step-v2-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-v2-bullets li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding-left: 4px;
}

/* Triple phone step layout (Step 2) */
.step-v2-right--triple {
    grid-template-columns: 1fr;
    gap: 40px;
}

.step-v2-phones-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    padding-bottom: 8px;
}

.step-v2-phone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-v2-phone-item .phone-frame {
    width: 160px;
    height: 320px;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.step-v2-phone-item:first-child .phone-frame {
    transform: perspective(1000px) rotateY(4deg);
}

.step-v2-phone-item:last-child .phone-frame {
    transform: perspective(1000px) rotateY(-4deg);
}

.step-v2-phone-item.featured .phone-frame {
    width: 180px;
    height: 360px;
    border-radius: 32px;
    transform: translateY(-12px);
    box-shadow: 0 28px 72px rgba(194,138,180,0.12), 0 0 0 1px rgba(255,255,255,0.08);
    z-index: 2;
}

.step-v2-phone-item .phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 16px;
    border-radius: 12px;
    background: #000;
    z-index: 10;
}

.step-v2-phone-item .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.phone-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.step-v2-right--triple .step-v2-text {
    text-align: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .step-v2-right {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .step-v2-phone {
        display: flex;
        justify-content: center;
    }
    .step-v2-phone .phone-frame {
        width: 180px;
        height: 360px;
        border-radius: 32px;
    }
    .step-v2-phone-item .phone-frame {
        width: 130px;
        height: 260px;
        border-radius: 24px;
    }
    .step-v2-phone-item.featured .phone-frame {
        width: 150px;
        height: 300px;
        border-radius: 28px;
    }
    .step-v2-phones-row {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .step-v2-phone-item .phone-frame {
        width: 100px;
        height: 200px;
        border-radius: 18px;
    }
    .step-v2-phone-item.featured .phone-frame {
        width: 115px;
        height: 230px;
        border-radius: 20px;
    }
    .step-v2-phones-row {
        gap: 8px;
    }
    .phone-label {
        font-size: 0.55rem;
    }
}

/* ============================================================
   BOOKING PROCESS SECTION
   ============================================================ */
.booking-process {
    background: var(--bg-darker);
    padding: var(--section-padding) 0;
}

.booking-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 64px;
    flex-wrap: nowrap;
    position: relative;
    overflow-x: auto;
    padding-bottom: 8px;
}

.booking-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 160px;
    max-width: 210px;
    text-align: center;
}

.bflow-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.bflow-step-ai {
    background: rgba(249,178,196,0.1);
    border-color: rgba(249,178,196,0.25);
    color: #F9B2C4;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.bflow-step-done {
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.3);
    color: #22C55E;
    font-size: 1rem;
}

.bflow-bubble {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    transition: border-color 0.3s ease;
}

.bflow-bubble:hover {
    border-color: rgba(249,178,196,0.2);
}

.bflow-bubble-client {
    border-color: rgba(255,255,255,0.1);
}

.bflow-bubble-ai {
    border-color: rgba(194,138,180,0.2);
    background: rgba(194,138,180,0.04);
}

.bflow-bubble-done {
    border-color: rgba(34,197,94,0.25);
    background: rgba(34,197,94,0.04);
}

.bflow-bubble-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.bflow-bubble-ai .bflow-bubble-label {
    color: rgba(194,138,180,0.7);
}

.bflow-bubble-done .bflow-bubble-label {
    color: rgba(34,197,94,0.7);
}

.bflow-bubble-text {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    font-style: italic;
}

.bflow-bubble-ai .bflow-bubble-text,
.bflow-bubble-done .bflow-bubble-text {
    font-style: normal;
}

.bflow-step-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
    padding: 0 4px;
}

.bflow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    margin-top: 50px;
    flex-shrink: 0;
    opacity: 0.6;
}

.booking-flow-quote {
    margin-top: 56px;
    text-align: center;
}

.booking-flow-quote blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    border: none;
    padding: 0;
    position: relative;
}

.booking-flow-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(249,178,196,0.15);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: Georgia, serif;
    line-height: 1;
}

@media (max-width: 900px) {
    .booking-flow {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        overflow-x: visible;
    }
    .bflow-connector {
        transform: rotate(90deg);
        margin-top: 0;
    }
    .booking-flow-step {
        max-width: 340px;
        width: 100%;
    }
}

/* ============================================================
   HOW TO START — Video Embed
   ============================================================ */
.how-to-start {
    padding: var(--section-padding) 0;
    position: relative;
}

.hts-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

.hts-step {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hts-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #a06d96);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hts-step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.hts-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hts-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
}

.hts-video-wrap {
    max-width: 720px;
    margin: 48px auto 0;
}

.hts-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.hts-video:hover {
    transform: translateY(-4px);
}

.lite-yt-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.lite-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 50px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.lite-yt-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
}

.lite-yt-play svg {
    width: 100%;
    height: 100%;
}

.hts-video-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hts-video-wrap {
        margin-top: 32px;
    }
    .lite-yt-play {
        width: 60px;
        height: 42px;
    }
}

/* ============================================================
   BENEFITS — Why BeaSmart (2x3 Grid)
   ============================================================ */
.benefits {
    padding: var(--section-padding) 0;
    position: relative;
}

.ben-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 48px auto 0;
}

.ben-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ben-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}

.ben-card--highlight {
    border-color: rgba(34,197,94,0.2);
    background: rgba(34,197,94,0.03);
    box-shadow: 0 0 30px rgba(34,197,94,0.04);
}

.ben-card--highlight:hover {
    border-color: rgba(34,197,94,0.35);
    background: rgba(34,197,94,0.06);
    box-shadow: 0 0 50px rgba(34,197,94,0.08);
}

.ben-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ben-icon--orchid {
    background: rgba(194,138,180,0.1);
    border: 1px solid rgba(194,138,180,0.2);
    color: #C28AB4;
}

.ben-icon--blush {
    background: rgba(249,178,196,0.1);
    border: 1px solid rgba(249,178,196,0.2);
    color: #F9B2C4;
}

.ben-icon--blue {
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    color: #818CF8;
}

.ben-icon--green {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    color: #22C55E;
}

.ben-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin: 0 0 8px;
}

.ben-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* Benefits responsive */
@media (max-width: 768px) {
    .ben-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }
    .ben-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .ben-card h3 {
        font-size: 1.1rem;
    }
    .ben-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

/* ============================================================
   COST COMPARISON TABLE
   ============================================================ */
.cost-comparison {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.comparison-table-wrapper {
    margin-top: 56px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.comparison-table {
    width: 100%;
    background: rgba(255,255,255,0.02);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-feature-col {
    padding: 24px 28px;
}

.comparison-col {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.comparison-col-us {
    background: rgba(249,178,196,0.04);
    border-left-color: rgba(249,178,196,0.12);
}

.comparison-badge-wrap {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.comparison-recommended {
    display: inline-block;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 0 0 10px 10px;
}

.comparison-col-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.03em;
    margin-top: 8px;
}

.comparison-col-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
}

.comparison-col-us .comparison-col-price {
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row-last {
    background: rgba(255,255,255,0.02);
}

.comparison-feature {
    padding: 16px 28px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
}

.comparison-feature-price {
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.comparison-val {
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.comparison-val-us {
    background: rgba(249,178,196,0.05);
    border-left-color: rgba(249,178,196,0.08);
}

.comparison-row:hover {
    background: rgba(255,255,255,0.02);
}

.comparison-partial {
    font-size: 0.8rem;
    color: rgba(255,200,100,0.7);
    font-weight: 500;
}

.comparison-price-them {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(239,68,68,0.7);
    text-decoration: line-through;
    text-decoration-color: rgba(239,68,68,0.4);
}

.comparison-price-us {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-savings {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.savings-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 48px;
    background: rgba(249,178,196,0.05);
    border: 1px solid rgba(249,178,196,0.15);
    border-radius: 20px;
    text-align: center;
}

.savings-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.savings-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    max-width: 360px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .comparison-feature,
    .comparison-val {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   AI FEATURES — 3 large blocks
   ============================================================ */
.ai-features {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.ai-features-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 64px;
}

.ai-feature-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: center;
}

.ai-feature-block-reverse {
    grid-template-columns: 1fr 280px;
}

.ai-feature-block-reverse .ai-feature-block-visual {
    order: 2;
}

.ai-feature-block-reverse .ai-feature-block-text {
    order: 1;
}

.ai-feature-block-visual {
    display: flex;
    justify-content: center;
}

.ai-feature-block-visual .phone-frame {
    width: 300px;
    height: 615px;
    border-radius: 48px;
    border: 2px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.ai-feature-block-visual .phone-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.ai-feature-block-visual .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.ai-feature-block-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-feature-block-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.95);
    line-height: 1.2;
}

.ai-feature-block-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.ai-feature-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-feature-block-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

.ai-feature-block-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .ai-feature-block,
    .ai-feature-block-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ai-feature-block-reverse .ai-feature-block-visual,
    .ai-feature-block-reverse .ai-feature-block-text {
        order: unset;
    }
    .ai-feature-block-visual .phone-frame {
        width: 260px;
        height: 535px;
    }
}

/* ============================================================
   WAITLIST SECTION
   ============================================================ */
.waitlist-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.waitlist-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.waitlist-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(249,178,196,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.waitlist-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(249,178,196,0.08);
    border: 1px solid rgba(249,178,196,0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F9B2C4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
}

.waitlist-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.95);
    line-height: 1.15;
}

.waitlist-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.waitlist-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waitlist-perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.waitlist-perk-accent {
    width: 3px;
    height: 48px;
    background: linear-gradient(to bottom, #F9B2C4, #C28AB4);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    display: none;
}

.waitlist-perk-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-darker);
    flex-shrink: 0;
    margin-top: 2px;
}

.waitlist-perk strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    margin-bottom: 4px;
}

.waitlist-perk p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}

.waitlist-form-wrap {
    position: relative;
}

.waitlist-form-wrap {
    position: relative;
}

.waitlist-form-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(249,178,196,0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.waitlist-form-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(165deg, rgba(249,178,196,0.06) 0%, rgba(194,138,180,0.03) 50%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(249,178,196,0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 0 80px rgba(249,178,196,0.06), 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.waitlist-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.waitlist-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

.waitlist-form-card > p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin: -8px 0 0;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: rgba(249,178,196,0.4);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input.error {
    border-color: rgba(239,68,68,0.5);
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-optional {
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    text-transform: none;
    letter-spacing: 0;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 4px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.waitlist-success {
    display: none;
    text-align: center;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.waitlist-success.visible {
    display: flex;
}

.waitlist-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.waitlist-success-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.waitlist-success p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) {
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Language-specific float card offsets */
:root[lang="sr"] .phone-float-top {
    right: -100px;
}
:root[lang="sr"] .phone-float-bottom {
    left: -80px;
}

/* ============================================================
   WHAT IS BEASMART — Product Reveal Section
   ============================================================ */
.what-is-beasmart {
    padding: 100px 0 var(--section-padding);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Ambient background glow */
.wib-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.wib-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(
        ellipse at center,
        rgba(194, 138, 180, 0.08) 0%,
        rgba(249, 178, 196, 0.04) 30%,
        transparent 70%
    );
    border-radius: 50%;
}

/* Badge override */
.wib-badge {
    background: rgba(249, 178, 196, 0.12) !important;
    color: var(--blush) !important;
    border: 1px solid rgba(249, 178, 196, 0.2) !important;
}

.what-is-beasmart .section-header {
    max-width: 700px;
}

.what-is-beasmart .section-title {
    font-size: clamp(32px, 4.5vw, 48px);
}

/* ===== Two-Part Card Layout (no connector) ===== */
.wib-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.wib-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wib-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wib-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wib-card:hover::before {
    opacity: 1;
}

.wib-card--platform::before {
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.wib-card--agent::before {
    background: linear-gradient(90deg, transparent, var(--blush), transparent);
}

/* Card header */
.wib-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.wib-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wib-card-icon--platform {
    background: rgba(194, 138, 180, 0.12);
    color: var(--primary);
}

.wib-card-icon--agent {
    background: rgba(249, 178, 196, 0.12);
    color: var(--blush);
}

.wib-card-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* "For salon owners" / "For your clients" tag */
.wib-card-for {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wib-card--platform .wib-card-for {
    color: var(--primary);
    opacity: 0.7;
}

.wib-card--agent .wib-card-for {
    color: var(--blush);
    opacity: 0.7;
}

/* Card tagline */
.wib-card-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 12px;
    line-height: 1.25;
}

/* Card description */
.wib-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 28px;
    max-width: 400px;
}

/* ===== Story-style Slideshow (Platform card) ===== */
.wib-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 28px;
    cursor: pointer;
}

/* Progress bars — outside the phone, above it */
.wib-story-progress {
    display: flex;
    gap: 4px;
    width: 100%;
    padding: 0 4px;
    margin-bottom: 12px;
}

.wib-story-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    overflow: hidden;
}

.wib-story-bar-fill {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

.wib-story-bar--done .wib-story-bar-fill {
    transform: scaleX(1);
}

.wib-story-bar--active .wib-story-bar-fill {
    transform: scaleX(0);
}

/* iPhone frame */
.wib-story-phone {
    position: relative;
    width: 100%;
    aspect-ratio: 390 / 844;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0a;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Slides container */
.wib-story-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.wib-story-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wib-story-slide--active {
    opacity: 1;
}

/* ===== Phone mockup (AI Agent card — bigger) ===== */
.wib-phone {
    position: relative;
    margin-bottom: 28px;
    padding-top: 15px; /* align with left card's progress bars (3px bar + 12px gap) */
}

.wib-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249, 178, 196, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.wib-phone .phone-frame {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 390 / 844;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.wib-phone .phone-dynamic-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.wib-phone .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Feature list */
.wib-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: left;
}

.wib-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.wib-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
}

.wib-features li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 5px;
    border-left: 1.5px solid #22C55E;
    border-bottom: 1.5px solid #22C55E;
    transform: rotate(-45deg);
}

/* Card platform tags */
.wib-card-platforms {
    margin-top: auto;
    padding-top: 16px;
}

.wib-card-platforms span {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

/* ===== Connection Flow Summary ===== */
.wib-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 64px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wib-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wib-flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wib-flow-icon--setup {
    background: rgba(194, 138, 180, 0.12);
    color: var(--primary);
}

.wib-flow-icon--learn {
    background: rgba(249, 178, 196, 0.12);
    color: var(--blush);
}

.wib-flow-icon--book {
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
}

.wib-flow-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.wib-flow-arrow {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

/* ===== What Is BeaSmart Responsive ===== */
@media (max-width: 1024px) {
    .wib-cards {
        max-width: 900px;
        gap: 24px;
    }

    .wib-card {
        padding: 32px 28px;
    }

    .wib-phone .phone-frame {
        max-width: 250px;
        border-radius: 36px;
    }

    .wib-story {
        max-width: 250px;
    }

    .wib-story-phone {
        border-radius: 36px;
    }
}

@media (max-width: 768px) {
    .what-is-beasmart {
        padding: 72px 0 var(--section-padding-sm);
    }

    .wib-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
    }

    .wib-card {
        padding: 32px 24px;
    }

    .wib-card-tagline {
        font-size: 1.2rem;
    }

    .wib-phone .phone-frame {
        max-width: 280px;
        border-radius: 38px;
    }

    .wib-story {
        max-width: 280px;
    }

    .wib-story-phone {
        border-radius: 38px;
    }

    .wib-flow {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        margin-top: 48px;
    }

    .wib-flow-arrow {
        transform: rotate(90deg);
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .wib-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .wib-phone .phone-frame {
        max-width: 240px;
        border-radius: 34px;
    }

    .wib-story {
        max-width: 240px;
    }

    .wib-story-phone {
        border-radius: 34px;
    }

    .wib-card-desc {
        font-size: 0.9rem;
    }

    .wib-features li {
        font-size: 0.85rem;
    }
}

/* ============================================================
   PLATFORM SECTION
   ============================================================ */
/* ============================================================
   PLATFORM V2 — Feature Showcase with Phone Mockups
   ============================================================ */
.platform-v2 {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(249,178,196,0.03) 0%,
        transparent 30%,
        transparent 70%,
        rgba(194,138,180,0.03) 100%
    );
}

.platform-v2-features {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 64px;
}

.pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pf-row--reverse {
    direction: rtl;
}

.pf-row--reverse > * {
    direction: ltr;
}

.pf-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pf-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pf-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.pf-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary, rgba(255,255,255,0.6));
    margin: 0;
}

.pf-proof {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blush-pink);
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.pf-visual {
    display: flex;
    justify-content: center;
}

.pf-phone {
    position: relative;
}

.pf-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249,178,196,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.pf-phone .phone-frame {
    width: 300px;
    height: 615px;
    border-radius: 44px;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
    transition: transform 0.4s ease;
}

.pf-row:hover .pf-phone .phone-frame {
    transform: translateY(-6px);
}

.pf-phone .phone-dynamic-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.pf-phone .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 1024px) {
    .pf-row {
        gap: 40px;
        max-width: 900px;
    }

    .pf-phone .phone-frame {
        width: 260px;
        height: 535px;
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .platform-v2-features {
        gap: 60px;
        margin-top: 48px;
    }

    .pf-row,
    .pf-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
        text-align: center;
    }

    .pf-text {
        align-items: center;
        order: 2;
    }

    .pf-visual {
        order: 1;
    }

    .pf-phone .phone-frame {
        width: 280px;
        height: 575px;
        border-radius: 40px;
    }

    .pf-number {
        font-size: 0.75rem;
    }

    .pf-text h3 {
        font-size: 1.35rem;
    }

    .pf-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pf-phone .phone-frame {
        width: 240px;
        height: 495px;
        border-radius: 36px;
    }

    .pf-text h3 {
        font-size: 1.25rem;
    }

    .pf-text p {
        font-size: 0.9rem;
    }
}

/* ============================================================
   RESPONSIVE — Global
   ============================================================ */
@media (max-width: 768px) {
    .phone-frame.iphone-pro {
        width: 300px;
        height: 620px;
    }
    .phone-float-card {
        display: none;
    }
    .money-loss-card {
        padding: 24px 20px;
    }
    .waitlist-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .phone-frame.iphone-pro {
        width: 280px;
        height: 580px;
    }
}

/* ============================================================
   STEPS V3 — Redesigned How It Works (Consistent Card Layout)
   ============================================================ */
.steps-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.step-v3-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 32px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.step-v3-card:hover {
    border-color: rgba(249,178,196,0.2);
    transform: translateY(-4px);
}

/* Step 2 spans full width */
.step-v3-card--wide {
    grid-column: 1 / -1;
}

.step-v3-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F9B2C4, #C28AB4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 20px rgba(249,178,196,0.3);
    z-index: 2;
}

/* Single phone visual */
.step-v3-visual {
    margin: 16px 0 28px;
}

.step-v3-phone .phone-frame {
    width: 240px;
    height: 495px;
    border-radius: 38px;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.step-v3-phone .phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 18px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.step-v3-phone .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Triple phone visual (Step 2) */
.step-v3-visual--triple {
    margin: 16px 0 32px;
    width: 100%;
}

.step-v3-phone-group {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.step-v3-phone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-v3-phone-item .phone-frame {
    width: 180px;
    height: 370px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

.step-v3-phone-item:first-child .phone-frame {
    transform: perspective(1000px) rotateY(4deg);
}

.step-v3-phone-item:last-child .phone-frame {
    transform: perspective(1000px) rotateY(-4deg);
}

.step-v3-phone-item--featured .phone-frame {
    width: 200px;
    height: 410px;
    border-radius: 34px;
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 64px rgba(194,138,180,0.12), 0 0 0 1px rgba(255,255,255,0.08);
    z-index: 2;
}

.step-v3-phone-item .phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 16px;
    border-radius: 12px;
    background: #000;
    z-index: 10;
}

.step-v3-phone-item .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.step-v3-phone-group .phone-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Step content */
.step-v3-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
}

.step-v3-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.01em;
    margin: 0;
}

.step-v3-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary, rgba(255,255,255,0.55));
    margin: 0;
}

.step-v3-checks {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step-v3-checks li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}

/* Steps V3 responsive */
@media (max-width: 1024px) {
    .steps-v3 {
        gap: 24px;
        max-width: 900px;
    }

    .step-v3-card {
        padding: 36px 24px 32px;
    }

    .step-v3-phone .phone-frame {
        width: 210px;
        height: 435px;
        border-radius: 34px;
    }

    .step-v3-content h3 {
        font-size: 1.2rem;
    }

    .step-v3-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .steps-v3 {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 48px;
    }

    .step-v3-card {
        padding: 36px 24px 28px;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .step-v3-card--wide {
        max-width: 100%;
    }

    .step-v3-phone .phone-frame {
        width: 220px;
        height: 455px;
        border-radius: 34px;
    }

    .step-v3-phone-item .phone-frame {
        width: 150px;
        height: 310px;
        border-radius: 26px;
    }

    .step-v3-phone-item--featured .phone-frame {
        width: 170px;
        height: 350px;
        border-radius: 30px;
    }

    .step-v3-phone-group {
        gap: 12px;
    }

    .step-v3-phone-group .phone-label {
        font-size: 0.65rem;
    }

    .step-v3-content h3 {
        font-size: 1.15rem;
    }

    .step-v3-content p {
        font-size: 0.88rem;
    }

    .step-v3-checks li {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .step-v3-card {
        padding: 32px 20px 24px;
    }

    .step-v3-phone .phone-frame {
        width: 200px;
        height: 410px;
        border-radius: 32px;
    }

    .step-v3-phone-item .phone-frame {
        width: 115px;
        height: 240px;
        border-radius: 20px;
    }

    .step-v3-phone-item--featured .phone-frame {
        width: 130px;
        height: 270px;
        border-radius: 24px;
    }

    .step-v3-phone-group {
        gap: 8px;
    }

    .step-v3-phone-group .phone-label {
        font-size: 0.55rem;
    }

    .step-v3-content h3 {
        font-size: 1.05rem;
    }
}

/* ===== Small phone safety (iPhone SE, 375px and below) ===== */
@media (max-width: 375px) {
    .hero-showcase-mockup .phone-frame.iphone-pro {
        width: min(280px, 76vw);
        height: auto;
        aspect-ratio: 9 / 19.5;
    }

    .hero-steps-nav {
        gap: 2px;
    }

    .hero-step-tab {
        padding: 6px 8px;
    }

    .hero-step-num {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .pf-phone .phone-frame {
        width: 220px;
        height: 455px;
        border-radius: 34px;
    }

    .step-v3-phone .phone-frame {
        width: 180px;
        height: 370px;
        border-radius: 30px;
    }
}

/* Old Steps V4 / Differentiator / Zero Friction CSS removed — replaced by How to Start + Benefits sections */

/* (old step-v4 CSS removed) */

