/* ── Encore Design System ── */

/* ── 1. Design Tokens ── */
:root {
    --cream:      #f5ede0;
    --cream-dark: #ede0cc;
    --olive:      #2d4a2d;
    --olive-mid:  #3d6b3d;
    --olive-light:#5a8a5a;
    --terra:      #c0452b;
    --terra-dark: #9a3420;
    --gold:       #d4a853;
    --gold-light: #f0c070;
    --text-dark:  #1e2e1e;
    --text-mid:   #4a5e4a;
    --text-muted: #7a8c7a;

    --space-xs:  4px;
    --space-sm:  8px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  40px;
    --space-2xl: 64px;
}

/* ── 2. Typography ── */
html {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-weight: 400;
}

.privacy-copy,
.privacy-list {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.8;
}

.privacy-list { padding-inline-start: 1.2rem; }
.landing-footer-meta { text-align: end; }

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    color: rgba(255,255,255,0.62);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.language-switcher a { color: inherit; text-decoration: none; }
.language-switcher a:hover,
.language-switcher a.active { color: white; }

.standalone-language-switcher {
    position: fixed;
    z-index: 1100;
    top: 12px;
    right: 12px;
    border-radius: 10px;
    background: var(--olive);
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

[dir="rtl"] body { text-align: right; }
[dir="rtl"] .navbar-nav { margin-right: auto !important; margin-left: 0 !important; }
[dir="rtl"] .ms-1 { margin-right: .25rem !important; margin-left: 0 !important; }
[dir="rtl"] .ms-2 { margin-right: .5rem !important; margin-left: 0 !important; }
[dir="rtl"] .ms-auto { margin-right: auto !important; margin-left: 0 !important; }
[dir="rtl"] .me-1 { margin-left: .25rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-2 { margin-left: .5rem !important; margin-right: 0 !important; }
[dir="rtl"] .text-end { text-align: left !important; }
[dir="rtl"] .form-check { padding-right: 1.5em; padding-left: 0; }
[dir="rtl"] .form-check .form-check-input { float: right; margin-right: -1.5em; margin-left: 0; }
[dir="rtl"] ul { padding-right: 2rem; padding-left: 0; }
[dir="rtl"] .standalone-language-switcher { right: auto; left: 12px; }

h1, h2, .display-serif {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: var(--olive);
}

h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ── 3. Navbar ── */
.encore-nav {
    background: var(--olive);
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
    padding: var(--space-sm) 0;
}

.encore-nav .navbar-brand img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 38%;
    border: 1.5px solid var(--gold);
}

.encore-nav .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.15s, border-color 0.15s;
    padding-bottom: 6px !important;
    border-bottom: 2px solid transparent;
}

.encore-nav .nav-link:hover,
.encore-nav .nav-link.active {
    color: var(--gold-light) !important;
    border-bottom-color: var(--gold);
}

.encore-nav .navbar-toggler {
    border-color: rgba(255,255,255,0.25);
    padding: 4px 10px;
}

.encore-nav .btn-encore {
    font-size: 0.85rem;
    padding: 8px 20px;
}

/* ── 4. Buttons ── */
.btn-encore {
    background: linear-gradient(135deg, var(--terra), var(--terra-dark));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-encore:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192,69,43,0.4);
}

.btn-encore-secondary {
    background: transparent;
    color: var(--olive);
    border: 1.5px solid var(--olive-mid);
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.15s;
}

.btn-encore-secondary:hover {
    background: var(--olive);
    color: white;
    border-color: var(--olive);
}

.btn-encore-danger {
    background: transparent;
    color: var(--terra);
    border: 1.5px solid var(--terra);
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.15s;
}

.btn-encore-danger:hover {
    background: var(--terra);
    color: white;
}

/* ── 5. Cards ── */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(45,74,45,0.08);
    background: white;
}

.card-primary {
    border-left: 3px solid var(--gold);
}

.card-title {
    color: var(--olive);
}

/* ── 6. Stat Cards with Stamp Ring ── */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 2px 12px rgba(45,74,45,0.08);
    border-top: 3px solid var(--gold);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.stat-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(212,168,83,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.stat-ring::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,83,0.15);
}

.stat-card .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--olive);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ── 7. Auth Forms ── */
.auth-card {
    max-width: 440px;
    margin: var(--space-xl) auto;
    background: white;
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(45,74,45,0.12);
}

.auth-card-wide {
    max-width: 500px;
}

/* ── 8. Brand Lockup ── */
.brand-lockup {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.brand-lockup .brand-logo {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 38%;
    border: 2px solid var(--gold);
}

/* ── 9. Forms ── */
.form-control {
    border-radius: 8px;
    border: 1.5px solid var(--cream-dark);
    padding: 10px 14px;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--olive-mid);
    box-shadow: 0 0 0 3px rgba(61,107,61,0.15);
}

.form-select {
    border-radius: 8px;
    border: 1.5px solid var(--cream-dark);
    padding: 10px 14px;
    font-size: 0.9rem;
}

.form-select:focus {
    border-color: var(--olive-mid);
    box-shadow: 0 0 0 3px rgba(61,107,61,0.15);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: var(--space-xs);
}

.form-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* ── 10. Tables ── */
.table-encore {
    margin-bottom: 0;
}

.table-encore thead {
    background: var(--olive);
}

.table-encore thead th {
    color: var(--cream);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px var(--space-md);
    border: none;
}

.table-encore thead tr th:first-child {
    border-radius: 8px 0 0 0;
}

.table-encore thead tr th:last-child {
    border-radius: 0 8px 0 0;
}

.table-encore tbody td {
    padding: 10px var(--space-md);
    vertical-align: middle;
    border-color: var(--cream-dark);
    font-size: 0.9rem;
}

.table-encore tbody tr:hover {
    background-color: var(--cream);
}

.stamp-progress {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stamp-progress-bar {
    flex: 1;
    height: 6px;
    background: var(--cream-dark);
    border-radius: 3px;
    overflow: hidden;
    max-width: 80px;
}

.stamp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--olive-mid), var(--olive));
    border-radius: 3px;
    transition: width 0.3s;
}

.stamp-progress-text {
    font-size: 0.78rem;
    color: var(--text-mid);
    font-weight: 500;
    white-space: nowrap;
}

/* ── 11. Stamp Card (customer-facing — unchanged) ── */
.stamp-card {
    background: linear-gradient(145deg, #fffaf4, var(--cream));
    border: 2px solid var(--gold-light);
    border-radius: 24px;
    padding: 28px;
    max-width: 420px;
    margin: 0 auto;
}

.stamp-card .restaurant-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.stamps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.stamp-slot {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 2px dashed var(--gold);
    background: white;
    transition: all 0.3s;
}

.stamp-slot.filled {
    background: linear-gradient(135deg, var(--olive-mid), var(--olive));
    border: 2px solid var(--olive);
    box-shadow: 0 2px 8px rgba(45,74,45,0.3);
}

.stamp-slot.filled::after {
    content: '\2713';
    color: var(--gold-light);
    font-weight: bold;
    font-size: 1.1rem;
}

.reward-banner {
    background: linear-gradient(135deg, var(--gold), #e8a020);
    color: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 16px;
}

.reward-code {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    background: rgba(255,255,255,0.25);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
    color: var(--olive);
}

/* ── 12. Stamp Motif ── */
.stamp-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(240,192,112,0.15));
    border: 1.5px solid rgba(212,168,83,0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    line-height: 1;
}

/* ── 13. Password / Username Rules Checklist ── */
.pwd-rules {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.pwd-rules div { transition: color 0.15s; }
.pwd-rules .pass { color: var(--olive-mid); }
.pwd-rules .fail { color: var(--terra); }
.pwd-icon::before { content: '\2715'; }
.pwd-rules .pass .pwd-icon::before { content: '\2713'; }

/* ── 14. Utilities ── */
.gold-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: var(--space-lg) 0;
}

.progress-bar {
    background: linear-gradient(90deg, var(--olive-mid), var(--olive)) !important;
}

/* ── Landing: Hero Split ── */
.hero-split {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-mid) 60%, #4a7a4a 100%);
    color: white;
    padding: 100px 0 80px;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 38%;
    border: 2px solid var(--gold);
    display: block;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.15;
    color: white;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--olive);
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-hero-primary:hover {
    color: var(--olive);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,168,83,0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.15s;
}

.btn-hero-secondary:hover {
    color: white;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    flex-shrink: 0;
    transform: rotate(2deg);
}

.hero-visual .stamp-card {
    width: 320px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.points-balance {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
    color: var(--olive);
}

.points-balance-current {
    font-family: 'DM Serif Display', serif;
    font-size: 2.75rem;
    line-height: 1;
}

.points-balance-target {
    color: var(--text-mid);
    font-size: 0.95rem;
    font-weight: 600;
}

.points-progress {
    height: 12px;
    margin: var(--space-md) 0;
    overflow: hidden;
    background: rgba(45,74,45,0.12);
    border: 1px solid rgba(45,74,45,0.16);
    border-radius: 999px;
}

.points-progress-fill {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--olive-mid), var(--olive));
    border-radius: inherit;
}

.points-reward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    color: var(--text-mid);
    font-size: 0.82rem;
}

.points-reward strong {
    color: var(--olive);
    text-align: right;
}

/* ── Customer account and points dashboard ── */
.customer-auth-page,
.customer-dashboard-page {
    min-height: 100vh;
    background: linear-gradient(160deg, #fff5ee, #ffebd6);
}

.customer-auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.customer-auth-shell {
    width: min(460px, 100%);
    padding: var(--space-xl);
    background: white;
    border: 1px solid var(--gold-light);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(45,74,45,0.12);
}

.customer-auth-header {
    margin-bottom: var(--space-lg);
}

.customer-auth-logo {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto var(--space-sm);
    object-fit: contain;
}

.customer-auth-header h1 {
    margin-bottom: var(--space-xs);
}

.customer-auth-shell .form-divider {
    margin: var(--space-md) 0;
}

.customer-register-secondary {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
    text-align: center;
}

.customer-register-toggle {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--olive-mid);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.customer-register-toggle span {
    display: block;
    margin-top: 2px;
    font-weight: 500;
}

.customer-register-form {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
    text-align: left;
}

.customer-points-card {
    border: 1px solid var(--gold-light);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(45,74,45,0.08);
}

.pending-reward-card {
    border: 1px solid var(--gold);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(45,74,45,0.08);
}

.pending-reward-qr {
    display: block;
    width: min(220px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
}

.reward-claims-section {
    padding: var(--space-lg);
    border-left: 5px solid var(--cream-dark);
    border-radius: 12px;
    background: rgba(255,255,255,0.45);
}

.reward-claims-pending {
    border-left-color: #d8a31a;
}

.reward-claims-fulfilled {
    border-left-color: var(--olive-mid);
}

.reward-claims-cancelled {
    border-left-color: var(--text-muted);
}

.reward-confirm-shell {
    max-width: 640px;
    border: 1px solid var(--gold-light);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(45,74,45,0.1);
}

.reward-claim-details dt {
    color: var(--text-muted);
}

.customer-restaurant-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    object-fit: cover;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.customer-restaurant-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    font-size: 1.75rem;
}

.customer-points-total {
    color: var(--olive);
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    line-height: 1;
}

.customer-points-total span {
    color: var(--text-mid);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.reward-progress-item + .reward-progress-item {
    margin-top: var(--space-lg);
}

.reward-progress-item .progress {
    height: 10px;
    background: rgba(45,74,45,0.12);
}

.customer-empty-state {
    border: 1px dashed var(--gold);
    border-radius: 20px;
}

/* ── Landing: Steps Flow ── */
.steps-section {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.steps-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.steps-flow {
    display: flex;
    gap: var(--space-xl);
    position: relative;
}

.steps-flow::before {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(16.67% + 18px);
    right: calc(16.67% + 18px);
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}

.step {
    flex: 1;
    text-align: center;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--olive);
    margin: 0 auto var(--space-md);
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--olive);
    margin-bottom: var(--space-sm);
}

.step p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.55;
    max-width: 280px;
    margin: 0 auto;
}

/* ── Landing: Trust Strip ── */
.trust-strip {
    padding: var(--space-xl) 0;
    text-align: center;
}

.trust-strip p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
    font-style: italic;
}

/* ── Landing: CTA Block ── */
.cta-block {
    background: white;
    padding: var(--space-2xl) 0;
    text-align: center;
}

.cta-block h2 {
    margin-bottom: var(--space-sm);
}

.cta-block p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

/* ── Landing: Footer ── */
.landing-footer {
    background: var(--olive);
    padding: var(--space-lg) 0;
}

.landing-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.03em;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.footer-cities {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-align: right;
}

.badge.bg-danger { background-color: var(--terra) !important; }
.badge.bg-success { background-color: var(--olive-mid) !important; }
.badge.bg-warning { background-color: var(--gold) !important; color: var(--olive) !important; }

.alert-warning {
    background-color: #fdf4e0;
    border-color: var(--gold-light);
    color: #7a5500;
}

/* ── 15. Settings Page ── */
.settings-section {
    padding: var(--space-lg) 0;
}

.settings-section:first-child {
    padding-top: 0;
}

.settings-section + .settings-section {
    border-top: 1px solid var(--cream-dark);
}

/* ── 16. Responsive ── */
@media (max-width: 576px) {
    .stat-card {
        padding: var(--space-md);
    }

    .stat-ring {
        width: 56px;
        height: 56px;
    }

    .stat-card .stat-number {
        font-size: 1.25rem;
    }

    .auth-card {
        margin: var(--space-xl) var(--space-md);
        padding: var(--space-lg);
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .customer-auth-page {
        align-items: flex-start;
        padding: var(--space-sm);
    }

    .customer-auth-shell {
        padding: var(--space-md);
        border-radius: 16px;
    }

    .customer-auth-header {
        margin-bottom: var(--space-md);
    }

    .customer-auth-logo {
        width: 52px;
        height: 52px;
        margin-bottom: var(--space-xs);
    }

    .customer-auth-header h1 {
        font-size: 1.15rem;
    }

    .customer-auth-header p {
        font-size: 0.82rem;
    }

    .hero-split {
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        transform: none;
    }

    .hero-visual .stamp-card {
        width: 280px;
    }

    .steps-flow {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .steps-flow::before {
        display: none;
    }

    .step p {
        max-width: 100%;
    }

    .landing-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-cities {
        text-align: center;
    }
}
