/* =========================
   ACCRIVO - MAIN PAGE HERO
   ========================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap");
:root {
    --bg-1: #38866c;
    --bg-2: #004942;

    --text: #effffa;
    --muted: rgba(255, 255, 255, 0.82);

    --mint: #a3ffe4; /* requested subtitle color */
    --cta: #008060; /* darkened for WCAG AA contrast (4.96:1 with white) */
    --cta-hover: #007555;

    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
html,
body {
    margin: 0;
    padding: 0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    background: radial-gradient(
        112.08% 96.94% at 96.28% 3.57%,
        #38866c 0%,
        #004942 100%
    );
}

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

.mp-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;

    /* background: radial-gradient(112.08% 96.94% at 96.28% 3.57%, #38866C 0%, #004942 100%); */

    color: var(--text);
    padding: clamp(28px, 4vw, 56px) 18px 20px;
    box-sizing: border-box;
}

.mp-hero-inner {
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

/* top brand */
.mp-brand {
    font-weight: 800;
    letter-spacing: 0.6px;
    font-size: 21px;
    margin-top: 6px;
    margin-bottom: 18px;
    opacity: 0.95;
}

.mp-kicker {
    margin: 0 0 10px;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.966);
}

/* Headings */
.mp-title {
    margin: 0;
    font-weight: 800;
    line-height: 1.05;
    font-size: clamp(34px, 4.6vw, 50px);
}

.mp-title-underline {
    display: inline-block;
    /* padding-bottom: -8px; */
    border-bottom: 3px solid #ffffff;
}

.mp-subtitle {
    margin: 10px 0 0;
    font-weight: 800;
    line-height: 1.08;
    font-size: clamp(26px, 3.9vw, 42px);
    color: var(--mint); /* requested */
}

.mp-tagline {
    margin: 8px 0 0;
    font-weight: 800;
    line-height: 1.1;
    font-size: clamp(24px, 3.5vw, 40px);
    color: rgba(255, 255, 255, 0.92);
}

.mp-desc {
    margin: 14px 0 0;
    max-width: 965px;
    font-size: 20px;
    /* line-height: 1.55; */
    color: white;
}

/* Media frame */
.mp-media {
    width: min(820px, 100%);
    margin-top: 28px;

    position: relative;
    border-radius: 12px;
    overflow: hidden;

    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.mp-media-img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Play overlay (optional) */
.mp-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;

    background: transparent;
    border: 0;
    cursor: pointer;
}

.mp-play-icon {
    width: 78px;
    height: 78px;
    border-radius: 14px;

    background: rgba(0, 199, 140, 0.8);
    backdrop-filter: blur(6px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    position: relative;
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.mp-play-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-38%, -50%);

    width: 0;
    height: 0;
    border-left: 18px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.mp-play:hover .mp-play-icon {
    transform: scale(1.03);
    background: rgba(0, 199, 140, 0.92);
}

/* CTA button */
.mp-cta {
    margin-top: 24px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--cta);
    color: #ffffff;
    text-decoration: none;

    font-weight: 800;
    font-size: 29px;

    padding: 11px 16px;
    border-radius: 12px;

    border: 2px solid #ffffff; /* ✅ white border */
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;
    width: min(500px, 100%);
}

.mp-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.mp-cta:active {
    transform: translateY(0px);
}

.mp-cta-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: grid;
    place-items: center;

    /* background: rgba(255,255,255,.14); */
    /* border: 1px solid rgba(255,255,255,.18); */
}

/* Responsive spacing tweaks */
@media (max-width: 480px) {
    .mp-desc {
        font-size: 14px;
    }
    .mp-cta {
        font-size: 16px;
        padding: 14px 18px;
    }
    .mp-play-icon {
        width: 64px;
        height: 64px;
    }
}
/* CTA phone icon (PNG) */
.mp-cta-phone {
    width: 18px;
    height: 26px;
    object-fit: contain;
    display: block;
    /* makes sure it looks crisp on transparent PNG */
    filter: brightness(0) invert(1); /* makes icon white if it's dark/green */
}

/* Optional: slightly reduce box size on mobile */
@media (max-width: 480px) {
    .mp-cta-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .mp-cta-phone {
        width: 16px;
        height: 16px;
    }
}

/* =========================
   SECTION 2 — HELP / WHAT YOU GET
   ========================= */

.mp-help {
    /* background: radial-gradient(112.08% 96.94% at 96.28% 3.57%, #38866C 0%, #004942 100%); */

    padding: 26px 18px 20px;
    color: #fff;
}

.mp-help-inner {
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top pill (bigger + premium) */
.mp-help-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* ✅ more width + height */
    padding: 16px 20px; /* taller + wider */
    min-width: 380px; /* forces wider pill */
    max-width: 85vw; /* safe on small screens */

    border-radius: 13px;
    border: 1.5px solid #fff;
    background: #cdf5fd;

    color: #001f3d;
    font-weight: 500;
    font-size: 24px; /* slightly bigger text */
    line-height: 1;
    letter-spacing: 0.2px;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.mp-help-pill-brand {
    font-weight: 800;
}

/* Section heading */
.mp-help-title {
    margin: 18px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.12;
    color: #fff; /* requested */
}

.mp-help-title-brand {
    font-weight: 800;
}

.mp-help-card {
    margin-top: 30px;

    width: min(500px, 100%); /* ✅ like image 1 (not too narrow) */
    text-align: left;

    border-radius: 16px;
    border: 1px solid #fff;
    background: linear-gradient(180deg, #001f3d 0%, #000 100%);

    padding: 30px 34px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);

    display: flex; /* ✅ column layout */
    flex-direction: column;
    gap: 12px;
}
.mp-help-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mp-help-card-icon {
    flex: 0 0 auto;
    margin-top: 2px;
}

.mp-help-card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;

    display: grid;
    place-items: center;
}

.mp-help-card-content {
    flex: 1 1 auto;
}

.mp-help-card-heading {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
}

.mp-help-card-text {
    margin: 0; /* ✅ important so it doesn't push down too much */
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
}
.mp-help-card-icon-img {
    width: 38px;
    height: 41px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1); /* makes it white if icon is dark */
}

@media (max-width: 480px) {
    .mp-help-card {
        padding: 18px 18px;
    }

    .mp-help-card-heading {
        font-size: 18px;
    }

    .mp-help-card-icon-box {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .mp-help-card-icon-img {
        width: 22px;
        height: 22px;
    }
}

/* =========================
   SECTION 3 — HOW IT WORKS (8 CARDS)
   ========================= */

.mp-how {
    padding: 10px 18px 16px;
    color: #fff;
    background: transparent; /* background is on body */
}

.mp-how-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid: 2 columns like screenshot */
.mp-how-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
    margin-top: 18px;
}

/* Card */
.mp-how-card {
    border-radius: 16px;
    border: 1px solid #fff;
    background: linear-gradient(180deg, #004942 0%, #002925 100%);
    box-shadow: 0 0 17px 0 rgba(255, 255, 255, 0) inset;

    padding: 30px 28px;
    min-height: 155px;
}

/* top row: icon + title */
.mp-how-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mp-how-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
    margin-top: 2px;
    filter: brightness(0) invert(1); /* makes icons white if dark */
}

.mp-how-title {
    margin: 0;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
}

/* description */
.mp-how-text {
    margin: 12px 0 0;
    font-size: 15px;
    color: #ffffff;
    max-width: 520px;
}

/* CTA pill below grid (reuse mp-help-pill) */
.mp-how-pill {
    margin-top: 39px;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 900px) {
    .mp-how-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mp-how-card {
        padding: 22px 18px;
    }

    .mp-how-title {
        font-size: 22px;
    }

    .mp-how-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mp-how {
        padding: 0 16px 50px;
    }

    .mp-how-text {
        font-size: 14px;
    }

    /* make the bottom pill fit nicely */
    .mp-how-pill {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        font-size: 16px;
        padding: 14px 14px;
    }
}

/* =========================
   SECTION — CLIENT TESTIMONIALS
   ========================= */

.mp-test {
    padding: 2px 18px 10px;
    color: #fff;
    background: transparent; /* your page bg is on body */
}

.mp-test-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
}

.mp-test-section-title {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 43px);
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* 2-column grid */
.mp-test-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
    margin-top: 26px;
}

/* last card centered bottom */
.mp-test-card.is-last {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    justify-self: center;
}

/* card look */
.mp-test-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(
        180deg,
        rgba(0, 73, 66, 0.55) 0%,
        rgba(0, 20, 18, 0.85) 100%
    );
    padding: 22px 22px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

/* header row */
.mp-test-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mp-test-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mp-test-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mp-test-name {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.mp-test-sub {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.2;
    flex-wrap: wrap;
}

.mp-test-company-badge {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: grid;
    place-items: center;
}

.mp-test-company-icon {
    width: 18px; /* was 14px */
    height: 18px; /* was 14px */
    object-fit: contain;
    display: block;
}

.mp-test-sep {
    opacity: 0.75;
}

/* quote */
.mp-test-quote {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13.5px;
    font-style: italic;
    line-height: 1.55;
}

.mp-test-quote-strong {
    font-weight: 800;
}

/* metrics */
.mp-test-metrics {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mp-test-metric {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mp-test-check-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
    margin-top: 2px;
}

.mp-test-metric-value {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.mp-test-metric-label {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.35;
}

/* tags */
.mp-test-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mp-test-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 14px 7px 28px; /* left padding for dot */
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.12);

    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1;
}

.mp-test-tag::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);

    width: 6px;
    height: 6px;

    background-image: url("../images/mainpage/testimonial/right-mark-inwhite-circle.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* bottom pill spacing */
.mp-test-pill {
    margin-top: 38px;
    margin-bottom: 24px;
}

/* responsive */
@media (max-width: 900px) {
    .mp-test-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mp-test-card.is-last {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
    }
}
/* =========================
   SECTION — HERE'S WHAT YOU'LL GET ACCESS TO
   ========================= */

.mp-access {
    padding: 8px 18px 4px;
    color: #fff;
}

.mp-access-inner {
    width: min(1380px, 100%);
    margin: 0 auto;
    text-align: center;
    margin-top: 26px;
}

.mp-access-title {
    width: min(796px, 100%);
    margin: 0 auto 28px;

    color: #fff;
    text-align: center;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 49px;
}

/* grid — pack cards tightly, no extra gaps */
.mp-access-grid {
    display: grid;

    /* ✅ fixed card columns (so reducing width won't create extra spacing) */
    grid-template-columns: repeat(3, 360px);

    /* ✅ controlled spacing */
    gap: 16px;

    /* ✅ center the whole row */
    justify-content: center;

    align-items: start;
}

/* card — smaller width + height */
.mp-access-card {
    width: 360px; /* ✅ reduced from 437 */
    min-height: 455px; /* ✅ reduced from 557 */

    border-radius: 16px;
    border: 0.5px solid #fff;
    background: linear-gradient(180deg, #004942 0%, #002925 100%);
    box-shadow: 0 0 17px 0 rgba(255, 255, 255, 0) inset;

    padding: 22px 20px; /* ✅ slightly tighter so height reduces naturally */
    text-align: left;
    box-sizing: border-box;
    position: relative;
}

/* icon box — smaller only */
.mp-access-iconBox {
    width: 78px; /* was 100px */
    height: 78px; /* was 100px */

    border-radius: 16px; /* optional: keeps it proportional */
    border: 0.5px solid #fff;
    background: #00c78c;

    display: grid;
    place-items: center;
}

.mp-access-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

/* title inside card */
.mp-access-cardTitle {
    margin: 18px 0 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

/* bullet list */
.mp-access-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.mp-access-list li {
    position: relative;
    padding-left: 18px;

    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.mp-access-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.2;
}

.mp-access-sub {
    opacity: 0.92;
}

/* CTAs wrapper */
.mp-access-ctas {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* CTA base */
.mp-access-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #fff;

    font-weight: 700;
    font-size: 22px;

    min-height: 63px;
    padding: 0 26px;
    box-sizing: border-box;

    border: 1px solid #fff;
}

/* CTA icons */
.mp-access-ctaIcon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    /* border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18); */
}

.mp-access-ctaIconImg {
    width: 26px;
    height: 30px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

/* CTA 1 (green) */
.mp-access-cta--primary {
    width: min(563px, 100%);
    border-radius: 13px;
    background: linear-gradient(
        89deg,
        #00c78c -27.25%,
        #00ae96 50.33%,
        #00c78c 114.52%
    );
    box-shadow:
        0 0 0 0 #fff inset,
        0 4px 10.7px 0 rgba(0, 0, 0, 0.37);
}

/* CTA 2 (dark) */
.mp-access-cta--secondary {
    width: min(345px, 100%);
    border-radius: 16px;
    background: linear-gradient(180deg, #001f3d 0%, #000 100%);
}

/* hover */
.mp-access-cta:hover {
    transform: translateY(-1px);
    transition: transform 0.15s ease;
}

/* =========================
   SECTION — FAQ
   ========================= */

.mp-faq {
    padding: 34px 18px 6px;
    color: #fff;
    margin-top: 26px;
}

.mp-faq-inner {
    width: min(1130px, 100%);
    margin: 0 auto;
}

.mp-faq-shell {
    border-radius: 16px;
    border: 0.5px solid #fff;
    background: linear-gradient(270deg, #004942 0%, #002925 100%);
    box-shadow: 0 0 17px 0 rgba(255, 255, 255, 0) inset;

    padding: 34px 34px 30px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 34px;
}

.mp-faq-left {
    padding-top: 8px;
}

.mp-faq-title {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.2px;
}

.mp-faq-line {
    margin-top: 22px;
    width: 260px;
    height: 2px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.mp-faq-right {
    min-width: 0;
}

/* List */
.mp-faq-list {
    display: grid;
    gap: 16px;
}

/* Each FAQ card */
.mp-faq-item {
    border-radius: 17px;
    border: 0.5px solid #fff;
    background: #00635a;
    overflow: hidden;
}

/* remove default marker */
.mp-faq-item summary {
    list-style: none;
}
.mp-faq-item summary::-webkit-details-marker {
    display: none;
}

/* Question row */
.mp-faq-q {
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

/* Right chevron */
.mp-faq-q::after {
    content: "›";
    font-size: 26px;
    line-height: 1;
    opacity: 0.95;
    transform: translateY(-1px);
    transition:
        transform 0.18s ease,
        opacity 0.18s ease;
}

/* Open state */
.mp-faq-item[open] .mp-faq-q::after {
    transform: rotate(90deg);
    opacity: 1;
}

/* Answer */
.mp-faq-a {
    padding: 0 20px 18px;
    margin-top: -4px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.55;
}

/* Bottom CTAs inside FAQ */
.mp-faq-ctas {
    margin-top: 26px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Make FAQ CTA sizing match your screenshot spacing */
.mp-faq-ctaPrimary {
    /* margin: 0; */
    width: min(508px, 100%);
}

.mp-faq-ctaSecondary {
    width: min(350px, 100%);
}

/* =========================
   SECTION — CONTACT
   ========================= */

.mp-contact {
    padding: 14px 18px 7px;
    color: #fff;
}

.mp-contact-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    text-align: center;
    margin-top: 26px;
}

.mp-contact-pill {
    margin: 0 auto 18px;
}

.mp-contact-title {
    margin: 0 0 26px;
    font-size: clamp(30px, 3.7vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

/* Form shell — your exact spec */
.mp-contact-shell {
    border-radius: 16px;
    border: 0.5px solid #fff;
    background: linear-gradient(180deg, #004942 0%, #002925 100%);
    box-shadow: 0 0 17px 0 rgba(255, 255, 255, 0) inset;

    padding: 26px 26px 22px;
    text-align: left;
}

/* 2 column layout */
.mp-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.mp-contact-field--full {
    grid-column: 1 / -1;
}

.mp-contact-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
}

.mp-contact-input,
.mp-contact-textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.95);
    color: #0b1a16;

    padding: 12px 12px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.mp-contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.mp-contact-input::placeholder,
.mp-contact-textarea::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

/* US-only phone field */
.mp-phone {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.95);
}

.mp-phone-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.mp-phone-code {
    font-size: 14px;
    font-weight: 700;
    color: #0b1a16;
}

/* tiny US flag (pure CSS) */
.mp-flag-us {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: linear-gradient(
        #b22234 0 14%,
        #fff 14% 28%,
        #b22234 28% 42%,
        #fff 42% 56%,
        #b22234 56% 70%,
        #fff 70% 84%,
        #b22234 84% 100%
    );
    position: relative;
    overflow: hidden;
}
.mp-flag-us::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 55%;
    background: #3c3b6e;
}

/* phone input */
.mp-phone-input {
    border: 0;
    outline: none;
    background: transparent;
    padding: 12px 12px;
    font-size: 14px;
    color: #0b1a16;
}

.mp-phone-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* Submit button — your exact spec */
.mp-contact-submit {
    width: 100%;
    height: 54px;

    border-radius: 13px;
    border: 1px solid #fff;
    background: linear-gradient(
        89deg,
        #00c78c -27.25%,
        #00ae96 50.33%,
        #00c78c 114.52%
    );
    box-shadow:
        0 0 0 0 #fff inset,
        0 4px 10.7px 0 rgba(0, 0, 0, 0.37);

    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.mp-contact-submit:hover {
    transform: translateY(-1px);
}

/* Footer CSS now provided by common.css */

.iti__country-list * {
    color: #000 !important;
}
/* Selected dial code next to flag */
.iti__selected-dial-code {
    color: #000 !important;
}

/* Selected flag container */
.iti__selected-flag {
    color: #000;
}
/* mobile view-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* =========================================================
   MOBILE ONLY FIX (like startstaxx mobile) — DO NOT TOUCH DESKTOP
   Put this at END of homepage.css
   ========================================================= */
@media (max-width: 480px) {
    /* global spacing */
    .mp-hero,
    .mp-help,
    .mp-how,
    .mp-test,
    .mp-access,
    .mp-faq,
    .mp-contact {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* =========================
       HERO (mobile)
       ========================= */
    .mp-hero {
        min-height: unset !important;
        padding-top: 58px !important;
        padding-bottom: 18px !important;
    }

    .mp-hero-inner {
        width: 100% !important;
    }

    .mp-brand {
        font-size: 16px !important;
        margin: 0 0 10px !important;
    }

    .mp-kicker {
        font-size: 12px !important;
        margin: 0 0 8px !important;
        opacity: 0.92;
    }

    .mp-title {
        font-size: 24px !important;
        line-height: 1.12 !important;
    }

    .mp-title-underline {
        border-bottom-width: 2px !important;
    }

    .mp-subtitle {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin-top: 8px !important;
    }

    .mp-tagline {
        font-size: 14px !important;
        line-height: 1.2 !important;
        margin-top: 6px !important;
        opacity: 0.95;
    }

    .mp-desc {
        font-size: 12.5px !important;
        line-height: 1.6 !important;
        margin-top: 10px !important;
        max-width: 100% !important;
    }

    /* ✅ HERO IMAGE/VIDEO FRAME SIZE (main request) */
    .mp-media {
        width: 100% !important;
        margin-top: 14px !important;
        border-radius: 14px !important;
    }

    .mp-media-img {
        aspect-ratio: 16 / 10 !important; /* looks better on mobile */
        object-fit: cover !important;
    }

    .mp-play-icon {
        width: 56px !important;
        height: 56px !important;
        border-radius: 12px !important;
    }
    .mp-play-icon::before {
        border-left-width: 14px !important;
        border-top-width: 9px !important;
        border-bottom-width: 9px !important;
    }

    /* CTAs in hero (full width like reference) */
    .mp-cta {
        width: 100% !important;
        font-size: 14px !important;
        padding: 12px 14px !important;
        margin-top: 14px !important;
        margin-bottom: 10px !important;
        border-radius: 12px !important;
    }

    .mp-access-cta.mp-access-cta--secondary {
        width: 100% !important;
        min-height: 52px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }

    /* =========================
       SECTION 2 — HELP (mobile)
       ========================= */
    .mp-help {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .mp-help-pill {
        min-width: unset !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        padding: 12px 12px !important;
        border-radius: 12px !important;
    }

    .mp-help-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin-top: 12px !important;
    }

    .mp-help-card {
        width: 100% !important;
        padding: 16px 16px !important;
        margin-top: 14px !important;
        border-radius: 14px !important;
    }

    .mp-help-card-heading {
        font-size: 16px !important;
        line-height: 1.25 !important;
    }

    .mp-help-card-text {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* =========================
       SECTION 3 — HOW (mobile)
       ========================= */
    .mp-how {
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

    .mp-how-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 14px !important;
    }

    .mp-how-card {
        padding: 16px 16px !important;
        min-height: unset !important;
        border-radius: 14px !important;
    }

    .mp-how-icon {
        width: 38px !important;
        height: 38px !important;
    }

    .mp-how-title {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .mp-how-text {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-top: 10px !important;
        max-width: 100% !important;
    }

    .mp-how-pill {
        margin-top: 16px !important;
    }

    /* =========================
       TESTIMONIALS (mobile)
       ========================= */
    .mp-test {
        padding-top: 12px !important;
        padding-bottom: 18px !important;
    }

    .mp-test-section-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    .mp-test-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 14px !important;
    }

    .mp-test-card,
    .mp-test-card.is-last {
        width: 100% !important;
        justify-self: stretch !important;
        padding: 16px 16px !important;
        border-radius: 14px !important;
    }

    .mp-test-avatar {
        width: 46px !important;
        height: 46px !important;
    }

    .mp-test-name {
        font-size: 16px !important;
    }

    .mp-test-quote {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* =========================
       ACCESS (mobile)
       ========================= */
    .mp-access {
        padding-top: 12px !important;
        padding-bottom: 18px !important;
    }

    .mp-access-title {
        width: 100% !important;
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    /* stack cards */
    .mp-access-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        justify-content: stretch !important;
    }

    .mp-access-card {
        width: 100% !important;
        min-height: unset !important;
        padding: 16px 16px !important;
        border-radius: 14px !important;
    }

    /* keep your smaller box */
    .mp-access-iconBox {
        width: 64px !important;
        height: 64px !important;
        border-radius: 14px !important;
    }

    .mp-access-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .mp-access-cardTitle {
        font-size: 16px !important;
        margin-top: 12px !important;
    }

    .mp-access-list {
        gap: 10px !important;
        margin-top: 12px !important;
    }

    .mp-access-list li {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .mp-access-ctas .mp-cta,
    .mp-access-ctas .mp-access-cta--secondary {
        width: 100% !important;
    }

    /* =========================
       FAQ (mobile)
       ========================= */
    .mp-faq {
        padding-top: 18px !important;
        padding-bottom: 2px !important;
    }

    .mp-faq-shell {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 16px 16px !important;
        border-radius: 14px !important;
    }

    .mp-faq-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    .mp-faq-line {
        width: 140px !important;
        margin-top: 12px !important;
    }

    .mp-faq-q {
        font-size: 14px !important;
        padding: 14px 14px !important;
    }

    .mp-faq-a {
        font-size: 13px !important;
        padding: 0 14px 14px !important;
    }

    .mp-faq-ctas .mp-cta,
    .mp-faq-ctas .mp-access-cta--secondary {
        width: 100% !important;
    }

    /* =========================
       CONTACT (mobile)
       ========================= */
    .mp-contact {
        padding-top: 0px !important;
        padding-bottom: 6px !important;
    }

    .mp-contact-title {
        font-size: 17px !important;
        line-height: 1.25 !important;
        margin-bottom: 14px !important;
    }

    .mp-contact-shell {
        padding: 16px 16px !important;
        border-radius: 14px !important;
    }

    .mp-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .mp-phone {
        grid-template-columns: 105px 1fr !important;
    }

    .mp-contact-submit {
        height: 50px !important;
        border-radius: 12px !important;
    }
}
/* =========================================================
   MOBILE PATCH v2 — fixes right overflow + tighter sizing
   Paste at END of homepage.css
   ========================================================= */
@media (max-width: 480px) {
    /* ✅ kill right-side scroll bar */
    html,
    body {
        overflow-x: hidden !important;
    }
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    img,
    svg,
    video {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* ✅ consistent outer padding (same gap left/right) */
    .mp-hero,
    .mp-help,
    .mp-how,
    .mp-test,
    .mp-access,
    .mp-faq,
    .mp-contact {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* ✅ keep whole page content a bit narrower like reference */
    .mp-hero-inner, .mp-help-inner, .mp-how-inner, .mp-test-inner, .mp-access-inner, .mp-faq-inner, .mp-contact-inner {
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    margin-top: 19px !important;
}

    /* ✅ make all cards slightly narrower + centered (no touching edges) */
    :where(
        .mp-help-card,
        .mp-how-card,
        .mp-test-card,
        .mp-access-card,
        .mp-contact-shell
    ) {
        width: 100% !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* ✅ FAQ shell also centered + narrower */
    .mp-faq-shell {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        padding: 16px 16px !important;
        grid-template-columns: 1fr !important;
    }

    /* ✅ hero media frame a bit narrower + centered */
    .mp-media {
        width: 100% !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* ✅ pills should NOT force width */
    .mp-help-pill {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 13px !important;
        padding: 10px 12px !important;
    }

    /* ✅ make ALL CTAs smaller on mobile */
    :where(.mp-cta, .mp-access-cta) {
        width: 100% !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;

        min-height: 46px !important;
        padding: 10px 12px !important;
        font-size: 13px !important;

        border-radius: 12px !important;
    }

    .mp-cta-icon {
        width: 30px !important;
        height: 30px !important;
    }
    .mp-cta-phone {
        width: 14px !important;
        height: 14px !important;
    }
    .mp-access-ctaIcon {
        width: 34px !important;
        height: 34px !important;
    }
    .mp-access-ctaIconImg {
        width: 20px !important;
        height: 20px !important;
    }

    /* ✅ testimonials + grids: keep centered nicely */
    .mp-how-grid,
    .mp-test-grid,
    .mp-access-grid {
        justify-items: center !important;
    }

    /* ✅ access icon box even smaller on mobile */
    .mp-access-iconBox {
        width: 60px !important;
        height: 60px !important;
    }
    .mp-access-icon {
        width: 38px !important;
        height: 38px !important;
    }

    /* ✅ form inputs slightly smaller on mobile */
    .mp-contact-label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .mp-contact-input,
    .mp-contact-textarea {
        font-size: 13px !important;
        padding: 10px 10px !important;
    }

    .mp-phone {
        grid-template-columns: 96px 1fr !important;
    }
    .mp-phone-prefix {
        padding: 0 10px !important;
        gap: 8px !important;
    }
    .mp-phone-input {
        /* padding: 10px 10px !important; */
        font-size: 13px !important;
    }

    .mp-contact-submit {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        height: 48px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }
}

/* Navbar and footer mobile CSS now provided by common.css */

