/* UdoSchools Marketing — 2026 Modern Design */

:root {
    --mkt-nav-height: 76px;
    --mkt-glass: rgba(255, 255, 255, 0.78);
    --mkt-glass-border: rgba(255, 255, 255, 0.55);
    /* Tuned 2026 palette — richer violet base + warm accents */
    --mkt-violet: #5B4AE8;
    --mkt-violet-deep: #3D2DB8;
    --mkt-violet-glow: #7C6CF8;
    --mkt-coral: #FF6B4A;
    --mkt-mint: #12C99B;
    --mkt-gold: #F5A623;
    --mkt-rose: #FF4D8D;
    --mkt-mesh-1: #5B4AE8;
    --mkt-mesh-2: #8B5CF6;
    --mkt-mesh-3: #12C99B;
    --mkt-mesh-4: #FF6B4A;
    --mkt-mesh-5: #FF4D8D;
    --mkt-gradient-hero: linear-gradient(135deg, var(--mkt-violet) 0%, var(--mkt-violet-glow) 40%, var(--mkt-coral) 100%);
    --mkt-gradient-cta: linear-gradient(135deg, #2A1F6E 0%, var(--mkt-violet-deep) 40%, var(--mkt-violet) 100%);
    --mkt-gradient-topbar: linear-gradient(90deg, #2A1F6E 0%, var(--mkt-violet) 45%, #7C3AED 100%);
}

body.marketing-body {
    font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
    color: var(--gray-800);
    background: #fff;
    padding-top: 0;
    overflow-x: hidden;
}

/* ── Site header shell ── */
.mkt-site-header {
    width: 100%;
}

/* ── Navbar ── */
.mkt-navbar {
    position: relative;
    z-index: 1030;
    padding: 0;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.mkt-navbar .mkt-nav-inner {
    background: #fff;
    padding: 0.55rem 0.75rem;
    transition: all 0.35s ease;
}

.mkt-nav-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.mkt-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mkt-navbar .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--gradient-btn-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(107, 86, 246, 0.35);
}

.mkt-navbar .nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--gray-600);
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
}

.mkt-navbar .nav-link:hover {
    color: var(--primary);
    background: var(--primary-50);
}

.mkt-navbar .nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-50);
}

.mkt-btn-ghost {
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 0.45rem 1.1rem;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    background: transparent;
    transition: all 0.2s;
}

.mkt-btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.mkt-btn-glow {
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    background: var(--mkt-gradient-hero);
    border: none;
    color: #fff;
    box-shadow: 0 6px 22px rgba(91, 74, 232, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mkt-btn-glow:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 74, 232, 0.55);
}

.mkt-navbar .navbar-toggler {
    border: none;
    padding: 0.35rem 0.5rem;
}

.mkt-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--primary-50);
}

/* Desktop — floating glass header */
@media (min-width: 992px) {
    body.marketing-body {
        padding-top: calc(var(--mkt-nav-height) + 1.5rem);
    }

    .mkt-site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }

    .mkt-navbar .mkt-nav-inner {
        background: var(--mkt-glass);
        backdrop-filter: blur(18px) saturate(1.4);
        -webkit-backdrop-filter: blur(18px) saturate(1.4);
        border: 1px solid var(--mkt-glass-border);
        border-radius: var(--radius-xl);
        margin: 0.65rem auto;
        max-width: calc(1320px - 2rem);
        padding: 0.45rem 1.25rem;
        box-shadow: 0 8px 32px rgba(107, 86, 246, 0.08);
    }

    .mkt-navbar.scrolled .mkt-nav-inner {
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
        box-shadow: 0 12px 40px rgba(29, 27, 35, 0.1);
        background: rgba(255, 255, 255, 0.92);
    }
}

/* ── Hero Carousel ── */
.mkt-hero-carousel {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}

.mkt-hero-carousel .carousel-inner,
.mkt-hero-carousel .carousel-item {
    min-height: 88vh;
}

.mkt-hero-slide {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.mkt-hero-slide--1 {
    background: linear-gradient(148deg, #F5F3FF 0%, #fff 42%, #ECFDF8 100%);
}

.mkt-hero-slide--2 {
    background: linear-gradient(148deg, #EDE9FE 0%, #fff 44%, #FFF4ED 100%);
}

.mkt-hero-slide--3 {
    background: linear-gradient(148deg, #E8FFF6 0%, #fff 44%, #F3EEFF 100%);
}

.mkt-hero-slide--4 {
    background: linear-gradient(148deg, #FFF0F6 0%, #fff 42%, #F0F4FF 100%);
}

.mkt-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    animation: mktBlobFloat 12s ease-in-out infinite;
}

.mkt-hero-blob--1 {
    width: 420px;
    height: 420px;
    background: var(--mkt-mesh-1);
    top: -80px;
    right: -60px;
}

.mkt-hero-blob--2 {
    width: 320px;
    height: 320px;
    background: var(--mkt-mesh-3);
    bottom: -40px;
    left: -80px;
    animation-delay: -4s;
}

.mkt-hero-blob--3 {
    width: 260px;
    height: 260px;
    background: var(--mkt-mesh-4);
    top: 40%;
    left: 35%;
    animation-delay: -8s;
    opacity: 0.25;
}

.mkt-hero-blob--4 {
    width: 380px;
    height: 380px;
    background: var(--mkt-mesh-5);
    top: -60px;
    right: 10%;
    animation-delay: -6s;
    opacity: 0.3;
}

@keyframes mktBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.mkt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gray-200);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.mkt-hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: mktPulse 2s infinite;
}

@keyframes mktPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.mkt-hero-slide h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.mkt-hero-accent {
    background: linear-gradient(120deg, var(--mkt-violet) 0%, var(--mkt-rose) 50%, var(--mkt-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mkt-hero-slide .lead {
    font-size: 1.12rem;
    color: var(--gray-600);
    max-width: 540px;
    line-height: 1.65;
}

.mkt-hero-visual {
    position: relative;
    z-index: 1;
}

.mkt-hero-mockup {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    box-shadow: 0 24px 60px rgba(107, 86, 246, 0.15), 0 0 0 1px rgba(107, 86, 246, 0.06);
}

.mkt-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.mkt-bento-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.15rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.mkt-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mkt-bento-card .num {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-btn-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.mkt-bento-card .lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

.mkt-bento-card.wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--mkt-gradient-cta);
    color: #fff;
    border: none;
}

/* Slide 4 — stakeholder cards */
.mkt-stakeholder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.mkt-stakeholder-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.15rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.mkt-stakeholder-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mkt-stakeholder-card i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mkt-stakeholder-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.mkt-stakeholder-card span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.mkt-stakeholder-card--parent i { color: var(--mkt-rose); }
.mkt-stakeholder-card--teacher i { color: var(--mkt-violet); }
.mkt-stakeholder-card--admin i { color: var(--mkt-mint); }
.mkt-stakeholder-card--student i { color: var(--mkt-gold); }

.mkt-bento-card.wide .lbl { color: rgba(255,255,255,0.8); }
.mkt-bento-card.wide .num {
    -webkit-text-fill-color: #fff;
    color: #fff;
    font-size: 2rem;
}

.mkt-hero-phone-float {
    position: absolute;
    right: -10px;
    bottom: -20px;
    width: 130px;
    z-index: 2;
    animation: mktPhoneFloat 5s ease-in-out infinite;
}

@keyframes mktPhoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.mkt-hero-carousel .carousel-indicators {
    margin-bottom: 2rem;
    gap: 0.35rem;
}

.mkt-hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    opacity: 1;
    transition: all 0.3s;
}

.mkt-hero-carousel .carousel-indicators .active {
    width: 32px;
    border-radius: var(--radius-full);
    background: var(--gradient-btn-primary);
}

.mkt-hero-carousel .carousel-control-prev,
.mkt-hero-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-200);
    opacity: 1;
    box-shadow: var(--shadow-md);
}

.mkt-hero-carousel .carousel-control-prev { left: 1.5rem; }
.mkt-hero-carousel .carousel-control-next { right: 1.5rem; }

.mkt-hero-carousel .carousel-control-prev-icon,
.mkt-hero-carousel .carousel-control-next-icon {
    filter: invert(35%) sepia(80%) saturate(1500%) hue-rotate(230deg);
    width: 1.25rem;
    height: 1.25rem;
}

/* ── Trust strip ── */
.mkt-trust-strip {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    background: linear-gradient(90deg, #FAFAFF 0%, #fff 50%, #F8FFFC 100%);
}

.mkt-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
}

.mkt-trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ── Mobile App Section ── */
.mkt-app-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #F3EEFF 45%, #FFF8F3 100%);
    overflow: hidden;
}

.mkt-app-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 86, 246, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.mkt-app-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    background: var(--primary-50);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.mkt-app-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.mkt-app-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.mkt-app-features li i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.mkt-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.mkt-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.1rem;
    border-radius: 14px;
    background: var(--gray-900);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 160px;
}

.mkt-store-badge:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 27, 35, 0.25);
}

.mkt-store-badge .small-label {
    font-size: 0.65rem;
    opacity: 0.75;
    display: block;
    line-height: 1;
}

.mkt-store-badge .store-name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.mkt-store-badge--soon {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px dashed var(--gray-300);
    cursor: default;
}

.mkt-store-badge--soon:hover {
    transform: none;
    box-shadow: none;
}

.mkt-store-badge--apple {
    background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
    color: #fff;
}

.mkt-store-badge--apple:hover {
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mkt-store-badge--play {
    background: linear-gradient(145deg, #1a3a2a 0%, #0d2818 100%);
    color: #fff;
}

.mkt-store-badge--play:hover {
    color: #fff;
    box-shadow: 0 8px 24px rgba(18, 201, 155, 0.3);
}

.mkt-hero-slide .mkt-store-badges {
    align-items: center;
}

.mkt-hero-slide .mkt-store-badge {
    min-width: 150px;
    padding: 0.5rem 0.9rem;
}

/* Phone mockup + screenshot carousel */
.mkt-phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.mkt-phone-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--mkt-mesh-3) 100%);
    filter: blur(60px);
    opacity: 0.35;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mkt-phone-frame {
    position: relative;
    z-index: 1;
    width: 280px;
    padding: 12px;
    border-radius: 44px;
    background: linear-gradient(160deg, #2d2a35 0%, #1D1B23 50%, #111 100%);
    box-shadow:
        0 40px 80px rgba(29, 27, 35, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mkt-phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #1D1B23;
    border-radius: 20px;
    z-index: 3;
}

.mkt-phone-screen {
    border-radius: 34px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9 / 19.5;
}

.mkt-phone-screen .carousel,
.mkt-phone-screen .carousel-inner,
.mkt-phone-screen .carousel-item {
    height: 100%;
}

.mkt-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mkt-app-carousel-outer {
    margin-top: 2rem;
}

.mkt-app-thumb-carousel .carousel-item {
    padding: 0 0.5rem;
}

.mkt-app-thumb {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
    aspect-ratio: 9/16;
    background: var(--gray-100);
}

.mkt-app-thumb.active,
.mkt-app-thumb:hover {
    border-color: var(--primary);
    transform: scale(1.03);
}

.mkt-app-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Sections ── */
.mkt-section {
    padding: 5rem 0;
}

.mkt-section-alt {
    background: var(--gray-50);
}

.mkt-section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.mkt-section-sub {
    color: var(--gray-500);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.mkt-feature-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 1.65rem;
    height: 100%;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.mkt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-btn-primary);
    opacity: 0;
    transition: opacity 0.25s;
}

.mkt-feature-card:hover {
    border-color: rgba(107, 86, 246, 0.3);
    box-shadow: 0 16px 40px rgba(107, 86, 246, 0.12);
    transform: translateY(-4px);
    color: inherit;
}

.mkt-feature-card:hover::before {
    opacity: 1;
}

.mkt-feature-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(107, 86, 246, 0.12);
}

.mkt-feature-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.mkt-feature-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.mkt-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    height: 100%;
    transition: box-shadow 0.25s;
}

.mkt-step-card:hover {
    box-shadow: var(--shadow-lg);
}

.mkt-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-btn-primary);
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(107, 86, 246, 0.35);
}

.mkt-pricing-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.mkt-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mkt-pricing-card.featured {
    border: 2px solid var(--mkt-violet);
    box-shadow: 0 20px 50px rgba(91, 74, 232, 0.22);
    transform: scale(1.02);
}

.mkt-pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
}

.mkt-pricing-card .plan-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.mkt-pricing-card .plan-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
}

.mkt-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    font-size: 0.9rem;
}

.mkt-pricing-card ul li {
    padding: 0.4rem 0;
    color: var(--gray-600);
}

.mkt-pricing-card ul li i {
    color: var(--success);
    margin-right: 0.5rem;
}

.mkt-cta-band {
    background: var(--mkt-gradient-cta);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-cta-band::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    right: -50px;
}

.mkt-cta-band h2 {
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}

.mkt-cta-band p {
    position: relative;
}

.mkt-testimonial {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    position: relative;
}

.mkt-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--primary-50);
    font-family: Georgia, serif;
    line-height: 1;
}

.mkt-testimonial .quote {
    font-style: normal;
    color: var(--gray-600);
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    line-height: 1.65;
}

.mkt-testimonial strong {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

/* ── Footer ── */
.mkt-footer {
    position: relative;
    background: linear-gradient(180deg, #1a1730 0%, #0e0c18 100%);
    color: var(--gray-400);
    padding: 0 0 1.5rem;
    margin-top: 0;
    overflow: hidden;
}

.mkt-footer-wave {
    display: block;
    width: 100%;
    height: 80px;
    margin-bottom: -1px;
}

.mkt-footer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 86, 246, 0.2) 0%, transparent 70%);
    top: 0;
    left: -100px;
    pointer-events: none;
}

.mkt-footer .footer-inner {
    padding: 3.5rem 0 2rem;
    position: relative;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.mkt-footer .brand-block {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.mkt-footer .brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--gradient-btn-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mkt-footer .brand-name {
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
}

.mkt-footer .brand-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.mkt-footer h6 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.mkt-footer ul li {
    margin-bottom: 0.65rem;
}

.mkt-footer a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.mkt-footer a:hover {
    color: #fff;
    padding-left: 4px;
}

.mkt-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.mkt-footer-contact-item .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(107, 86, 246, 0.2);
    color: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt-footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.mkt-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    padding: 0;
    transition: all 0.2s;
}

.mkt-footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    padding-left: 0;
    transform: translateY(-2px);
}

.mkt-footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1.5rem;
}

.mkt-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.mkt-footer-bottom a {
    color: var(--gray-500);
}

/* ── Inner pages ── */
.mkt-detail-hero {
    background: linear-gradient(145deg, var(--primary-50) 0%, #fff 100%);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.mkt-detail-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--gradient-btn-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 24px rgba(107, 86, 246, 0.35);
}

.mkt-screenshot-placeholder {
    background: var(--gray-50);
    border: 2px dashed var(--gray-200);
    border-radius: 20px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-align: center;
    padding: 2rem;
}

.mkt-comparison-table th,
.mkt-comparison-table td {
    font-size: 0.85rem;
    vertical-align: middle;
}

.mkt-comparison-table .check {
    color: var(--success);
}

.mkt-contact-info-card {
    background: linear-gradient(145deg, var(--primary-50) 0%, #fff 100%);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(107, 86, 246, 0.1);
}

.mkt-faq .accordion-button:not(.collapsed) {
    background: var(--primary-50);
    color: var(--primary-dark);
    font-weight: 600;
}

/* Legacy stat pills (other pages) */
.mkt-stat-pill {
    text-align: center;
    padding: 1.25rem;
    border-radius: 16px;
}

.mkt-stat-pill .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.mkt-stat-pill .lbl {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* ── Responsive — mobile & tablet ── */
@media (max-width: 991px) {
    /* Static full-width header (no floating pill) */
    .mkt-site-header {
        position: sticky;
        top: 0;
        z-index: 1040;
        background: #fff;
        box-shadow: 0 2px 16px rgba(29, 27, 35, 0.08);
    }

    .mkt-navbar {
        position: static;
    }

    .mkt-navbar .mkt-nav-inner {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #fff;
        padding: 0.5rem 0.75rem;
    }

    .mkt-navbar .navbar-brand {
        font-size: 1.15rem;
    }

    .mkt-navbar .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .mkt-navbar .navbar-toggler {
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        padding: 0.35rem 0.55rem;
    }

    /* Mobile menu panel */
    .mkt-navbar .navbar-collapse {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.25rem 0 0.75rem;
        border-top: 1px solid var(--gray-100);
    }

    .mkt-navbar .navbar-collapse.show,
    .mkt-navbar .navbar-collapse.collapsing {
        background: var(--gray-50);
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        border-radius: 0 0 12px 12px;
    }

    .mkt-navbar .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 0.35rem 0;
    }

    .mkt-navbar .nav-item {
        width: 100%;
    }

    .mkt-navbar .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.75rem 0.85rem !important;
        border-radius: 10px;
        font-size: 0.95rem;
    }

    .mkt-navbar .nav-link.active {
        background: var(--primary-50);
        color: var(--primary-dark);
        font-weight: 700;
    }

    .mkt-nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 0.75rem 0.85rem 0.25rem;
        margin-top: 0.25rem;
        border-top: 1px solid var(--gray-200);
    }

    .mkt-nav-actions .btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }

    .mkt-footer .footer-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mkt-footer-bottom {
        padding-left: 0.15rem;
        padding-right: 0.15rem;
    }

    .mkt-hero-carousel,
    .mkt-hero-carousel .carousel-inner,
    .mkt-hero-carousel .carousel-item,
    .mkt-hero-slide {
        min-height: auto;
    }

    .mkt-hero-slide {
        padding: 3rem 0 4rem;
    }

    .mkt-hero-phone-float {
        display: none;
    }

    .mkt-hero-carousel .carousel-control-prev,
    .mkt-hero-carousel .carousel-control-next {
        display: none;
    }

    .mkt-phone-frame {
        width: 240px;
    }

    .mkt-section {
        padding: 3.5rem 0;
    }

    .mkt-pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 575px) {
    .mkt-footer .footer-inner {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .mkt-store-badges {
        flex-direction: column;
    }
}
