/* ============================================================
   MenuHub Platform — Section Styles & Layout Extensions
   Consistent with Core Dark Design System
   ============================================================ */

.mhp-page {
    background: var(--mhp-bg-base);
    color: var(--mhp-text-primary);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.mhp-main {
    min-height: 100vh;
    padding-top: 76px;
}

.mhp-container {
    max-width: 1320px;
    padding-inline: 32px;
}

/* ========================================================
   HOMEPAGE V3 SECTIONS
   ======================================================== */

/* ---- Hero Section ---- */
.mhp-v3-hero {
    position: relative;
    border-bottom: 1px solid var(--mhp-border);
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 212, 255, 0.08), transparent 60%),
                linear-gradient(180deg, var(--mhp-bg-deep) 0%, var(--mhp-bg-base) 100%);
    overflow: hidden;
}

.mhp-v3-hero__grid {
    min-height: 700px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
    padding-block: 64px;
}

.mhp-v3-hero__copy h1 {
    max-width: 620px;
    margin: 0 0 28px;
    font-family: var(--mhp-font-heading);
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mhp-text-primary);
}

.mhp-v3-hero__promise {
    max-width: 610px;
    margin: 0 0 22px;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--mhp-text-primary);
}

.mhp-v3-hero__promise::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 24px;
    background: linear-gradient(90deg, var(--mhp-gold), var(--mhp-gold-light));
    border-radius: 2px;
}

.mhp-v3-hero__support {
    max-width: 560px;
    margin: 0 0 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--mhp-text-secondary);
}

.mhp-v3-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.mhp-v3-hero__note {
    margin: 18px 0 0;
    font-size: 0.82rem;
    color: var(--mhp-text-muted);
}

/* ---- Product Showcase Mockup ---- */
.mhp-v3-product {
    position: relative;
    padding: 22px 0 42px;
}

.mhp-v3-browser {
    overflow: hidden;
    border: 1px solid var(--mhp-border);
    border-radius: var(--mhp-radius-lg);
    background: var(--mhp-bg-card);
    box-shadow: var(--mhp-shadow-lg), 0 0 40px rgba(0, 212, 255, 0.08);
}

.mhp-v3-browser__bar {
    height: 46px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    background: var(--mhp-bg-deep);
    border-bottom: 1px solid var(--mhp-border);
    font-size: 0.75rem;
}

.mhp-v3-browser__brand {
    font-family: var(--mhp-font-heading);
    font-weight: 700;
    color: var(--mhp-ai-light);
}

.mhp-v3-browser__url {
    color: var(--mhp-text-muted);
}

.mhp-v3-browser__status {
    justify-self: end;
    color: var(--mhp-success);
    font-weight: 600;
}

.mhp-v3-storefront {
    position: relative;
    min-height: 340px;
    background: var(--mhp-bg-surface);
    overflow: hidden;
}

.mhp-v3-storefront img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.mhp-v3-storefront__copy {
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 38px;
    background: linear-gradient(90deg, rgba(6, 8, 16, 0.92) 0%, rgba(6, 8, 16, 0.6) 80%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mhp-v3-storefront__copy span {
    margin-bottom: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mhp-gold-light);
}

.mhp-v3-storefront__copy strong {
    max-width: 260px;
    font-family: var(--mhp-font-heading);
    font-size: 1.8rem;
    line-height: 1.24;
    color: var(--mhp-text-primary);
}

.mhp-v3-storefront__copy a {
    margin-top: 22px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--mhp-gold), var(--mhp-gold-dark));
    color: #060810;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--mhp-radius-sm);
    box-shadow: var(--mhp-shadow-gold);
    transition: transform var(--mhp-duration-fast), box-shadow var(--mhp-duration-fast);
}

.mhp-v3-storefront__copy a:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(201, 169, 98, 0.4);
}

.mhp-v3-menu-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 76px;
    background: var(--mhp-bg-surface);
}

.mhp-v3-menu-row div {
    padding: 18px;
    border-right: 1px solid var(--mhp-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--mhp-text-secondary);
}

.mhp-v3-menu-row div:last-child {
    border-right: 0;
}

.mhp-v3-menu-row strong {
    color: var(--mhp-gold-light);
    font-family: var(--mhp-font-heading);
}

.mhp-v3-order-panel {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 250px;
    padding: 20px;
    background: var(--mhp-bg-card);
    border: 1px solid var(--mhp-border-gold);
    border-top: 3px solid var(--mhp-gold);
    border-radius: var(--mhp-radius-md);
    box-shadow: var(--mhp-shadow-lg), var(--mhp-shadow-gold);
    font-size: 0.75rem;
    backdrop-filter: blur(16px);
}

.mhp-v3-order-panel__head,
.mhp-v3-order-panel__item,
.mhp-v3-order-panel__total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.mhp-v3-order-panel__head {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mhp-border);
    font-weight: 600;
    color: var(--mhp-text-primary);
}

.mhp-v3-order-panel__item {
    padding: 10px 0 0;
    color: var(--mhp-text-secondary);
}

.mhp-v3-order-panel__total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mhp-border);
    font-weight: 700;
    color: var(--mhp-text-primary);
}

.mhp-v3-order-panel__action {
    display: block;
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(135deg, var(--mhp-ai), var(--mhp-ai-dark));
    color: #fff;
    font-weight: 700;
    border-radius: var(--mhp-radius-sm);
    text-decoration: none;
    box-shadow: var(--mhp-shadow-ai);
}

/* ---- Assurance Strip ---- */
.mhp-v3-assurance {
    border-bottom: 1px solid var(--mhp-border);
    background: var(--mhp-bg-deep);
}

.mhp-v3-assurance .mhp-container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mhp-v3-assurance p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mhp-gold);
}

.mhp-v3-assurance ul {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.85rem;
    color: var(--mhp-text-secondary);
}

.mhp-v3-assurance li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 9px;
    background: var(--mhp-ai);
    border-radius: 50%;
}

/* ---- Section Headers ---- */
.mhp-v3-section {
    padding-block: 100px;
    background: var(--mhp-bg-base);
}

.mhp-v3-section-head {
    max-width: 780px;
    margin-bottom: 60px;
}

.mhp-v3-section-head > p:first-child,
.mhp-v3-proof__copy > p:first-child {
    margin: 0 0 16px;
    color: var(--mhp-text-ai);
    font-size: var(--mhp-text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mhp-v3-section-head h2,
.mhp-v3-proof__copy h2 {
    margin: 0;
    font-family: var(--mhp-font-heading);
    font-size: clamp(2rem, 4vw, var(--mhp-text-5xl));
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--mhp-text-primary);
}

.mhp-v3-section-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 90px;
    align-items: end;
}

.mhp-v3-section-head--split > p {
    margin: 0;
    line-height: 1.7;
    color: var(--mhp-text-secondary);
}

/* ---- Workflow Steps ---- */
.mhp-v3-workflow {
    background: var(--mhp-bg-base);
}

.mhp-v3-workflow__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 2px solid var(--mhp-ai);
}

.mhp-v3-workflow__steps li {
    min-height: 270px;
    padding: 32px 26px 0;
    border-right: 1px solid var(--mhp-border);
    background: var(--mhp-bg-surface);
    transition: background var(--mhp-duration-fast);
}

.mhp-v3-workflow__steps li:hover {
    background: var(--mhp-bg-card);
}

.mhp-v3-workflow__steps li:first-child {
    border-left: 1px solid var(--mhp-border);
}

.mhp-v3-workflow__steps span {
    display: block;
    margin-bottom: 24px;
    font-family: var(--mhp-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--mhp-gold);
}

.mhp-v3-workflow__steps h3 {
    margin: 0 0 15px;
    font-family: var(--mhp-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--mhp-text-primary);
}

.mhp-v3-workflow__steps p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--mhp-text-secondary);
}

/* ---- Proof Section ---- */
.mhp-v3-proof {
    padding-block: 100px;
    background: var(--mhp-bg-surface);
    border-block: 1px solid var(--mhp-border);
}

.mhp-v3-proof__grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.mhp-v3-proof__copy > p:not(:first-child) {
    max-width: 520px;
    margin: 24px 0;
    color: var(--mhp-text-secondary);
    line-height: 1.75;
}

.mhp-v3-text-link,
.mhp-v3-plan__link {
    color: var(--mhp-ai);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.mhp-v3-text-link:hover,
.mhp-v3-plan__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mhp-v3-proof__visual {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: end;
}

.mhp-v3-proof__photo {
    position: relative;
    z-index: 2;
    height: 420px;
    border: 1px solid var(--mhp-border);
    border-radius: var(--mhp-radius-md);
    overflow: hidden;
    box-shadow: var(--mhp-shadow-lg);
}

.mhp-v3-proof__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mhp-v3-proof__photo div {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 8, 16, 0.95) 100%);
    color: var(--mhp-text-primary);
}

.mhp-v3-proof__photo span {
    display: block;
    margin-bottom: 3px;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--mhp-gold-light);
}

.mhp-v3-proof__photo strong {
    font-family: var(--mhp-font-heading);
}

.mhp-v3-dashboard {
    min-height: 350px;
    padding: 26px;
    background: var(--mhp-bg-card);
    border: 1px solid var(--mhp-border);
    border-left: 0;
    border-radius: 0 var(--mhp-radius-md) var(--mhp-radius-md) 0;
    box-shadow: var(--mhp-shadow-md);
}

.mhp-v3-dashboard header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    font-size: 0.8rem;
    color: var(--mhp-text-primary);
}

.mhp-v3-dashboard header strong {
    font-size: 1.2rem;
    font-family: var(--mhp-font-heading);
}

.mhp-v3-dashboard nav {
    display: flex;
    gap: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--mhp-border);
    font-size: 0.75rem;
    color: var(--mhp-text-muted);
}

.mhp-v3-dashboard nav b {
    color: var(--mhp-gold);
}

.mhp-v3-dashboard__row {
    display: grid;
    grid-template-columns: 0.6fr 1fr 0.8fr 0.9fr 0.9fr;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--mhp-border);
    font-size: 0.72rem;
    color: var(--mhp-text-secondary);
}

.mhp-v3-dashboard__row b {
    color: var(--mhp-ai);
}

.mhp-v3-dashboard__row time {
    text-align: right;
    color: var(--mhp-text-muted);
}

.mhp-v3-proof__labels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 64px;
    border-top: 1px solid var(--mhp-border);
}

.mhp-v3-proof__labels > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px 14px;
    padding: 25px 28px 0 0;
    border-right: 1px solid var(--mhp-border);
}

.mhp-v3-proof__labels > div + div {
    padding-left: 28px;
}

.mhp-v3-proof__labels > div:last-child {
    border-right: 0;
}

.mhp-v3-proof__labels span {
    grid-row: 1 / 3;
    color: var(--mhp-gold);
    font-family: var(--mhp-font-heading);
    font-weight: 800;
}

.mhp-v3-proof__labels strong {
    font-size: 0.95rem;
    color: var(--mhp-text-primary);
}

.mhp-v3-proof__labels p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--mhp-text-secondary);
}

/* ---- Comparison Table ---- */
.mhp-v3-comparison {
    background: var(--mhp-bg-base);
}

.mhp-v3-compare-table {
    border-top: 2px solid var(--mhp-ai);
    border-radius: var(--mhp-radius-md);
    overflow: hidden;
}

.mhp-v3-compare-table > div {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    gap: 32px;
    padding: 22px 18px;
    border-bottom: 1px solid var(--mhp-border);
}

.mhp-v3-compare-table__head {
    background: var(--mhp-bg-surface);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mhp-ai);
}

.mhp-v3-compare-table > div:not(.mhp-v3-compare-table__head) {
    font-size: 0.88rem;
    color: var(--mhp-text-secondary);
}

.mhp-v3-compare-table > div:not(.mhp-v3-compare-table__head) > strong {
    color: var(--mhp-text-primary);
}

.mhp-v3-compare-table > div:not(.mhp-v3-compare-table__head) > span:last-child {
    color: var(--mhp-ai);
    font-weight: 600;
}

/* ---- Pricing Grid ---- */
.mhp-v3-pricing {
    background: var(--mhp-bg-surface);
    border-top: 1px solid var(--mhp-border);
}

.mhp-v3-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    border: 1px solid var(--mhp-border);
    border-radius: var(--mhp-radius-xl);
    overflow-x: auto;
    overflow-y: hidden;
    background: var(--mhp-bg-card);
    box-shadow: var(--mhp-shadow-md);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.mhp-v3-plan-grid::-webkit-scrollbar {
    height: 6px;
}

.mhp-v3-plan-grid::-webkit-scrollbar-track {
    background: transparent;
}

.mhp-v3-plan-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.mhp-v3-plan-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mhp-v3-plan {
    position: relative;
    min-height: 430px;
    padding: 38px;
    border-right: 1px solid var(--mhp-border);
    background: var(--mhp-bg-card);
    transition: background var(--mhp-duration-fast);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.mhp-v3-plan:hover {
    background: var(--mhp-bg-card-hover);
}

.mhp-v3-plan:last-child {
    border-right: 0;
}

.mhp-v3-plan--featured::before {
    content: '';
    position: absolute;
    inset: -1px -1px auto;
    height: 4px;
    background: linear-gradient(90deg, var(--mhp-gold), var(--mhp-ai));
}

.mhp-v3-plan h3 {
    margin: 0 0 14px;
    font-family: var(--mhp-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mhp-ai);
}

.mhp-v3-plan > p {
    min-height: 64px;
    margin: 0;
    color: var(--mhp-text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.mhp-v3-plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 26px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mhp-border);
}

.mhp-v3-plan__price strong {
    font-family: var(--mhp-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mhp-text-primary);
}

.mhp-v3-plan__price span {
    color: var(--mhp-text-muted);
    font-size: 0.8rem;
}

.mhp-v3-plan ul {
    min-height: 124px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.mhp-v3-plan li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--mhp-text-secondary);
}

.mhp-v3-plan li::before {
    content: '✓';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--mhp-ai);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---- Closing CTA ---- */
.mhp-v3-close {
    background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(201, 169, 98, 0.12), transparent 70%),
                var(--mhp-bg-deep);
    border-top: 1px solid var(--mhp-border);
    color: var(--mhp-text-primary);
}

.mhp-v3-close .mhp-container {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.mhp-v3-close h2 {
    max-width: 650px;
    margin: 0;
    font-family: var(--mhp-font-heading);
    font-size: 2.65rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--mhp-text-primary);
}

.mhp-v3-close .mhp-btn--primary {
    background: linear-gradient(135deg, var(--mhp-gold-light), var(--mhp-gold));
    color: #060810;
    font-weight: 700;
    box-shadow: var(--mhp-shadow-gold);
}

.mhp-v3-close .mhp-btn--ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--mhp-text-primary);
}

.mhp-v3-close .mhp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ---- FAQ Section ---- */
.mhp-v3-faq__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
    align-items: start;
}

.mhp-v3-faq .mhp-v3-section-head {
    margin: 0;
}

.mhp-v3-faq__item {
    border-top: 1px solid var(--mhp-border);
}

.mhp-v3-faq__item:last-child {
    border-bottom: 1px solid var(--mhp-border);
}

.mhp-v3-faq__item button,
details.mhp-v3-faq__item > summary {
    width: 100%;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--mhp-text-primary);
    text-align: left;
    font-family: var(--mhp-font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

details.mhp-v3-faq__item > summary::-webkit-details-marker {
    display: none;
}

.mhp-v3-faq__item button span:last-child,
details.mhp-v3-faq__item > summary span:last-child {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--mhp-gold);
    transition: transform 160ms ease;
}

.mhp-v3-faq__item > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 180ms ease;
}

.mhp-v3-faq__item > div > p {
    overflow: hidden;
    margin: 0;
    color: var(--mhp-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.mhp-v3-faq__item.is-open > div {
    grid-template-rows: 1fr;
}

.mhp-v3-faq__item.is-open > div > p,
details.mhp-v3-faq__item[open] > div > p {
    padding-bottom: 24px;
}

.mhp-v3-faq__item.is-open button span:last-child,
details.mhp-v3-faq__item[open] > summary span:last-child {
    transform: rotate(45deg);
}

/* ========================================================
   RESPONSIVE LAYOUTS
   ======================================================== */
@media (max-width: 1100px) {
    .mhp-v3-hero__grid { min-height: auto; grid-template-columns: 1fr; }
    .mhp-v3-hero__copy { max-width: 760px; }
    .mhp-v3-product { max-width: 820px; }
    .mhp-v3-proof__grid { grid-template-columns: 1fr; }
    .mhp-v3-proof__copy { max-width: 700px; }
    .mhp-v3-faq__grid { gap: 56px; }
}

@media (max-width: 900px) {
    .mhp-nav__inner { padding-inline: 20px; }
    .mhp-container { padding-inline: 24px; }
    .mhp-v3-hero__copy h1 { font-size: 3rem; }
    .mhp-v3-section-head h2,
    .mhp-v3-proof__copy h2,
    .mhp-v3-close h2 { font-size: 2.2rem; }
    .mhp-v3-assurance .mhp-container { align-items: flex-start; flex-direction: column; padding-block: 22px; }
    .mhp-v3-assurance ul { flex-wrap: wrap; }
    .mhp-v3-workflow__steps { grid-template-columns: 1fr 1fr; border-top: 0; }
    .mhp-v3-workflow__steps li { border-top: 2px solid var(--mhp-ai); }
    .mhp-v3-workflow__steps li:last-child { grid-column: 1 / -1; }
    .mhp-v3-section-head--split { grid-template-columns: 1fr; gap: 25px; }
    .mhp-v3-plan { padding: 28px; }
    .mhp-v3-close .mhp-container { align-items: flex-start; flex-direction: column; justify-content: center; }
    .mhp-v3-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .mhp-main { padding-top: 68px; }
    .mhp-nav { height: 68px; }
    .mhp-nav__drawer { top: 68px; }
    .mhp-container { padding-inline: 18px; }
    .mhp-v3-hero__grid { padding-block: 48px; gap: 36px; }
    .mhp-v3-hero__copy h1 { font-size: 2.25rem; }
    .mhp-v3-hero__promise { font-size: 1.05rem; }
    .mhp-v3-actions { align-items: stretch; flex-direction: column; }
    .mhp-v3-actions .mhp-btn { justify-content: center; width: 100%; }
    .mhp-v3-browser__url { display: none; }
    .mhp-v3-browser__bar { grid-template-columns: 1fr auto; }
    .mhp-v3-storefront { min-height: 300px; }
    .mhp-v3-storefront img { height: 300px; }
    .mhp-v3-storefront__copy { width: 68%; padding: 24px; }
    .mhp-v3-storefront__copy strong { font-size: 1.35rem; }
    .mhp-v3-menu-row { grid-template-columns: 1fr; }
    .mhp-v3-menu-row div { border-right: 0; border-bottom: 1px solid var(--mhp-border); }
    .mhp-v3-order-panel { display: none; }
    .mhp-v3-section,
    .mhp-v3-proof { padding-block: 76px; }
    .mhp-v3-section-head { margin-bottom: 42px; }
    .mhp-v3-section-head h2,
    .mhp-v3-proof__copy h2,
    .mhp-v3-close h2 { font-size: 1.8rem; }
    .mhp-v3-workflow__steps { grid-template-columns: 1fr; }
    .mhp-v3-workflow__steps li,
    .mhp-v3-workflow__steps li:last-child { min-height: 0; grid-column: auto; padding: 26px 18px 32px; border-left: 0; border-right: 0; }
    .mhp-v3-workflow__steps span { margin-bottom: 15px; }
    .mhp-v3-proof__visual { grid-template-columns: 1fr; }
    .mhp-v3-proof__photo { height: 320px; }
    .mhp-v3-dashboard { min-height: auto; border-left: 1px solid var(--mhp-border); border-top: 0; padding: 18px; border-radius: 0 0 var(--mhp-radius-md) var(--mhp-radius-md); }
    .mhp-v3-dashboard__row { grid-template-columns: 0.7fr 1fr 1fr; }
    .mhp-v3-dashboard__row span:nth-of-type(2),
    .mhp-v3-dashboard__row time { display: none; }
    .mhp-v3-proof__labels { grid-template-columns: 1fr; }
    .mhp-v3-proof__labels > div,
    .mhp-v3-proof__labels > div + div { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--mhp-border); }
    .mhp-v3-compare-table__head { display: none !important; }
    .mhp-v3-compare-table > div { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
    .mhp-v3-compare-table > div span::before { display: block; margin-bottom: 3px; font-size: 0.63rem; font-weight: 700; text-transform: uppercase; color: var(--mhp-text-muted); }
    .mhp-v3-compare-table > div span:nth-child(2)::before { content: 'Marketplace'; }
    .mhp-v3-compare-table > div span:nth-child(3)::before { content: 'Direct with MenuHub'; }
    .mhp-v3-plan-grid { grid-template-columns: repeat(4, minmax(260px, 82vw)); }
    .mhp-v3-plan { min-height: 380px; padding: 26px 20px; border-right: 1px solid var(--mhp-border); border-bottom: 0; }
    .mhp-v3-plan:last-child { border-right: 0; border-bottom: 0; }
    .mhp-v3-plan ul,
    .mhp-v3-plan > p { min-height: 0; }
    .mhp-v3-close .mhp-container { min-height: 330px; gap: 35px; }
    .mhp-agency-plan { align-items: stretch !important; flex-direction: column; }
    .mhp-agency-plan .mhp-btn { width: 100%; justify-content: center; }
}

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