﻿/* ============================================================
   Saveat — landing.css
   Modern Food Marketplace Landing Page
   Palette: Deep Green + Warm Coral + Cream
   ============================================================ */

/* ---------- Body & Shell ---------- */
.landing-body {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(45, 106, 79, 0.10), transparent 50%),
        radial-gradient(ellipse 70% 50% at 90% 5%, rgba(255, 107, 53, 0.08), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(251, 191, 36, 0.04), transparent 40%),
        linear-gradient(180deg, #FDFBF7 0%, #F8F5EE 50%, #F5F2EC 100%);
    color: var(--text);
}

[data-theme="dark"] .landing-body {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(45, 106, 79, 0.14), transparent 50%),
        radial-gradient(ellipse 70% 50% at 90% 5%, rgba(255, 107, 53, 0.08), transparent 45%),
        linear-gradient(180deg, #0C1A14 0%, #0F1E17 50%, #0C1A14 100%);
}

.landing-shell {
    overflow: clip;
}

.landing-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.btn-lg {
    padding: 0.95rem 1.6rem;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 1rem 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-nav.is-scrolled {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.06);
    border-bottom: 1px solid rgba(232, 229, 222, 0.6);
}

[data-theme="dark"] .landing-nav.is-scrolled {
    background: rgba(12, 26, 20, 0.88);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(45, 74, 58, 0.5);
}

.landing-nav-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(232, 229, 222, 0.85);
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(27, 67, 50, 0.05);
}

[data-theme="dark"] .landing-nav-inner {
    background: rgba(21, 46, 34, 0.7);
    border-color: rgba(45, 74, 58, 0.7);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text);
}

.landing-brand-mark {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(27, 67, 50, 0.25);
}

.landing-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.landing-brand-text strong,
.hero-title,
.section-title,
.footer-logo strong {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.landing-brand-text strong {
    font-size: 1rem;
    color: var(--text);
}

.landing-brand-text small {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.landing-nav-links,
.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.landing-nav-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
}

.landing-nav-links a:hover {
    color: var(--primary);
    background: rgba(27, 67, 50, 0.06);
}

.landing-menu-btn {
    display: none;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.landing-mobile-panel {
    width: min(1180px, calc(100% - 2rem));
    margin: 0.5rem auto 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(232, 229, 222, 0.9);
    border-radius: var(--radius-2xl, 1.5rem);
    padding: 0.75rem;
    box-shadow: 0 20px 50px rgba(27, 67, 50, 0.08);
    backdrop-filter: blur(12px);
}

[data-theme="dark"] .landing-mobile-panel {
    background: rgba(21, 46, 34, 0.95);
    border-color: rgba(45, 74, 58, 0.9);
}

.landing-mobile-panel a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.landing-mobile-panel a:hover {
    background: rgba(27, 67, 50, 0.06);
}

.hero-section {
    padding: 2rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 8rem);
}

.hero-copy {
    padding: 2rem 0;
}

.hero-badge,
.section-kicker,
.section-kicker-light,
.hero-chip,
.landing-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-badge {
    padding: 0.5rem 0.95rem;
    color: var(--primary);
    background: rgba(45, 106, 79, 0.1);
    border: 1px solid rgba(45, 106, 79, 0.2);
    margin-bottom: 1.3rem;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
    max-width: 12ch;
    color: var(--primary-dark, #0B2E1F);
}

.hero-highlight {
    display: inline;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .hero-highlight {
    background: linear-gradient(135deg, var(--accent-light) 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    max-width: 58ch;
    font-size: 1.06rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(27, 67, 50, 0.22);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
}

[data-theme="dark"] .hero-btn-secondary {
    background: rgba(21, 46, 34, 0.5);
    border-color: rgba(45, 74, 58, 0.7);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.hero-metric-card {
    padding: 1rem;
    border-radius: var(--radius-xl, 1.125rem);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(232, 229, 222, 0.9);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.04);
    transition: all var(--transition);
}

.hero-metric-card:hover {
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.08);
    transform: translateY(-2px);
}

[data-theme="dark"] .hero-metric-card {
    background: rgba(21, 46, 34, 0.6);
    border-color: rgba(45, 74, 58, 0.7);
}

.hero-metric-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.hero-metric-card span {
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.hero-panel {
    position: relative;
    background: linear-gradient(160deg, rgba(27, 67, 50, 0.97) 0%, rgba(45, 106, 79, 0.94) 100%);
    color: #fff;
    border-radius: var(--radius-2xl, 1.5rem);
    padding: 1.5rem;
    box-shadow:
        0 24px 64px rgba(27, 67, 50, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    overflow: hidden;
}

.hero-panel::before,
.cta-panel::before {
    content: '';
    position: absolute;
    inset: auto -8% -30% auto;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.hero-panel-head,
.hero-info-grid,
.trust-strip-inner,
.about-grid,
.landing-footer-inner,
.footer-links-group,
.section-heading-row {
    display: flex;
    gap: 1rem;
}

.hero-panel-head {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.hero-chip,
.landing-pill {
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

.hero-chip-accent,
.landing-pill-accent {
    color: var(--accent-light, #FF8F66);
    border-color: rgba(255, 107, 53, 0.25);
    background: rgba(255, 107, 53, 0.12);
}

.hero-package-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.hero-package-icon {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 1.15rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.32));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--accent-light, #FF8F66);
}

.hero-package-label,
.hero-info-label,
.landing-package-store,
.landing-package-meta,
.footer-logo p,
.section-subtitle.compact {
    color: var(--text-secondary);
}

.hero-package-label {
    color: rgba(255, 255, 255, 0.64);
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
}

.hero-package-card h3 {
    color: #fff;
    font-size: 1.35rem;
}

.hero-price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-price-old {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.hero-price-new {
    font-size: 2.1rem;
    letter-spacing: -0.04em;
}

.hero-discount-pill {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.16);
    color: var(--accent-light, #FF8F66);
    font-weight: 800;
    font-size: 0.85rem;
}

.hero-info-grid {
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.hero-info-grid > div {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-lg, 0.875rem);
    background: rgba(255, 255, 255, 0.05);
}

.hero-info-label {
    display: block;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
    margin-bottom: 0.3rem;
}

.hero-info-grid strong {
    color: #fff;
    font-size: 0.95rem;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: min(15rem, 66%);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-xl, 1.125rem);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(232, 229, 222, 0.8);
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.1);
    transition: all 0.35s ease;
}

.hero-floating-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(27, 67, 50, 0.14);
}

[data-theme="dark"] .hero-floating-card {
    background: rgba(21, 46, 34, 0.94);
    border-color: rgba(45, 74, 58, 0.8);
}

.hero-floating-card i {
    margin-top: 0.1rem;
    color: var(--accent);
}

.hero-floating-card strong {
    display: block;
    margin-bottom: 0.2rem;
}

.hero-floating-card span {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

.hero-floating-card-top {
    top: 0;
    right: -1.25rem;
}

.hero-floating-card-bottom {
    left: -1rem;
    bottom: 0.5rem;
}

.trust-strip {
    padding: 0 0 1.25rem;
}

.trust-strip-inner {
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(232, 229, 222, 0.88);
    border-radius: var(--radius-2xl, 1.5rem);
    padding: 1rem 1.35rem;
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.04);
}

[data-theme="dark"] .trust-strip-inner {
    background: rgba(21, 46, 34, 0.7);
    border-color: rgba(45, 74, 58, 0.8);
}

.trust-item {
    flex: 1 1 220px;
}

.trust-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-item span {
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.landing-section {
    padding: 5.5rem 0;
}

.landing-section-soft {
    background: linear-gradient(180deg, rgba(245, 242, 236, 0.4) 0%, rgba(245, 242, 236, 0.8) 100%);
}

[data-theme="dark"] .landing-section-soft {
    background: linear-gradient(180deg, rgba(15, 30, 23, 0.3) 0%, rgba(15, 30, 23, 0.6) 100%);
}

.landing-section-dark {
    background: linear-gradient(135deg, #0B2E1F 0%, #1B4332 60%, #2D6A4F 100%);
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading-row {
    align-items: end;
    justify-content: space-between;
}

.section-kicker,
.section-kicker-light {
    padding: 0.4rem 0.85rem;
    margin-bottom: 0.9rem;
    background: rgba(27, 67, 50, 0.07);
    border: 1px solid rgba(27, 67, 50, 0.1);
    color: var(--primary);
}

.section-kicker-light {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    color: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.section-title-light,
.section-subtitle-light,
.landing-section-dark .benefit-card h3 {
    color: #fff;
}

.section-subtitle {
    max-width: 62ch;
    font-size: 1rem;
    color: var(--text-secondary);
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.72);
}

.section-subtitle.compact {
    max-width: 28rem;
    margin: 0;
}

.steps-grid,
.category-grid,
.package-showcase-grid,
.benefit-grid {
    display: grid;
    gap: 1.2rem;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.category-card,
.landing-package-card,
.benefit-card,
.cta-panel {
    border-radius: 1.5rem;
}

.step-card,
.category-card,
.landing-package-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(232, 229, 222, 0.85);
    box-shadow: 0 10px 28px rgba(27, 67, 50, 0.04);
    transition: all 0.3s ease;
}

.step-card:hover,
.category-card:hover,
.landing-package-card:hover {
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.08);
    transform: translateY(-3px);
}

[data-theme="dark"] .step-card,
[data-theme="dark"] .category-card,
[data-theme="dark"] .landing-package-card {
    background: rgba(21, 46, 34, 0.7);
    border-color: rgba(45, 74, 58, 0.75);
}

.step-card {
    padding: 1.35rem;
}

.step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.step-number {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
}

.step-card-top i,
.category-icon,
.benefit-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: var(--radius-lg, 0.875rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.08) 0%, rgba(45, 106, 79, 0.12) 100%);
    color: var(--primary-light);
    font-size: 1rem;
}

.step-card p,
.category-card p,
.benefit-card p,
.landing-package-store,
.landing-package-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.category-card {
    padding: 1.25rem;
}

.category-card h3 {
    margin: 1rem 0 0.45rem;
}

.package-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-package-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.landing-package-header,
.landing-package-meta {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.landing-package-header {
    margin-bottom: 1rem;
}

.landing-pill {
    background: rgba(27, 67, 50, 0.06);
    color: var(--text);
    border: 1px solid rgba(27, 67, 50, 0.08);
}

.landing-package-body h3 {
    margin-bottom: 0.35rem;
}

.landing-package-store {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.landing-package-price {
    display: flex;
    align-items: end;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.landing-price-old {
    text-decoration: line-through;
    color: var(--text-muted);
}

.landing-price-new {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.landing-package-meta {
    margin-bottom: 1.1rem;
}

.landing-package-footer {
    margin-top: auto;
}

.about-grid {
    align-items: start;
}

.about-copy,
.benefit-grid {
    flex: 1 1 0;
}

.benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-section-dark .benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.landing-section-dark .benefit-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.landing-section-dark .benefit-card p {
    color: rgba(255, 255, 255, 0.68);
}

.cta-section {
    padding-top: 4.5rem;
}

.cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(232, 229, 222, 0.9);
    box-shadow: 0 20px 48px rgba(27, 67, 50, 0.06);
    overflow: hidden;
}

[data-theme="dark"] .cta-panel {
    background: linear-gradient(135deg, rgba(21, 46, 34, 0.85) 0%, rgba(21, 46, 34, 0.95) 100%);
    border-color: rgba(45, 74, 58, 0.8);
}

.landing-footer {
    padding: 4rem 0 2rem;
}

.landing-footer-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand-block {
    max-width: 32rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-logo strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.footer-logo p {
    margin: 0;
    max-width: 38ch;
}

.footer-links-group {
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 10rem;
}

.footer-links h4 {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-bottom {
    width: min(1180px, calc(100% - 2rem));
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.84rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .landing-footer-inner,
    .cta-panel,
    .section-heading-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .package-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-floating-card-top {
        right: 0;
    }

    .hero-floating-card-bottom {
        left: 0;
    }
}

@media (max-width: 860px) {
    .landing-nav-links,
    .landing-nav-actions {
        display: none;
    }

    .landing-menu-btn {
        display: inline-flex;
    }

    .landing-nav-inner {
        border-radius: var(--radius-xl, 1.125rem);
    }

    .hero-grid,
    .steps-grid,
    .benefit-grid,
    .package-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-title {
        max-width: 12ch;
    }

    .hero-visual {
        padding-bottom: 4rem;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .trust-strip-inner {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .landing-container,
    .landing-nav-inner,
    .landing-mobile-panel,
    .landing-footer-inner,
    .footer-bottom {
        width: min(100% - 1rem, 100%);
    }

    .landing-nav {
        padding: 0.6rem 0;
    }

    .landing-nav-inner {
        padding: 0.8rem 0.9rem;
    }

    .landing-brand-text small {
        display: none;
    }

    .hero-section,
    .landing-section,
    .landing-footer {
        padding-top: 3.25rem;
    }

    .hero-copy {
        padding-top: 1rem;
    }

    .hero-title,
    .section-title {
        font-size: clamp(1.85rem, 8.5vw, 2.8rem);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-price-row,
    .hero-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-info-grid > div {
        flex-basis: 100%;
    }

    .section-heading-row {
        align-items: flex-start;
    }
}
