/* --- CUSTOM VARIABLES --- */
:root {
    /* Color Palette - DARK theme with Cyan / Violet accents */
    --mf-bg: #090d16;
    --mf-secondary-bg: #0e1422;
    --mf-card-bg: #141b2c;
    --mf-accent: #00f0ff;
    --mf-accent-dim: rgba(0, 240, 255, 0.1);
    --mf-accent-hover: #00c7d4;
    --mf-glow: rgba(0, 240, 255, 0.25);
    
    --mf-text: #f1f5f9;
    --mf-text-muted: #94a3b8;
    
    /* Fonts declaration */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Config-based customization */
    --mf-container-width: 1140px;
    --mf-radius: 16px; /* soft border-radius definition */
    --mf-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.8), 0 0 25px 0 rgba(0, 240, 255, 0.15); /* Deep shadow with spread */
}

/* --- BASE STYLES --- */
body {
    background-color: var(--mf-bg);
    color: var(--mf-text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, .mf-brand-name {
    font-family: var(--font-display);
    text-transform: uppercase; /* heading-case: uppercase */
    letter-spacing: 0.05em;
}

/* --- THEMATIC WRAPPERS & CONTAINERS --- */
.mf-content-holder {
    width: 100%;
    max-width: var(--mf-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Top bar (Header) */
.mf-top-bar {
    background-color: var(--mf-secondary-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 20;
}

.mf-brand-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--mf-text);
    background: linear-gradient(135deg, #fff 40%, var(--mf-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Spotlight Section */
.mf-primary-showcase {
    background-color: var(--mf-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mf-decor-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.mf-subheading-accent {
    font-family: var(--font-display);
    color: var(--mf-accent);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
}

.mf-badge-capsule {
    background-color: var(--mf-accent-dim);
    color: var(--mf-accent);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: inline-block;
}

/* Features Mini Strip under intro description */
.mf-features-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Persistent CTA sticky element for desktop dynamics */
.mf-sticky-cta {
    background-color: var(--mf-secondary-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--mf-radius);
    box-shadow: var(--mf-shadow);
}

@media (min-width: 1024px) {
    .mf-sticky-cta {
        position: sticky;
        bottom: 2rem;
        z-index: 30;
    }
}

/* Price block configured as "badge" with accent backup */
.mf-price-tag {
    background-color: var(--mf-accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.75rem;
    padding: 0.25rem 1rem;
    border-radius: var(--mf-radius);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

/* Main action Anchor button styling */
.mf-action-anchor {
    background-color: var(--mf-text);
    color: #000;
    border-radius: var(--mf-radius);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.mf-action-anchor:hover {
    background-color: var(--mf-accent);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.5);
}

/* Visual component wrapper layout (Image container) */
.mf-visual-wrapper img {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
}

/* Trust Badge structure design */
.mf-trust-badge {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--mf-radius);
}

/* --- BENEFITS SECTION --- */
.mf-benefit-matrix-sec {
    background-color: var(--mf-secondary-bg);
    position: relative;
}

.mf-benefit-tile {
    background-color: var(--mf-card-bg);
    border-radius: var(--mf-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mf-benefit-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.mf-icon-spot {
    background-color: var(--mf-accent-dim);
    color: var(--mf-accent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

/* --- FEEDBACK/TESTIMONIALS --- */
.mf-feedback-hub {
    background-color: var(--mf-bg);
}

.mf-feedback-card {
    background-color: var(--mf-secondary-bg); /* slightly darker than standard layout items for Preset B */
    border-radius: var(--mf-radius);
    box-shadow: var(--mf-shadow);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.mf-quote-decor {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.mf-star-filled {
    color: #ffb800;
    font-size: 1.15rem;
}

.mf-star-empty {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.15rem;
}

.mf-avatar {
    background-color: var(--mf-accent-dim);
    border: 2px solid var(--mf-accent);
    color: var(--mf-accent);
}

/* --- FOOTER STYLE --- */
.mf-base-board {
    background-color: #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 20;
}