:root {
    --haat-primary: #5abcd7;
    --haat-secondary: #1f2937;
    --haat-accent: #ff7a00;
    --haat-green: #00c48c;
    --haat-mist: #eaf8fc;
    --haat-sky: #8ee6f6;
    --haat-cream: #fff6ef;
    --haat-ink: #171412;
    --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

/* Global focus-visible — WCAG 2.4.7 */
:focus-visible {
    outline: 2px solid var(--haat-primary);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fffaf6;
    color: var(--haat-ink);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    padding: 0.75rem 1rem;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--haat-primary), var(--haat-accent));
    color: #fff;
    font-family: Sora, Inter, sans-serif;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(90, 188, 215, 0.28);
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0f172a;
}

.mobile-menu {
    padding-bottom: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(90, 188, 215, 0.12);
    color: #0f7491;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow-light {
    background: rgba(255, 255, 255, 0.1);
    color: #9be4f7;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--haat-primary), #8ee6f6);
    color: #0f172a;
    box-shadow: 0 20px 45px rgba(90, 188, 215, 0.26);
}

.btn-primary:hover,
.btn-secondary:hover,
.store-button:hover,
.slider-btn:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.55rem 0.8rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.trust-pill svg,
.store-button svg,
.customer-card svg,
.slider-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

.hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 35%);
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: clamp(24rem, 56vw, 40rem);
    object-fit: cover;
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.88);
    padding: 0.85rem 1rem;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(16px);
}

.hero-card strong,
.hero-card span,
.story-card strong,
.story-card span,
.store-button span {
    display: block;
}

.hero-card strong {
    color: #0f172a;
    font-size: 0.92rem;
}

.hero-card span {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-card svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--haat-accent);
}

.hero-card-top {
    left: 1.25rem;
    top: 1.25rem;
}

.hero-card-bottom {
    bottom: 1.25rem;
    right: 1.25rem;
}

.status-dot,
.live-dot {
    display: inline-flex;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: var(--haat-accent);
    box-shadow: 0 0 0 0.45rem rgba(0, 196, 140, 0.13);
}

.section-pad {
    padding: 6rem 0;
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    margin-top: 1rem;
    color: #0f172a;
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.7rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.section-heading p:last-child {
    margin-top: 1.2rem;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.stat-card,
.feature-card,
.feature-tile,
.customer-card,
.story-card,
.lead-form {
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.stat-card {
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.stat-card strong {
    display: block;
    color: #0f7491;
    font-family: Sora, Inter, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.stat-card h2 {
    margin-top: 0.75rem;
    color: #0f172a;
    font-weight: 900;
}

.stat-card p {
    margin-top: 0.6rem;
    color: #64748b;
    line-height: 1.6;
}

.feature-tile,
.feature-card,
.customer-card,
.story-card,
.lead-form {
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.feature-tile {
    min-height: 20rem;
    background:
        radial-gradient(circle at 88% 10%, rgba(90, 188, 215, 0.18), transparent 30%),
        #fff;
}

.feature-tile h3,
.feature-card h3 {
    margin-top: 1.4rem;
    color: #0f172a;
    font-family: Sora, Inter, sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
}

.feature-tile p,
.feature-card p,
.customer-card p {
    margin-top: 0.8rem;
    color: #64748b;
    line-height: 1.7;
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card::after {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 7rem;
    height: 7rem;
    content: "";
    border-radius: 999px;
    background: rgba(90, 188, 215, 0.12);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.feature-card:nth-child(2n) {
    background: #f8fdff;
}

.feature-card:nth-child(3n) .icon-bubble {
    background: rgba(0, 196, 140, 0.12);
    color: #047857;
}

.feature-tile-dark {
    border-color: transparent;
    background: linear-gradient(140deg, #1f2937, #0f172a);
}

.feature-tile-dark h3,
.feature-tile-dark p {
    color: #fff;
}

.feature-tile-dark p {
    color: #cbd5e1;
}

.icon-bubble {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(90, 188, 215, 0.14);
    color: #0f7491;
}

.icon-bubble-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.icon-bubble svg {
    width: 1.35rem;
    height: 1.35rem;
}

.mini-metric {
    border-radius: 0.5rem;
    background: #f8fafc;
    padding: 1rem;
    color: #0f172a;
    font-weight: 900;
}

.customer-card {
    min-height: 13rem;
}

.customer-card svg {
    color: var(--haat-accent);
}

.customer-card h4 {
    margin-top: 1.2rem;
    color: #0f172a;
    font-weight: 900;
}

.delivery-board {
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem;
}

.delivery-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.delivery-step.active {
    background: #fff;
    color: #0f172a;
}

.delivery-step svg {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--haat-accent);
}

.delivery-step strong,
.delivery-step span {
    display: block;
}

.delivery-step span {
    color: inherit;
    opacity: 0.72;
    font-size: 0.9rem;
}

.slider-btn {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.story-card {
    height: auto;
    min-height: 18rem;
}

.story-card p {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-card span {
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.92rem;
}

.story-card em {
    border-radius: 999px;
    background: rgba(0, 196, 140, 0.1);
    color: #047857;
    padding: 0.55rem 0.8rem;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.phone-frame {
    position: relative;
    min-height: 32rem;
    overflow: hidden;
    border: 0.65rem solid #111827;
    border-radius: 2.4rem;
    background: #fff;
    padding: 2.4rem 1rem 1rem;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
}

.phone-frame-raised {
    transform: translateY(-1rem);
}

.phone-notch {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    width: 5.5rem;
    height: 1.05rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #111827;
}

.app-top {
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--haat-primary), var(--haat-accent));
    color: #fff;
    padding: 1.1rem;
}

.app-top span,
.app-top strong {
    display: block;
}

.app-top span {
    font-size: 0.8rem;
    opacity: 0.82;
}

.app-top strong {
    margin-top: 0.3rem;
    font-size: 1.15rem;
}

.search-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    border-radius: 999px;
    background: #f1f5f9;
    padding: 0.8rem 0.9rem;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 700;
}

.food-card {
    margin-top: 1rem;
    border-radius: 0.5rem;
    background: radial-gradient(circle at 25% 35%, #ffd166 0 11%, transparent 12%),
        radial-gradient(circle at 70% 58%, #f97316 0 9%, transparent 10%),
        linear-gradient(135deg, #fef3c7, #fed7aa);
}

.food-card.large {
    height: 9rem;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.food-grid span {
    height: 5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f8fafc, #dbeafe);
}

.merchant-panel,
.map-card,
.delivery-status {
    border-radius: 0.5rem;
    background: #f8fafc;
    padding: 1rem;
}

.merchant-panel strong,
.merchant-panel small {
    display: block;
}

.merchant-panel strong {
    margin-top: 0.8rem;
    color: #0f172a;
}

.merchant-panel small {
    margin-top: 0.25rem;
    color: #64748b;
}

.order-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.85rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.order-row strong {
    color: #047857;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 7rem;
    margin-top: 1.2rem;
}

.chart-bars span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: var(--haat-primary);
}

.chart-bars span:nth-child(1) {
    height: 35%;
}

.chart-bars span:nth-child(2) {
    height: 52%;
}

.chart-bars span:nth-child(3) {
    height: 72%;
}

.chart-bars span:nth-child(4) {
    height: 44%;
}

.chart-bars span:nth-child(5) {
    height: 86%;
    background: var(--haat-accent);
}

.map-card {
    height: 14rem;
    background: linear-gradient(135deg, #dbeafe, #ecfeff);
}

.map-card svg {
    color: #0f7491;
}

.map-card span {
    display: block;
    width: 75%;
    height: 0.35rem;
    margin: 5rem auto 0;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, var(--haat-accent) 0 1.2rem, transparent 1.2rem 1.9rem);
    transform: rotate(-20deg);
}

.delivery-status {
    margin-top: 1rem;
}

.delivery-status p {
    margin-top: 0.35rem;
    color: #64748b;
    line-height: 1.6;
}

.route-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.route-list span {
    border-radius: 0.5rem;
    background: #f8fafc;
    padding: 0.8rem;
    color: #475569;
    font-weight: 800;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 0.5rem;
    background: #0f172a;
    color: #fff;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.qr-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f8fdff, #eaf8fc);
    padding: 1rem;
    box-shadow: 0 18px 45px rgba(90, 188, 215, 0.12);
}

.qr-download strong,
.qr-download p {
    display: block;
}

.qr-download strong {
    color: #0f172a;
    font-weight: 900;
}

.qr-download p {
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.qr-mock {
    display: grid;
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.28rem;
    border: 0.35rem solid #fff;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.qr-mock span {
    border-radius: 0.22rem;
    background: #0f172a;
}

.qr-mock span:nth-child(3n),
.qr-mock span:nth-child(4n + 1) {
    background: var(--haat-primary);
}

.qr-mock span:nth-child(5),
.qr-mock span:nth-child(10),
.qr-mock span:nth-child(14) {
    opacity: 0;
}

.store-button small {
    display: block;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 700;
}

.store-button span {
    font-weight: 900;
}

.lead-form {
    display: grid;
    gap: 1rem;
}

.lead-form h3 {
    color: #0f172a;
    font-family: Sora, Inter, sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
}

.lead-form > p {
    color: #64748b;
    line-height: 1.7;
}

.lead-form label span {
    display: block;
    margin-bottom: 0.45rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 900;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.9rem 1rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: var(--haat-primary);
    box-shadow: 0 0 0 4px rgba(90, 188, 215, 0.16);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 1.5rem;
    color: #047857;
    font-weight: 800;
}

footer a {
    display: block;
    margin-top: 0.8rem;
    color: #cbd5e1;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #fff;
}

.footer-title {
    color: #fff;
    font-weight: 900;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

[data-animate] {
    opacity: 1;
    transform: none;
}

.is-visible,
.no-js [data-animate] {
    opacity: 1;
    transform: none;
}

@media (max-width: 767px) {
    .section-pad {
        padding: 4.5rem 0;
    }

    .screen-section {
        min-height: auto;
    }

    .hero-card {
        position: static;
        margin-top: 0.8rem;
    }

    .hero-media {
        border-radius: 0.5rem;
    }

    .hero-media img {
        height: 25rem;
    }

    .phone-frame-raised {
        transform: none;
    }

    .ecosystem-card {
        min-height: auto;
        padding: 1.35rem;
    }

    .phone-frame {
        min-height: 24rem;
    }

    .image-panel {
        min-height: 18rem;
    }

    .hero-full {
        min-height: auto;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .section-heading p:last-child {
        font-size: 1rem;
    }
}

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* Premium IA refresh */
.brand-mark,
.premium-card,
.choice-card,
.feature-chip,
.image-panel,
.glass-caption,
.ecosystem-card,
.reward-card,
.download-panel,
.faq-item,
.footer-grid,
.phone-frame {
    border-radius: 1.25rem;
}

.eyebrow {
    border: 1px solid rgba(90, 188, 215, 0.28);
    background: rgba(90, 188, 215, 0.14);
    color: #0b7590;
}

.btn-primary,
.btn-secondary {
    min-height: 3.55rem;
    padding: 0.95rem 1.55rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--haat-primary), #9eedff);
    color: #082f3a;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
}

.btn-glass {
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.screen-section {
    min-height: 100vh;
    position: relative;
}

.compact-section {
    position: relative;
}

/* Mobile snap-scroll */
@media (max-width: 767px) {
    html {
        scroll-snap-type: y proximity;
    }

    .screen-section {
        scroll-snap-align: start;
    }
}

/* Sticky mobile download CTA bar */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 767px) {
    .mobile-cta-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        padding: 0 0.75rem 0.75rem;
        pointer-events: none;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-cta-bar.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-cta-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.92);
        padding: 0.75rem;
        box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(18px);
    }

    .mobile-cta-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .mobile-cta-brand {
        font-family: Sora, Inter, sans-serif;
        font-size: 0.95rem;
        font-weight: 900;
        color: #0f172a;
    }

    .mobile-cta-tagline {
        font-size: 0.8rem;
        font-weight: 600;
        color: #64748b;
        line-height: 1.3;
    }

    .mobile-cta-buttons {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .mobile-cta-btn {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.75rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--haat-primary), #9eedff);
        color: #082f3a;
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
        font-weight: 900;
        white-space: nowrap;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .mobile-cta-btn:hover {
        transform: translateY(-1px);
    }

    .mobile-cta-bar.is-hidden {
        display: none;
    }
}

.hero-full {
    position: relative;
    min-height: calc(100vh - 76px);
    overflow: hidden;
    background: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 29%, rgba(255, 255, 255, 0.32) 56%, rgba(255, 255, 255, 0.08) 100%),
        radial-gradient(circle at 18% 84%, rgba(90, 188, 215, 0.28), transparent 32%);
}

.store-button {
    border-radius: 999px;
}

.store-button-light {
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.78);
    color: #0f172a;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(18px);
}

.store-button-light small {
    color: #64748b;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 800;
}

.scroll-indicator svg {
    width: 1rem;
    height: 1rem;
    animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.section-heading {
    max-width: 55rem;
}

.section-heading h2 {
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(2.25rem, 6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;
}

.section-heading p:last-child {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.premium-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.brand-intro {
    background:
        radial-gradient(circle at 12% 18%, rgba(90, 188, 215, 0.22), transparent 28%),
        radial-gradient(circle at 86% 70%, rgba(255, 122, 0, 0.12), transparent 30%),
        #fff;
}

.floating-food {
    position: absolute;
    width: clamp(8rem, 14vw, 14rem);
    height: clamp(8rem, 14vw, 14rem);
    border: 0.75rem solid #fff;
    border-radius: 999px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
    opacity: 0.94;
}

.floating-food-one {
    right: 6vw;
    top: 12vh;
    background:
        radial-gradient(circle at 48% 45%, #f97316 0 18%, transparent 19%),
        radial-gradient(circle at 35% 64%, #facc15 0 10%, transparent 11%),
        radial-gradient(circle at 62% 62%, #16a34a 0 7%, transparent 8%),
        #fff7ed;
}

.floating-food-two {
    left: 5vw;
    bottom: 10vh;
    background:
        radial-gradient(circle at 42% 50%, #fb923c 0 22%, transparent 23%),
        radial-gradient(circle at 60% 44%, #fef3c7 0 15%, transparent 16%),
        #ecfeff;
}

.brand-stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
    min-height: 11rem;
    padding: 1.35rem;
}

.stat-card strong {
    color: #0b7590;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.choice-card {
    min-height: 18rem;
    padding: 1.55rem;
}

.choice-card h3,
.ecosystem-card h3 {
    margin-top: 1.4rem;
    color: #0f172a;
    font-family: Sora, Inter, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
}

.choice-card p,
.ecosystem-card p {
    margin-top: 0.8rem;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.75;
}

.feature-chip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.feature-chip {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    gap: 0.7rem;
    border-radius: 999px;
    padding: 0.85rem 1.05rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-chip:hover,
.ecosystem-card:hover,
.choice-card:hover,
.reward-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.feature-chip svg {
    width: 1.2rem;
    height: 1.2rem;
    min-width: 1.2rem;
    color: var(--haat-primary);
}

.feature-chip:nth-child(3n) svg {
    color: var(--haat-accent);
}

.feature-chip span {
    color: #0f172a;
    font-family: Sora, Inter, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    white-space: nowrap;
}

.image-panel {
    position: relative;
    min-height: 36rem;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.image-panel-dark {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.glass-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.78);
    padding: 1rem;
    backdrop-filter: blur(18px);
}

.glass-caption strong,
.glass-caption span {
    display: block;
}

.glass-caption strong {
    color: #0f172a;
    font-weight: 900;
}

.glass-caption span {
    margin-top: 0.25rem;
    color: #475569;
    font-weight: 700;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(90, 188, 215, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    padding: 0.8rem 1rem;
    color: #0f172a;
    font-weight: 900;
}

.benefit-pill svg {
    width: 1rem;
    height: 1rem;
    color: var(--haat-accent);
}

.benefit-pill-dark {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ecosystem-card {
    min-height: 28rem;
    padding: 1.75rem;
}

.ecosystem-card:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(90, 188, 215, 0.18), rgba(255, 255, 255, 0.9)),
        #fff;
}

.app-showcase {
    overflow: hidden;
}

.app-screen-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.app-screen-pills span {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #fff;
    padding: 0.7rem 1rem;
    color: #334155;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rewards-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(90, 188, 215, 0.28), transparent 32%),
        radial-gradient(circle at 88% 68%, rgba(255, 122, 0, 0.28), transparent 28%),
        linear-gradient(135deg, #0f172a, #182335);
}

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

.reward-card {
    display: flex;
    min-height: 8rem;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    color: #fff;
    backdrop-filter: blur(18px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reward-card svg {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--haat-accent);
}

.reward-card span {
    font-weight: 900;
}

.rating {
    color: var(--haat-accent);
    font-size: 1.2rem;
}

.story-card {
    min-height: 12rem;
    padding: 1.35rem;
}

.story-card p {
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.65;
}

.story-card .mt-8 {
    margin-top: 1.35rem;
}

.download-panel {
    padding: 1.5rem;
}

.qr-download {
    margin-top: 0;
    border-radius: 1rem;
}

.download-highlights {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.download-highlights span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 1rem;
    background: #f8fafc;
    padding: 1rem;
    color: #0f172a;
    font-weight: 900;
}

.download-highlights svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--haat-primary);
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
    cursor: pointer;
    color: #0f172a;
    font-weight: 900;
}

.faq-item p {
    margin-top: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid a {
    margin-top: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.35;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-bottom-links a {
    margin-top: 0;
}

.social-link {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 0;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.18);
}

.social-link svg {
    width: 1.1rem;
    height: 1.1rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.44) 100%);
    }

    .hero-bg {
        object-position: 62% center;
    }

    .brand-stat-grid,
    .reward-grid {
        grid-template-columns: 1fr;
    }

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

    .image-panel {
        min-height: 24rem;
    }

    .phone-frame {
        min-height: 30rem;
    }

    .floating-food {
        opacity: 0.32;
    }

    .feature-chip-grid {
        justify-content: flex-start;
    }

    .feature-chip span {
        white-space: normal;
    }

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

/* Premium food-delivery visual refresh */
.font-display,
.brand-mark,
.section-heading h2,
.hero-copy h1,
.choice-card h3,
.ecosystem-card h3,
.feature-card h3,
.feature-tile h3,
.lead-form h3,
.mobile-cta-brand,
.stat-card strong,
.feature-chip span {
    font-family: Sora, Inter, system-ui, sans-serif;
}

body.bg-white {
    background: #fffaf6;
}

.site-header {
    border-bottom: 1px solid rgba(28, 25, 23, 0.08);
    background: rgba(255, 250, 246, 0.82);
    box-shadow: 0 12px 40px rgba(28, 25, 23, 0.07);
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.8rem;
    background: linear-gradient(135deg, var(--haat-primary), #8ee6f6 58%, var(--haat-accent));
    box-shadow: 0 18px 42px rgba(90, 188, 215, 0.24);
}

.nav-link {
    color: #57504a;
    font-size: 0.9rem;
    font-weight: 800;
}

.nav-link:hover {
    color: #0f7491;
}

.nav-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--haat-primary), #9eedff);
    color: #082f3a;
    box-shadow: 0 18px 46px rgba(90, 188, 215, 0.28);
}

.btn-primary:hover,
.nav-cta:hover {
    box-shadow: 0 22px 58px rgba(90, 188, 215, 0.34);
}

.btn-secondary {
    border-color: rgba(28, 25, 23, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--haat-ink);
    box-shadow: 0 16px 36px rgba(28, 25, 23, 0.08);
}

.eyebrow {
    border: 1px solid rgba(90, 188, 215, 0.26);
    background: rgba(255, 255, 255, 0.84);
    color: #0f7491;
    box-shadow: 0 14px 34px rgba(90, 188, 215, 0.12);
    text-transform: none;
}

.eyebrow-light {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #9be4f7;
    box-shadow: none;
}

.hero-full {
    isolation: isolate;
    min-height: calc(100vh - 76px);
    background: var(--haat-cream);
}

.hero-shell {
    grid-template-columns: minmax(0, 1fr);
}

.hero-bg {
    opacity: 0.72;
    filter: saturate(1.08) contrast(1.04);
    object-position: 65% center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(255, 250, 246, 0.99) 0%, rgba(255, 250, 246, 0.92) 34%, rgba(255, 250, 246, 0.58) 62%, rgba(255, 250, 246, 0.16) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 246, 239, 0.82));
}

.hero-copy h1 {
    max-width: 52rem;
    color: var(--haat-ink);
    font-size: clamp(3.3rem, 8vw, 7.25rem);
    line-height: 0.95;
}

.hero-copy > p:not(.eyebrow) {
    color: #5f554f;
    font-weight: 500;
}

.hero-preview {
    position: relative;
    display: none;
    min-height: 35rem;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    position: relative;
    width: min(25rem, 100%);
    min-height: 34rem;
    border: 0.7rem solid #171412;
    border-radius: 2.35rem;
    background: linear-gradient(180deg, #fff, #fff8f2);
    padding: 2.7rem 1.05rem 1.2rem;
    box-shadow: 0 34px 90px rgba(28, 25, 23, 0.28);
}

.hero-phone::after {
    position: absolute;
    right: -1.5rem;
    bottom: 4.4rem;
    width: 5.5rem;
    height: 5.5rem;
    content: "";
    border: 0.55rem solid #fff;
    border-radius: 50%;
    background: url("../images/haat-hero.jpg") center / cover;
    box-shadow: 0 24px 58px rgba(28, 25, 23, 0.2);
}

.hero-phone-notch {
    position: absolute;
    top: 0.82rem;
    left: 50%;
    width: 5.8rem;
    height: 1rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #171412;
}

.hero-phone-top {
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--haat-primary), #9eedff);
    color: #082f3a;
    padding: 1.15rem;
}

.hero-phone-top span,
.hero-phone-top strong,
.hero-dish-card span,
.hero-dish-card strong,
.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}

.hero-phone-top span {
    opacity: 0.82;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-phone-top strong {
    margin-top: 0.25rem;
    font-size: 1.18rem;
    font-weight: 900;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    border: 1px solid rgba(28, 25, 23, 0.08);
    border-radius: 999px;
    background: #fff;
    padding: 0.85rem 0.95rem;
    color: #6b625b;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(28, 25, 23, 0.06);
}

.hero-search svg {
    width: 1rem;
    height: 1rem;
    color: #0f7491;
}

.hero-dish-card {
    min-height: 10.5rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    background:
        linear-gradient(180deg, rgba(23, 20, 18, 0.05), rgba(23, 20, 18, 0.58)),
        url("../images/haat-hero.jpg") center / cover;
    padding: 1rem;
    color: #fff;
    box-shadow: inset 0 -60px 70px rgba(23, 20, 18, 0.26);
}

.hero-dish-card span {
    font-size: 0.76rem;
    font-weight: 800;
    opacity: 0.86;
}

.hero-dish-card strong {
    margin-top: 6.4rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.hero-order-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.hero-order-list span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(28, 25, 23, 0.07);
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.85rem;
    color: #2b2521;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
}

.hero-order-list svg {
    width: 1.05rem;
    height: 1.05rem;
    color: var(--haat-sky);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.9rem 1rem;
    color: #5a5048;
    box-shadow: 0 22px 58px rgba(28, 25, 23, 0.16);
    backdrop-filter: blur(18px);
}

.hero-floating-card svg {
    width: 1.2rem;
    height: 1.2rem;
    color: #0f7491;
}

.hero-floating-card strong {
    color: var(--haat-ink);
    font-size: 0.92rem;
}

.hero-floating-card span {
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-floating-card-top {
    top: 4.4rem;
    left: -0.5rem;
}

.hero-floating-card-bottom {
    right: -0.35rem;
    bottom: 5.4rem;
}

.store-button {
    min-width: 11.75rem;
    min-height: 3.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    background: #050505;
    color: #fff;
    padding: 0.7rem 1rem;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.store-button svg {
    width: 1.45rem;
    height: 1.45rem;
    color: #fff;
}

.store-button-light {
    border-color: rgba(255, 255, 255, 0.12);
    background: #050505;
    color: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.store-button small,
.store-button-light small {
    color: #d1d5db;
    font-size: 0.72rem;
    letter-spacing: 0;
    line-height: 1;
}

.store-button span {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.05;
}

.scroll-indicator {
    color: #6b625b;
}

.screen-section.bg-slate-50,
.screen-section.bg-haat-mist,
.compact-section.bg-white,
.brand-intro {
    background: #fffaf6;
}

.screen-section.bg-white {
    background: #fff;
}

.floating-food {
    display: none;
}

.section-heading {
    max-width: 58rem;
}

.section-heading h2 {
    color: var(--haat-ink);
    font-size: clamp(2.4rem, 5.7vw, 5.2rem);
    line-height: 0.98;
}

.section-heading p:last-child {
    color: #6f6259;
    font-weight: 500;
}

.premium-card,
.choice-card,
.feature-card,
.feature-tile,
.customer-card,
.story-card,
.lead-form,
.faq-item,
.download-panel,
.reward-card,
.ecosystem-card {
    border-radius: 0.5rem;
}

.premium-card,
.stat-card,
.feature-card,
.feature-tile,
.customer-card,
.story-card,
.lead-form {
    border-color: rgba(28, 25, 23, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(28, 25, 23, 0.08);
}

.choice-card,
.ecosystem-card,
.stat-card {
    border-top: 3px solid rgba(90, 188, 215, 0.75);
}

.choice-card:hover,
.ecosystem-card:hover,
.feature-chip:hover,
.reward-card:hover {
    box-shadow: 0 26px 66px rgba(28, 25, 23, 0.14);
}

.stat-card strong {
    color: #0f7491;
}

.icon-bubble {
    border-radius: 0.5rem;
    background: rgba(90, 188, 215, 0.14);
    color: #0f7491;
}

.feature-card:nth-child(3n) .icon-bubble {
    background: rgba(255, 122, 0, 0.13);
    color: #c2410c;
}

.feature-chip {
    border-color: rgba(28, 25, 23, 0.08);
    background: #fff;
    box-shadow: 0 14px 34px rgba(28, 25, 23, 0.07);
}

.feature-chip svg,
.download-highlights svg {
    color: #0f7491;
}

.feature-chip:nth-child(3n) svg,
.benefit-pill svg,
.reward-card svg,
.rating {
    color: var(--haat-sky);
}

.feature-chip span {
    color: #2b2521;
}

.service-area-grid {
    display: grid;
    gap: 1rem;
}

.service-area-card {
    scroll-margin-top: 6.5rem;
    border-top: 3px solid rgba(90, 188, 215, 0.75);
    padding: 1.5rem;
}

.service-area-card h3 {
    margin-top: 1.1rem;
    color: var(--haat-ink);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
}

.service-area-card p {
    margin-top: 0.7rem;
    color: #6f6259;
    font-size: 0.96rem;
    line-height: 1.7;
}

.service-area-icon {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(90, 188, 215, 0.14);
    color: #0f7491;
}

.service-area-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.benefit-pill {
    border-color: rgba(90, 188, 215, 0.22);
    background: rgba(255, 255, 255, 0.86);
}

.image-panel {
    border-radius: 1rem;
    box-shadow: 0 30px 82px rgba(28, 25, 23, 0.18);
}

.glass-caption {
    border-radius: 0.5rem;
}

.delivery-board,
.delivery-step,
.mini-metric,
.merchant-panel,
.map-card,
.delivery-status,
.route-list span,
.order-row,
.download-highlights span,
.qr-download,
.qr-mock {
    border-radius: 0.5rem;
}

.app-showcase {
    background: linear-gradient(180deg, #fffaf6, #fff1e7);
}

.phone-frame {
    border-color: #171412;
    background: #fffaf6;
    box-shadow: 0 30px 78px rgba(28, 25, 23, 0.18);
}

.app-top {
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--haat-primary), #9eedff);
    color: #082f3a;
}

.food-card.large {
    background:
        linear-gradient(180deg, rgba(23, 20, 18, 0.03), rgba(23, 20, 18, 0.32)),
        url("../images/haat-hero-food.jpg") center / cover;
}

.food-grid span:nth-child(1) {
    background: url("../images/haat-hero.jpg") center / cover;
}

.food-grid span:nth-child(2) {
    background: url("../images/haat-hero-food.jpg") center / cover;
}

.food-grid span:nth-child(3) {
    background: linear-gradient(135deg, #fff7ed, #ffd8c2);
}

.food-grid span:nth-child(4) {
    background: linear-gradient(135deg, #ecfeff, #bdeffa);
}

.chart-bars span {
    background: var(--haat-primary);
}

.chart-bars span:nth-child(5) {
    background: var(--haat-accent);
}

.map-card {
    background: linear-gradient(135deg, #fff5ed, #e6f8fb);
}

.map-card svg {
    color: #0f7491;
}

.map-card span {
    background: repeating-linear-gradient(90deg, var(--haat-sky) 0 1.2rem, transparent 1.2rem 1.9rem);
}

.rewards-section {
    background:
        linear-gradient(135deg, #171412 0%, #2a1719 48%, #3a2117 100%);
}

.reward-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
}

.download-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 239, 0.94));
}

.qr-download {
    border-color: rgba(90, 188, 215, 0.2);
    background: #fff;
}

.qr-mock span:nth-child(3n),
.qr-mock span:nth-child(4n + 1) {
    background: var(--haat-primary);
}

.mobile-cta-btn {
    display: inline-flex;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.65rem;
    background: #050505;
    color: #fff;
    padding: 0.45rem 0.65rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.mobile-cta-btn svg {
    width: 1rem;
    height: 1rem;
}

.mobile-cta-btn span,
.mobile-cta-btn small {
    display: block;
}

.mobile-cta-btn span {
    font-size: 0.78rem;
    line-height: 1.05;
    text-align: left;
}

.mobile-cta-btn small {
    color: #d1d5db;
    font-size: 0.56rem;
    line-height: 1;
}

footer.bg-slate-950,
.bg-slate-950 {
    background-color: #171412;
}

.footer-title {
    color: #fff6ef;
}

.mobile-cta-inner {
    border-color: rgba(28, 25, 23, 0.1);
}

@media (min-width: 1024px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
    }

    .hero-preview {
        display: flex;
    }

    .service-area-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .service-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .site-header {
        background: rgba(255, 250, 246, 0.94);
    }

    .site-header nav {
        width: calc(100vw - 2.5rem);
        max-width: calc(100vw - 2.5rem);
        min-width: 0;
    }

    .site-header nav > a {
        min-width: 0;
    }

    .hero-full {
        min-height: auto;
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-bg {
        opacity: 0.48;
        object-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(255, 250, 246, 0.99) 0%, rgba(255, 250, 246, 0.9) 58%, rgba(255, 250, 246, 0.58) 100%);
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 10.5vw, 3rem);
        line-height: 1;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .hero-preview {
        display: none;
    }

    .hero-shell,
    .hero-copy,
    .hero-copy > p:not(.eyebrow) {
        width: min(20.5rem, calc(100vw - 3rem));
        max-width: calc(100vw - 3rem);
        min-width: 0;
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.75;
        overflow-wrap: break-word;
    }

    .hero-copy .btn-primary,
    .hero-copy .btn-secondary {
        width: 100%;
    }

    .hero-copy .store-button {
        width: 100%;
        max-width: 13.5rem;
    }

    .section-heading h2 {
        font-size: clamp(2.1rem, 10vw, 3.1rem);
    }

    .image-panel {
        border-radius: 0.75rem;
    }
}
