/* ===============================
   SMARTMEET ROOT VARIABLES
================================ */
:root {
    --sm-dark: #011e47;
    --sm-dark-2: #0c1429;
    --sm-blue: #1462e0;
    --sm-blue-2: #1d9cf0;
    --sm-sky: #087ed7;
    --sm-orange: #ff6500;
    --sm-orange-2: #ff8a21;
    --sm-purple: #6d28d9;
    --sm-purple-2: #8b5cf6;
    --sm-text: #ffffff;
    --sm-muted: rgba(255, 255, 255, .88);
    --sm-border: #e5e7eb;
}

/* ===============================
   SMARTMEET BASE
================================ */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

/* ===============================
   SMARTMEET PAGE BACKGROUND
================================ */
.smartmeet-page {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 88% 42%, rgba(16, 31, 44, 0.84), transparent 22%),
        radial-gradient(circle at 82% 58%, rgba(3, 59, 82, 0.81), transparent 28%),
        linear-gradient(135deg, var(--sm-dark-2) 0%, var(--sm-dark-2) 100%);
}

.smartmeet-page::before {
    content: "";
    position: absolute;
    left: -170px;
    bottom: 22px;
    width: 720px;
    height: 310px;
    background: rgba(0, 31, 49, .84);
    transform: rotate(8deg);
    border-radius: 55px;
    z-index: 1;
}

.smartmeet-page::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: #ffffff;
    clip-path: polygon(0 40%, 16% 62%, 32% 48%, 50% 76%, 68% 48%, 84% 60%, 100% 34%, 100% 100%, 0 100%);
    z-index: 2;
}

/* ===============================
   SMARTMEET DESKTOP WRAPPER
================================ */
.wrap {
    position: relative;
    z-index: 5;
    width: min(1220px, calc(100% - 56px));
    height: 100vh;
    margin: 0 auto;
    padding: 40px 0 30px;
    display: grid;
    grid-template-rows: 92px 1fr 66px;
    overflow: hidden;
}

/* ===============================
   SMARTMEET LOGO
================================ */
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-row img {
    width: 210px;
    max-width: 52vw;
    height: auto;
    display: block;
}

.mobile-zoom-title,
.mobile-action-note,
.mobile-smartmeet-preview {
    display: none !important;
}

/* ===============================
   SMARTMEET DESKTOP HERO
================================ */
.hero-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(430px, .92fr);
    align-items: center;
    gap: 30px;
}

.hero-image {
    position: relative;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.hero-image > img:not(.mobile-smartmeet-preview) {
    width: min(650px, 100%);
    height: auto;
    max-height: 57vh;
    object-fit: contain;
    display: block;
    transform: translateY(-10px);
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .22));
    animation: smartMeetHeroFloat 5.5s ease-in-out infinite;
    will-change: transform, filter;
}

.hero-content {
    color: var(--sm-text);
    align-self: center;
}

.hero-content h1 {
    margin: 0;
    max-width: 580px;
    font-size: clamp(42px, 5.1vw, 66px);
    line-height: 1.03;
    letter-spacing: -2px;
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--sm-orange);
}

.hero-content p {
    max-width: 530px;
    margin: 18px 0 0;
    color: var(--sm-muted);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

/* ===============================
   SMARTMEET DESKTOP ACTIONS
================================ */
.hero-actions {
    margin-top: -50px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
    overflow: visible;
}

.hero-image-actions {
    margin-left: 120px;
    position: relative;
    z-index: 20;
}

.hero-icon-btn {
    position: relative;
    width: 66px;
    min-height: 88px;
    border: 0;
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: transparent;
    transition: transform .18s ease, filter .18s ease;
}

.hero-icon-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
}

.hero-icon-btn .icon-box {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 900;
}

.hero-icon-btn.orange .icon-box {
    background: linear-gradient(135deg, var(--sm-orange-2), var(--sm-orange));
}

.hero-icon-btn.blue .icon-box {
    background: linear-gradient(135deg, #0b72f0, #075ad8);
}

.hero-icon-btn.sky .icon-box {
    background: linear-gradient(135deg, #13b2f4, var(--sm-sky));
}

.hero-icon-btn.purple .icon-box {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.hero-icon-btn i {
    color: #ffffff;
    line-height: 1;
}

.action-caption {
    display: block;
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
}

/* ===============================
   SMARTMEET DESKTOP TOOLTIPS
================================ */
.hero-icon-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    min-width: max-content;
    max-width: 190px;
    padding: 8px 11px;
    border-radius: 10px;
    background: rgba(2, 6, 23, 0);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    z-index: 50;
}

.hero-icon-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    transform: translateX(-50%) translateY(6px);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(2, 6, 23, .94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    z-index: 50;
}

.hero-icon-btn:hover::before,
.hero-icon-btn:hover::after,
.hero-icon-btn:focus::before,
.hero-icon-btn:focus::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===============================
   SMARTMEET FEATURE STRIP
================================ */
.feature-strip {
    position: relative;
    z-index: 8;
    align-self: end;
    width: min(760px, 100%);
    margin: -20px auto;
    padding: 15px 26px;
    border-top: 1px solid rgba(15, 35, 64, .13);
    border-bottom: 1px solid rgba(15, 35, 64, .13);
    background: rgba(255, 255, 255, .82);
    display: flex;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(8px);
    animation: smartMeetFeatureGlow 5s ease-in-out infinite;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f2340;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.feature-item span {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    background: var(--sm-sky);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* ===============================
   SMARTMEET MESSAGE WRAP
================================ */
.message-wrap {
    position: fixed;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 32px));
    z-index: 2200;
}

.error,
.success {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.error {
    background: #fee2e2;
    color: #991b1b;
}

.success {
    background: #dcfce7;
    color: #166534;
}

/* ===============================
   SMARTMEET MODAL BASE
================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .68);
    backdrop-filter: blur(9px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    z-index: 2000;
}

.modal-backdrop.show {
    display: flex;
}

.modal-card {
    width: min(720px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    background: #ffffff;
    color: #172033;
    border-radius: 24px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, .34);
}

.modal-card.modal-small {
    width: min(500px, 100%);
}

.modal-head {
    padding: 20px 26px;
    border-bottom: 1px solid var(--sm-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.modal-head h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.6px;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #102033;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.modal-body {
    padding: 22px 26px 26px;
}

/* ===============================
   SMARTMEET FORM ELEMENTS
================================ */
label {
    display: block;
    font-weight: 900;
    margin: 0 0 7px;
    color: #172033;
    font-size: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.modal-body input,
.join-input,
.smartmeet-select {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0 13px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

.modal-body input:focus,
.join-input:focus,
.smartmeet-select:focus {
    border-color: var(--sm-blue);
    box-shadow: 0 0 0 4px rgba(11, 117, 217, .12);
}

/* ===============================
   SMARTMEET FORM GRIDS
================================ */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.row-3 {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 14px;
}

.pass-submit-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 14px;
    align-items: start;
}

.pass-submit-row .form-group {
    margin-bottom: 0;
}

/* ===============================
   SMARTMEET BUTTONS
================================ */
.btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 15px;
    background: var(--sm-orange);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    padding: 0 22px;
    font-size: 15px;
}

.btn.blue {
    background: var(--sm-blue);
}

.pass-submit-row .btn {
    height: 46px;
    margin-top: 24px;
    padding: 0 18px;
    border-radius: 14px;
    white-space: nowrap;
}

.join-help {
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
    margin: 9px 0 16px;
}

/* ===============================
   SMARTMEET REPEAT BOX
================================ */
.repeat-box {
    margin: 4px 0 14px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #f8fafc;
}

.repeat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.repeat-days {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.repeat-days.show {
    display: flex;
}

.day-pill {
    margin: 0;
    cursor: pointer;
}

.day-pill input {
    display: none;
}

.day-pill span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: all .16s ease;
}

.day-pill input:checked + span {
    background: #0b72f0;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 114, 240, .25);
}

.repeat-help {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

/* ===============================
   SMARTMEET SCHEDULED RESULTS
================================ */
.scheduled-results {
    margin-top: 18px;
}

.scheduled-empty,
.scheduled-card {
    padding: 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.scheduled-empty {
    color: #64748b;
    font-weight: 800;
}

.scheduled-count {
    margin-bottom: 10px;
    color: #172033;
    font-weight: 900;
}

.scheduled-card {
    margin-bottom: 10px;
}

.scheduled-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.scheduled-card-title {
    margin: 0;
    font-size: 16px;
    color: #111827;
    font-weight: 900;
}

.scheduled-card-meta {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.scheduled-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.scheduled-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.scheduled-action,
.scheduled-locked {
    min-height: 36px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scheduled-action {
    color: #ffffff;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.scheduled-action.green {
    background: #16a34a;
}

.scheduled-action.blue {
    background: #0b72f0;
}

.scheduled-action.orange {
    background: #f97316;
}

.scheduled-action.dark {
    background: #111827;
}

.scheduled-locked {
    background: #e5e7eb;
    color: #64748b;
}

.scheduled-loading {
    padding: 16px;
    font-weight: 900;
    color: #0b72f0;
}

/* ===============================
   SMARTMEET TABLET RESPONSIVE
================================ */
@media (max-width: 980px) {
    html,
    body {
        overflow: auto;
        height: auto;
    }

    .smartmeet-page {
        min-height: 100vh;
        height: auto;
        overflow: hidden;
    }

    .wrap {
        height: auto;
        min-height: 100vh;
        grid-template-rows: auto auto auto;
        padding: 24px 0 28px;
        overflow: visible;
    }

    .logo-row {
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .logo-row img {
        width: 260px;
        max-width: 64vw;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
    }

    .hero-content {
        text-align: center;
        padding: 0;
        order: 1;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.03;
        letter-spacing: -1.2px;
        max-width: 520px;
    }

    .hero-content p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.55;
        max-width: 500px;
    }

    .hero-image {
        order: 2;
        height: auto;
        align-items: center;
        justify-content: flex-start;
        padding-top: 0;
        margin-top: 4px;
    }

    .hero-image > img:not(.mobile-smartmeet-preview) {
        width: min(520px, 92vw);
        max-height: none;
        transform: translateY(0);
    }

    .hero-image-actions {
        margin-left: 0;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 26px;
    }

    .feature-strip {
        margin-top: 8px;
        flex-wrap: wrap;
    }
}

/* ===============================
   SMARTMEET MOBILE BASE
================================ */
@media (max-width: 620px) {
    html,
    body {
        width: 100%;
        min-height: 100%;
        height: auto !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #ffffff !important;
    }

    .smartmeet-page {
        width: 100%;
        min-height: 100vh !important;
        height: auto !important;
        overflow: visible !important;
        background: #ffffff !important;
    }

    .smartmeet-page::before,
    .smartmeet-page::after {
        display: none !important;
    }

    .wrap {
        width: 100% !important;
        min-height: 100vh !important;
        height: auto !important;
        display: block !important;
        padding: 0 !important;
        overflow: visible !important;
        background: #ffffff !important;
    }

    .logo-row,
    .hero-content {
        display: none !important;
    }
}

/* ===============================
   SMARTMEET MOBILE DARK HEADER
================================ */
@media (max-width: 620px) {
    .mobile-zoom-title {
        display: flex !important;
        width: 100% !important;
        height: 430px !important;
        min-height: 430px !important;
        max-height: 430px !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 42px 18px 132px !important;
        background: var(--sm-dark) !important;
    }

    .mobile-title-smeet {
        color: #ffffff !important;
        font-size: 46px !important;
        line-height: .95 !important;
        font-weight: 700 !important;
        letter-spacing: -2px !important;
    }

    .mobile-title-connect {
        margin-top: 4px !important;
        color: #f97316 !important;
        font-size: 58px !important;
        line-height: .92 !important;
        font-weight: 900 !important;
        letter-spacing: -3px !important;
    }

    .mobile-sub-title {
        margin-top: 8px !important;
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: .4px !important;
    }

    .mobile-sub-title h4 {
        margin: 0 !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        letter-spacing: inherit !important;
    }
}

/* ===============================
   SMARTMEET MOBILE FLOW
================================ */
@media (max-width: 620px) {
    .hero-grid {
        display: block !important;
        width: 100% !important;
        margin: -124px 0 0 !important;
        padding: 0 14px !important;
        background: var(--sm-dark) !important;
        border-radius: 0 !important;
        position: relative !important;
        z-index: 20 !important;
    }

    .hero-image {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: var(--sm-dark) !important;
        position: relative !important;
    }
}

/* ===============================
   SMARTMEET MOBILE ACTION PANEL
================================ */
@media (max-width: 620px) {
    .hero-image-actions {
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        z-index: 20 !important;
    }

    .hero-actions {
        order: 1 !important;
        width: min(100%, 292px) !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        padding: 0 0 18px !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        background: var(--sm-dark) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        align-content: start !important;
        justify-content: center !important;
    }
}

/* ===============================
   SMARTMEET MOBILE ACTION CARDS
================================ */
@media (max-width: 620px) {
    .hero-icon-btn {
        width: 100% !important;
        height: 92px !important;
        border: 1px solid rgba(226, 232, 240, .95) !important;
        border-radius: 14px !important;
        padding: 10px 8px !important;
        color: #0f172a !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        cursor: pointer !important;
        overflow: hidden !important;
        position: relative !important;
        isolation: isolate !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
        box-shadow:
            0 12px 28px rgba(0, 0, 0, .22),
            inset 0 1px 0 rgba(255, 255, 255, .95) !important;
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
    }

    .hero-icon-btn:hover {
        transform: translateY(-3px) !important;
        border-color: rgba(37, 99, 235, .25) !important;
        box-shadow:
            0 18px 34px rgba(0, 0, 0, .28),
            inset 0 1px 0 rgba(255, 255, 255, .98) !important;
    }

    .hero-icon-btn:active {
        transform: scale(.98) !important;
    }

    .hero-icon-btn.orange,
    .hero-icon-btn.blue,
    .hero-icon-btn.sky,
    .hero-icon-btn.purple {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
    }

    .hero-icon-btn .icon-box {
        position: absolute !important;
        right: 8px !important;
        bottom: 8px !important;
        width: 44px !important;
        height: 40px !important;
        border-radius: 10px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        box-shadow: 0 10px 18px rgba(15, 23, 42, .14) !important;
        z-index: 2 !important;
        overflow: visible !important;
        isolation: isolate !important;
        animation: smartMeetIconBreath 2.6s ease-in-out infinite !important;
    }

    .hero-icon-btn.orange .icon-box {
        background: linear-gradient(135deg, var(--sm-orange-2), var(--sm-orange)) !important;
        color: #ffffff !important;
    }

    .hero-icon-btn.blue .icon-box {
        background: linear-gradient(135deg, #386cff 0%, var(--sm-blue-2) 100%) !important;
        color: #ffffff !important;
    }

    .hero-icon-btn.sky .icon-box {
        background: linear-gradient(135deg, #14b8f4 0%, var(--sm-sky) 100%) !important;
        color: #ffffff !important;
        font-size: 17px !important;
    }

    .hero-icon-btn.purple .icon-box {
        background: linear-gradient(135deg, var(--sm-purple-2) 0%, var(--sm-purple) 100%) !important;
        color: #ffffff !important;
    }

    .hero-icon-btn .icon-box i {
        color: #ffffff !important;
        opacity: 1 !important;
    }

    .hero-icon-btn .icon-box::before,
    .hero-icon-btn .icon-box::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 16px;
        pointer-events: none;
        z-index: -1;
        opacity: 0;
        transform: scale(.82);
        animation: smartMeetWaitingRing 2.6s ease-out infinite;
    }

    .hero-icon-btn .icon-box::after {
        inset: -15px;
        animation-delay: .55s;
    }

    .hero-icon-btn.orange .icon-box::before,
    .hero-icon-btn.orange .icon-box::after {
        border: 2px solid rgba(255, 101, 0, .52);
        box-shadow: 0 0 22px rgba(255, 101, 0, .34);
    }

    .hero-icon-btn.blue .icon-box::before,
    .hero-icon-btn.blue .icon-box::after {
        border: 2px solid rgba(29, 111, 242, .52);
        box-shadow: 0 0 22px rgba(29, 111, 242, .34);
    }

    .hero-icon-btn.sky .icon-box::before,
    .hero-icon-btn.sky .icon-box::after {
        border: 2px solid rgba(8, 126, 215, .52);
        box-shadow: 0 0 22px rgba(8, 126, 215, .34);
    }

    .hero-icon-btn.purple .icon-box::before,
    .hero-icon-btn.purple .icon-box::after {
        border: 2px solid rgba(109, 40, 217, .52);
        box-shadow: 0 0 22px rgba(109, 40, 217, .34);
    }

    .hero-icon-btn:nth-child(1) .icon-box,
    .hero-icon-btn:nth-child(1) .icon-box::before,
    .hero-icon-btn:nth-child(1) .icon-box::after {
        animation-delay: 0s;
    }

    .hero-icon-btn:nth-child(2) .icon-box,
    .hero-icon-btn:nth-child(2) .icon-box::before,
    .hero-icon-btn:nth-child(2) .icon-box::after {
        animation-delay: .28s;
    }

    .hero-icon-btn:nth-child(3) .icon-box,
    .hero-icon-btn:nth-child(3) .icon-box::before,
    .hero-icon-btn:nth-child(3) .icon-box::after {
        animation-delay: .56s;
    }

    .hero-icon-btn:nth-child(4) .icon-box,
    .hero-icon-btn:nth-child(4) .icon-box::before,
    .hero-icon-btn:nth-child(4) .icon-box::after {
        animation-delay: .84s;
    }

    .hero-icon-btn:hover .icon-box {
        animation-play-state: paused !important;
        transform: scale(1.08) !important;
    }

    .action-caption {
        display: block !important;
        color: #0f172a !important;
        text-align: left !important;
        line-height: 1.08 !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .2px !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .hero-icon-btn:nth-child(1) .action-caption,
    .hero-icon-btn:nth-child(2) .action-caption,
    .hero-icon-btn:nth-child(3) .action-caption,
    .hero-icon-btn:nth-child(4) .action-caption {
        font-size: 0 !important;
    }

    .hero-icon-btn:nth-child(1) .action-caption::before {
        content: "CREATE";
        display: block;
        font-size: 14px;
        color: var(--sm-orange);
    }

    .hero-icon-btn:nth-child(1) .action-caption::after {
        content: "MEETING";
        display: block;
        margin-top: 2px;
        font-size: 9px;
        font-weight: 800;
        color: #64748b;
    }

    .hero-icon-btn:nth-child(2) .action-caption::before {
        content: "JOIN";
        display: block;
        font-size: 14px;
        color: var(--sm-blue);
    }

    .hero-icon-btn:nth-child(2) .action-caption::after {
        content: "MEETING";
        display: block;
        margin-top: 2px;
        font-size: 9px;
        font-weight: 800;
        color: #64748b;
    }

    .hero-icon-btn:nth-child(3) .action-caption::before {
        content: "SCHEDULE";
        display: block;
        font-size: 13px;
        color: var(--sm-sky);
    }

    .hero-icon-btn:nth-child(3) .action-caption::after {
        content: "MEETING";
        display: block;
        margin-top: 2px;
        font-size: 9px;
        font-weight: 800;
        color: #64748b;
    }

    .hero-icon-btn:nth-child(4) .action-caption::before {
        content: "OPEN";
        display: block;
        font-size: 14px;
        color: var(--sm-purple);
    }

    .hero-icon-btn:nth-child(4) .action-caption::after {
        content: "MEETINGS";
        display: block;
        margin-top: 2px;
        font-size: 9px;
        font-weight: 800;
        color: #64748b;
    }
}

/* ===============================
   SMARTMEET MOBILE NOTE + PREVIEW
================================ */
@media (max-width: 620px) {
    .mobile-action-note {
        order: 2 !important;
        display: block !important;
        margin: 0 !important;
        padding: 20px 10px !important;
        background: var(--sm-dark) !important;
        color: rgba(255, 255, 255, .88) !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        font-weight: 700 !important;
        text-align: center !important;
    }

    .hero-image > img:not(.mobile-smartmeet-preview),
    .feature-strip {
        display: none !important;
    }

    .hero-image img.mobile-smartmeet-preview {
        order: 3 !important;
        display: block !important;
        width: calc(100% + 28px) !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
        margin: 0 -14px !important;
        padding: 0 !important;
        background: var(--sm-dark) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        filter: none !important;
        transform: none !important;
        animation: none !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .hero-image::after {
        display: none !important;
        content: none !important;
    }
}

/* ===============================
   SMARTMEET MOBILE MODALS
================================ */
@media (max-width: 620px) {
    .modal-backdrop {
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        padding: 14px !important;
        display: none;
        align-items: center !important;
        justify-content: center !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .modal-backdrop.show {
        display: flex !important;
    }

    .modal-card,
    .modal-card.modal-small {
        width: min(100%, 340px) !important;
        max-height: calc(100dvh - 28px) !important;
        border-radius: 20px !important;
        margin: auto !important;
        overflow-y: auto !important;
    }

    .modal-head {
        padding: 16px 18px !important;
    }

    .modal-head h2 {
        font-size: 18px !important;
        line-height: 1.25 !important;
    }

    .modal-body {
        padding: 16px 18px 20px !important;
    }

    .modal-close {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .row,
    .row-3,
    .pass-submit-row,
    .repeat-row {
        grid-template-columns: 1fr !important;
    }

    .pass-submit-row .btn {
        margin-top: 0 !important;
    }

    .scheduled-card-head {
        display: block !important;
    }

    .scheduled-badge {
        margin-top: 8px !important;
    }

    .scheduled-action,
    .scheduled-locked {
        width: 100% !important;
    }

    .day-pill span {
        width: 34px !important;
        height: 34px !important;
    }
}

/* ===============================
   SMARTMEET SMALL PHONE
================================ */
@media (max-width: 390px) {
    .mobile-zoom-title {
        height: 422px !important;
        min-height: 422px !important;
        max-height: 422px !important;
        padding: 38px 18px 126px !important;
    }

    .mobile-title-smeet {
        font-size: 44px !important;
    }

    .mobile-title-connect {
        font-size: 56px !important;
    }

    .hero-grid {
        margin-top: -118px !important;
        padding: 0 12px !important;
    }

    .hero-actions {
        width: min(100%, 292px) !important;
        gap: 10px !important;
        padding-bottom: 16px !important;
    }

    .hero-icon-btn {
        height: 88px !important;
        border-radius: 13px !important;
        padding: 9px 8px !important;
    }

    .hero-icon-btn .icon-box {
        width: 44px !important;
        height: 40px !important;
        font-size: 17px !important;
    }

    .mobile-action-note {
        padding: 20px 8px !important;
        font-size: 12px !important;
    }

    .hero-image img.mobile-smartmeet-preview {
        width: calc(100% + 24px) !important;
        margin: 0 -12px !important;
    }
}

/* ===============================
   SMARTMEET ANIMATIONS
================================ */
@keyframes smartMeetHeroFloat {
    0%,
    100% {
        transform: translateY(-10px) scale(1);
        filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .22));
    }

    50% {
        transform: translateY(-18px) scale(1.012);
        filter: drop-shadow(0 34px 42px rgba(0, 0, 0, .28));
    }
}

@keyframes smartMeetFeatureGlow {
    0%,
    100% {
        box-shadow: 0 12px 30px rgba(15, 35, 64, .08);
    }

    50% {
        box-shadow: 0 18px 42px rgba(15, 35, 64, .16);
    }
}

@keyframes smartMeetWaitingRing {
    0% {
        opacity: 0;
        transform: scale(.82);
    }

    18% {
        opacity: .9;
    }

    70% {
        opacity: .18;
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes smartMeetIconBreath {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.07);
        filter: brightness(1.12);
    }
}

/* ===============================
   SMARTMEET ACCESSIBILITY
================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-image img,
    .feature-strip,
    .hero-icon-btn .icon-box,
    .hero-icon-btn .icon-box::before,
    .hero-icon-btn .icon-box::after {
        animation: none !important;
    }
}