/* =========================================================
   MY MIRROR CHALLENGE™
   GLOBAL STYLE SYSTEM
   File: style.css
========================================================= */


/* =========================================================
   1. CSS VARIABLES
========================================================= */

:root {
    /* Brand Colors */
    --mmc-cream: #F6F3EE;
    --mmc-white: #FFFFFF;
    --mmc-off-white: #FDFBF7;
    --mmc-pale-green: #F5FEF5;
    --mmc-soft-green-bg: #EEF9EF;

    --mmc-deep-teal: #0A3434;
    --mmc-dark-green: #102F2A;
    --mmc-forest: #2C4236;
    --mmc-green: #72AE44;
    --mmc-green-dark: #5E9638;
    --mmc-muted-gold: #C5A059;

    /* Text Colors */
    --mmc-text-primary: #102F2A;
    --mmc-text-secondary: #435A50;
    --mmc-text-muted: #66776F;
    --mmc-text-light: #7B8983;

    /* Borders */
    --mmc-border-light: rgba(10, 52, 52, 0.08);
    --mmc-border-medium: rgba(10, 52, 52, 0.14);
    --mmc-border-green: rgba(114, 174, 68, 0.28);

    /* Shadows */
    --mmc-shadow-soft: 0 10px 30px rgba(10, 52, 52, 0.055);
    --mmc-shadow-card: 0 18px 48px rgba(10, 52, 52, 0.075);
    --mmc-shadow-hover: 0 28px 75px rgba(10, 52, 52, 0.13);
    --mmc-shadow-dark: 0 22px 55px rgba(0, 0, 0, 0.16);

    /* Radius */
    --mmc-radius-xs: 8px;
    --mmc-radius-sm: 12px;
    --mmc-radius-md: 18px;
    --mmc-radius-lg: 24px;
    --mmc-radius-xl: 32px;
    --mmc-radius-pill: 999px;

    /* Fonts */
    --mmc-font-heading: 'Lora', serif;
    --mmc-font-body: 'Roboto', sans-serif;

    /* Layout */
    --mmc-container: 1180px;
    --mmc-container-wide: 1320px;

    /* Transitions */
    --mmc-transition: all 0.32s ease;
}


/* =========================================================
   2. GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background: var(--mmc-cream);
    color: var(--mmc-text-primary);
    font-family: var(--mmc-font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--mmc-transition);
}

a:hover {
    color: var(--mmc-green);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin-top: 0;
}

p {
    margin-top: 0;
}

::selection {
    background: rgba(114, 174, 68, 0.22);
    color: var(--mmc-deep-teal);
}


/* =========================================================
   3. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--mmc-text-primary);
    font-family: var(--mmc-font-heading);
    font-weight: 700;
    line-height: 1.18;
}


h1 {
    font-size: clamp(38px, 3vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(34px, 3.5vw, 52px);
    letter-spacing: -0.028em;
}

h3 {
    font-size: clamp(26px, 2.5vw, 36px);
    letter-spacing: -0.018em;
}

h4 {
    font-size: clamp(22px, 2vw, 28px);
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    color: var(--mmc-text-secondary);
}

strong,
b {
    color: var(--mmc-deep-teal);
    font-weight: 800;
}

.mmc-text-muted {
    color: var(--mmc-text-muted);
}

.mmc-text-green {
    color: var(--mmc-green);
}

.mmc-text-teal {
    color: var(--mmc-deep-teal);
}

.mmc-heading-serif {
    font-family: var(--mmc-font-heading);
}

.mmc-body-font {
    font-family: var(--mmc-font-body);
}


/* =========================================================
   4. PAGE CONTAINERS
========================================================= */

.mmc-container {
    width: 100%;
    max-width: var(--mmc-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.mmc-container-wide {
    width: 100%;
    max-width: var(--mmc-container-wide);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.main,
main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   5. SECTION SYSTEM
========================================================= */

.mmc-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.mmc-section-sm {
    padding: 72px 0;
}

.mmc-section-lg {
    padding: 140px 0;
}

.mmc-section-cream {
    background: var(--mmc-cream);
}

.mmc-section-white {
    background: var(--mmc-white);
}

.mmc-section-off-white {
    background: var(--mmc-off-white);
}

.mmc-section-green {
    background: linear-gradient(180deg, var(--mmc-pale-green) 0%, var(--mmc-soft-green-bg) 100%);
}

.mmc-section-dark {
    background: var(--mmc-deep-teal);
    color: var(--mmc-white);
}

.mmc-section-dark h1,
.mmc-section-dark h2,
.mmc-section-dark h3,
.mmc-section-dark h4,
.mmc-section-dark h5,
.mmc-section-dark h6,
.mmc-section-dark p {
    color: var(--mmc-white);
}


/* =========================================================
   6. SHARED SECTION HEADING
========================================================= */

.mmc-section-heading {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.mmc-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: var(--mmc-radius-pill);
    background: var(--mmc-deep-teal);
    color: var(--mmc-white);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mmc-section-kicker.light {
    background: rgba(114, 174, 68, 0.12);
    color: var(--mmc-deep-teal);
}

.mmc-section-title {
    margin-bottom: 16px;
}

.mmc-section-title span {
    color: var(--mmc-deep-teal);
    position: relative;
    display: inline-block;
}

.mmc-section-title span::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 5px;
    height: 10px;
    background: rgba(114, 174, 68, 0.24);
    border-radius: var(--mmc-radius-pill);
    z-index: -1;
}

.mmc-section-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--mmc-text-muted);
    font-size: 16.5px;
    line-height: 1.8;
}


/* Compatible with older theme classes */

.site-heading {
    margin-bottom: 54px;
}

.site-title {
    font-family: var(--mmc-font-heading);
    color: var(--mmc-text-primary);
    font-weight: 700;
    line-height: 1.18;
}

.site-title span {
    color: var(--mmc-deep-teal);
}

.site-title-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mmc-deep-teal);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.heading-divider {
    width: 64px;
    height: 3px;
    border-radius: var(--mmc-radius-pill);
    background: var(--mmc-green);
    margin: 18px auto 0;
}


/* =========================================================
   7. BUTTON SYSTEM
========================================================= */

.theme-btn,
.mmc-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 15px 26px;
    border-radius: var(--mmc-radius-pill);
    border: 1px solid transparent;
    background: var(--mmc-deep-teal);
    color: var(--mmc-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(10, 52, 52, 0.18);
    transition: var(--mmc-transition);
    overflow: hidden;
}

.theme-btn b,
.theme-btn strong,
.mmc-btn b,
.mmc-btn strong {
    color: inherit !important;
}

.theme-btn:hover,
.mmc-btn:hover {
    background: var(--mmc-green);
    color: var(--mmc-white);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(114, 174, 68, 0.28);
}

.theme-btn i,
.mmc-btn i {
    font-size: 14px;
    transition: var(--mmc-transition);
}

.theme-btn:hover i,
.mmc-btn:hover i {
    transform: translateX(3px);
}

.mmc-btn-green {
    background: var(--mmc-green);
    color: var(--mmc-white);
    box-shadow: 0 14px 32px rgba(114, 174, 68, 0.22);
}

.mmc-btn-green:hover {
    background: var(--mmc-deep-teal);
    box-shadow: 0 18px 42px rgba(10, 52, 52, 0.22);
}

.mmc-btn-outline {
    background: transparent;
    color: var(--mmc-deep-teal);
    border-color: rgba(10, 52, 52, 0.25);
    box-shadow: none;
}

.mmc-btn-outline:hover {
    background: var(--mmc-deep-teal);
    color: var(--mmc-white);
    border-color: var(--mmc-deep-teal);
}

.mmc-btn-light {
    background: var(--mmc-white);
    color: var(--mmc-deep-teal);
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.14);
}

.mmc-btn-light:hover {
    background: var(--mmc-green);
    color: var(--mmc-white);
}

.mmc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mmc-deep-teal);
    font-weight: 800;
    font-size: 14px;
}

.mmc-text-link:hover {
    color: var(--mmc-green);
}


/* =========================================================
   8. SAFE ACTION BUTTON SYSTEM
========================================================= */

.mmc-action-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    min-height: 54px !important;
    padding: 16px 30px !important;

    border: none !important;
    border-radius: 999px !important;

    background: var(--mmc-deep-teal) !important;
    color: var(--mmc-white) !important;

    font-family: var(--mmc-font-body) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow: 0 18px 42px rgba(10, 52, 52, 0.18) !important;
    overflow: visible !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.mmc-action-btn span,
.mmc-action-btn i {
    position: relative !important;
    z-index: 5 !important;
    display: inline-flex !important;
    color: var(--mmc-white) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mmc-action-btn i {
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
}

.mmc-action-btn:hover {
    background: var(--mmc-green) !important;
    color: var(--mmc-white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 22px 48px rgba(114, 174, 68, 0.24) !important;
}

.mmc-action-btn:hover span,
.mmc-action-btn:hover i {
    color: var(--mmc-white) !important;
}

.mmc-header-cta {
    min-height: 44px !important;
    padding: 13px 24px !important;
    font-size: 13px !important;
}


/* =========================================================
   9. BADGES / PILLS / CHIPS
========================================================= */

.mmc-pill,
.wg-pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: var(--mmc-radius-pill);
    background: var(--mmc-deep-teal);
    color: var(--mmc-white);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.04em;
    max-width: 100%;
}

.mmc-pill-green {
    background: rgba(114, 174, 68, 0.13);
    color: var(--mmc-deep-teal);
}

.mmc-pill-outline {
    background: transparent;
    color: var(--mmc-deep-teal);
    border: 1px solid rgba(10, 52, 52, 0.14);
}

.mmc-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: var(--mmc-radius-pill);
    background: var(--mmc-white);
    border: 1px solid var(--mmc-border-light);
    color: var(--mmc-deep-teal);
    font-size: 12.5px;
    font-weight: 700;
}

.mmc-chip i {
    color: var(--mmc-green);
}


/* =========================================================
   10. CARD SYSTEM
========================================================= */

.mmc-card {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--mmc-border-light);
    border-radius: var(--mmc-radius-lg);
    box-shadow: var(--mmc-shadow-card);
    transition: var(--mmc-transition);
    overflow: hidden;
}

.mmc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mmc-shadow-hover);
    border-color: var(--mmc-border-green);
}

.mmc-card-pad {
    padding: 30px;
}

.mmc-card-sm {
    border-radius: var(--mmc-radius-md);
    padding: 22px;
}

.mmc-card-lg {
    border-radius: var(--mmc-radius-xl);
    padding: 42px;
}

.mmc-card-top-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(90deg, var(--mmc-green), var(--mmc-deep-teal));
}

.mmc-glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
}


/* =========================================================
   11. ICON SYSTEM
========================================================= */

.mmc-icon-box {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(114, 174, 68, 0.12);
    color: var(--mmc-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--mmc-transition);
}

.mmc-icon-box.dark {
    background: var(--mmc-deep-teal);
    color: var(--mmc-white);
}

.mmc-icon-box.light {
    background: var(--mmc-cream);
    color: var(--mmc-deep-teal);
}

.mmc-icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(114, 174, 68, 0.14);
    color: var(--mmc-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}


/* =========================================================
   12. LIST SYSTEM
========================================================= */

.mmc-check-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.mmc-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--mmc-text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.mmc-check-list li i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(114, 174, 68, 0.14);
    color: var(--mmc-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 2px;
}

.mmc-check-list li span {
    min-width: 0;
}


/* =========================================================
   13. FORMS
========================================================= */

.mmc-form-group {
    margin-bottom: 18px;
}

.mmc-label {
    display: block;
    margin-bottom: 8px;
    color: var(--mmc-deep-teal);
    font-size: 13px;
    font-weight: 800;
}

.mmc-input,
.mmc-select,
.mmc-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--mmc-border-light);
    border-radius: var(--mmc-radius-md);
    background: var(--mmc-white);
    color: var(--mmc-text-primary);
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: var(--mmc-transition);
}

textarea,
.mmc-textarea {
    min-height: 130px;
    resize: vertical;
}

.mmc-input:focus,
.mmc-select:focus,
.mmc-textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border-color: rgba(114, 174, 68, 0.52);
    box-shadow: 0 0 0 4px rgba(114, 174, 68, 0.12);
}

::placeholder {
    color: rgba(102, 119, 111, 0.72);
}


/* =========================================================
   14. IMAGE SYSTEM
========================================================= */

.mmc-img-rounded {
    border-radius: var(--mmc-radius-lg);
    overflow: hidden;
}

.mmc-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mmc-image-card {
    position: relative;
    border-radius: var(--mmc-radius-xl);
    overflow: hidden;
    box-shadow: var(--mmc-shadow-card);
    background: var(--mmc-deep-teal);
}

.mmc-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   15. TRUST / DISCLAIMER ELEMENTS
========================================================= */

.mmc-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--mmc-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.mmc-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mmc-trust-row i {
    color: var(--mmc-deep-teal);
}

.mmc-disclaimer {
    color: var(--mmc-text-muted);
    font-size: 12px;
    line-height: 1.7;
    opacity: 0.9;
}

.mmc-disclaimer strong {
    color: var(--mmc-deep-teal);
}


/* =========================================================
   16. BACKGROUND DECORATIONS
========================================================= */

.mmc-leaf-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.13;
    z-index: 0;
}

.mmc-soft-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 174, 68, 0.16), transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.mmc-gold-heart {
    color: var(--mmc-muted-gold);
}


/* =========================================================
   17. GRID HELPERS
========================================================= */

.mmc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.mmc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mmc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.mmc-align-center {
    align-items: center;
}

.mmc-text-center {
    text-align: center;
}


/* =========================================================
   18. SPACING UTILITIES
========================================================= */

.mmc-mt-0 { margin-top: 0 !important; }
.mmc-mt-1 { margin-top: 8px !important; }
.mmc-mt-2 { margin-top: 16px !important; }
.mmc-mt-3 { margin-top: 24px !important; }
.mmc-mt-4 { margin-top: 32px !important; }
.mmc-mt-5 { margin-top: 48px !important; }

.mmc-mb-0 { margin-bottom: 0 !important; }
.mmc-mb-1 { margin-bottom: 8px !important; }
.mmc-mb-2 { margin-bottom: 16px !important; }
.mmc-mb-3 { margin-bottom: 24px !important; }
.mmc-mb-4 { margin-bottom: 32px !important; }
.mmc-mb-5 { margin-bottom: 48px !important; }

.mmc-pt-0 { padding-top: 0 !important; }
.mmc-pt-1 { padding-top: 8px !important; }
.mmc-pt-2 { padding-top: 16px !important; }
.mmc-pt-3 { padding-top: 24px !important; }
.mmc-pt-4 { padding-top: 32px !important; }
.mmc-pt-5 { padding-top: 48px !important; }

.mmc-pb-0 { padding-bottom: 0 !important; }
.mmc-pb-1 { padding-bottom: 8px !important; }
.mmc-pb-2 { padding-bottom: 16px !important; }
.mmc-pb-3 { padding-bottom: 24px !important; }
.mmc-pb-4 { padding-bottom: 32px !important; }
.mmc-pb-5 { padding-bottom: 48px !important; }


/* =========================================================
   19. ANIMATION HELPERS
========================================================= */

@keyframes mmcFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

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

@keyframes mmcSoftPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(114, 174, 68, 0.22);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(114, 174, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(114, 174, 68, 0);
    }
}

.mmc-float {
    animation: mmcFloat 4s ease-in-out infinite;
}

.mmc-soft-pulse {
    animation: mmcSoftPulse 2.8s ease-out infinite;
}


/* =========================================================
   20. ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(114, 174, 68, 0.45);
    outline-offset: 3px;
}

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


/* =========================================================
   21. RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .mmc-container,
    .mmc-container-wide {
        padding-left: 22px;
        padding-right: 22px;
    }

    .mmc-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mmc-section {
        padding: 84px 0;
    }

    .mmc-section-lg {
        padding: 100px 0;
    }

    .mmc-grid-2,
    .mmc-grid-3 {
        grid-template-columns: 1fr;
    }

    .mmc-section-heading {
        margin-bottom: 42px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15.5px;
    }

    .mmc-container,
    .mmc-container-wide {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mmc-section {
        padding: 72px 0;
    }

    .mmc-section-sm {
        padding: 56px 0;
    }

    .mmc-section-lg {
        padding: 84px 0;
    }

    .mmc-grid-4 {
        grid-template-columns: 1fr;
    }

    .mmc-card-pad {
        padding: 24px;
    }

    .mmc-card-lg {
        padding: 30px 22px;
    }

    .theme-btn,
    .mmc-btn {
        width: 100%;
        max-width: 340px;
        min-height: 50px;
        padding: 14px 20px;
    }

    .mmc-section-title span::after {
        display: none;
    }
    
    h1 {
        font-size: 38px;
        line-height: 1.12;
        letter-spacing: -0.045em;
    }
}

@media (max-width: 480px) {
    .mmc-container,
    .mmc-container-wide {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mmc-section-heading {
        margin-bottom: 34px;
    }

    .mmc-section-kicker,
    .site-title-tagline {
        font-size: 10.8px;
        letter-spacing: 0.06em;
    }

    .mmc-card-pad {
        padding: 22px 18px;
    }

    .mmc-trust-row {
        justify-content: center;
        text-align: center;
    }
    h1 {
        font-size: 36px;
    }
}


/* =========================================================
   22. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}