@charset "UTF-8";

/* MyWealth Capital — alternating dark / light sections (matches live homepage rhythm) */

:root {
    --mwc-section-dark: #05121f;
    --mwc-section-dark-elevated: #0a1f2e;
    --mwc-heading-blue: #004e74;
    --mwc-green-bright: #66bb33;
}

/* Sentence case + scale (main.css forces uppercase on .section-title h2) */
.mwc-section-light .section-title h2,
.mwc-section-dark .section-title h2 {
    text-transform: none;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    line-height: 1.35;
    letter-spacing: 0.02em;
}

/* ---- Hero (dark; continues from fixed header) ---- */
.mwc-hero-marketing.section {
    --background-color: var(--mwc-section-dark);
    --default-color: rgba(255, 255, 255, 0.92);
    --heading-color: #ffffff;
    background: var(--mwc-section-dark);
    padding-top: calc(88px + 2.5rem);
    padding-bottom: 4rem;
}

.mwc-hero-title {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.mwc-hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 38rem;
}

.mwc-hero-lead .mwc-accent-dot {
    color: var(--mwc-green-bright);
    font-weight: 700;
}

.mwc-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
}

.mwc-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.mwc-hero-bullets .mwc-hero-check {
    color: var(--mwc-green-bright);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.mwc-product-bullets {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
}

.mwc-product-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    color: #231f20;
    font-size: 1.05rem;
}

.mwc-product-bullets .mwc-hero-check {
    color: var(--mwc-green-bright);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.products-content-lists .services-content ul:not(.mwc-product-bullets) {
    list-style: none;
    padding-left: 1rem;
}

.products-content-lists .services-content ul:not(.mwc-product-bullets) li {
    position: relative;
    padding-left: 0.95rem;
}

.products-content-lists .services-content ul:not(.mwc-product-bullets) li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #65b245;
    font-weight: 700;
}

.products-content-lists .table thead th {
    background-color: #05121f;
    color: #66bb33;
}

.products-content-lists .table {
    border-color: #66bb33;
}

.products-content-lists .table th,
.products-content-lists .table td {
    border-color: #66bb33;
}

.mwc-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 1rem 2.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.mwc-btn-pill-primary {
    background: var(--mwc-green-bright);
    color: #ffffff;
}

.mwc-btn-pill-primary:hover {
    background: color-mix(in srgb, var(--mwc-green-bright), #000 14%);
    color: #ffffff;
}

.mwc-hero-phone {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -6rem;
}

.mwc-hero-highlight {
    color: var(--mwc-green-bright);
    font-weight: 600;
    font-style:italic;
}

.mwc-hero-marketing .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

/* Subpage hero strip */
.mwc-hero-subpage.hero {
    min-height: 0;
    height: auto;
    max-height: none;
    padding: 5rem 0 3rem;
    background: #011223;
    position: relative;
    overflow: hidden;
}

.mwc-hero-subpage.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/mwc/Phone-Graphic-Header-Image.webp") no-repeat 90% 60%;
    background-size: min(45vw, 380px);
    opacity: 0.16;
    pointer-events: none;
}

.hero-banner-half .mwc-hero-subpage.hero {
    min-height: 260px;
    height: 260px;
    max-height: 360px;
    padding: 0;
    display: block;
}

/* ---- Alternating section shells (pair with section.section from main.css) ---- */
section.mwc-section-light.section,
.mwc-section-light.section {
    --background-color: #ffffff;
    --default-color: #231f20;
    --heading-color: var(--mwc-heading-blue);
    background-color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mwc-section-light .section-title h2 {
    color: var(--mwc-heading-blue);
}

.mwc-section-light .section-title h2::after {
    background: var(--mwc-green-bright);
}

.mwc-section-light .section-title p {
    color: #5a5a5a;
}

.mwc-section-light h2.display-6 {
    color: var(--mwc-heading-blue);
}

section.mwc-section-dark.section,
.mwc-section-dark.section {
    --background-color: var(--mwc-section-dark);
    --default-color: rgba(255, 255, 255, 0.9);
    --heading-color: #ffffff;
    background-color: var(--mwc-section-dark);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mwc-section-dark .section-title h2 {
    color: #ffffff;
    font-weight: 700;
}

.mwc-section-dark.mwc-title-faq .section-title h2 {
    font-style: italic;
    font-weight: 600;
}

.mwc-section-dark .section-title h2::after {
    background: var(--mwc-green-bright);
}

.mwc-section-dark .section-title p {
    color: rgba(255, 255, 255, 0.78);
}

/* "Why" band: white pillar cards on dark */
.mwc-pillar-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 6px solid #ff3838;
    padding-top: 2.65rem;
}

.mwc-pillar-tab {
    width: 128px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.45rem;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pillar-accent, #ff4d4d);
    border-radius: 0 0 1rem 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
}

.mwc-pillar-inner {
    flex: 1;
    padding: 4rem 1.35rem 1.6rem;
}

.mwc-pillar-inner h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    color: #231f20;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.mwc-pill-highlight,
.mwc-pill-subtitle {
    display: block;
}

.mwc-pill-highlight {
    width: fit-content;
    margin: 0 auto 0.18rem;
    background: #7abf2b;
    color: #101010;
    padding: 0.04em 0.2em;
    line-height: 1;
}

.mwc-pill-subtitle {
    color: #ff3838;
}

.mwc-pillar-inner p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #29323c;
    margin-bottom: 0;
}

.mwc-pillar-card--red {
    border-bottom-color: #ff3838;
}

.mwc-pillar-card--orange {
    border-bottom-color: #ff9533;
}

.mwc-pillar-card--yellow {
    border-bottom-color: #ffd91a;
}

/* What you get — icon list on white */
.mwc-icon-row .mwc-icon-box {
    text-align: center;
    padding: 1rem 0.5rem;
}

.mwc-icon-row .mwc-icon-box img {
    width: 72px;
    height: auto;
    margin-bottom: 0.75rem;
}

.mwc-icon-row h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mwc-heading-blue);
    margin-bottom: 0.35rem;
}

/* How it works — colored step orbs (reference: yellow / blue / red accents) */
.mwc-steps .mwc-step {
    text-align: center;
    padding: 1rem;
}

.mwc-step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.mwc-step-num--gold {
    background: linear-gradient(145deg, #ffc107, #e0a800);
    color: #1a1a1a;
}

.mwc-step-num--blue {
    background: linear-gradient(145deg, #197bff, #0d5fbf);
}

.mwc-step-num--coral {
    background: linear-gradient(145deg, #ff5c5c, #e04040);
}

.mwc-section-light .mwc-steps h3 {
    color: var(--mwc-heading-blue);
    font-weight: 700;
}

.mwc-subline-green {
    color: var(--mwc-green-bright);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ — dark band, white accordion panels */
.mwc-section-dark .mwc-faq .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.mwc-section-dark .mwc-faq .accordion-item {
    background: #ffffff;
    border: none;
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.mwc-section-dark .mwc-faq .accordion-button {
    font-weight: 600;
    color: #231f20;
    background-color: #ffffff;
    padding: 1.1rem 1.25rem;
}

.mwc-section-dark .mwc-faq .accordion-button:not(.collapsed) {
    color: #231f20;
    background-color: #ffffff;
    box-shadow: none;
}

.mwc-section-dark .mwc-faq .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(48%) sepia(65%) saturate(500%) hue-rotate(52deg) brightness(95%);
}

.mwc-section-dark .mwc-faq .accordion-body {
    background: #fafafa;
    color: #444;
    padding: 1rem 1.25rem 1.25rem;
}

/* Testimonials — white section, blue title */
.mwc-testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #eee;
}

.mwc-testimonial .quote {
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 1rem;
}

.mwc-testimonial .name {
    font-weight: 700;
    color: var(--mwc-heading-blue);
}

.mwc-stars {
    color: #ffc107;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

/* Contact strip before footer */
.mwc-contact-strip.section {
    --background-color: var(--mwc-section-dark);
    background-color: var(--mwc-section-dark);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mwc-contact-strip .white-panel-45 {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.mwc-contact-strip .contact-label,
.mwc-contact-strip h2,
.mwc-contact-strip h3 {
    color: #fff !important;
}

.mwc-contact-strip .sub-title {
    color: rgba(255, 255, 255, 0.75) !important;
    text-shadow: none !important;
}

.mwc-contact-strip a {
    color: var(--mwc-green-bright) !important;
}

/* ---- Inner content pages (About, etc.): dark page hero + white body ---- */
.mwc-page-hero.section {
    --background-color: var(--mwc-section-dark);
    background: var(--mwc-section-dark);
    padding-top: calc(88px + 2.5rem);
    padding-bottom: 2.75rem;
    text-align: center;
}

.mwc-page-hero-title {
    color: var(--mwc-green-bright);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
}

.mwc-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.62);
}

.mwc-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.mwc-breadcrumb a:hover {
    color: var(--mwc-green-bright);
}

.mwc-breadcrumb-sep {
    display: inline-block;
    margin: 0 0.4rem;
    opacity: 0.85;
}

.mwc-breadcrumb-current {
    color: rgba(255, 255, 255, 0.55);
}

.mwc-page-body {
    background: #ffffff;
}

.mwc-page-body section.mwc-section-light.section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.mwc-prose h2 {
    color: var(--mwc-heading-blue);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.mwc-prose p {
    color: #231f20;
    line-height: 1.7;
    margin-bottom: 0;
}

.mwc-prose .lead {
    font-size: 1.05rem;
}

/* Zigzag rows: Mission / Vision icon strips */
.mwc-icon-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.mwc-icon-track-node {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--mwc-heading-blue);
    color: var(--mwc-heading-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: #fff;
    flex-shrink: 0;
}

.mwc-icon-track-line {
    flex: 1;
    min-width: 1rem;
    height: 0;
    border-top: 2px dotted var(--mwc-heading-blue);
    opacity: 0.65;
}

@media (max-width: 767px) {
    .mwc-icon-track {
        justify-content: center;
    }

    .mwc-icon-track-line {
        display: none;
    }
}

@media (max-width: 991px) {
    .mwc-hero-marketing.section {
        padding-top: calc(76px + 2rem);
        text-align: center;
    }

    .mwc-hero-bullets {
        text-align: left;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .mwc-hero-phone {
        margin-top: 2rem;
    }

    .hero-banner-half .mwc-hero-subpage.hero {
        min-height: 200px;
        height: 200px;
    }

    .mwc-page-hero.section {
        padding-top: calc(76px + 2rem);
    }
}
