/*
Theme Name: Astra Child - Med Destiny Enhanced
Template: astra
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Core accent palette – calmer emerald primary */
    --primary-glow: #22c55e;    /* main accent (emerald green) */
    --secondary-glow: #f97316;  /* orange */
    --accent-glow: #2563eb;     /* blue accent */
    --success-glow: #22c55e;    /* keep green */
    --warning-glow: #eab308;    /* warm amber */

    /* Glass surfaces – neutral blue/gray instead of purple */
    --glass-bg: rgba(15, 23, 42, 0.9);
    --glass-border: rgba(59, 130, 246, 0.45);
    --glass-hover: rgba(37, 99, 235, 0.6);

    /* Typography */
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
}





- {
box-sizing: border-box;
}

/* Enhanced Base Styles */
.meddestiny-landing {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--text-primary);
background: #000000;
min-height: 100vh;
position: relative;
overflow-x: hidden;
}

/* Animated Gradient Background */
.meddestiny-landing::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        180deg,
        #020617 0%,
        #02081f 25%,
        #050816 55%,
        #02010c 80%,
        #000000 100%
    );
    z-index: 0;
}




/* Mesh Grid Background */
.meddestiny-landing::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(
            circle at 85% 10%,        /* position of light: x%, y% */
            rgba(56, 189, 248, 0.32), /* bright center color */
            rgba(15, 23, 42, 0.0) 55%,
            rgba(0, 0, 0, 0.9) 100%
        );
    mix-blend-mode: screen;
    opacity: 0.75;
}




/* Floating Orbs */
.md-hero::before,
.md-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: floatOrb 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.md-hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.55), transparent 70%);
    top: -200px;
    left: -100px;
}

.md-hero::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 70%);
    top: -100px;
    right: -50px;
    animation-delay: 3s;
}


@keyframes floatOrb {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -40px) scale(1.1); }
66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Section Base */
.md-section {
padding: 60px 40px;
max-width: 1600px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.md-section-header {
max-width: 900px;
margin: 0 auto 50px;
text-align: center;
}

.md-section-header h2 {
font-family: 'Outfit', sans-serif;
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 14px;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #ffffff, #ef4444, #f97316);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.md-section-header p {
color: var(--text-secondary);
font-size: 0.95rem;
line-height: 1.6;
}

/* Enhanced Buttons */
.md-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 28px;
border-radius: 14px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
text-decoration: none;
border: 2px solid transparent;
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.md-btn::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
opacity: 0;
transition: opacity 300ms;
}

.md-btn:hover::before {
opacity: 1;
}

.md-btn-primary {
background: linear-gradient(135deg, #ef4444, #f97316);
color: #ffffff;
box-shadow:
0 10px 40px rgba(239, 68, 68, 0.4),
0 0 60px rgba(249, 115, 22, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.md-btn-primary:hover {
transform: translateY(-4px) scale(1.02);
box-shadow:
0 20px 60px rgba(239, 68, 68, 0.5),
0 0 100px rgba(249, 115, 22, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.md-btn-ghost {
background: rgba(239, 68, 68, 0.1);
border: 2px solid rgba(239, 68, 68, 0.3);
color: var(--text-primary);
backdrop-filter: blur(10px);
}

.md-btn-ghost:hover {
background: rgba(239, 68, 68, 0.2);
border-color: rgba(239, 68, 68, 0.6);
transform: translateY(-4px);
box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

/* HERO SECTION */
.md-hero {
padding: 80px 40px 70px;
max-width: 1600px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.md-hero-inner {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
align-items: center;
}

.md-hero-text h1 {
font-family: 'Outfit', sans-serif;
font-size: clamp(2rem, 5vw, 3.5rem);
line-height: 1.1;
margin-bottom: 20px;
font-weight: 700;
letter-spacing: -0.03em;
background: linear-gradient(135deg, #ffffff 0%, #ef4444 50%, #f97316 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.md-hero-subtitle {
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.6;
margin-bottom: 28px;
max-width: 600px;
}

.md-hero-ctas {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-bottom: 32px;
}

.md-hero-trust {
display: flex;
flex-wrap: wrap;
gap: 10px 20px;
font-size: 0.8rem;
color: var(--text-muted);
}

.md-hero-trust span {
display: flex;
align-items: center;
gap: 8px;
}

.md-hero-trust span::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--primary-glow);
box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.7; transform: scale(0.95); }
}

.md-hero-card-wrap {
position: relative;
z-index: 2;
max-width: 420px;   /* reduced from 500–520px */
margin: 0 auto 0;   /* centers the card under the hero text */
margin-top: 50px;
}


.md-hero-card {
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.20), transparent 55%),
        radial-gradient(circle at bottom right, rgba(252, 211, 77, 0.28), transparent 60%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 15, 10, 0.98));
    border-radius: 28px;
    border: 1px solid rgba(250, 204, 21, 0.55);
    padding: 26px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.85),
        0 0 52px rgba(245, 158, 11, 0.55),
        inset 0 1px 0 rgba(254, 243, 199, 0.22);
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}


@keyframes cardFloat {
0%, 100% { transform: translateY(0) rotateX(0deg); }
50% { transform: translateY(-10px) rotateX(2deg); }
}

/* Glossy Overlay */
.md-hero-card::before {
    content: "";
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(250, 204, 21, 0.22) 0deg,
        transparent 70deg,
        rgba(245, 158, 11, 0.24) 160deg,
        transparent 240deg,
        rgba(253, 224, 71, 0.22) 320deg,
        transparent 360deg
    );
    animation: rotate 20s linear infinite;
    opacity: 0.55;
}


@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

/* Glass Shine */
.md-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.10) 0%,
        transparent 40%,
        transparent 60%,
        rgba(254, 243, 199, 0.10) 100%
    );
    border-radius: inherit;
    pointer-events: none;
}


.md-card-header,
.md-card-main,
.md-card-footer {
position: relative;
z-index: 2;
}

.md-card-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}

.md-pill {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border-radius: 10px;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
background: rgba(239, 68, 68, 0.15);
border: 1px solid rgba(239, 68, 68, 0.3);
color: #fecaca;
box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

.md-status-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--primary-glow);
box-shadow:
0 0 12px rgba(239, 68, 68, 0.7),
0 0 20px rgba(239, 68, 68, 0.4);
animation: pulse 2s ease-in-out infinite;
}

.md-card-main {
margin: 20px 0;
}

.md-main-stat {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 14px;
}

.md-stat-label {
font-size: 0.8rem;
color: var(--text-secondary);
font-weight: 500;
}

.md-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fef3c7, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.md-accent {
    background: linear-gradient(135deg, #fef9c3, #fbbf24, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.md-streak-row {
display: flex;
justify-content: space-between;
align-items: center;
margin: 16px 0;
padding: 12px;
background: rgba(239, 68, 68, 0.08);
border-radius: 14px;
border: 1px solid rgba(239, 68, 68, 0.15);
}

.md-streak-label {
font-size: 0.95rem;
color: #fed7aa;
font-weight: 600;
}

.md-streak-value {
font-family: 'Outfit', sans-serif;
font-size: 1.2rem;
font-weight: 700;
}

.md-progress-group {
margin-top: 20px;
}

.md-progress-label {
font-size: 0.75rem;
color: var(--text-secondary);
font-weight: 600;
margin-bottom: 6px;
display: block;
}

.md-progress-bar {
height: 8px;
border-radius: 999px;
background: rgba(15, 23, 42, 0.6);
overflow: hidden;
position: relative;
box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.md-progress-fill {
display: block;
height: 100%;
background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
border-radius: inherit;
position: relative;
transition: width 1s ease;
}

.md-progress-fill::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: shimmer 2s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

.md-progress-text {
margin-top: 8px;
font-size: 0.8rem;
color: var(--text-muted);
}

.md-card-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(239, 68, 68, 0.15);
}

.md-card-user {
display: flex;
align-items: center;
gap: 10px;
}

.md-avatar {
width: 40px;
height: 40px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 700;
background: linear-gradient(135deg, #ef4444, #f97316);
color: #ffffff;
box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.md-user-name {
font-weight: 600;
font-size: 0.9rem;
color: var(--text-primary);
margin-bottom: 2px;
}

.md-user-meta {
font-size: 0.75rem;
color: var(--text-muted);
}

.md-card-pill-pill {
display: flex;
gap: 6px;
}

.md-tag {
padding: 5px 10px;
border-radius: 8px;
font-size: 0.7rem;
font-weight: 600;
background: rgba(239, 68, 68, 0.15);
border: 1px solid rgba(239, 68, 68, 0.3);
color: #fecaca;
}

.md-tag-ghost {
background: rgba(249, 115, 22, 0.15);
border-color: rgba(249, 115, 22, 0.3);
color: #fed7aa;
}

/* Floating Cards */
.md-float-card {
position: absolute;
background: linear-gradient(135deg, rgba(127, 29, 29, 0.8), rgba(2, 6, 23, 0.9));
border-radius: 14px;
border: 1px solid rgba(239, 68, 68, 0.25);
padding: 14px 18px;
box-shadow:
0 15px 40px rgba(0, 0, 0, 0.4),
0 0 30px rgba(239, 68, 68, 0.15);
backdrop-filter: blur(20px);
z-index: 3;
animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}

.md-float-card-right {
top: 20%;
right: -120px;
animation-delay: 1s;
}

.md-float-card-left {
bottom: 30%;
left: -120px;
animation-delay: 2s;
}

.md-float-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin-bottom: 6px;
display: block;
}

.md-float-value {
font-size: 0.95rem;
font-weight: 600;
color: var(--text-primary);
}

/* FEATURES SECTION */
.md-features {
background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.02) 50%, transparent 100%);
}

.md-feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.md-feature-card {
background: linear-gradient(135deg, rgba(127, 29, 29, 0.08), rgba(2, 6, 23, 0.75));
border-radius: 20px;
border: 1px solid rgba(239, 68, 68, 0.2);
padding: 26px;
transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
backdrop-filter: blur(20px);
}

.md-feature-card::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.15), transparent 60%);
opacity: 0;
transition: opacity 400ms;
}

.md-feature-card:hover {
transform: translateY(-6px) scale(1.01);
border-color: rgba(239, 68, 68, 0.4);
box-shadow:
0 20px 60px rgba(0, 0, 0, 0.5),
0 0 40px rgba(239, 68, 68, 0.2);
}

.md-feature-card:hover::before {
opacity: 1;
}

.md-feature-card h3 {
font-family: 'Outfit', sans-serif;
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 10px;
color: var(--text-primary);
}

.md-feature-card p {
font-size: 0.9rem;
line-height: 1.6;
color: var(--text-secondary);
}



/* DASHBOARD PREVIEW */
.md-dashboard-preview {
    padding-top: 60px;
}

/* Metallic dashboard: dark metal → steel gradient, narrower width */
.md-dashboard-mock {
    width: 100%;
    max-width: 960px; /* metallic panel is a bit compact */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    background:
        radial-gradient(circle at top left, rgba(156, 163, 175, 0.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(75, 85, 99, 0.25), transparent 60%),
        linear-gradient(145deg, #020617, #030712 35%, #111827 70%, #4b5563 100%);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(15, 23, 42, 0.8),
        inset 0 1px 0 rgba(248, 250, 252, 0.06);
    overflow: hidden;
    backdrop-filter: blur(36px) saturate(1.2);
    -webkit-backdrop-filter: blur(36px) saturate(1.2);
    position: relative;
    min-height: 520px;
    animation: mdDashboardFloat 10s ease-in-out infinite;
}

/* Gentle float for the whole dashboard */
@keyframes mdDashboardFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-8px) scale(1.005); }
}

/* Metallic rotating highlight */
.md-dashboard-mock::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: conic-gradient(
        from 90deg at 50% 50%,
        rgba(209, 213, 219, 0.3) 0deg,
        transparent 70deg,
        rgba(156, 163, 175, 0.35) 170deg,
        transparent 240deg,
        rgba(55, 65, 81, 0.4) 310deg,
        transparent 360deg
    );
    animation: rotate 30s linear infinite;
    opacity: 0.45;
    pointer-events: none;
}

/* Sidebar: brushed metal look */
.md-dashboard-sidebar {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    padding: 24px 18px;
    border-right: 1px solid rgba(75, 85, 99, 0.8);
}

/* Logo with subtle steel gradient */
.md-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f9fafb, #d1d5db, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
}

/* small metallic dot icon */
.md-logo::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, #f9fafb, #9ca3af);
    box-shadow:
        0 0 10px rgba(243, 244, 246, 0.7),
        0 0 18px rgba(148, 163, 184, 0.8);
}

/* Sidebar nav */
.md-dashboard-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.md-dashboard-sidebar li {
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 9px 12px 9px 30px;
    border-radius: 10px;
    color: rgba(209, 213, 219, 0.9);
    cursor: pointer;
    transition: all 220ms ease;
}

/* pseudo “icon” bullets – neutral metallic */
.md-dashboard-sidebar li::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle, #e5e7eb, #6b7280);
    box-shadow: 0 0 10px rgba(148, 163, 184, 0.9);
    opacity: 0.6;
}

.md-dashboard-sidebar li:hover {
    background: rgba(17, 24, 39, 0.92);
    color: #f9fafb;
    box-shadow: 0 0 14px rgba(148, 163, 184, 0.4);
}

.md-dashboard-sidebar li:hover::before {
    opacity: 1;
}

.md-dashboard-sidebar li.active {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(55, 65, 81, 0.95));
    color: #f9fafb;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow:
        0 0 16px rgba(148, 163, 184, 0.9),
        0 0 24px rgba(31, 41, 55, 0.9);
}

/* Main area */
.md-dashboard-main {
    position: relative;
    z-index: 2;
    padding: 24px;
}

/* Top chips – metallic glass, no pink */
.md-dashboard-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.md-chip {
    position: relative;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(107, 114, 128, 0.8);
    color: #e5e7eb;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

/* subtle metallic shimmer */
.md-chip::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(249, 250, 251, 0.16) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: mdChipShimmer 6s ease-in-out infinite;
}

@keyframes mdChipShimmer {
    0%, 70% { transform: translateX(-100%); }
    100%    { transform: translateX(100%); }
}

.md-chip-soft {
    background: rgba(24, 32, 45, 0.9);
    border-color: rgba(75, 85, 99, 0.9);
    color: #d1d5db;
}

/* Modes grid */
.md-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* Mode cards – metallic mini panels */
.md-mode-card {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(156, 163, 175, 0.22), transparent 60%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.96));
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(107, 114, 128, 0.9);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.8);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    cursor: pointer;
    overflow: hidden;
}

/* small neutral “status” dot icon */
.md-mode-card::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    top: 16px;
    right: 16px;
    background: radial-gradient(circle, #f9fafb, #9ca3af);
    box-shadow: 0 0 18px rgba(209, 213, 219, 0.9);
    opacity: 0.9;
}

/* Slight tilt & stronger metallic glow on hover */
.md-mode-card:hover {
    transform: translateY(-5px) rotate3d(1, -1, 0, 5deg);
    border-color: rgba(229, 231, 235, 0.95);
    box-shadow:
        0 16px 46px rgba(0, 0, 0, 0.95),
        0 0 30px rgba(156, 163, 175, 0.8);
}

.md-mode-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f9fafb;
}

.md-mode-card p {
    color: #d1d5db;
    font-size: 0.85rem;
    line-height: 1.5;
}



/* FINAL CTA */
.md-final-cta {
margin-top: 60px;
padding: 70px 40px;
text-align: center;
position: relative;
}

.md-final-cta::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at top, rgba(239, 68, 68, 0.15), transparent 60%),
radial-gradient(circle at bottom, rgba(249, 115, 22, 0.15), transparent 60%);
filter: blur(60px);
z-index: -1;
}

.md-final-inner {
max-width: 900px;
margin: 0 auto;
}

.md-final-inner h2 {
font-family: 'Outfit', sans-serif;
font-size: clamp(1.75rem, 4vw, 2.8rem);
font-weight: 700;
margin-bottom: 16px;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #ffffff 0%, #ef4444 50%, #f97316 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.md-final-inner p {
font-size: 1rem;
color: var(--text-secondary);
margin-bottom: 32px;
line-height: 1.6;
}

.md-final-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
align-items: center;
margin-bottom: 32px;
}

.md-waitlist-form {
display: flex;
gap: 10px;
background: rgba(15, 23, 42, 0.75);
border-radius: 14px;
padding: 6px;
border: 1px solid rgba(239, 68, 68, 0.25);
box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
backdrop-filter: blur(20px);
}

.md-waitlist-form input[type="email"] {
background: transparent;
border: none;
color: var(--text-primary);
font-size: 0.9rem;
padding: 10px 16px;
min-width: 280px;
outline: none;
}

.md-waitlist-form input::placeholder {
color: var(--text-muted);
}

.md-waitlist-form button {
border: none;
border-radius: 10px;
padding: 10px 24px;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
background: linear-gradient(135deg, #ef4444, #f97316);
color: #ffffff;
box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
transition: all 300ms;
}

.md-waitlist-form button:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.md-footer-note {
font-size: 0.8rem;
color: var(--text-muted);
margin-top: 32px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
.md-float-card-right,
.md-float-card-left {
display: none;
}
}

@media (max-width: 1024px) {
    .md-hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 900px;
    }

    .md-hero-modules {
        justify-content: flex-start;
    }

    .md-hero-card-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    ...
}


.md-dashboard-mock {
    grid-template-columns: 1fr;
}

.md-dashboard-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.md-dashboard-sidebar ul {
    flex-direction: row;
    overflow-x: auto;
}
```

}

@media (max-width: 768px) {
.md-section {
padding: 60px 20px;
}

```
.md-hero {
    padding: 80px 20px 60px;
}

.md-feature-grid {
    grid-template-columns: 1fr;
}

.md-mode-grid {
    grid-template-columns: 1fr;
}

.md-waitlist-form {
    flex-direction: column;
    width: 100%;
}

.md-waitlist-form input[type="email"] {
    min-width: auto;
    width: 100%;
}

.md-waitlist-form button {
    width: 100%;
}
```

}

/* === Home-only Theme Overrides (Astra Child) === */
body.home {
    background: #000000 !important;
    color: var(--text-primary);
}

.home .site,
.home .site-content,
.home .ast-container,
.home #page,
.home #content {
    background: transparent !important;
}

.home .site-header,
.home .main-header-bar,
.home .ast-primary-header-bar {
    background: rgba(2, 6, 23, 0.95) !important;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.home .site-header a,
.home .main-header-bar a,
.home .ast-primary-header-bar a {
    color: var(--text-primary) !important;
}

/* Active menu accent – keep global or also scope if you want only on home */
.site-header .menu-item.current-menu-item > a {
    color: var(--primary-glow) !important;
}

.home .site-footer,
.home .ast-footer-overlay,
.home .ast-small-footer {
    background: rgba(2, 6, 23, 0.95) !important;
    color: var(--text-muted);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

.home .ast-plain-container #primary,
.home .ast-plain-container .site-main {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent !important;
}

.home .ast-box-layout .site {
    background: transparent !important;
}

/* Accessibility – this is safe to leave global */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* Make Astra container full-width and remove side padding on HOME only */
.home .ast-container,
.home .site-content,
.home #primary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* Remove inner content padding on front page */
.home .site-main,
.home .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Our landing wrapper already handles its own padding */
.meddestiny-landing {
    padding: 0;
}

/* Hero is full-bleed */
.md-hero {
    padding: 80px 40px 70px;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}




/* Kill Astra's top padding/margins above our landing main */
.home .site-main.meddestiny-landing,
.home #primary.site-main.meddestiny-landing {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove extra spacing from Astra's content wrappers on home */
.home .ast-plain-container #primary,
.home .ast-plain-container .site-main,
.home .site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Make sure header doesn't push content down with extra bottom padding/margin */
.site-header,
.main-header-bar,
.ast-primary-header-bar {
    margin-bottom: 0 !important;
    padding-bottom: 0.5rem !important; /* adjust if you want it tighter/looser */
}


/* Hide Astra header and footer only on the homepage */
.home .site-header,
.home .main-header-bar,
.home .ast-primary-header-bar,
.home .site-footer,
.home .ast-footer-overlay,
.home .ast-small-footer {
    display: none !important;
}

/* Remove any leftover spacing from Astra wrappers on home */
.home #page,
.home .site,
.home .site-content,
.home .ast-container,
.home .site-main {
    margin: 0 !important;
    padding: 0 !important;
}

/* Let our landing take over full viewport */
.home .meddestiny-landing {
    min-height: 100vh;
}

/* Hide study timer UI on homepage */

.home .fmge-study-timer-floating {
    display: none !important;
}





/* Hero modules preview on the right */
.md-hero-modules {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

/* Stack of two module cards with subtle parallax */
.md-module-stack {
    position: relative;
    width: 100%;
    max-width: 360px;
    transform-style: preserve-3d;
    animation: mdStackFloat 8s ease-in-out infinite;
}

@keyframes mdStackFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50%      { transform: translateY(-8px) rotateX(2deg); }
}

/* Base module card: transparent, glossy, glowy */
.md-module-card {
    position: relative;
    border-radius: 20px;
    padding: 18px 20px;
    background: radial-gradient(circle at top left,
                rgba(59, 130, 246, 0.18),
                rgba(15, 23, 42, 0.92));
    border: 1px solid var(--glass-border);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.9),
        0 0 40px rgba(59, 130, 246, 0.35);
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
    overflow: hidden;
}

/* Soft inner glow overlay */
.md-module-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.25), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.25), transparent 55%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Glass highlight streak */
.md-module-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 40%,
        transparent 60%,
        rgba(148, 163, 184, 0.08) 100%
    );
    opacity: 0.8;
    pointer-events: none;
}

/* Hover state: stronger glow */
.md-module-card:hover {
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 0.95),
        0 0 55px rgba(37, 99, 235, 0.6);
    transform: translateY(-4px);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top card: Pre-built modules */
.md-module-card-prebuilt {
    transform: rotate(-4deg);
    transform-origin: 20% 110%;
    animation: mdCardWiggleLeft 10s ease-in-out infinite;
}

@keyframes mdCardWiggleLeft {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50%      { transform: rotate(-2deg) translateY(-6px); }
}

/* Bottom card: Custom module */
/* Bottom card: Custom module – cooler blue hue, less violet */
.md-module-card-custom {
    margin-top: -40px;
    transform: rotate(5deg);
    transform-origin: 80% 0%;
    background: radial-gradient(
                circle at top right,
                rgba(37, 99, 235, 0.25),
                rgba(15, 23, 42, 0.96)
            );
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.95),
        0 0 55px rgba(59, 130, 246, 0.6);
    animation: mdCardWiggleRight 11s ease-in-out infinite;
}


@keyframes mdCardWiggleRight {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50%      { transform: rotate(3deg) translateY(-4px); }
}

/* Module card header */
.md-module-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.md-module-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #dbeafe;
}

.md-module-pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.8);
    color: #bfdbfe;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.6);
}

.md-module-pill-soft {
    background: rgba(129, 140, 248, 0.25);
    border-color: rgba(129, 140, 248, 0.8);
    color: #e0e7ff;
    box-shadow: 0 0 18px rgba(129, 140, 248, 0.5);
}

/* Pre-built modules list */
.md-module-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.md-module-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 12px;
    background: radial-gradient(circle at top left,
                rgba(15, 23, 42, 0.9),
                rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.8);
}

/* Round badges for module icons */
.md-module-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0b1120;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.7);
}

/* Slight color variations per type */
.md-module-icon-pyts {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.7);
}

.md-module-icon-gi {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
}

.md-module-icon-test {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    box-shadow: 0 0 18px rgba(129, 140, 248, 0.7);
}

.md-module-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.md-module-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e5f0ff;
}

.md-module-meta {
    font-size: 0.75rem;
    color: #93c5fd;
}

/* Custom module body layout */
.md-module-body-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.md-module-chip-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.md-module-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e0e7ff;
}

.md-module-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.md-module-chip {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(191, 219, 254, 0.6);
    color: #dbeafe;
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.4);
}

.md-module-questions {
    margin-top: 4px;
}

.md-module-questions-row {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.md-module-q-pill {
    min-width: 34px;
    padding: 4px 0;
    border-radius: 10px;
    text-align: center;
    font-size: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(191, 219, 254, 0.7);
    color: #bfdbfe;
}

.md-module-q-pill-active {
    background: linear-gradient(135deg, #3b82f6, #38bdf8);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.9);
}

.md-module-footer {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(226, 232, 240, 0.45);
}

.md-module-footer-text {
    font-size: 0.75rem;
    color: #c7d2fe;
}


/* Hero logo top-left: bare logo, no container */
.md-hero-logo {
    position: absolute;
    top: 24px;
    left: 40px;
    z-index: 3;
}

.md-hero-logo img {
    display: block;
    height: 120px;
    width: auto;
}

/* Tighter on small screens */
@media (max-width: 768px) {
    .md-hero-logo {
        top: 16px;
        left: 20px;
    }

    .md-hero-logo img {
        height: 32px;
    }


}


.md-hero-inner {
    max-width: 1500px;
    margin-left: 40px;

}

/* Force Astra footer to be fully black everywhere */
.site-footer#colophon,
.site-footer#colophon .site-below-footer-wrap,
.site-footer#colophon .ast-builder-grid-row-container-inner,
.site-footer#colophon .ast-builder-footer-grid-columns,
.site-footer#colophon .site-footer-section,
.site-footer#colophon .ast-footer-copyright {
    background-color: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
}

/* Footer text and link colors */
.site-footer#colophon,
.site-footer#colophon * {
    color: #ffffff !important;
}

.site-footer#colophon a {
    color: #ffffff !important;
}

.site-footer#colophon a:hover {
    color: #f97316 !important; /* optional hover accent, tweak if you want */
}




/* FMGE Pricing page */



.fmge-pricing-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px 40px;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fmge-pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.fmge-pricing-title {
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.fmge-pricing-subtitle {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

/* 3‑column grid with stacking on mobile */
.fmge-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}


@media (max-width: 900px) {
  .fmge-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Card base */
.fmge-price-card {
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #020617 100%);
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 20px 45px rgba(0,0,0,0.9);
}

/* Highlight middle card a bit more */
.fmge-price-card--highlight {
  transform: translateY(-4px);
  box-shadow:
    0 26px 60px rgba(0,0,0,1),
    0 0 0 1px rgba(248,250,252,0.15);
}

/* Small label at the top */
.fmge-price-card-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(148,163,184,0.7);
  color: #e5e7eb;
  margin-bottom: 8px;
}

.fmge-price-card-tag--popular {
  border-color: #22c55e;
  color: #bbf7d0;
}

/* Titles / prices */
.fmge-price-card-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}

.fmge-price-card-price {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
}

.fmge-price-card-price span {
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}

.fmge-price-card-blurb {
  font-size: 13px;
  color: #9ca3af;
  margin: 0 0 10px;
}

/* Features list */
.fmge-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13px;
}

.fmge-price-features li {
  margin-bottom: 4px;
}

/* CTA buttons */
.fmge-price-cta {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
}

.fmge-price-cta--primary {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(22,163,74,0.45);
}

.fmge-price-cta--ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148,163,184,0.7);
}

.fmge-price-cta--outline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(56,189,248,0.75);
}

.fmge-price-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: #9ca3af;
}

/* Stacked options inside the 3/6 month card */
.fmge-price-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 10px;
}

.fmge-price-option {
  border-radius: 14px;
  padding: 10px 10px 10px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(55,65,81,0.9);
}

.fmge-price-option--primary {
  border-color: #22c55e;
}

.fmge-price-option-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  margin-bottom: 4px;
}

.fmge-price-option-label {
  font-weight: 600;
}

.fmge-price-option-save {
  font-size: 11px;
  color: #bbf7d0;
}

.fmge-price-option-price .main {
  font-size: 18px;
  font-weight: 600;
}

.fmge-price-option-price .sub {
  font-size: 11px;
  color: #9ca3af;
  margin-left: 4px;
}

.fmge-price-option-effective {
  font-size: 11px;
  color: #9ca3af;
  margin: 4px 0 6px;
}

.fmge-price-features--compact {
  font-size: 12px;
}


body.fmge-dark-page {
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000000 100%) !important;
  color: #e5e7eb !important;
}

body.fmge-dark-page .site,
body.fmge-dark-page .ast-container,
body.fmge-dark-page .site-content,
body.fmge-dark-page .content-area,
body.fmge-dark-page .entry-content,
body.fmge-dark-page .ast-plain-container,
body.fmge-dark-page .ast-page-builder-template {
  background: transparent !important;
  box-shadow: none !important;
}

/* FMGE dark pages – force header to match dark background */
body.fmge-dark-page header,
body.fmge-dark-page .main-header-bar,
body.fmge-dark-page .ast-primary-header-bar,
body.fmge-dark-page .site-header,
body.fmge-dark-page #masthead,
body.fmge-dark-page .ast-mobile-header,
body.fmge-dark-page .ast-main-header-wrap {
  background-color: #020617 !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Make header menu area transparent over the dark background if needed */
body.fmge-dark-page .site-primary-header-wrap.ast-container,
body.fmge-dark-page .site-primary-header-wrap {
  background: transparent !important;
  box-shadow: none !important;
}

/* Ensure header text/links are readable on dark */
body.fmge-dark-page .site-header,
body.fmge-dark-page .site-header * {
  color: #e5e7eb !important;
}

body.fmge-dark-page .main-header-menu .menu-link {
  color: #e5e7eb !important;
}

body.fmge-dark-page .main-header-menu .menu-link:hover {
  color: #f97316 !important; /* optional accent */
}


/* Hide study timer panel on pricing page */
body.page-id-362 .fmge-study-panel,
body.page-id-362 .fmge-study-timer-floating {
    display: none !important;
}


/* Remove yellow line / top border on footer */
.site-footer#colophon,
.site-footer#colophon .site-below-footer-wrap,
.site-footer#colophon .ast-builder-grid-row-container-inner,
.site-footer#colophon .ast-builder-footer-grid-columns,
.site-footer#colophon .site-footer-section,
.site-footer#colophon .ast-footer-copyright {
    border-top: none !important;
    border-bottom: none !important;
}




/* === Med Destiny – Solid olive pastel green header/menu === */

/* Solid bar everywhere */
.site-header,
.main-header-bar,
.ast-primary-header-bar {
    background: #4c6f3b !important; /* tweak this hex until it feels right */
    border-bottom: none !important;
    box-shadow: 0 0 0 rgba(0,0,0,0); /* remove glassy shadow */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Home-specific header override must not be dark */
.home .site-header,
.home .main-header-bar,
.home .ast-primary-header-bar {
    background: #4c6f3b !important;
}

/* Menu links – plain white */
.main-header-menu .menu-link,
.main-header-menu .menu-item > a,
.home .site-header a,
.home .main-header-bar a,
.home .ast-primary-header-bar a {
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none;
}

/* Hover / active – slightly brighter, still same color family */
.main-header-menu .menu-link:hover,
.main-header-menu .menu-item:hover > a,
.main-header-menu .current-menu-item > a,
.main-header-menu .current-menu-ancestor > a {
    color: #fefce8 !important; /* warm off‑white */
}

/* Remove glowy underline from earlier rules */
.main-header-menu .menu-link::after,
.main-header-menu .menu-item > a::after {
    content: none !important;
}

/* Mobile hamburger icon in white */
.ast-mobile-menu-trigger,
.ast-button-wrap .menu-toggle {
    color: #ffffff !important;
}






.fmge-price-card-name,
.entry-title[itemprop="headline"] {
  color: #e5e7eb;
}







