/* ================================================
   Merchpartner - Startseite Styles
   Basiert auf Xavier Admin Theme (#cc1f77)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Bebas+Neue&display=swap');

:root {
    --pink:      #cc1f77;
    --pink-dark: #a01860;
    --pink-glow: rgba(204, 31, 119, 0.18);
    --dark:      #1a1c1d;
    --darker:    #111213;
    --sidebar:   #3B3F40;
    --card-bg:   #23262a;
    --text:      #e8e8e8;
    --text-muted:#9aa0a6;
    --white:     #ffffff;
    --border:    rgba(204,31,119,0.2);
    --radius:    4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--darker);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: var(--pink); transition: color 0.2s ease; }
a:hover { color: #e8389a; }

h1,h2,h3,h4,h5,h6 { font-weight: 300; line-height: 1.2; }

/* ================================================
   TOPBAR
   ================================================ */
.mp-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 60px;
    background: rgba(26,28,29,0.97);
    border-bottom: 2px solid var(--pink);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mp-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}
.mp-logo .logo-full {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.mp-logo .logo-accent {
    color: var(--pink);
}

.mp-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.mp-nav li a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.mp-nav li a:hover {
    color: var(--white);
    border-bottom-color: var(--pink);
}

.mp-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-dashboard:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--pink-glow);
}
.btn-dashboard i { font-size: 14px; }

/* ================================================
   HERO SECTION
   ================================================ */
.mp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
}

.mp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,28,29,0.96) 0%, rgba(26,28,29,0.80) 50%, rgba(160,24,96,0.25) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(204,31,119,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(204,31,119,0.10) 0%, transparent 50%);
    background-color: var(--darker);
}

/* Animated grid lines */
.mp-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(204,31,119,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204,31,119,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px,60px); }
}

/* Glowing orb */
.mp-hero-bg::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204,31,119,0.20) 0%, transparent 70%);
    border-radius: 50%;
    animation: orb 8s ease-in-out infinite alternate;
}

@keyframes orb {
    0% { transform: scale(1) translate(0,0); opacity: 0.6; }
    100% { transform: scale(1.2) translate(30px, -20px); opacity: 1; }
}

.mp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.mp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,31,119,0.15);
    border: 1px solid rgba(204,31,119,0.4);
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease both;
}
.mp-hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.mp-hero h1 {
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 800;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.mp-hero h1 .line-accent {
    display: block;
    color: var(--pink);
    -webkit-text-stroke: 0px;
}

.mp-hero-sub {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.mp-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 2px solid var(--pink);
    box-shadow: 0 0 30px var(--pink-glow);
}
.btn-primary-hero:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(204,31,119,0.4);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline-hero:hover {
    color: var(--pink);
    border-color: var(--pink);
    background: rgba(204,31,119,0.08);
}

.mp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.5s both;
}
.mp-hero-stat {
    text-align: center;
    position: relative;
}
.mp-hero-stat + .mp-hero-stat::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(204,31,119,0.3);
}
.mp-hero-stat .stat-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--pink);
    display: block;
    line-height: 1;
}
.mp-hero-stat .stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* scroll indicator */
.mp-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 1s both;
}
.mp-scroll-indicator .scroll-dot {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--pink), transparent);
    animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================
   SECTION BASE
   ================================================ */
section { padding: 90px 0; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before,
.section-label::after {
    content: '';
    flex: 1 1 0;
    max-width: 40px;
    height: 1px;
    background: var(--pink);
}
.section-label::before { display: none; }

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.section-title span { color: var(--pink); }

.section-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* ================================================
   USP STRIP
   ================================================ */
.mp-usp-strip {
    background: var(--pink);
    padding: 18px 0;
    overflow: hidden;
}
.mp-usp-inner {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.mp-usp-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    padding: 0 40px;
}
.mp-usp-item i { font-size: 15px; opacity: 0.85; }
.mp-usp-item::after {
    content: '✦';
    opacity: 0.5;
    margin-left: 40px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================================
   PRODUCTS / KATEGORIEN
   ================================================ */
.mp-products {
    background: var(--dark);
}

.mp-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.mp-cat-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: default;
}
.mp-cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--pink-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.mp-cat-card:hover {
    border-color: rgba(204,31,119,0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--pink-glow);
}
.mp-cat-card:hover::before { transform: scaleX(1); }

.mp-cat-icon {
    width: 54px; height: 54px;
    background: rgba(204,31,119,0.12);
    border: 1px solid rgba(204,31,119,0.25);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pink);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.mp-cat-card:hover .mp-cat-icon {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}
.mp-cat-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}
.mp-cat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}
.mp-cat-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    transition: gap 0.2s ease;
}
.mp-cat-card:hover .mp-cat-link { gap: 10px; }

/* ================================================
   WHY SECTION
   ================================================ */
.mp-why {
    background: var(--darker);
}
.mp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mp-why-text { }
.mp-why-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mp-why-feature {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mp-why-feature:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.mp-why-feat-icon {
    width: 44px; height: 44px;
    background: rgba(204,31,119,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pink);
    flex-shrink: 0;
}
.mp-why-feat-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}
.mp-why-feat-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Right side visual */
.mp-why-visual {
    position: relative;
}
.mp-why-card-stack {
    position: relative;
    padding: 20px;
}
.mp-quality-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}
.mp-quality-card .card-header-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mp-quality-card .card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(204,31,119,0.12);
    padding: 4px 12px;
    border-radius: 999px;
}
.mp-quality-card .card-check {
    width: 28px; height: 28px;
    background: var(--pink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--white);
}
.mp-quality-bar {
    margin-bottom: 14px;
}
.mp-quality-bar .bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.mp-quality-bar .bar-label span:last-child { color: var(--pink); }
.bar-track {
    height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink), #e8389a);
    border-radius: 999px;
    transition: width 1.5s ease;
}

/* floating badge */
.mp-float-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: var(--pink);
    color: var(--white);
    border-radius: var(--radius);
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(204,31,119,0.4);
    animation: floatBadge 3s ease-in-out infinite alternate;
}
@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
.mp-float-badge i { font-size: 18px; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.mp-process {
    background: var(--dark);
}
.mp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
}
.mp-steps::before {
    content: '';
    position: absolute;
    top: 38px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.mp-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.mp-step:hover {
    border-color: rgba(204,31,119,0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.mp-step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    color: var(--white);
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px var(--pink-glow);
}
.mp-step h4 {
    font-size: 15px; font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.mp-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   DASHBOARD CTA BANNER
   ================================================ */
.mp-cta-banner {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 60%, #6e1048 100%);
    position: relative;
    overflow: hidden;
}
.mp-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.mp-cta-banner::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.mp-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.mp-cta-text h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.mp-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    line-height: 1.6;
}
.mp-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--pink);
    font-size: 14px;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
}
.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    color: var(--pink-dark);
}
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}
.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.mp-testimonials {
    background: var(--darker);
}
.mp-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mp-testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}
.mp-testi-card:hover {
    border-color: rgba(204,31,119,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}
.mp-testi-quote {
    font-size: 40px;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
    opacity: 0.6;
}
.mp-testi-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.mp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mp-testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: var(--white); font-size: 16px;
    flex-shrink: 0;
}
.mp-testi-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
}
.mp-testi-role {
    font-size: 12px;
    color: var(--text-muted);
}
.mp-stars {
    color: var(--pink);
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* ================================================
   FOOTER
   ================================================ */
.mp-footer {
    background: #0d0f10;
    border-top: 1px solid rgba(204,31,119,0.2);
}
.mp-footer-top {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.mp-footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-top: 16px;
}
.mp-footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}
.mp-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mp-footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.mp-footer-col ul li a:hover { color: var(--pink); }

.mp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.mp-footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}
.mp-footer-bottom a { color: var(--pink); }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInDown {
    from { opacity:0; transform: translateY(-20px); }
    to { opacity:1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity:0; transform: translateY(30px); }
    to { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity:0; }
    to { opacity:1; }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .mp-why-grid { grid-template-columns: 1fr; }
    .mp-why-visual { display: none; }
    .mp-steps { grid-template-columns: repeat(2, 1fr); }
    .mp-steps::before { display: none; }
    .mp-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mp-nav { display: none; }
    .mp-topbar { padding: 0 16px; }
    .mp-hero h1 { font-size: 38px; }
    .mp-cat-grid { grid-template-columns: 1fr 1fr; }
    .mp-steps { grid-template-columns: 1fr; }
    .mp-testi-grid { grid-template-columns: 1fr; }
    .mp-cta-inner { flex-direction: column; text-align: center; }
    .mp-cta-buttons { justify-content: center; }
    .mp-footer-top { grid-template-columns: 1fr; }
    .mp-hero-stats { gap: 24px; }
    .mp-hero-stat + .mp-hero-stat::before { display: none; }
    .mp-float-badge { display: none; }
}

@media (max-width: 480px) {
    .mp-cat-grid { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .mp-hero-cta { flex-direction: column; align-items: stretch; }
    .btn-primary-hero, .btn-outline-hero { text-align: center; justify-content: center; }
}

/* ================================================
   MOBILE MENU TOGGLE (hamburger)
   ================================================ */
.mp-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.mp-menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .mp-menu-toggle { display: flex; }
}

/* Mobile nav drawer */
.mp-mobile-nav {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(26,28,29,0.98);
    border-bottom: 2px solid var(--pink);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
}
.mp-mobile-nav.open { display: flex; }
.mp-mobile-nav a {
    font-size: 15px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mp-mobile-nav a:hover { color: var(--pink); }
