/* ============================================================
   VIBETRIBE ELEMENTOR DESIGN SYSTEM
   ============================================================
   
   HOW TO USE:
   ──────────────────────────────────────────────────────────────
   1. Go to WordPress Admin → Appearance → Customize → Additional CSS
      (or Elementor → Site Settings → Custom CSS if using Elementor Pro)
   2. Paste this entire file
   3. In Elementor, leave all typography settings on DEFAULT
      — this stylesheet handles everything automatically
   4. Only override manually when a specific element needs
      to deviate from the system (rare)
   
   WHAT THIS DOES:
   ──────────────────────────────────────────────────────────────
   - Strips Elementor's default widget margins/padding
   - Applies the exact typography from vibetribee.com source code
   - Sets consistent spacing, colors, and component styles
   - Handles responsive breakpoints automatically
   
   SOURCE: Extracted from vibetribee.com custom PHP shortcode 
   components (landing-hero.php, landing-how-it-works.php, 
   class-vt-design-system.php)
   
   ============================================================ */


/* ============================================================
   0. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================
   Single source of truth. Change a value here = changes everywhere.
   ============================================================ */

:root {
    /* ── Brand Colors ── */
    --vt-yellow: #F5D93F;
    --vt-yellow-soft: #FFDE59;
    --vt-navy: #011E62;
    --vt-navy-hover: #0a2d7a;
    --vt-cream: #FAFBED;
    --vt-warm-bg-start: #FFFDF5;
    --vt-warm-bg-end: #FFF9E6;

    /* ── Text Colors ── */
    --vt-text-dark: #1a1a1a;
    --vt-text-body: #333;
    --vt-text-muted: #555;
    --vt-text-light: #6a6a6a;

    /* ── Typography: Families ── */
    --vt-font-heading: 'Mont', 'Mont Heavy', 'Montserrat', sans-serif;
    --vt-font-body: 'Causten', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ── Typography: Hero H1 ── */
    --vt-h1-size: clamp(1.75rem, 3.5vw, 2.95rem);
    /* 40px → 52px fluid */
    --vt-h1-weight: 900;
    --vt-h1-line-height: 1.15;
    --vt-h1-spacing: -0.02em;
    --vt-h1-color: var(--vt-navy);

    /* ── Typography: Section H2 ── */
    --vt-h2-size: clamp(1.5rem, 2.5vw, 1.875rem);
    /* 28px → 36px fluid */
    --vt-h2-weight: 800;
    --vt-h2-line-height: 1.2;
    --vt-h2-color: var(--vt-navy);

    /* ── Typography: Subsection H3 ── */
    --vt-h3-size: 1.375rem;
    /* 28px */
    --vt-h3-weight: 400;
    --vt-h3-line-height: 1.25;
    /* --vt-h3-color: var(--vt-navy); */

    /* ── Typography: Card/Item H4 ── */
    --vt-h4-size: 1rem;
    /* 16px */
    --vt-h4-weight: 700;
    --vt-h4-line-height: 1.3;
    /* --vt-h4-color: var(--vt-navy); */

    /* ── Typography: Subheadline ── */
    --vt-sub-size: clamp(1.25rem, 2.5vw, 1.5rem);
    /* 20px → 24px fluid */
    --vt-sub-weight: 700;
    --vt-sub-line-height: 1.5;

    /* ── Typography: Body Large (descriptions) ── */
    --vt-body-lg-size: 1.2rem;
    /* 19.2px */
    --vt-body-lg-lh: 1.8;
    --vt-body-lg-color: var(--vt-text-dark);

    /* ── Typography: Body Standard ── */
    --vt-body-size: 1rem;
    /* 16px */
    --vt-body-lh: 1.65;
    --vt-body-color: var(--vt-text-body);

    /* ── Typography: Body Small (card descriptions) ── */
    --vt-body-sm-size: 0.95rem;
    /* 15.2px */
    --vt-body-sm-lh: 1.6;
    --vt-body-sm-color: var(--vt-text-muted);

    /* ── Typography: Small/Muted ── */
    --vt-small-size: 0.875rem;
    /* 14px */
    --vt-small-color: var(--vt-text-light);

    /* ── Layout ── */
    --vt-container-max: 1250px;
    --vt-container-wide: 1300px;
    --vt-content-max: 560px;
    /* Max-width for text blocks */

    /* ── Spacing ── */
    --vt-section-py: 4rem;
    /* 64px section vertical padding */
    --vt-section-px: 2rem;
    /* 32px section horizontal padding */
    --vt-heading-mb: 2.5rem;
    /* 40px after main headings */
    --vt-paragraph-mb: 1.5rem;
    /* 24px between paragraphs */
    --vt-card-gap: 1.25rem;
    /* 20px between cards */
    --vt-grid-gap: 3rem;
    /* 48px grid column gap */

    /* ── Components ── */
    --vt-card-radius: 16px;
    --vt-card-padding: 1.5rem;
    /* 24px */
    --vt-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --vt-card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --vt-btn-radius: 9999px;
    /* Full pill */
    --vt-img-radius: 24px;
    --vt-icon-radius: 50%;
}


/* ============================================================
   1. GLOBAL RESETS — Kill Elementor defaults
   ============================================================ */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Strip default widget bottom margins */
.elementor-widget {
    margin-bottom: 0 !important;
}

/* Strip default heading margins */
.elementor-heading-title {
    margin: 0 !important;
    padding: 0 !important;
}

/* Strip default paragraph margins inside text editor */
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0 !important;
}

/* Force box-sizing */
.elementor-element,
.elementor-element *,
.elementor-element *::before,
.elementor-element *::after {
    box-sizing: border-box;
}


/* ============================================================
   2. TYPOGRAPHY — Heading Widgets
   ============================================================
   Targets Elementor's heading widget by HTML tag.
   Leave heading Size dropdown on "Default" in Elementor.
   ============================================================ */

/* ── H1: Hero Headlines ── */
.elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title.elementor-size-default[class*="h1"],
h1.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h1-size);
    font-weight: var(--vt-h1-weight) !important;
    line-height: var(--vt-h1-line-height) !important;
    letter-spacing: var(--vt-h1-spacing) !important;
    color: var(--vt-h1-color);
}

/* ── H2: Section Titles ── */
.elementor-widget-heading h2.elementor-heading-title,
h2.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h2-size);
    font-weight: var(--vt-h2-weight);
    /* no !important */
    line-height: var(--vt-h2-line-height) !important;
    letter-spacing: 0 !important;
    color: var(--vt-h2-color);
    /* no !important */
}

/* ── H3: Subsection Titles ── */
.elementor-widget-heading h3.elementor-heading-title,
h3.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h3-size) !important;
    font-weight: var(--vt-h3-weight);
    line-height: var(--vt-h3-line-height) !important;
    color: var(--vt-h3-color);
}

/* ── H4: Card/Item Titles ── */
.elementor-widget-heading h4.elementor-heading-title,
h4.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h4-size);
    font-weight: var(--vt-h4-weight);
    line-height: var(--vt-h4-line-height) !important;
    color: var(--vt-h4-color);
}

/* ── H5/H6: Micro headings, labels ── */
.elementor-widget-heading h5.elementor-heading-title,
h5.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-body-size) !important;
    font-weight: 700;
    line-height: 1.4 !important;
    color: var(--vt-navy);
}

h6.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-body-sm-size) !important;
    font-weight: 700;
    line-height: 1.4 !important;
    color: var(--vt-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ============================================================
   3. TYPOGRAPHY — Text Editor Widget (paragraphs)
   ============================================================ */

/* Default paragraph styling */
.elementor-widget-text-editor {
    font-family: var(--vt-font-body) !important;
    font-size: 1.2rem;
    line-height: 1.55 !important;
    color: #555;
}

.elementor-widget-text-editor p {
    font-family: var(--vt-font-body) !important;
    line-height: inherit;
    color: inherit;
    margin-bottom: var(--vt-paragraph-mb);
}


/* ============================================================
   4. UTILITY CLASSES — Apply in Elementor's CSS Classes field
   ============================================================
   Add these class names in the widget's Advanced → CSS Classes
   to apply specific text styles without touching typography.
   ============================================================ */

/* Large body text (hero descriptions, section intros) */
.vt-text-lg,
.vt-text-lg p {
    font-size: var(--vt-body-lg-size) !important;
    line-height: var(--vt-body-lg-lh) !important;
    color: var(--vt-body-lg-color) !important;
}

/* Standard body text */
.vt-text-body,
.vt-text-body p {
    font-size: var(--vt-body-size) !important;
    line-height: var(--vt-body-lh) !important;
    color: var(--vt-body-color) !important;
}

/* Small/muted text (card descriptions, captions) */
.vt-text-sm,
.vt-text-sm p {
    font-size: var(--vt-body-sm-size) !important;
    line-height: var(--vt-body-sm-lh) !important;
    color: var(--vt-body-sm-color) !important;
}

/* Extra small text (fine print, notes) */
.vt-text-xs,
.vt-text-xs p {
    font-size: var(--vt-small-size) !important;
    color: var(--vt-small-color) !important;
    line-height: 1.5 !important;
}

/* Subheadline style (under hero H1) */
.vt-subheadline,
.vt-subheadline p {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-sub-size) !important;
    font-weight: var(--vt-sub-weight) !important;
    line-height: var(--vt-sub-line-height) !important;
    color: var(--vt-navy) !important;
}

/* Navy text */
.vt-text-navy,
.vt-text-navy p {
    color: var(--vt-navy) !important;
}

/* Muted text */
.vt-text-muted,
.vt-text-muted p {
    color: var(--vt-text-muted) !important;
}

/* Constrain text width for readability */
.vt-text-narrow {
    max-width: var(--vt-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center text */
.vt-text-center {
    text-align: center !important;
}


/* ============================================================
   5. BUTTONS — Elementor Button Widget
   ============================================================ */

/* ── Primary Button (Navy — main CTA) ── */
.elementor-widget-button .elementor-button {
    font-family: var(--vt-font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    border-radius: var(--vt-btn-radius) !important;
    padding: 18px 48px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: var(--vt-navy) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(1, 30, 98, 0.25) !important;
    line-height: 1 !important;
}

.elementor-widget-button .elementor-button:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(1, 30, 98, 0.35) !important;
    background-color: var(--vt-navy-hover) !important;
    color: #fff !important;
}

/* ── Hero Button (larger variant) ── */
/* Add class "vt-btn-hero" to the button widget */
.vt-btn-hero .elementor-button {
    font-size: 1.25rem !important;
    padding: 0 3.5rem !important;
    height: 4rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 32px rgba(1, 30, 98, 0.35),
        0 2px 8px rgba(1, 30, 98, 0.2) !important;
}

/* ── Secondary Button (Yellow accent — less common) ── */
/* Add class "vt-btn-yellow" to the button widget */
.vt-btn-yellow .elementor-button {
    background-color: var(--vt-yellow) !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 4px 20px rgba(245, 217, 63, 0.35) !important;
}

.vt-btn-yellow .elementor-button:hover {
    background-color: #E5C83A !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 8px 24px rgba(245, 217, 63, 0.4) !important;
}

/* Remove Elementor's default button icon spacing if no icon */
.elementor-widget-button .elementor-button .elementor-button-text {
    font-family: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
}


/* ============================================================
   6. SECTION & CONTAINER SPACING
   ============================================================ */

/* 
   USAGE: Add these CSS classes to Elementor Sections/Containers
   in Advanced → CSS Classes
*/

/* Standard section padding */
.vt-section {
    padding-top: var(--vt-section-py) !important;
    padding-bottom: var(--vt-section-py) !important;
    padding-left: var(--vt-section-px) !important;
    padding-right: var(--vt-section-px) !important;
}

/* Section with cream background */
.vt-section-cream {
    background-color: var(--vt-cream) !important;
}

/* Section with warm gradient background */
.vt-section-warm {
    background: linear-gradient(180deg,
            var(--vt-warm-bg-start) 0%,
            var(--vt-warm-bg-end) 100%) !important;
}

/* Section with white background */
.vt-section-white {
    background-color: #fff !important;
}

/* Section with yellow hero gradient */
.vt-section-hero {
    background: linear-gradient(135deg,
            #F6D93F 0%,
            #FFDE59 50%,
            #F6D93F 100%) !important;
}

/* Container width constraint */
.vt-container {
    max-width: var(--vt-container-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.vt-container-wide {
    max-width: var(--vt-container-wide) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Content-width constraint for text-heavy areas */
.vt-content-narrow {
    max-width: var(--vt-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ============================================================
   7. CARD COMPONENTS
   ============================================================
   Add "vt-card" to any Elementor container/inner-section
   to get the approved card styling.
   ============================================================ */

.vt-card {
    background: #fff !important;
    border-radius: var(--vt-card-radius) !important;
    padding: var(--vt-card-padding) !important;
    box-shadow: var(--vt-card-shadow) !important;
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.vt-card:hover {
    transform: translateX(8px) !important;
    box-shadow: var(--vt-card-shadow-hover) !important;
}

/* Card variant that lifts on hover instead of sliding */
.vt-card-lift:hover {
    transform: translateY(-4px) !important;
}

/* Testimonial card */
.vt-card-testimonial {
    background: #fff !important;
    border-radius: var(--vt-card-radius) !important;
    padding: var(--vt-card-padding) !important;
    box-shadow: var(--vt-card-shadow) !important;
    border: none !important;
    position: relative;
}

.vt-card-testimonial::before {
    content: '\201C';
    font-family: var(--vt-font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--vt-yellow);
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
    opacity: 0.5;
}


/* ============================================================
   8. ICON CIRCLES (step numbers, check marks)
   ============================================================ */

/* Yellow circle icon container */
.vt-icon-circle {
    width: 80px !important;
    height: 80px !important;
    background: var(--vt-yellow) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Navy number badge */
.vt-number-badge {
    width: 30px !important;
    height: 30px !important;
    background: var(--vt-navy) !important;
    border-radius: 50% !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Small check circle (for value stacks) */
.vt-check-circle {
    width: 26px !important;
    height: 26px !important;
    background: var(--vt-yellow) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    color: var(--vt-navy) !important;
}


/* ============================================================
   9. HIGHLIGHT / CALLOUT COMPONENTS
   ============================================================ */

/* Inline text highlight (matches hero highlight spans) */
.vt-highlight {
    display: inline;
    font-weight: 700;
    color: var(--vt-navy);
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Callout box (like the bridge section in the offer page) */
.vt-callout {
    background: rgba(245, 217, 63, 0.12) !important;
    border-left: 4px solid var(--vt-yellow) !important;
    border-radius: 0 14px 14px 0 !important;
    padding: 20px 24px !important;
}

.vt-callout p {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
}

/* Urgency banner */
.vt-urgency-banner {
    background: var(--vt-navy) !important;
    color: #fff !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}


/* ============================================================
   10. IMAGES
   ============================================================ */

/* Standard image with rounded corners */
.vt-img-rounded .elementor-image img,
.vt-img-rounded img {
    border-radius: var(--vt-img-radius) !important;
}

/* Image with premium shadow */
.vt-img-shadow .elementor-image img,
.vt-img-shadow img {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--vt-img-radius) !important;
}


/* ============================================================
   11. DIVIDER WIDGET
   ============================================================ */

.elementor-widget-divider .elementor-divider-separator {
    border-color: rgba(1, 30, 98, 0.1) !important;
}


/* ============================================================
   12. LISTS (Icon List Widget)
   ============================================================ */

.elementor-widget-icon-list .elementor-icon-list-text {
    font-family: var(--vt-font-body) !important;
    font-size: var(--vt-body-sm-size) !important;
    line-height: var(--vt-body-sm-lh) !important;
    color: var(--vt-text-muted) !important;
}

.elementor-widget-icon-list .elementor-icon-list-icon svg {
    fill: var(--vt-yellow) !important;
}


/* ============================================================
   13. RESPONSIVE OVERRIDES
   ============================================================ */

/* Tablet: ≤ 1100px */
@media (max-width: 1100px) {
    :root {
        --vt-section-py: 3.5rem;
        --vt-grid-gap: 2.5rem;
    }
}

/* Mobile landscape / small tablet: ≤ 900px */
@media (max-width: 900px) {
    :root {
        --vt-section-py: 3rem;
        --vt-section-px: 1.5rem;
        --vt-heading-mb: 2rem;
        --vt-grid-gap: 2rem;
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    :root {
        --vt-section-py: 3rem;
        --vt-section-px: 1.5rem;
        --vt-card-padding: 1.25rem;
        --vt-h3-size: 1.5rem;
    }

    .vt-icon-circle {
        width: 44px !important;
        height: 44px !important;
    }
}

/* Small mobile: ≤ 600px */
@media (max-width: 600px) {
    :root {
        --vt-section-px: 1rem;
        --vt-h3-size: 1.25rem;
        --vt-body-lg-size: 1.05rem;
    }

    /* Hero headline hard override for small screens */
    .elementor-widget-heading h1.elementor-heading-title,
    h1.elementor-heading-title {
        font-size: 2rem !important;
    }

    .vt-btn-hero .elementor-button {
        font-size: 1.1rem !important;
        padding: 0 2.5rem !important;
        height: 3.5rem !important;
    }
}


/* ============================================================
   14. ACCESSIBILITY & POLISH
   ============================================================ */

/* Focus states */
.elementor-widget-button .elementor-button:focus-visible {
    outline: 3px solid var(--vt-yellow) !important;
    outline-offset: 3px !important;
}

a:focus-visible {
    outline: 2px solid var(--vt-navy);
    outline-offset: 2px;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--vt-yellow);
    color: var(--vt-navy);
}

/* ============================================================
   14b. DARK SECTION OVERRIDES
   ============================================================
   Add class "vt-dark" to any Elementor section/container
   that has a dark background (navy, purple, dark gradient).
   All child text automatically flips to light colors.
   ============================================================ */

.vt-dark h1.elementor-heading-title,
.vt-dark h2.elementor-heading-title,
.vt-dark h3.elementor-heading-title,
.vt-dark h4.elementor-heading-title,
.vt-dark h5.elementor-heading-title,
.vt-dark h6.elementor-heading-title {
    color: #fff;
}

.vt-dark .elementor-widget-text-editor,
.vt-dark .elementor-widget-text-editor p {
    color: white;
}

.vt-dark .vt-text-lg,
.vt-dark .vt-text-lg p {
    color: white;
}

.vt-dark .vt-text-sm,
.vt-dark .vt-text-sm p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.vt-dark .vt-text-muted,
.vt-dark .vt-text-muted p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.vt-dark .vt-subheadline,
.vt-dark .vt-subheadline p {
    color: #fff !important;
    opacity: 0.95;
}

/* Buttons flip to yellow on dark backgrounds */
.vt-dark .elementor-widget-button .elementor-button {
    background-color: var(--vt-yellow) !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 4px 20px rgba(245, 217, 63, 0.35) !important;
}

.vt-dark .elementor-widget-button .elementor-button:hover {
    background-color: #E5C83A !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 8px 24px rgba(245, 217, 63, 0.4) !important;
}

/* Icon list text on dark */
.vt-dark .elementor-widget-icon-list .elementor-icon-list-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Dividers on dark */
.vt-dark .elementor-widget-divider .elementor-divider-separator {
    border-color: rgba(255, 255, 255, 0.15) !important;
}


/* ============================================================
   15. FUNNEL-SPECIFIC OVERRIDES
   ============================================================
   For the opt-in / offer funnel pages built in WPFunnels.
   Add class "vt-funnel" to the page body or main container.
   ============================================================ */

/* Funnel pages use the offer page color palette */
.vt-funnel .elementor-widget-heading h1.elementor-heading-title {
    /* Offer page hero uses slightly different sizing */
    font-size: clamp(1.875rem, 4.2vw, 2.875rem) !important;
    /* 30px → 46px */
}

/* Guarantee section styling */
.vt-guarantee {
    background: linear-gradient(135deg, #FFF9E0, #FFF5CC) !important;
    border-top: 4px solid var(--vt-yellow) !important;
    border-bottom: 4px solid var(--vt-yellow) !important;
}

/* Pricing cards */
.vt-price-card {
    border-radius: 20px !important;
    padding: 32px 24px !important;
    border: 2px solid rgba(0, 0, 0, 0.08) !important;
    background: var(--vt-cream) !important;
    text-align: center !important;
    transition: all 0.3s !important;
}

.vt-price-card-featured {
    border-color: var(--vt-yellow) !important;
    background: #fff !important;
    box-shadow: 0 8px 32px rgba(245, 217, 63, 0.15) !important;
    transform: scale(1.03) !important;
}

/* Price tag styling */
.vt-price {
    font-family: var(--vt-font-heading) !important;
    font-size: 2.75rem !important;
    font-weight: 900 !important;
    color: var(--vt-navy) !important;
    line-height: 1 !important;
}

.vt-price-period {
    font-size: 0.8125rem !important;
    color: var(--vt-text-muted) !important;
}

/* Strikethrough original price */
.vt-price-original {
    font-size: 0.875rem !important;
    color: var(--vt-text-muted) !important;
    text-decoration: line-through !important;
}

/* Savings badge */
.vt-savings-badge {
    display: inline-block !important;
    background: rgba(245, 217, 63, 0.2) !important;
    color: var(--vt-navy) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    font-family: var(--vt-font-heading) !important;
    padding: 4px 14px !important;
    border-radius: 50px !important;
}

/* Card badge (floating label) */
.vt-card-badge {
    display: inline-block !important;
    background: var(--vt-yellow) !important;
    color: var(--vt-text-dark) !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 0.6875rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
}

/* ============================================================
   16. INTERNAL ELEMENT SPACING (REVISED)
   ============================================================
   Direct targeting — no :has() dependency.
   ============================================================ */

/* ── All headings get consistent bottom margin ── */
h1.elementor-heading-title {
    margin-bottom: 0rem !important;
    /* was 1.25rem */
}

h2.elementor-heading-title {
    margin-bottom: 0rem;
    /* was 1.5rem */
}

h3.elementor-heading-title {
    margin-bottom: 0.5rem !important;
    /* was 0.75rem */
}

h4.elementor-heading-title {
    /* margin-bottom: 0.5rem !important; */
}

.elementor-widget-text-editor+.elementor-widget-text-editor {
    margin-top: 0.75rem !important;
}

.elementor-widget-text-editor+.elementor-widget-heading {
    margin-top: 1.5rem !important;
}

.elementor-widget-heading+.elementor-widget-text-editor {
    margin-top: 0.75rem;
}

.elementor-widget-image+.elementor-widget-heading {
    margin-top: 1.5rem !important;
}

/* ── Icon list items: tighter ── */
.elementor-icon-list-items .elementor-icon-list-item {
    margin-bottom: 0.5rem !important;
}

/* ============================================================
   17. SPACING UTILITY CLASSES
   ============================================================
   Add to any widget's Advanced → CSS Classes 
   to override default spacing for specific cases.
   ============================================================ */

/* Remove bottom margin */
.vt-mb-0 {
    margin-bottom: 0 !important;
}

/* Small bottom margin */
.vt-mb-sm {
    margin-bottom: 0.5rem !important;
}

/* 8px */

/* Medium bottom margin */
.vt-mb-md {
    margin-bottom: 1.5rem !important;
}

/* 24px */

/* Large bottom margin */
.vt-mb-lg {
    margin-bottom: 2.5rem !important;
}

/* 40px */

/* Extra large bottom margin */
.vt-mb-xl {
    margin-bottom: 4rem !important;
}

/* 64px */

/* Top margin variants */
.vt-mt-0 {
    margin-top: 0 !important;
}

.vt-mt-sm {
    margin-top: 0.5rem !important;
}

.vt-mt-md {
    margin-top: 1.5rem !important;
}

.vt-mt-lg {
    margin-top: 2.5rem !important;
}

/* Padding utilities */
.vt-py-sm {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.vt-py-md {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.vt-py-lg {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* ============================================================
   18. SECTION CARD TREATMENT
   ============================================================
   Makes white sections feel grounded with subtle containment.
   Add "vt-section-card" to any white section in Elementor.
   ============================================================ */

.vt-section-card {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.02) !important;
    max-width: 1250px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}


/* ============================================================
   19. FUNNEL V2 — NEW DESIGN COMPONENTS
   ============================================================
   Matches the client's new approved design.
   ============================================================ */

/* ── Eyebrow Labels (small caps above headings) ── */
/* Add "vt-eyebrow" to a heading widget set to H6 or a text widget */
.vt-eyebrow,
.vt-eyebrow p {
    font-family: var(--vt-font-heading) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--vt-navy) !important;
    margin-bottom: 0.75rem !important;
}

.vt-eyebrow-dash::before {
    content: '—  ';
    color: var(--vt-yellow);
}

/* On dark backgrounds */
.vt-dark .vt-eyebrow,
.vt-dark .vt-eyebrow p {
    color: var(--vt-yellow) !important;
}

/* ── Yellow Highlight Inline ── */
/* Wrap words in <span class="vt-mark"> in text editor */
.vt-mark {
    background: var(--vt-yellow);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline;
}

/* ── Navy Full-Width Section ── */
/* Add "vt-section-navy" to section container */
.vt-section-navy {
    background: var(--vt-navy) !important;
}

.vt-section-navy h1.elementor-heading-title,
.vt-section-navy h2.elementor-heading-title,
.vt-section-navy h3.elementor-heading-title,
.vt-section-navy h4.elementor-heading-title {
    color: #fff !important;
}

.vt-section-navy .vt-eyebrow,
.vt-section-navy .vt-eyebrow p {
    color: var(--vt-yellow) !important;
}

.vt-section-navy .elementor-widget-text-editor,
.vt-section-navy .elementor-widget-text-editor p {
    color: white;
}

.vt-section-navy .elementor-widget-text-editor strong {
    color: #fff !important;
}

/* ── Credential Chips (pill badges in Muneer bio) ── */
/* Add "vt-chip-row" to the container holding chips */
.vt-chip {
    display: inline-block !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-family: var(--vt-font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: transparent !important;
    white-space: nowrap !important;
}

/* ── Sticky Offer Bar (yellow bar with CTA) ── */
/* Add "vt-offer-bar" to a section */
.vt-offer-bar {
    background: var(--vt-yellow) !important;
    padding: 25px !important;
    display: flex !important;
    align-items: center !important;
    /* justify-content: center !important; */
    gap: 2rem !important;
}

.vt-offer-bar .elementor-widget-text-editor,
.vt-offer-bar .elementor-widget-text-editor p {
    color: var(--vt-text-dark);
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

.vt-offer-bar .elementor-widget-button .elementor-button {
    /* background: var(--vt-text-dark) !important; */
    color: #fff !important;
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
}

/* ── Pain Point Cards (2x2 grid with emoji + text) ── */
/* Add "vt-pain-card" to each inner container */
.vt-pain-card {
    background: rgba(245, 217, 63, 0.08) !important;
    border-radius: 12px !important;
    padding: 1.25rem 2.5rem !important;
    border: none !important;
    box-shadow: none !important;
}

.vt-pain-card:hover {
    transform: none !important;
}

.vt-pain-card .elementor-widget-text-editor strong {
    color: var(--vt-text-dark) !important;
}

.vt-pain-card .elementor-widget-text-editor,
.vt-pain-card .elementor-widget-text-editor p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: var(--vt-text-muted);
}

/* ── Value Stack Cards (icon + title + desc, 2-col grid) ── */
/* Add "vt-value-card" to each inner container */
.vt-value-card {
    background: var(--vt-cream) !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
}

.vt-value-card h4.elementor-heading-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.25rem !important;
}

.vt-value-card .elementor-widget-text-editor,
.vt-value-card .elementor-widget-text-editor p {
    font-size: 0.9rem !important;
    color: var(--vt-text-muted);
    line-height: 1.55 !important;
}

/* ── Testimonial Cards V2 (with stars) ── */
/* Add "vt-testimonial-v2" to each card container */
.vt-testimonial-v2 {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.vt-testimonial-v2 .elementor-widget-text-editor,
.vt-testimonial-v2 .elementor-widget-text-editor p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: var(--vt-text-body);
    font-style: italic !important;
}

/* Stars row — use 5 star icons or text "★★★★★" */
.vt-stars,
.vt-stars p {
    color: #F5D93F !important;
    font-size: 1.1rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.75rem !important;
}

/* ── Pricing Card V2 ── */
/* Add "vt-pricing-card" to each pricing container */
.vt-pricing-card {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 2px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Featured pricing card (annual/best value) */
.vt-pricing-featured {
    border-color: var(--vt-yellow) !important;
    box-shadow: 0 4px 24px rgba(245, 217, 63, 0.15) !important;
}

/* "Best Value" diagonal ribbon */
.vt-pricing-ribbon {
    position: absolute !important;
    top: 16px !important;
    right: -35px !important;
    background: var(--vt-yellow) !important;
    color: var(--vt-text-dark) !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 6px 40px !important;
    transform: rotate(45deg) !important;
}

/* Plan label (QUARTERLY / ANNUAL) */
.vt-plan-label,
.vt-plan-label p {
    font-family: var(--vt-font-heading) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--vt-text-light) !important;
    margin-bottom: 0.25rem !important;
}

/* Plan name */
.vt-plan-name,
.vt-plan-name p {
    font-family: var(--vt-font-heading) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--vt-text-dark) !important;
    margin-bottom: 0.5rem !important;
}

/* Strikethrough price */
.vt-price-old,
.vt-price-old p {
    font-size: 0.85rem !important;
    color: var(--vt-text-light) !important;
    text-decoration: line-through !important;
    margin-bottom: 0.25rem !important;
}

/* Big price number */
.vt-price-big,
.vt-price-big p {
    font-family: var(--vt-font-heading) !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: var(--vt-text-dark) !important;
    line-height: 1 !important;
    margin-bottom: 0.25rem !important;
}

.vt-price-big span {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--vt-text-muted) !important;
}

/* Price subtext (per month breakdown) */
.vt-price-sub,
.vt-price-sub p {
    font-size: 0.8rem !important;
    color: var(--vt-text-muted) !important;
    margin-bottom: 0.5rem !important;
}

/* Savings badge in pricing */
.vt-price-savings,
.vt-price-savings p {
    display: inline-block !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #16a34a !important;
    margin-bottom: 1rem !important;
}

/* Feature list inside pricing card */
.vt-pricing-card .elementor-icon-list-text {
    font-size: 0.875rem !important;
    color: var(--vt-text-body) !important;
}

.vt-pricing-card .elementor-icon-list-icon svg {
    fill: #16a34a !important;
    width: 14px !important;
    height: 14px !important;
}

/* Pricing CTA button */
.vt-pricing-card .elementor-widget-button .elementor-button {
    width: 100% !important;
    background: var(--vt-yellow) !important;
    color: var(--vt-text-dark) !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    padding: 14px 24px !important;
    box-shadow: none !important;
    border: 2px solid var(--vt-text-dark) !important;
}

.vt-pricing-card .elementor-widget-button .elementor-button:hover {
    background: #E5C83A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* ── Guarantee Card V2 ── */
/* Add "vt-guarantee-v2" to the container */
.vt-guarantee-v2 {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 2rem 2.5rem !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05) !important;
    border-left: 4px solid var(--vt-yellow) !important;
}

/* ── Timeline Steps (numbered circles with line) ── */
/* For the "Week 1 → Week 2 → 90 Days" progression */
.vt-timeline-step {
    display: flex !important;
    gap: 1.25rem !important;
    align-items: flex-start !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
}

.vt-timeline-num {
    width: 36px !important;
    height: 36px !important;
    background: var(--vt-yellow) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    color: var(--vt-navy) !important;
    flex-shrink: 0 !important;
}

/* ── Programs Banner Image ── */
/* Add "vt-programs-banner" to image container */
.vt-programs-banner .elementor-image img {
    border-radius: 16px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12) !important;
}

/* ── Final CTA Section (navy with image) ── */
.vt-final-cta {
    background: var(--vt-navy) !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    max-width: 1250px !important;
    margin: 2rem auto !important;
}

.vt-final-cta h2.elementor-heading-title {
    color: #fff !important;
}

.vt-final-cta .elementor-widget-text-editor,
.vt-final-cta .elementor-widget-text-editor p {
    color: rgba(255, 255, 255, 0.7);
}

.vt-final-cta .elementor-widget-button .elementor-button {
    background: var(--vt-yellow) !important;
    color: var(--vt-navy) !important;
}


/* ── Consistent section gaps ── */
.elementor-top-section+.elementor-top-section,
.e-con+.e-con {
    /* margin-top: 1rem !important; */
}

/* Sections that should sit flush (no gap) — add "vt-flush" */
.vt-flush {
    margin-top: 0 !important;
}


.elementor-widget-text-editor p {
    /* color: #555; */
}

.elementor-widget-text-editor strong {
    /* color: var(--vt-text-dark); */
}

/* ── Custom Chips (override all inherited styles) ── */
.vt-custom-chips .elementor-widget-text-editor,
.vt-custom-chips .elementor-widget-text-editor p,
.vt-custom-chips p {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}




/* ============================================================
   20. CONTAINER WIDTH OVERRIDE
   ============================================================ */
.elementor-section>.elementor-container {
    max-width: 1080px !important;
}

/* Narrow container for text-heavy sections */
.vt-narrow>.elementor-container,
.vt-narrow .elementor-container {
    max-width: 720px !important;
}