/**
 * WardConnect marketing home (welcome), loaded only on the home route.
 */
html {
    scroll-behavior: smooth;
}

.wc-homepage {
    /*
     * Scoped brand tokens so the home page stays correct even if wc-semantic-system.css
     * fails to load (wrong path, cache, or subdirectory deploy on shared hosting).
     */
    --color-primary: #2f6df6;
    --color-primary-dark: #163b82;
    --wc-btn-primary-bg: linear-gradient(135deg, #1a3f7a 0%, #2f6df6 48%, #4f88ff 100%);
    --wc-btn-primary-shadow: 0 14px 32px rgba(13, 35, 80, 0.2);
    --wc-btn-primary-shadow-hover: 0 18px 38px rgba(13, 35, 80, 0.22);

    background:
        radial-gradient(circle at top left, rgba(47, 109, 246, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(13, 35, 80, 0.1), transparent 35%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    color: #13233f;
}

.wc-homepage .wc-hero,
.wc-homepage .wc-section {
    padding: 90px 0;
}

.wc-homepage .wc-hero {
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.wc-homepage .wc-eyebrow,
.wc-homepage .wc-section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.wc-homepage .wc-hero-title,
.wc-homepage .wc-section-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #0d2350;
}

.wc-homepage .wc-hero-title {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    margin-bottom: 22px;
}

.wc-homepage .wc-section-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    margin-bottom: 18px;
}

.wc-homepage .wc-hero-text,
.wc-homepage .wc-section-text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #4c5b75;
    max-width: 760px;
}

.wc-homepage .wc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    margin-bottom: 20px;
}

.wc-homepage .wc-hero-note {
    color: #6d7890;
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 600px;
}

.wc-homepage .wc-btn-primary,
.wc-homepage .wc-btn-outline {
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(13, 35, 80, 0.08);
}

.wc-homepage .wc-btn-primary {
    background: var(--wc-btn-primary-bg);
    color: #fff;
    border: none;
}

.wc-homepage .wc-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 38px rgba(47, 109, 246, 0.22);
}

.wc-homepage .wc-btn-outline {
    background: rgba(255, 255, 255, 0.85);
    color: #0d2350;
    border: 1px solid rgba(13, 35, 80, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.wc-homepage .wc-btn-outline:hover {
    transform: translateY(-2px);
    color: #0d2350;
    border-color: rgba(47, 109, 246, 0.35);
}

.wc-homepage .wc-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 24px;
}

/* Hero device mock + overlapping info cards (reference layout) */
.wc-homepage .wc-hero-mock-stage {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    min-height: 520px;
}

.wc-homepage .wc-floating-card {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 35, 80, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(13, 35, 80, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    width: min(240px, 46vw);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .wc-homepage .wc-floating-card {
        background: #ffffff;
    }
}

.wc-homepage .wc-floating-card-one {
    top: 6%;
    left: max(-12px, -2vw);
}

.wc-homepage .wc-floating-card-two {
    bottom: 10%;
    right: max(-12px, -2vw);
}

.wc-homepage .wc-mobile-preview {
    position: relative;
    z-index: 2;
    width: min(300px, 86vw);
    margin: 28px auto 0;
}

.wc-homepage .wc-mobile-preview-bezel {
    display: flex;
    flex-direction: column;
    border-radius: 36px;
    padding: 11px;
    background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
    box-shadow:
        0 32px 64px rgba(13, 35, 80, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.35s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    isolation: isolate;
}

.wc-homepage .wc-mobile-preview-screen {
    flex: 1 1 auto;
    min-height: 420px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 26px 26px 0 0;
    padding: 16px 14px 12px;
    color: #0d2350;
}

.wc-homepage .wc-mock-screen-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px;
    color: #0d2350;
}

.wc-homepage .wc-mock-block {
    margin-bottom: 12px;
}

.wc-homepage .wc-mock-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 6px;
}

.wc-homepage .wc-mock-optional {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
}

.wc-homepage .wc-mock-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d2350;
}

.wc-homepage .wc-mock-select::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #94a3b8;
}

.wc-homepage .wc-mock-date-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.wc-homepage .wc-mock-date-row::-webkit-scrollbar {
    display: none;
}

.wc-homepage .wc-mock-date-chip {
    flex: 0 0 auto;
    min-width: 72px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
    color: #475569;
}

.wc-homepage .wc-mock-date-chip small {
    display: block;
    font-weight: 700;
    font-size: 0.65rem;
    color: #64748b;
    margin-top: 2px;
}

.wc-homepage .wc-mock-date-chip.is-active {
    border-color: rgba(47, 109, 246, 0.45);
    background: rgba(239, 246, 255, 0.95);
    color: #1e40af;
}

.wc-homepage .wc-mock-date-chip.is-active small {
    color: #3b82f6;
}

.wc-homepage .wc-mock-slot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.wc-homepage .wc-mock-slot {
    text-align: center;
    padding: 9px 8px;
    border-radius: 12px;
    border: 1px solid rgba(47, 109, 246, 0.35);
    background: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    color: #2563eb;
}

.wc-homepage .wc-mock-slot.is-active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 14px rgba(47, 109, 246, 0.28);
}

.wc-homepage .wc-mock-input {
    min-height: 38px;
    padding: 8px 11px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0d2350;
}

.wc-homepage .wc-mock-input--muted {
    color: #64748b;
    font-weight: 600;
}

.wc-homepage .wc-mock-submit {
    margin-top: 14px;
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    background: var(--wc-btn-primary-bg);
    box-shadow: 0 10px 22px rgba(47, 109, 246, 0.25);
}

.wc-homepage .wc-mock-tabnav {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 4px;
    padding: 10px 8px 12px;
    margin: 0;
    background: #fff;
    border-radius: 0 0 24px 24px;
    border-top: 1px solid #e8edf5;
}

.wc-homepage .wc-mock-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    padding: 4px 2px;
}

.wc-homepage .wc-mock-tab i {
    font-size: 1.15rem;
}

.wc-homepage .wc-mock-tab.is-active {
    color: #2563eb;
}

/* Legacy hero image (unused in hero; kept for showcase section) */
.wc-homepage .wc-phone-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 36px;
    padding: 18px;
    box-shadow:
        0 25px 70px rgba(13, 35, 80, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    max-width: 420px;
}

.wc-homepage .wc-phone-image {
    display: block;
    width: 100%;
    border-radius: 28px;
}

.wc-homepage .wc-phone-placeholder {
    aspect-ratio: 9 / 16;
    max-height: 520px;
    border-radius: 28px;
    background: linear-gradient(160deg, #e8ecf4, #f5f7fb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b96ab;
    font-weight: 700;
    font-size: 1rem;
    border: 1px dashed rgba(13, 35, 80, 0.12);
}

.wc-homepage .wc-mini-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.wc-homepage .wc-mini-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0d2350;
    margin-bottom: 10px;
}

.wc-homepage .wc-badge-confirmed {
    display: inline-block;
    padding: 6px 12px;
    background: #d1fae7;
    color: #047857;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.wc-homepage .wc-mini-meta,
.wc-homepage .wc-mini-list div {
    color: #4c5b75;
    line-height: 1.6;
    font-size: 0.95rem;
}

.wc-homepage .wc-mini-meta strong {
    color: #64748b;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wc-homepage .wc-mini-list div + div {
    margin-top: 6px;
}

.wc-homepage .wc-feature-card,
.wc-homepage .wc-step-card,
.wc-homepage .wc-role-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 35, 80, 0.08);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 16px 45px rgba(13, 35, 80, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wc-homepage .wc-feature-card:hover,
.wc-homepage .wc-step-card:hover,
.wc-homepage .wc-role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(13, 35, 80, 0.12);
}

.wc-homepage .wc-feature-card h3,
.wc-homepage .wc-step-card h3,
.wc-homepage .wc-role-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d2350;
    margin-bottom: 14px;
}

.wc-homepage .wc-feature-card p,
.wc-homepage .wc-step-card p,
.wc-homepage .wc-role-card li {
    color: #57657d;
    line-height: 1.75;
    margin-bottom: 0;
}

.wc-homepage .wc-step-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wc-btn-primary-bg);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(47, 109, 246, 0.24);
}

.wc-homepage .wc-role-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.wc-homepage .wc-role-card li + li {
    margin-top: 10px;
}

.wc-homepage .wc-cta {
    padding-bottom: 110px;
}

.wc-homepage .wc-cta-box {
    background: linear-gradient(145deg, rgba(13, 35, 80, 0.97), rgba(18, 47, 105, 0.95));
    color: #fff;
    border-radius: 36px;
    padding: 60px 30px;
    box-shadow: 0 28px 80px rgba(13, 35, 80, 0.24);
}

.wc-homepage .wc-cta-box .wc-section-title,
.wc-homepage .wc-cta-box .wc-section-text {
    color: #fff;
}

.wc-homepage .wc-cta-box .wc-section-text {
    opacity: 0.88;
    max-width: 760px;
}

.wc-homepage .wc-cta-box .wc-section-label {
    color: #bfdbfe;
}

/* Sticky marketing navbar (home only) */
.wc-homepage .wc-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(13, 35, 80, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.wc-homepage .wc-navbar.wc-navbar-scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(13, 35, 80, 0.08);
    border-bottom-color: rgba(13, 35, 80, 0.09);
}

.wc-homepage .wc-brand,
.wc-homepage .wc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.wc-homepage .wc-brand-text {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0d2350;
}

.wc-homepage .wc-brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--wc-btn-primary-bg);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 24px rgba(47, 109, 246, 0.22);
}

.wc-homepage .wc-navbar-links {
    gap: 10px;
}

.wc-homepage .wc-navbar-links .nav-link {
    color: #33435f;
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.wc-homepage .wc-navbar-links .nav-link:hover {
    color: #0d2350;
    background: rgba(13, 35, 80, 0.05);
}

.wc-homepage .wc-navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-homepage .wc-nav-btn-primary,
.wc-homepage .wc-nav-btn-outline {
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.wc-homepage .wc-nav-btn-primary {
    background: var(--wc-btn-primary-bg);
    color: #fff;
    border: none;
    box-shadow: 0 12px 28px rgba(47, 109, 246, 0.2);
}

.wc-homepage .wc-nav-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.wc-homepage .wc-nav-btn-outline {
    background: rgba(255, 255, 255, 0.82);
    color: #0d2350;
    border: 1px solid rgba(13, 35, 80, 0.12);
}

.wc-homepage .wc-nav-btn-outline:hover {
    color: #0d2350;
    transform: translateY(-2px);
    border-color: rgba(47, 109, 246, 0.35);
}

.wc-homepage .wc-navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 8px;
    background: transparent;
}

.wc-homepage .wc-toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #0d2350;
    border-radius: 999px;
}

/* Footer */
.wc-homepage .wc-footer {
    background: linear-gradient(180deg, #0d2350 0%, #091731 100%);
    color: rgba(255, 255, 255, 0.86);
    padding: 80px 0 28px;
    margin-top: 0;
}

.wc-homepage .wc-footer-brand {
    max-width: 360px;
}

.wc-homepage .wc-footer-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    font-size: 0.98rem;
}

.wc-homepage .wc-footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.wc-homepage .wc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-homepage .wc-footer-links li + li {
    margin-top: 12px;
}

.wc-homepage .wc-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: all 0.2s ease;
}

.wc-homepage .wc-footer-links a:hover {
    color: #bfdbfe;
}

.wc-homepage .wc-footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

.wc-homepage .wc-footer .wc-brand-text {
    color: #fff;
}

@media (min-width: 992px) {
    .wc-homepage .wc-hero-mock-stage {
        max-width: 440px;
        min-height: 580px;
    }

    .wc-homepage .wc-mobile-preview {
        width: 300px;
    }

    .wc-homepage .wc-floating-card {
        width: 248px;
        padding: 20px;
    }

    .wc-homepage .wc-floating-card-one {
        left: -22px;
        top: 9%;
    }

    .wc-homepage .wc-floating-card-two {
        right: -26px;
        bottom: 11%;
    }
}

@media (max-width: 991.98px) {
    .wc-homepage .wc-hero,
    .wc-homepage .wc-section {
        padding: 70px 0;
    }

    .wc-homepage .wc-hero-visual {
        min-height: 0;
        padding: 4px 2px 12px;
    }

    .wc-homepage .wc-hero-mock-stage {
        min-height: 480px;
        max-width: 100%;
        padding: 0 max(4px, env(safe-area-inset-left, 0px)) 0 max(4px, env(safe-area-inset-right, 0px));
    }

    .wc-homepage .wc-mobile-preview {
        margin-top: 40px;
    }

    .wc-homepage .wc-floating-card {
        width: min(200px, 42vw);
        padding: 14px;
    }

    .wc-homepage .wc-floating-card-one {
        left: max(0px, 2vw);
        top: 2%;
    }

    .wc-homepage .wc-floating-card-two {
        right: max(0px, 2vw);
        bottom: 5%;
    }

    .wc-homepage .wc-phone-card {
        max-width: 100%;
    }

    .wc-homepage .wc-navbar {
        padding: 14px 0;
    }

    .wc-homepage .wc-navbar-links {
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .wc-homepage .wc-navbar-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wc-homepage .wc-nav-btn-primary,
    .wc-homepage .wc-nav-btn-outline {
        width: 100%;
        text-align: center;
    }

    .wc-homepage .wc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* -------------------------------------------------------------------------
   Premium sections: stats, showcase, testimonials, FAQ
   ------------------------------------------------------------------------- */

.wc-homepage .wc-stats {
    padding-top: 40px;
    padding-bottom: 56px;
}

.wc-homepage .wc-stats-wrap {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 35, 80, 0.08);
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(13, 35, 80, 0.08);
    backdrop-filter: blur(14px);
}

.wc-homepage .wc-stat-card {
    padding: 18px 10px;
}

.wc-homepage .wc-stat-number {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0d2350;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.wc-homepage .wc-stat-label {
    color: #5c6a82;
    line-height: 1.6;
    font-size: 0.96rem;
}

.wc-homepage .wc-showcase-large,
.wc-homepage .wc-showcase-small,
.wc-homepage .wc-testimonial-card,
.wc-homepage .wc-faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(13, 35, 80, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(13, 35, 80, 0.08);
    backdrop-filter: blur(14px);
}

.wc-homepage .wc-showcase-large {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-homepage .wc-showcase-large img {
    border-radius: 24px;
    width: 100%;
    max-width: 430px;
    box-shadow: 0 20px 45px rgba(13, 35, 80, 0.12);
}

.wc-homepage .wc-showcase-placeholder {
    border-radius: 24px;
    width: 100%;
    max-width: 430px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(160deg, #e8ecf4, #f5f7fb);
    color: #6d7890;
    font-size: 0.9rem;
    border: 1px dashed rgba(13, 35, 80, 0.12);
}

.wc-homepage .wc-showcase-small {
    padding: 28px;
    min-height: 180px;
    display: flex;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wc-homepage .wc-showcase-small:hover,
.wc-homepage .wc-testimonial-card:hover,
.wc-homepage .wc-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(13, 35, 80, 0.12);
}

.wc-homepage .wc-showcase-small h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0d2350;
    margin: 8px 0 12px;
}

.wc-homepage .wc-showcase-small p {
    color: #58667e;
    line-height: 1.75;
    margin: 0;
}

.wc-homepage .wc-testimonial-card {
    padding: 30px;
    height: 100%;
}

.wc-homepage .wc-testimonial-card p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: #4e5d76;
    margin-bottom: 22px;
}

.wc-homepage .wc-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wc-homepage .wc-testimonial-meta strong {
    color: #0d2350;
    font-weight: 800;
}

.wc-homepage .wc-testimonial-meta span {
    color: #a07a33;
    font-size: 0.95rem;
}

.wc-homepage .wc-faq-wrap {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.wc-homepage .wc-faq-item {
    padding: 26px 28px;
}

.wc-homepage .wc-faq-item h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0d2350;
    margin-bottom: 10px;
}

.wc-homepage .wc-faq-item p {
    margin: 0;
    color: #5b6a82;
    line-height: 1.8;
}

/* -------------------------------------------------------------------------
   Product preview: phone mock + dashboard mock
   ------------------------------------------------------------------------- */

.wc-homepage .wc-product-preview {
    position: relative;
}

.wc-homepage .wc-device-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 760px;
}

.wc-homepage .wc-phone-shell {
    width: 320px;
    background: linear-gradient(180deg, #0f1728 0%, #111f3d 100%);
    border-radius: 40px;
    padding: 14px;
    box-shadow:
        0 40px 90px rgba(13, 35, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.wc-homepage .wc-phone-topbar {
    width: 120px;
    height: 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin: 0 auto 14px;
}

.wc-homepage .wc-phone-screen {
    background:
        radial-gradient(circle at top right, rgba(47, 109, 246, 0.12), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
    border-radius: 28px;
    padding: 18px;
    min-height: 660px;
    overflow: hidden;
}

.wc-homepage .wc-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.wc-homepage .wc-app-kicker {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.wc-homepage .wc-app-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0d2350;
    margin: 0;
}

.wc-homepage .wc-app-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--wc-btn-primary-bg);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(47, 109, 246, 0.2);
}

.wc-homepage .wc-app-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 35, 80, 0.07);
    border-radius: 20px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(13, 35, 80, 0.05);
}

.wc-homepage .wc-app-card-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #7a879d;
    margin-bottom: 8px;
}

.wc-homepage .wc-app-select {
    font-size: 1rem;
    font-weight: 700;
    color: #102548;
}

.wc-homepage .wc-app-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-homepage .wc-app-slots span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf2fa;
    color: #23406d;
    font-size: 0.88rem;
    font-weight: 700;
}

.wc-homepage .wc-app-slots span.active {
    background: var(--wc-btn-primary-bg);
    color: #fff;
    box-shadow: 0 10px 22px rgba(47, 109, 246, 0.22);
}

.wc-homepage .wc-app-note-box {
    background: #f6f8fc;
    border-radius: 16px;
    padding: 12px;
    color: #55647d;
    line-height: 1.7;
    font-size: 0.94rem;
}

.wc-homepage .wc-app-button {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 14px 18px;
    margin-top: 8px;
    background: linear-gradient(135deg, #0d2350, #214b95);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(13, 35, 80, 0.16);
    cursor: default;
    opacity: 0.95;
}

.wc-homepage .wc-device-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 35, 80, 0.08);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 18px 45px rgba(13, 35, 80, 0.1);
    max-width: 220px;
    z-index: 3;
    backdrop-filter: blur(12px);
}

.wc-homepage .wc-device-badge strong {
    display: block;
    color: #0d2350;
    font-size: 1rem;
    margin-bottom: 8px;
}

.wc-homepage .wc-device-badge p {
    margin: 0;
    color: #5c6b83;
    line-height: 1.7;
    font-size: 0.92rem;
}

.wc-homepage .wc-device-badge-one {
    right: 10px;
    bottom: 70px;
}

.wc-homepage .wc-dashboard-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.88) 100%);
    border: 1px solid rgba(13, 35, 80, 0.08);
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 26px 60px rgba(13, 35, 80, 0.1);
    backdrop-filter: blur(16px);
}

.wc-homepage .wc-dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.wc-homepage .wc-dashboard-top h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0d2350;
    margin: 8px 0 0;
}

.wc-homepage .wc-dashboard-status {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 109, 246, 0.14);
    color: #1e40af;
    font-weight: 700;
    font-size: 0.9rem;
}

.wc-homepage .wc-dashboard-stat {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(13, 35, 80, 0.07);
    border-radius: 22px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(13, 35, 80, 0.05);
}

.wc-homepage .wc-dashboard-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0d2350;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.wc-homepage .wc-dashboard-stat-label {
    color: #5b6982;
    line-height: 1.6;
    font-size: 0.94rem;
}

.wc-homepage .wc-dashboard-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    margin-top: 18px;
}

.wc-homepage .wc-dashboard-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(13, 35, 80, 0.07);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(13, 35, 80, 0.05);
}

.wc-homepage .wc-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.wc-homepage .wc-panel-head h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0d2350;
    margin: 0;
}

.wc-homepage .wc-panel-head span {
    font-size: 0.84rem;
    color: #3b82f6;
    font-weight: 700;
}

.wc-homepage .wc-schedule-item,
.wc-homepage .wc-activity-item {
    padding: 14px 0;
    border-top: 1px solid rgba(13, 35, 80, 0.06);
}

.wc-homepage .wc-dashboard-panel .wc-panel-head + .wc-schedule-item,
.wc-homepage .wc-dashboard-panel .wc-panel-head + .wc-activity-item {
    border-top: none;
    padding-top: 0;
}

.wc-homepage .wc-schedule-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.wc-homepage .wc-schedule-item strong,
.wc-homepage .wc-activity-item strong {
    display: block;
    color: #0d2350;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.wc-homepage .wc-schedule-item p,
.wc-homepage .wc-activity-item p {
    margin: 0;
    color: #617088;
    line-height: 1.65;
    font-size: 0.93rem;
}

.wc-homepage .wc-pill-confirmed,
.wc-homepage .wc-pill-pending {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.wc-homepage .wc-pill-confirmed {
    background: rgba(43, 131, 90, 0.12);
    color: #1f7a4e;
}

.wc-homepage .wc-pill-pending {
    background: rgba(47, 109, 246, 0.16);
    color: #1e40af;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes wc-home-reveal-up {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .wc-homepage .wc-reveal-up {
        opacity: 0;
        animation: wc-home-reveal-up 0.65s ease forwards;
    }

    .wc-homepage .wc-delay-1 {
        animation-delay: 0.06s;
    }

    .wc-homepage .wc-delay-2 {
        animation-delay: 0.14s;
    }

    .wc-homepage .wc-delay-3 {
        animation-delay: 0.22s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wc-homepage .wc-reveal-up {
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .wc-homepage .wc-device-stack {
        min-height: auto;
        padding-bottom: 30px;
    }

    .wc-homepage .wc-device-badge {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 18px;
    }

    .wc-homepage .wc-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .wc-homepage .wc-phone-shell {
        width: 100%;
        max-width: 340px;
    }
}

/* -------------------------------------------------------------------------
   Luxury motion (hero glow, phone float, subtle hovers), home only
   ------------------------------------------------------------------------- */

@keyframes wc-home-float-glow {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-18px) translateX(10px) scale(1.05);
    }
}

@keyframes wc-home-float-phone {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
}

@keyframes wc-home-soft-pulse {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(47, 109, 246, 0.22);
    }

    50% {
        box-shadow: 0 14px 34px rgba(47, 109, 246, 0.3);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .wc-homepage .wc-hero::before,
    .wc-homepage .wc-hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
        z-index: 0;
    }

    .wc-homepage .wc-hero::before {
        width: 320px;
        height: 320px;
        top: 40px;
        left: -80px;
        background: rgba(47, 109, 246, 0.12);
        animation: wc-home-float-glow 8s ease-in-out infinite;
    }

    .wc-homepage .wc-hero::after {
        width: 360px;
        height: 360px;
        right: -90px;
        bottom: 20px;
        background: rgba(47, 109, 246, 0.1);
        animation: wc-home-float-glow 10s ease-in-out infinite reverse;
    }

    .wc-homepage .wc-hero .container,
    .wc-homepage .wc-section .container,
    .wc-homepage .wc-footer .container {
        position: relative;
        z-index: 1;
    }

    .wc-homepage .wc-mobile-preview-bezel {
        animation: wc-home-float-phone 6s ease-in-out infinite;
        transform-origin: center;
    }

    .wc-homepage .wc-btn-primary,
    .wc-homepage .wc-nav-btn-primary {
        position: relative;
        overflow: hidden;
    }

    .wc-homepage .wc-btn-primary::before,
    .wc-homepage .wc-nav-btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.18) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: skewX(-20deg);
        transition: left 0.8s ease;
        pointer-events: none;
    }

    .wc-homepage .wc-btn-primary:hover::before,
    .wc-homepage .wc-nav-btn-primary:hover::before {
        left: 140%;
    }

    .wc-homepage .wc-cta-box {
        position: relative;
        overflow: hidden;
    }

    .wc-homepage .wc-cta-box::before {
        content: "";
        position: absolute;
        inset: auto -20% -60% -20%;
        height: 220px;
        background: radial-gradient(circle, rgba(47, 109, 246, 0.2) 0%, rgba(47, 109, 246, 0) 70%);
        pointer-events: none;
    }

    .wc-homepage .wc-showcase-large img,
    .wc-homepage .wc-phone-image {
        transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    .wc-homepage .wc-showcase-large:hover img,
    .wc-homepage .wc-phone-card:hover .wc-phone-image {
        transform: scale(1.025);
        box-shadow: 0 28px 58px rgba(13, 35, 80, 0.16);
    }

    .wc-homepage .wc-mobile-preview:hover .wc-mobile-preview-bezel {
        box-shadow:
            0 40px 78px rgba(13, 35, 80, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .wc-homepage .wc-brand-mark,
    .wc-homepage .wc-step-number {
        animation: wc-home-soft-pulse 4.5s ease-in-out infinite;
    }

    .wc-homepage .wc-feature-card:hover,
    .wc-homepage .wc-step-card:hover,
    .wc-homepage .wc-role-card:hover,
    .wc-homepage .wc-showcase-small:hover,
    .wc-homepage .wc-testimonial-card:hover,
    .wc-homepage .wc-faq-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 575.98px) {
    .wc-homepage .wc-mobile-preview-screen {
        min-height: 380px;
        padding: 14px 11px 10px;
    }

    .wc-homepage .wc-mock-screen-title {
        font-size: 0.98rem;
        margin-bottom: 12px;
    }

    .wc-homepage .wc-mock-slot-grid {
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wc-homepage .wc-phone-card,
    .wc-homepage .wc-mobile-preview-bezel,
    .wc-homepage .wc-hero::before,
    .wc-homepage .wc-hero::after,
    .wc-homepage .wc-brand-mark,
    .wc-homepage .wc-step-number {
        animation: none !important;
    }

    .wc-homepage .wc-btn-primary::before,
    .wc-homepage .wc-nav-btn-primary::before {
        display: none;
    }

    .wc-homepage .wc-feature-card:hover,
    .wc-homepage .wc-step-card:hover,
    .wc-homepage .wc-role-card:hover,
    .wc-homepage .wc-showcase-small:hover,
    .wc-homepage .wc-testimonial-card:hover,
    .wc-homepage .wc-faq-item:hover {
        transform: translateY(-6px);
    }
}
