    /* ── Material Kit Pro core overrides & custom styles ── */
:root {
    --mk-dark: #344767;
    --mk-primary: #e91e63;
    --mk-gray-100: #f8f9fa;
    --mk-gradient-dark: linear-gradient(195deg, #42424a, #191919);
    --mk-gradient-primary: linear-gradient(195deg, #EC407A, #D81B60);
    --mk-gradient-green: linear-gradient(195deg, #66BB6A, #43A047);
    --mk-radius: 0.75rem;
    --mk-shadow: 0 20px 27px 0 rgba(0,0,0,.05);
    --mk-shadow-lg: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px rgba(0,0,0,.2);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--mk-gray-100);
    color: var(--mk-dark);
}

/* ── NAVBAR ── */
.navbar-blur {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(200%) blur(30px);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    border-radius: 0.75rem;
}

.navbar-brand-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--mk-dark);
    letter-spacing: -.3px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--mk-dark);
    padding: 0.5rem 0.75rem;
}

/* ── PAGE HEADER / HERO ── */
.page-header {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    min-height: 75vh;
}

.page-header .mask {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.bg-gradient-dark { background: var(--mk-gradient-dark) !important; }
.opacity-6 { opacity: .6 !important; }
.opacity-8 { opacity: .8 !important; }

/* ── BUTTONS ── */
.btn {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    border-radius: .5rem;
    padding: .625rem 1.5rem;
    transition: all .15s ease-in;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-gradient-dark {
    background: var(--mk-gradient-dark);
    color: #fff;
    box-shadow: 0 4px 7px -1px rgba(0,0,0,.11), 0 2px 4px -1px rgba(0,0,0,.07);
}
.btn-gradient-dark:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.2);
    transform: translateY(-1px);
    color: #fff;
}

.btn-gradient-primary {
    background: var(--mk-gradient-primary);
    color: #fff;
    box-shadow: 0 4px 7px -1px rgba(233,30,99,.35);
}
.btn-gradient-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(233,30,99,.4);
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--mk-dark) !important;
    color: var(--mk-dark);
}
.btn-outline-dark:hover {
    background: var(--mk-dark);
    color: #fff;
}

.btn-white-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,.6) !important;
    color: #fff;
}

.btn-lg { padding: .875rem 2rem; font-size: .875rem; }
.btn-sm { padding: .4rem 1rem; font-size: .7rem; }

/* ── CARD ── */
.card {
    background: #fff;
    border-radius: var(--mk-radius);
    box-shadow: var(--mk-shadow);
    border: none;
}

.card-blur {
    background: rgba(255,255,255,.9);
    backdrop-filter: saturate(200%) blur(30px);
    border-radius: var(--mk-radius);
    box-shadow: var(--mk-shadow);
}

.card-dark {
    background: var(--mk-gradient-dark);
    color: #fff;
}

/* ── ICON SHAPES ── */
.icon-shape {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    flex-shrink: 0;
}

.icon-shape-dark { background: var(--mk-gradient-dark); }
.icon-shape-primary { background: var(--mk-gradient-primary); }
.icon-shape-green { background: var(--mk-gradient-green); }

.icon-shape .material-symbols-rounded {
    color: #fff;
    font-size: 1.25rem;
}

/* ── BADGE ── */
.badge-pill {
    display: inline-block;
    padding: .35em .9em;
    border-radius: 50rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.badge-dark {
    background: var(--mk-gradient-dark);
    color: #fff;
}

.badge-primary {
    background: var(--mk-gradient-primary);
    color: #fff;
}

.badge-light {
    background: #f0f2f5;
    color: var(--mk-dark);
}

/* ── TYPOGRAPHY ── */
h1 { font-weight: 700; line-height: 1.2; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }
h5 { font-weight: 600; }
.text-gradient-dark {
    background: var(--mk-gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead { font-size: 1.125rem; line-height: 1.6; }

/* ── STEP CIRCLES ── */
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mk-gradient-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--mk-shadow-lg);
}

/* ── HORIZONTAL INFO ── */
.info-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* ── VIDEO PLACEHOLDER ── */
.video-placeholder {
    background: #1a1a2e;
    border-radius: var(--mk-radius);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233,30,99,.15) 0%, rgba(52,71,103,.3) 100%);
}

.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .2s;
}

.play-btn:hover {
    background: rgba(255,255,255,.25);
    transform: scale(1.05);
}

/* ── PRICING ── */
.pricing-card {
    border-radius: var(--mk-radius);
    box-shadow: var(--mk-shadow);
    background: #fff;
    overflow: visible;
}

.pricing-card-featured {
    background: var(--mk-gradient-dark);
    transform: scale(1.04);
}

.pricing-badge {
    position: relative;
    top: -14px;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

/* ── PROBLEM SECTION ── */
.problem-item {
    border-left: 3px solid #e91e63;
    padding-left: 1.25rem;
}

/* ── PLATFORM ROADMAP ── */
.platform-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem 0;
    border-bottom: 1px solid rgba(52,71,103,.08);
}

.platform-item:last-child { border-bottom: none; }

.platform-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-active { background: #43A047; }
.dot-soon   { background: #e91e63; opacity: .7; }
.dot-dev    { background: #999; }

/* ── FOOTER ── */
footer { background: #fff; }

/* ── SCROLL ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ── UTILITIES ── */
.mt-n6 { margin-top: -4rem !important; }
.mt-n7 { margin-top: -5rem !important; }
.shadow-blur { box-shadow: inset 0 0 1px 1px hsla(0,0%,100%,.9), 0 20px 27px 0 rgba(0,0,0,.05) !important; }
.border-radius-lg { border-radius: var(--mk-radius) !important; }
.border-radius-xl { border-radius: 1rem !important; }
.z-index-2 { z-index: 2 !important; }

section { padding: 4rem 0; }

@media (max-width: 768px) {
    .page-header { min-height: 90vh; }
    h1 { font-size: 2rem; }
    .pricing-card-featured { transform: none; }
}
    .vh-150{height:150vh!important}
