/*
 * BlogLingo — Sales Landing Page Template
 * salespage.css
 *
 * Scoped to: .salespage-content-wrap and .salespage-article
 * Load order: after core.css (via functions.php conditional)
 */

/* ── 1. Page Layout ──────────────────────────────────────────── */

.sales-blog-hero {
    padding-top: 90px !important;
}

/* ── 2. Hero / Above-Fold Section ───────────────────────────── */

.sales-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem 2rem 4rem 2rem;
    /* Reduced top padding from 4rem to 2rem to pull content above fold */
    position: relative;
    z-index: 10;
}

h1.sales-seo-title,
.blog-hero h1.sales-seo-title,
.sales-hero-container h1.sales-seo-title {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
    text-align: center !important;
    width: 100%;
}

.sales-benefit-headline {
    font-family: -apple-system, Nunito, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 42px;
    font-weight: 840;
    /* Matching article.css h1 weight */
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* Matching article.css h1 letter-spacing */
    word-spacing: 1px;
    margin: 0;
}

.sales-sub-headline {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    /* 1.125rem matching article.css */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    /* 1.7 matching article.css */
    max-width: 770px;
    margin: 0 auto;
}

.sales-cta-wrap {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* Forces vertical gap between button and micro trust */
}

.sales-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5722;
    color: #ffffff !important;
    padding: 18px 80px;
    /* Widened horizontal padding */
    min-width: 320px;
    /* Forces a thicker blocky size */
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    /* Soft premium rounding */
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
    /* Elite ambient conversion glow */
}

.sales-btn-primary:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.45);
}

.sales-trust-signals {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    /* Muted focus */
    font-size: 14px;
    font-weight: 500;
}

.trust-signal .check-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
    .sales-hero-container {
        padding: 1.5rem 1rem 3rem 1rem;
        /* Reclaims horizontal space for reading */
    }

    .sales-benefit-headline {
        font-size: 32px;
        /* Scales down from 42px to prevent tight word breaks on 320px screens */
        line-height: 1.2;
    }

    .sales-sub-headline {
        font-size: 16px;
        line-height: 1.6;
    }

    .sales-btn-primary {
        min-width: 100%;
        /* Removes the hard 320px lock which breaks 320px viewport devices */
        width: 100%;
        padding: 18px 20px;
    }

    .sales-trust-signals {
        flex-direction: column;
        gap: 12px;
    }
}

/* ── 3. Reusable Split Pattern (Pain/Agitation) ─────────────── */

/* Kills empty paragraph tags and line breaks injected by WordPress wpautop that break grids */
.intro-card-elite .elite-split-layout>p,
.elite-split-layout>p,
.intro-card-elite .elite-split-layout>br,
.elite-split-layout>br {
    display: none !important;
}

.intro-card-elite .elite-split-layout,
.elite-split-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
    margin: 40px 0 !important;
    width: 100% !important;
}

.intro-card-elite .elite-split-visual,
.elite-split-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.intro-card-elite .elite-split-visual img,
.elite-split-visual img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    /* Overrides WP / Kadence default image margins */
    float: none !important;
    border-radius: 8px !important;
}

.intro-card-elite .elite-split-content,
.elite-split-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
}

.intro-card-elite h2.elite-section-title,
h2.elite-section-title,
.elite-bottom-card h2 {
    font-size: 44px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #111827 !important;
    margin: 0 auto 40px auto !important;
    /* Centered with bottom gap */
    font-family: -apple-system, Nunito, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    text-align: center !important;
    max-width: 800px !important;
    display: block !important;
}

.intro-card-elite .elite-split-content p.split-text,
.elite-split-content p.split-text {
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #4b5563 !important;
    margin: 0 0 30px 0 !important;
    font-family: inherit !important;
    text-align: left !important;
}

.intro-card-elite .elite-split-content p.split-text strong,
.elite-split-content p.split-text strong {
    color: #111827 !important;
    font-weight: 700 !important;
}

.intro-card-elite .elite-testimonial-box,
.elite-testimonial-box {
    background-color: #f8fafc !important;
    /* Subtle light background */
    border: 1px solid #e2e8f0 !important;
    /* Gentle grey 1px outline */
    border-radius: 8px !important;
    padding: 24px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.intro-card-elite .elite-testimonial-box p.testimonial-quote,
.elite-testimonial-box p.testimonial-quote {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.5 !important;
    margin: 0 0 20px 0 !important;
    font-family: -apple-system, Nunito, sans-serif !important;
    text-align: left !important;
}

.intro-card-elite .testimonial-author-wrap,
.testimonial-author-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.intro-card-elite .testimonial-author-wrap img.author-avatar,
.testimonial-author-wrap img.author-avatar {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 !important;
}

.intro-card-elite .testimonial-author-wrap .author-meta,
.testimonial-author-wrap .author-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.intro-card-elite .testimonial-author-wrap .author-name,
.testimonial-author-wrap .author-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.2 !important;
}

.intro-card-elite .testimonial-author-wrap .author-title,
.testimonial-author-wrap .author-title {
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.2 !important;
}

@media screen and (max-width: 768px) {

    .intro-card-elite .elite-split-layout,
    .elite-split-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .intro-card-elite h2.elite-section-title,
    h2.elite-section-title {
        font-size: 28px !important;
        margin-bottom: 24px !important;
    }
}

/* ── 4. PAS Copywriting / Highlight Utilities ────────────────── */

/* The Premium "Hand-Drawn" Underline */
.elite-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    white-space: nowrap;
}

.elite-highlight::after {
    content: '';
    position: absolute;
    left: -2%;
    bottom: 8%;
    /* Adjusts how high the underline rides */
    width: 104%;
    height: 6px;
    /* Thickness of the underline */
    background-color: #ff5722;
    /* Core brand orange */
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
    /* Subtle conversational tilt */
}

/* PAS Headline Structures */
.intro-card-elite .elite-pas-headline,
.elite-pas-headline {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: inherit;
    text-align: center !important;
    margin: 0 0 24px 0 !important;
    font-family: -apple-system, Nunito, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    letter-spacing: -0.02em !important;
}

.intro-card-elite .elite-pas-subhead,
.elite-pas-subhead {
    font-size: 20px !important;
    font-style: italic;
    line-height: 1.6 !important;
    color: inherit;
    text-align: left !important;
    max-width: 800px !important;
    margin: 0 auto 20px auto !important;
    font-family: inherit !important;
    opacity: 0.8 !important;
    /* Softens subhead automatically */
}

@media screen and (max-width: 768px) {

    .intro-card-elite .elite-pas-headline,
    .elite-pas-headline {
        font-size: 32px !important;
    }

    .intro-card-elite .elite-pas-subhead,
    .elite-pas-subhead {
        font-size: 16px !important;
    }
}

/* Adjusts header padding for sales pages and overrides the CTA Button */

html body #main-nav .btn-elite-header,
html body .site-header .header-cta .btn-elite-header,
html body .mobile-nav-cta .btn-elite-header {
    background-color: #ff5722 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.2) !important;
    border: none !important;
}

html body #main-nav .btn-elite-header:hover,
html body .site-header .header-cta .btn-elite-header:hover,
html body .mobile-nav-cta .btn-elite-header:hover {
    background-color: #e64a19 !important;
    background-image: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3) !important;
}

/* ── 7. Mobile Responsive ───────────────────────────────────── */
/* (Responsive rules for sections 5, 6, 9 are at end of this file) */


/* ── Brand Tokens & Base Container ──────────────────────────── */

:root {
    --brand: #F04D23;
    --brand-dark: #C93D1A;
    --brand-mid: #F36B42;
    --brand-tint: #FEF1EC;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 15px;
}


/* ============================================================
   5. PAIN / PAS SECTION
   Aesthetic: Classic sales letter / advertorial
   White background, Georgian serif, copy-led, zero decoration
   ============================================================ */

.pain-section {
    background-color: #ffffff;
    padding: 64px 0 72px;
    border-top: 1px solid #e8e8e8;
}

.pain-section .section-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.pas-body {
    font-size: 1rem;
    line-height: 1.78;
    color: #111111;
}

.pas-body p {
    margin-bottom: 1.4rem;
}

.pas-body p:first-child {
    font-style: italic;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1.75rem;
}

.pas-subheadline {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.45;
    color: #111111 !important;
    margin: 2rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: none;
}

.pas-subheadline::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 1.5rem auto 1.75rem;
}

.pas-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 1.75rem;
}

.pas-checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    line-height: 1.65;
    font-size: 1rem;
}

.pas-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #333333;
    background: transparent;
    flex-shrink: 0;
}

.pas-signal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 1.75rem;
}

.pas-signal-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    line-height: 1.65;
    font-size: 1rem;
}

.pas-signal-list li::before {
    content: '\25B6';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--brand);
    font-size: 0.6rem;
}

.pas-subhead {
    font-weight: 700;
    text-decoration: underline;
    font-style: normal;
    display: block;
    margin: 2rem 0 0.75rem;
    font-size: 1rem;
}

.pas-body p strong {
    font-weight: 700;
    color: #111111;
}

.pas-solve {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.pas-solve p {
    font-size: 1rem;
    line-height: 1.78;
}

.pas-pullquote {
    font-size: 1.22rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    color: #111111;
    margin: 2.25rem 0;
    padding: 0 2rem;
    line-height: 1.5;
}


/* PAS section CTA — scroll anchor to pricing */
.pas-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 0;
}

.pas-cta-wrap::before {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 auto 2rem;
}

.pas-cta-btn {
    display: inline-block;
    background-color: var(--brand);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.95rem 4.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(240, 77, 35, 0.35);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pas-cta-btn:hover {
    background-color: var(--brand-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(240, 77, 35, 0.45);
}

.pas-cta-sub {
    margin-top: 0.75rem;
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    color: #888888;
    letter-spacing: 0.01em;
}


/* ============================================================
   6. VALUE PROPS SECTION
   Layout: section heading + VP1 featured two-column + VP2-8 card grid
   ============================================================ */

.value-props-section {
    background-color: #f9f8f6;
    padding: 72px 0;
}

.vp-content-frame {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 1.5rem 2.25rem 1.5rem;
    margin-top: 2.5rem;
}

.section-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    text-align: center;
    margin-bottom: 0.6rem;
}

.value-props-section .section-heading {
    text-align: center;
    margin-bottom: 0.75rem;
}

.value-props-section .section-sub {
    text-align: left;
    margin: 1.5rem;
    color: #555555;
    font-size: 0.94rem;
}

.vp-system-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.6rem;
}

.vp-featured {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 0.5rem;
}

.vp-featured-image {
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    background-color: inherit;
    border-radius: 8px;
}

.vp-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.vp-featured-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Component number label — sits above the featured headline */
.vp-featured-num {
    display: block !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    color: var(--brand) !important;
    background-color: var(--brand-tint) !important;
    border-radius: 3px !important;
    padding: 1px 5px !important;
    font-family: var(--font-sans) !important;
    line-height: 1.5 !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.5rem !important;
    width: fit-content !important;
}

.vp-featured-headline {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111111;
    margin: 0 0 0.75rem 0 !important;
    padding: 0 !important;
}

.vp-featured-body {
    font-size: 0.94rem;
    line-height: 1.72;
    color: #333333;
    margin: 0 0 0.6rem 0 !important;
    padding: 0 !important;
}

.vp-featured-body:last-child {
    margin-bottom: 0 !important;
}

.vp-insight-panel {
    grid-column: 1 / -1;
    background-color: #f7f9fc;
    border: 1px solid #dce4ef;
    border-left: 3px solid var(--brand);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.vp-insight-panel:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.vp-insight-panel p {
    margin: 0 0 0.65rem !important;
    font-size: 0.97rem;
    line-height: 1.75;
    color: #333333;
}

.vp-insight-panel p:last-child {
    margin-bottom: 0 !important;
}


.vp-founder-quote {
    grid-column: 1 / -1;
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
    background-color: #faf9f8;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.875rem;
    align-items: center;
}

.vp-founder-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
}

.vp-founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    background-color: #cccccc;
    display: block;
}

.vp-founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.vp-founder-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #111111;
    line-height: 1.3;
}

.vp-founder-role {
    font-size: 0.68rem;
    color: #888888;
    font-style: normal;
    line-height: 1.4;
}

.vp-founder-quote blockquote {
    font-size: 0.80rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.72;
    color: #3a3a3a;
    margin: 0;
    padding: 0.5rem 0.5rem 0.1rem 1.25rem;
    border-left: 3px solid var(--brand);
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    background: none;

}

.vp-founder-quote blockquote::before,
.vp-founder-quote blockquote::after {
    content: none;
    display: none;
}

.vp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.vp-card {
    background-color: #ffffff;
    padding: 1.75rem 1.75rem 1.75rem 1.5rem;
    border-left: 3px solid var(--brand);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vp-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.vp-number {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--brand);
    margin-bottom: 0.6rem;
    font-family: var(--font-serif);
}

.vp-headline {
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.42;
    margin-bottom: 0.65rem;
    color: #111111;
}

.vp-body {
    font-size: 0.89rem;
    line-height: 1.72;
    color: #555555;
    margin-bottom: 0;
}

.vp-card-capstone {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background-color: var(--brand-tint);
    border-left: 3px solid var(--brand);
    box-shadow: none;
    padding: 2rem 2.25rem;
}

.vp-card-capstone:hover {
    transform: none;
    box-shadow: none;
}

.vp-card-capstone .vp-number {
    margin-bottom: 0.5rem;
}

.vp-card-capstone .vp-headline {
    font-size: 1.06rem;
    line-height: 1.38;
}

.vp-card-capstone .vp-body {
    color: #333333;
    font-size: 0.94rem;
}


/* ============================================================
   9. PRICING SECTION
   ============================================================ */

.pricing-section {
    background-color: #ffffff;
    padding: 72px 0;
    border-top: 1px solid #e8e8e8;
}

.founding-banner {
    background-color: #fdfbf5;
    border: 1px solid #d4c98a;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    font-size: 0.94rem;
    line-height: 1.7;
    color: #333333;
}

.founding-spots {
    margin-top: 0.75rem;
    font-size: 0.87rem;
    color: #111111;
    margin-bottom: 0;
}

.pricing-tiers>p,
.pricing-tiers>br {
    display: none !important;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    border: 1px solid #e0e0e0;
    padding: 2rem;
    position: relative;
    background-color: #ffffff;
}

.pricing-card.featured {
    border: 2px solid var(--brand);
}

.pricing-tier-badge {
    display: inline-block;
    background-color: var(--brand);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 1rem;
}

.pricing-tier-tag {
    font-size: 0.83rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pricing-offer-name {
    font-size: 1.33rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.44rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
}

.price-subtext {
    font-size: 0.94rem;
    color: #555555;
    margin-left: 2px;
}

.price-billing-note {
    font-size: 0.83rem;
    color: #777777;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.value-stack {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border-top: 1px solid #e8e8e8;
    padding-top: 1.25rem;
}

.value-stack-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.89rem;
    line-height: 1.55;
    color: #333333;
}

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

.check {
    flex-shrink: 0;
    color: var(--brand);
    font-weight: 700;
    margin-top: 1px;
}

.stack-value {
    color: #999999;
    font-size: 0.83rem;
    white-space: nowrap;
}

.price-anchor {
    font-size: 0.89rem;
    color: #555555;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.pricing-payment-type {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #1a1a1a;
    border-left: 3px solid var(--brand, #F04D23);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.pricing-cta-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    background-color: #0f0f0f;
    animation: checkout-pulse 2.5s ease-in-out infinite;
}

@keyframes checkout-pulse {
    0%,  100% { box-shadow: 0 0 0 0   rgba(240, 77, 35, 0);    }
    50%        { box-shadow: 0 0 0 6px rgba(240, 77, 35, 0.18); }
}

.pricing-access-note {
    font-size: 0.78rem;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

.guarantee-block {
    border: 1px solid #e0e0e0;
    padding: 0.5rem 2.25rem 1.5rem;
    background-color: #fdfbf5;
    margin-top: 0.5rem;
}

.guarantee-headline {
    font-size: 1.22rem;
    font-weight: 700;
    color: #111111 !important;
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-block p {
    font-size: 0.94rem;
    line-height: 1.72;
    color: #333333;
    margin-bottom: 1rem;
}

.guarantee-block p:last-child {
    margin-bottom: 0;
}

.guarantee-kpis {
    list-style: none !important;
    padding: 0 !important;
    margin: 0.75rem 0 1rem !important;
}

.guarantee-kpis li {
    font-size: 0.94rem !important;
    line-height: 1.72 !important;
    color: #444444 !important;
    padding: 0.2rem 0 0.2rem 1.4rem !important;
    position: relative !important;
}

.guarantee-kpis li::before {
    content: "\2713" !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--brand) !important;
    font-weight: 700 !important;
}

/* Agency tier — full-width strip below the two main pricing cards */
.pricing-card.tier-3 {
    grid-column: 1 / -1 !important;
    background-color: #f8f9fa !important;
    border-color: #d0d0d0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 1.5rem !important;
}

.pricing-card.tier-3 .pricing-offer-name {
    flex: 0 0 auto !important;
    font-size: 1.15rem !important;
    margin-bottom: 0 !important;
}

.pricing-card.tier-3 .tier-3-desc {
    flex: 1 1 300px !important;
    font-size: 0.97rem !important;
    color: #444 !important;
    margin: 0 !important;
}

.pricing-card.tier-3 .pricing-cta-wrapper {
    flex: 0 0 auto !important;
    margin-top: 0 !important;
}

/* Footer CTA — two-option layout */
.footer-cta-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    justify-content: center !important;
    align-items: center !important;
}

.footer-cta-btn {
    font-size: 1rem !important;
    padding: 16px 28px !important;
}

.footer-cta-btn--secondary {
    background-color: transparent !important;
    color: var(--brand) !important;
    border: 2px solid var(--brand) !important;
    box-shadow: none !important;
}

.footer-cta-btn--secondary:hover {
    background-color: var(--brand) !important;
    color: #ffffff !important;
}


/* ============================================================
   13. UTILITIES
   ============================================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   14. RESPONSIVE — sections 5, 6, 9 only
   ============================================================ */

@media screen and (max-width: 840px) {
    .vp-featured {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .vp-featured-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .vp-grid {
        grid-template-columns: 1fr;
    }

    .vp-card-capstone {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        order: -1;
    }

    .vp-content-frame {
        padding: 2rem 1.5rem 1.75rem;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 16px;
    }

    section {
        padding: 52px 0;
    }

    .section-container {
        padding: 0 20px;
    }

    .pain-section .section-heading {
        font-size: 1.5rem;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .founding-banner {
        padding: 1.25rem;
    }

    .pas-checklist li {
        padding-left: 1.5rem;
    }

    .vp-content-frame {
        padding: 1.5rem 1rem 1.25rem;
        border-radius: 8px;
    }

    .vp-founder-quote {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vp-founder-meta {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    .price-amount {
        font-size: 2rem;
    }

    .vp-content-frame {
        padding: 1.25rem 0.875rem 1rem;
    }

    .section-heading {
        font-size: 1.33rem;
    }
}


/* ============================================================
   6b. VP TAB SHOWCASE — VP2-8
   Tab nav on the left, panel content on the right.
   Pure class toggling — no scroll tricks, WP-safe.
   ============================================================ */

.vp-tab-section {
    background-color: #ffffff !important;
    padding: 20px 0 20px !important;
    margin-top: 1.5rem;
}

/* Two-column layout: 200px nav | 1fr panels */
.vp-tab-layout {
    display: grid !important;
    grid-template-columns: 200px 1fr !important;
    gap: 0 !important;
    align-items: start !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Left tab nav */
.vp-tab-nav {
    display: flex !important;
    flex-direction: column !important;
    border-right: 1px solid #e0e0e0 !important;
    background-color: #f9f8f6 !important;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

/* Tab button */
.vp-tab-btn {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
    padding: 0.875rem 1rem !important;
    border: none !important;
    border-left: 3px solid transparent !important;
    border-bottom: 1px solid #ebebeb !important; /* row separator */
    background: transparent !important;
    text-align: left !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.vp-tab-btn:last-child {
    border-bottom: none !important;
}

.vp-tab-btn:hover {
    background-color: #e8e4df !important; /* noticeably darker than nav bg */
    border-left-color: var(--brand-mid) !important;
}

.vp-tab-btn:hover .vp-tab-num {
    background-color: var(--brand-tint) !important;
    color: var(--brand) !important;
}

.vp-tab-btn:hover .vp-tab-label {
    color: #222222 !important;
    font-weight: 600 !important;
}

.vp-tab-btn.is-active {
    background-color: #ffffff !important;
    border-left-color: var(--brand) !important;
    border-bottom-color: transparent !important;
}

/* Number chip — evolves visually across all three states */
.vp-tab-num {
    display: inline-block !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    color: #888888 !important;
    background-color: #e8e8e8 !important; /* inactive: gray chip */
    border-radius: 3px !important;
    padding: 1px 5px !important;
    font-family: var(--font-sans) !important;
    flex-shrink: 0 !important;
    line-height: 1.5 !important;
    margin-top: 1px !important;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.vp-tab-btn.is-active .vp-tab-num {
    background-color: var(--brand) !important; /* active: solid brand chip */
    color: #ffffff !important;
}

/* Short label */
.vp-tab-label {
    font-size: 0.78rem !important;
    font-weight: 500 !important; /* lighter than active — clearly secondary */
    line-height: 1.35 !important;
    color: #666666 !important;
    font-family: var(--font-sans) !important;
    transition: color 0.18s ease;
}

.vp-tab-btn.is-active .vp-tab-label {
    color: #111111 !important;
    font-weight: 700 !important; /* bold on active — three steps: 500 → 600 → 700 */
}

/* CTA row — second grid row inside .vp-tab-layout */
.vp-tab-nav-foot {
    background-color: #f9f8f6 !important;
    border-right: 1px solid #e0e0e0 !important;
    border-top: 1px solid #e0e0e0 !important;
}

.vp-tab-cta-wrap {
    padding: 1.5rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Panel area */
.vp-tab-panels {
    padding: 2rem 2rem 2rem 2.25rem !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* Individual panel */
.vp-tab-panel[hidden] {
    display: none !important;
}

.vp-tab-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

/* Panel content */
.vp-tab-headline {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #111111 !important;
    margin: 0 !important;
    font-family: var(--font-serif) !important;
}

.vp-tab-body p {
    font-size: 0.89rem !important;
    line-height: 1.72 !important;
    color: #555555 !important;
    margin: 0 0 0.6rem !important;
}

.vp-tab-body p:last-child {
    margin-bottom: 0 !important;
}

.vp-tab-image {
    width: 100% !important;
    max-height: 280px !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    display: block !important;
    background-color: #f4f4f2 !important;
}

/* CTA button (shared with other sections) */
.vp-scroll-cta {
    display: inline-block !important;
    background-color: var(--brand) !important;
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 0.89rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    align-self: flex-start !important;
    border-radius: 4px !important;
    transition: background-color 0.2s ease;
}

.vp-scroll-cta:hover {
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
    opacity: 1;
}

/* Mobile — nav becomes horizontal scroll row */
@media screen and (max-width: 768px) {
    .vp-tab-layout {
        grid-template-columns: 1fr !important;
    }

    .vp-tab-nav {
        flex-direction: row !important;
        overflow-x: auto !important;
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0 !important;
        -webkit-overflow-scrolling: touch;
    }

    .vp-tab-btn {
        flex-direction: column !important;
        gap: 0.2rem !important;
        white-space: nowrap !important;
        border-left: none !important;
        border-bottom: 3px solid transparent !important;
        flex-shrink: 0 !important;
    }

    .vp-tab-btn.is-active {
        border-bottom-color: var(--brand) !important;
        border-left-color: transparent !important;
    }

    .vp-tab-panels {
        padding: 1.5rem 1.25rem !important;
        min-height: 0 !important;
    }
}


/* ============================================================
   4. ORIGIN STORY SECTION
   ============================================================ */

.origin-story-section {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    margin-top: 3.75rem;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}

.origin-intro {
    text-align: left !important;
    font-size: 1.05rem !important;
    color: #666666 !important;
    max-width: 600px !important;
    margin: 0 auto 1.25rem !important;
    line-height: 1.65 !important;
}

/* ── 3 visual teaser cards ──────────────────────────── */

.origin-card-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 1.25rem !important;
    margin-bottom: 5rem !important;
    margin-top: 2rem !important;
}

.origin-card {
    background: #ffffff !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
    overflow: visible !important;
    text-align: center !important;
}

.origin-card-image {
    position: relative !important;
    height: 180px !important;
    border-radius: 10px 10px 0 0 !important;
    overflow: hidden !important;
    background-color: var(--brand-tint) !important;
}

/* Neutralise WP's .img-share-wrapper only inside card image slots —
   leaves core.css untouched everywhere else (single.php, etc.) */
.origin-card-image .img-share-wrapper {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.origin-card-image img,
.origin-card-image figure,
.origin-card-image figure img,
.origin-card-image .img-share-wrapper img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.origin-card-icon {
    position: absolute !important;
    bottom: -22px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1.5px solid #e4e4e4 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.10) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--brand) !important;
    z-index: 1 !important;
}

.origin-card-label {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    font-family: var(--font-serif) !important;
    color: #222222 !important;
    line-height: 1.4 !important;
    padding: 2rem 1rem 1.4rem !important;
    margin: 0 !important;
}

/* ── Zigzag two-column rows ─────────────────────────── */

.origin-zigzag {
    display: flex !important;
    flex-direction: column !important;
    gap: 4rem !important;
    padding: 0 1rem;
}

.origin-zz-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem !important;
    align-items: start !important;
}

.origin-zz-row--reverse .origin-zz-image {
    order: 2 !important;
    padding-top: 2.5rem;
}

.origin-zz-row--reverse .origin-zz-content {
    order: 1 !important;
}

.origin-zz-image {
    border-radius: 8px !important;
    overflow: hidden !important;
    aspect-ratio: 2 / 3 !important;
}

.origin-zz-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.origin-zz-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.origin-zz-headline {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #111111 !important;
    font-family: var(--font-serif) !important;
    margin-top: 2rem !important;
}

.origin-zz-body {
    font-size: 0.9rem !important;
    line-height: 1.72 !important;
    color: #444444 !important;
    margin: 0 !important;
}

.origin-zz-cta {
    display: inline-block !important;
    align-self: flex-start !important;
    margin-top: 0.5rem !important;
    background-color: var(--brand) !important;
    color: #ffffff !important;
    font-family: var(--font-serif) !important;
    font-size: 0.89rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    padding: 12px 28px !important;
    transition: background-color 0.2s ease;
}

.origin-zz-cta:hover {
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
    opacity: 1;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .origin-card-row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 3rem !important;
    }

    .origin-zz-row,
    .origin-zz-row--reverse {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .origin-zz-row--reverse .origin-zz-image,
    .origin-zz-row--reverse .origin-zz-content {
        order: unset !important;
    }
}

@media screen and (max-width: 600px) {
    .origin-zz-cta {
        align-self: stretch !important;
        text-align: center !important;
    }
}


/* ============================================================
   5. PROCESS TIMELINE SECTION
   ============================================================ */

.timeline-section {
    background-color: #ffffff !important;
    padding: 20px 0 !important;
}

.timeline-steps {
    margin-top: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 0 1.5rem !important;
}

.timeline-step {
    position: relative !important;
    display: flex !important;
    gap: 1.75rem !important;
    padding: 2rem 0 !important;
}

.timeline-step:last-child {
    padding-bottom: 3.5rem !important;
}

/* ── Scroll-reveal animation ─────────────────────────────────
   Hidden state only applied when JS has confirmed IntersectionObserver
   is available (body.timeline-animate class).
   ──────────────────────────────────────────────────────────── */
.timeline-animate .timeline-step {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.timeline-animate .timeline-step .step-number {
    transform: scale(0.85);
    transition: opacity 0.55s ease, transform 0.55s ease 0.1s;
    opacity: 0;
}

.timeline-animate .timeline-step.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.timeline-animate .timeline-step.is-visible .step-number {
    opacity: 1 !important;
    transform: scale(1) !important;
}

@media (prefers-reduced-motion: reduce) {

    .timeline-animate .timeline-step,
    .timeline-animate .timeline-step .step-number {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Connector lines between steps */
.timeline-step:not(:first-child)::before {
    content: '' !important;
    position: absolute !important;
    left: 19px !important;
    top: 0 !important;
    height: calc(2rem + 22px) !important;
    width: 1.5px !important;
    background-color: #e0e0e0 !important;
}

.timeline-step:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    left: 19px !important;
    top: calc(2rem + 22px) !important;
    bottom: 0 !important;
    width: 1.5px !important;
    background-color: #e0e0e0 !important;
}

.step-number {
    position: relative !important;
    z-index: 1 !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: 1.5px solid #cccccc !important;
    color: #555555 !important;
    font-family: var(--font-serif) !important;
    font-size: 0.94rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2px !important;
    transition: border-color 0.35s ease, color 0.35s ease;
}

.timeline-step.is-visible .step-number {
    border-color: var(--brand) !important;
    color: var(--brand) !important;
}

.step-content {
    flex: 1 !important;
    padding-top: 4px !important;
}

.step-name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: var(--font-serif) !important;
    color: #111111 !important;
    margin: 0 0 1.2rem !important;
    line-height: 1.3 !important;
}

.step-body-box {
    position: relative !important;
    overflow: visible !important;
    background-color: #ffffff !important;
    border-radius: 10px !important;
    border: 1px solid #ebebeb !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    padding: 1.1rem 1.4rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.step-body-box:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

.step-timeframe {
    position: absolute !important;
    top: 0 !important;
    right: 1.25rem !important;
    transform: translateY(-50%) !important;
    display: inline-block !important;
    font-size: 0.63rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    color: #555555 !important;
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
}

.step-body {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #444444 !important;
    margin: 0 !important;
}

/* Custom bullet list — timeline steps only
   Overrides all theme/browser defaults.
   Bullet: small brand-orange square, vertically centred on first line.
   Spacing tuned to match .step-body paragraph rhythm.           */
.step-list {
    list-style: none !important;
    margin: 0.2rem 0 0.7rem 0 !important;
    padding: 0 !important;
}

.step-list li {
    position: relative !important;
    padding-left: 1.3rem !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #444444 !important;
    margin-bottom: 0.25rem !important;
    margin-left: 1rem !important;
}

.step-list li:last-child {
    margin-bottom: 0 !important;
}

/* Filled brand-orange square bullet, 5 × 5 px, soft corners */
.step-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.58rem !important;
    width: 5px !important;
    height: 5px !important;
    background-color: var(--brand) !important;
    border-radius: 1px !important;
    flex-shrink: 0 !important;
}

/* Mobile */
@media screen and (max-width: 600px) {
    .timeline-steps {
        padding: 0 1.25rem !important;
        border-radius: 8px !important;
    }

    .timeline-step {
        gap: 1.25rem !important;
    }

    .timeline-step:not(:first-child)::before {
        left: 15px !important;
        height: calc(2rem + 18px) !important;
    }

    .timeline-step:not(:last-child)::after {
        left: 15px !important;
        top: calc(2rem + 18px) !important;
    }

    .step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.89rem !important;
    }

    .step-name {
        font-size: 0.94rem !important;
    }

    .step-body-box {
        padding: 0.9rem 1rem !important;
    }

    .step-timeframe {
        font-size: 0.6rem !important;
        padding: 3px 9px !important;
        right: 0.75rem !important;
    }
}