:root {
    --landing-primary: #078878;
    --landing-primary-dark: #075f56;
    --landing-primary-soft: #e8f7f3;
    --landing-accent: #ffc968;
    --landing-ink: #183832;
    --landing-muted: #607872;
    --landing-line: #dbeae7;
    --landing-surface: #ffffff;
    --landing-bg: #f7fbfa;
    --landing-radius-sm: 14px;
    --landing-radius-md: 20px;
    --landing-radius-lg: 30px;
    --landing-shadow: 0 20px 55px rgba(23, 66, 58, .09);
    --landing-shadow-strong: 0 32px 75px rgba(13, 82, 72, .18);
    --landing-shell: 1180px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

.landing-body {
    min-width: 320px;
    color: var(--landing-ink);
    background:
        radial-gradient(circle at 8% 24%, rgba(255, 211, 124, .08), transparent 18%),
        var(--landing-bg);
    font-family: "DM Sans", "Poppins", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-body h1,
.landing-body h2,
.landing-body h3,
.landing-brand-name {
    font-family: "Poppins", sans-serif;
}

.landing-body *,
.landing-body *::before,
.landing-body *::after {
    box-sizing: border-box;
}

.landing-body img,
.landing-body svg {
    max-width: 100%;
}

#page-loader {
    position: fixed;
    z-index: 30000;
    inset: 0;
    display: grid;
    place-items: center;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease, visibility .4s ease;
}

#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-loader-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
}

.landing-loader-mark img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.loader-spinner {
    position: absolute;
    inset: 0;
    border: 3px solid #e3f0ed;
    border-top-color: var(--landing-primary);
    border-radius: 50%;
    animation: landing-spin .85s linear infinite;
}

@keyframes landing-spin {
    to { transform: rotate(360deg); }
}

.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s !important; }
.reveal-delay-2 { transition-delay: .16s !important; }
.reveal-delay-3 { transition-delay: .24s !important; }

.skip-link {
    position: fixed;
    z-index: 20000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--landing-primary-dark);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.landing-shell {
    width: min(calc(100% - 40px), var(--landing-shell));
    margin-inline: auto;
}

nav.landing-nav {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    width: 100%;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    transition: box-shadow .2s ease, background .2s ease;
}

nav.landing-nav.is-scrolled {
    background: transparent;
    box-shadow: none;
}

.landing-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 70px;
    margin-top: 0;
    padding: 0 13px;
    border: 1px solid rgba(216, 233, 229, .88);
    border-radius: 19px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 38px rgba(23, 67, 59, .07);
    backdrop-filter: blur(18px);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.landing-nav.is-scrolled .landing-nav-shell {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 16px 40px rgba(23, 67, 59, .13);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    color: var(--landing-ink);
    text-decoration: none;
}

.landing-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.landing-brand-copy {
    display: grid;
    line-height: 1.08;
}

.landing-brand-name {
    color: var(--landing-primary);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: .055em;
}

.landing-brand-tagline {
    margin-top: 4px;
    color: var(--landing-muted);
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .025em;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 10px;
    color: #405a55;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease;
}

.landing-nav-links a:hover,
.landing-nav-links a:focus-visible {
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.landing-nav-links .landing-nav-rider-link {
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid #c8ded9;
    color: var(--landing-primary-dark);
    background: rgba(255, 255, 255, .84);
}

.landing-nav-links .landing-nav-rider-link:hover,
.landing-nav-links .landing-nav-rider-link:focus-visible {
    color: var(--landing-primary);
    background: #fff;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 9px;
}

.landing-nav-cta,
.landing-primary-button,
.landing-secondary-button,
.landing-light-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.landing-nav-cta,
.landing-primary-button {
    color: #fff;
    background: linear-gradient(135deg, #009783, #006f62);
    box-shadow: 0 12px 25px rgba(0, 127, 112, .22);
}

.landing-nav-cta:hover,
.landing-primary-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(0, 127, 112, .29);
}

.landing-secondary-button {
    border: 1px solid #c8ded9;
    color: var(--landing-primary-dark);
    background: rgba(255, 255, 255, .84);
}

.landing-secondary-button:hover {
    color: var(--landing-primary);
    background: #fff;
    transform: translateY(-2px);
}

.landing-light-button {
    color: var(--landing-primary-dark);
    background: #fff;
    box-shadow: 0 15px 35px rgba(7, 69, 61, .15);
}

.landing-light-button:hover {
    color: var(--landing-primary);
    transform: translateY(-2px);
}

.landing-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    color: var(--landing-primary);
    background: #f4faf8;
    cursor: pointer;
}

.landing-menu-toggle:focus-visible,
.landing-body a:focus-visible,
.landing-body button:focus-visible {
    outline: 3px solid rgba(0, 127, 112, .24);
    outline-offset: 3px;
}

.landing-hero {
    position: relative;
    isolation: isolate;
    min-height: min(900px, 100svh);
    padding: clamp(120px, 13vw, 155px) 0 clamp(70px, 8vw, 105px);
    overflow: hidden;
    background:
        radial-gradient(circle at 83% 17%, rgba(255, 203, 101, .26), transparent 23%),
        radial-gradient(circle at 8% 72%, rgba(26, 183, 158, .14), transparent 28%),
        linear-gradient(145deg, #effaf7 0%, #ffffff 47%, #f9fcfb 100%);
}

.landing-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    right: -280px;
    bottom: -270px;
    border: 75px solid rgba(0, 127, 112, .055);
    border-radius: 50%;
}

.landing-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 150px;
    left: -75px;
    width: 180px;
    height: 180px;
    border-radius: 52% 48% 61% 39% / 42% 61% 39% 58%;
    background: linear-gradient(145deg, rgba(255, 211, 126, .13), rgba(7, 136, 120, .05));
    transform: rotate(22deg);
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(48px, 7vw, 90px);
    align-items: center;
}

.landing-hero-copy,
.landing-hero-visual,
.landing-section-copy {
    min-width: 0;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 17px;
    padding: 7px 11px;
    border: 1px solid #c7e4dd;
    border-radius: 999px;
    color: var(--landing-primary-dark);
    background: rgba(255, 255, 255, .78);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(26, 83, 73, .07);
}

.landing-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #13a98f;
    box-shadow: 0 0 0 5px rgba(19, 169, 143, .14);
}

.landing-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(2.45rem, 5vw, 4.65rem);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: -.052em;
}

.landing-hero h1 span {
    color: var(--landing-primary);
    background: linear-gradient(110deg, #078878 5%, #0aa38d 72%, #d79a24 115%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero-lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--landing-muted);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.75;
}

.landing-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.landing-hero-actions .landing-primary-button,
.landing-hero-actions .landing-secondary-button {
    min-height: 52px;
    padding-inline: 21px;
    font-size: .88rem;
}

.landing-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #dceae7;
}

.landing-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #526b65;
    font-size: .74rem;
    font-weight: 600;
}

.landing-trust-item i {
    color: var(--landing-primary);
}

.phone-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 620px;
}

.phone-stage::before {
    content: "";
    position: absolute;
    width: min(100%, 490px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(7, 136, 120, .08);
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .75), transparent 16%),
        linear-gradient(145deg, rgba(0, 151, 131, .15), rgba(255, 200, 87, .18));
    box-shadow: inset 0 0 65px rgba(255,255,255,.48);
}

.phone-shell {
    position: relative;
    z-index: 2;
    width: min(330px, 84vw);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 39px;
    background: linear-gradient(145deg, #123c37, #006f62 58%, #00a08c);
    box-shadow: 0 38px 75px rgba(10, 71, 62, .28);
    transform: rotate(2deg);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-8px); }
}

.phone-shell::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 8px;
    left: 50%;
    width: 105px;
    height: 20px;
    border-radius: 0 0 14px 14px;
    background: #153a35;
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 590px;
    overflow: hidden;
    border-radius: 30px;
    background: #f5f9f8;
}

.phone-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 28px 18px 14px;
    color: #fff;
    background: linear-gradient(135deg, #008d7b, #00695c);
}

.phone-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
}

.phone-brand img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.phone-avatar {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 10px;
    color: var(--landing-primary-dark);
    background: #fff;
    font-size: .7rem;
}

.phone-content {
    padding: 17px 15px 16px;
}

.phone-greeting {
    margin: 0;
    color: #29463f;
    font-size: .75rem;
    font-weight: 600;
}

.phone-question {
    margin: 3px 0 14px;
    color: #18342f;
    font-size: 1rem;
    font-weight: 700;
}

.phone-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.phone-service {
    display: grid;
    place-items: center;
    gap: 5px;
    min-height: 78px;
    padding: 9px 5px;
    border: 1px solid #deebe8;
    border-radius: 13px;
    color: #4a625d;
    background: #fff;
    font-size: .57rem;
    font-weight: 600;
    text-align: center;
}

.phone-service i {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 10px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
    font-size: .85rem;
}

.phone-service.active {
    border-color: #a9d8ce;
    color: var(--landing-primary-dark);
    background: #edf8f5;
}

.phone-map {
    position: relative;
    height: 190px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 17px;
    background:
        linear-gradient(33deg, transparent 45%, rgba(0, 127, 112, .12) 45%, rgba(0, 127, 112, .12) 49%, transparent 49%),
        linear-gradient(125deg, transparent 44%, rgba(0, 127, 112, .09) 44%, rgba(0, 127, 112, .09) 48%, transparent 48%),
        repeating-linear-gradient(0deg, #edf4f2 0 1px, transparent 1px 31px),
        repeating-linear-gradient(90deg, #edf4f2 0 1px, transparent 1px 31px),
        #f9fbfa;
}

.phone-route {
    position: absolute;
    top: 35px;
    left: 52%;
    width: 4px;
    height: 115px;
    border-radius: 999px;
    background: linear-gradient(#00897b, #ffc857);
    transform: rotate(25deg);
}

.phone-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--landing-primary);
    box-shadow: 0 5px 14px rgba(0, 84, 73, .26);
}

.phone-pin.start { top: 27px; left: 39%; }
.phone-pin.end { right: 30%; bottom: 24px; background: var(--landing-accent); }

.phone-booking-card {
    position: relative;
    z-index: 2;
    margin: -29px 12px 0;
    padding: 14px;
    border: 1px solid #e2ece9;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(29, 67, 60, .12);
}

.phone-booking-top,
.phone-booking-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.phone-booking-title {
    color: #18342f;
    font-size: .76rem;
    font-weight: 700;
}

.phone-live {
    padding: 3px 7px;
    border-radius: 999px;
    color: #08735f;
    background: #e6f6f1;
    font-size: .52rem;
    font-weight: 700;
}

.phone-location {
    margin: 7px 0 9px;
    color: #61756f;
    font-size: .58rem;
}

.phone-booking-meta {
    color: #49615b;
    font-size: .57rem;
    font-weight: 600;
}

.phone-booking-meta strong {
    color: var(--landing-primary-dark);
    font-size: .72rem;
}

.stage-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 175px;
    padding: 12px 14px;
    border: 1px solid rgba(220, 233, 230, .9);
    border-radius: 18px;
    color: var(--landing-ink);
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 18px 40px rgba(23, 66, 58, .13);
    backdrop-filter: blur(12px);
}

.stage-chip i {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.stage-chip strong,
.stage-chip span {
    display: block;
}

.stage-chip strong {
    font-size: .72rem;
}

.stage-chip span {
    margin-top: 2px;
    color: var(--landing-muted);
    font-size: .6rem;
}

.stage-chip-one { top: 115px; left: -8px; }
.stage-chip-two { right: -14px; bottom: 110px; }

.landing-trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -35px;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 60px rgba(23, 66, 58, .10);
}

.trust-strip-item {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 105px;
    padding: 22px;
    border-right: 1px solid var(--landing-line);
}

.trust-strip-item:last-child {
    border-right: 0;
}

.trust-strip-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 15px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
    box-shadow: inset 0 0 0 1px rgba(7, 136, 120, .07);
}

.trust-strip-item:nth-child(2) .trust-strip-icon {
    color: #a76d00;
    background: #fff4df;
}

.trust-strip-item:nth-child(3) .trust-strip-icon {
    color: #526fa8;
    background: #eef3fc;
}

.trust-strip-item strong {
    display: block;
    color: var(--landing-ink);
    font-size: .82rem;
}

.trust-strip-item p {
    margin: 3px 0 0;
    color: var(--landing-muted);
    font-size: .68rem;
    line-height: 1.5;
}

.landing-section {
    position: relative;
    padding: clamp(78px, 9vw, 118px) 0;
}

.landing-section-alt {
    border-block: 1px solid #e4efec;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 203, 104, .08), transparent 20%),
        linear-gradient(180deg, #ffffff, #fbfdfc);
}

.landing-section-header {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(280px, .65fr);
    gap: 35px;
    align-items: end;
    margin-bottom: clamp(30px, 5vw, 52px);
}

.landing-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--landing-primary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.landing-section-label::before {
    content: "";
    width: 17px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-accent), var(--landing-primary));
}

.landing-section-title {
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(1.85rem, 3.6vw, 3.15rem);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.landing-section-intro {
    margin: 0;
    color: var(--landing-muted);
    font-size: .91rem;
    line-height: 1.75;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: clamp(21px, 2.5vw, 28px);
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 27px;
    color: inherit;
    background:
        radial-gradient(circle at 92% 8%, rgba(7, 136, 120, .08), transparent 23%),
        linear-gradient(160deg, #ffffff, #f8fcfb);
    box-shadow: 0 18px 45px rgba(31, 75, 67, .065);
    transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #badbd4;
    box-shadow: var(--landing-shadow);
}

.service-card:nth-child(2) {
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 200, 87, .15), transparent 24%),
        linear-gradient(160deg, #ffffff, #fffbf3);
}

.service-card:nth-child(3) {
    background:
        radial-gradient(circle at 92% 8%, rgba(98, 127, 182, .12), transparent 24%),
        linear-gradient(160deg, #ffffff, #f8faff);
}

.service-card::after {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -65px;
    bottom: -70px;
    border: 22px solid rgba(0, 127, 112, .055);
    border-radius: 50%;
}

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #c9d9d6;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 27px;
    border-radius: 17px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
    font-size: 1.35rem;
}

.service-card:nth-child(2) .service-icon {
    color: #ad7200;
    background: #fff3d9;
}

.service-card:nth-child(3) .service-icon {
    color: #4c6aa7;
    background: #eaf0fb;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--landing-ink);
    font-size: 1.25rem;
}

.service-card p {
    margin: 0;
    color: var(--landing-muted);
    font-size: .82rem;
    line-height: 1.7;
}

.service-points {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #4b655f;
    font-size: .72rem;
}

.service-points i {
    margin-top: 4px;
    color: var(--landing-primary);
    font-size: .62rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.process-card {
    position: relative;
    padding: 24px;
    border: 1px solid var(--landing-line);
    border-radius: 23px;
    background: linear-gradient(150deg, #ffffff, #f8fcfb);
    box-shadow: 0 13px 35px rgba(31, 75, 67, .045);
    transition: transform .2s ease, box-shadow .2s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(31, 75, 67, .09);
}

.process-card:nth-child(2) {
    background: linear-gradient(150deg, #ffffff, #fffaf0);
}

.process-card:nth-child(3) {
    background: linear-gradient(150deg, #ffffff, #f7f9fe);
}

.process-card:not(:last-child)::after {
    content: "\f061";
    position: absolute;
    top: 43px;
    right: -20px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 5px solid var(--landing-bg);
    border-radius: 50%;
    color: var(--landing-primary);
    background: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: .7rem;
    font-weight: 900;
}

.process-step {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--landing-primary);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.process-step span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: #fff;
    background: var(--landing-primary);
}

.process-card h3 {
    margin: 20px 0 8px;
    color: var(--landing-ink);
    font-size: 1.05rem;
}

.process-card p {
    margin: 0;
    color: var(--landing-muted);
    font-size: .77rem;
    line-height: 1.7;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
    gap: clamp(35px, 7vw, 85px);
    align-items: center;
}

.feature-showcase {
    position: relative;
    min-height: 470px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 200, 87, .26), transparent 25%),
        linear-gradient(145deg, #00695c, #009681);
    box-shadow: var(--landing-shadow-strong);
}

.feature-showcase::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -110px;
    bottom: -120px;
    border: 35px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.1);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-showcase h3 {
    max-width: 390px;
    margin: 22px 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.16;
    letter-spacing: -.04em;
}

.feature-showcase > p {
    max-width: 400px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: .82rem;
}

.showcase-card {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 34px;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 16px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
}

.showcase-rider {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    color: var(--landing-primary-dark);
    background: #fff;
}

.showcase-card strong,
.showcase-card span {
    display: block;
}

.showcase-card strong { font-size: .76rem; }
.showcase-card span { color: rgba(255,255,255,.73); font-size: .63rem; }
.showcase-rating { color: var(--landing-accent); font-size: .7rem; font-weight: 700; white-space: nowrap; }

.feature-list {
    display: grid;
    gap: 11px;
}

.feature-row {
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 17px;
    border: 1px solid transparent;
    border-radius: 19px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.feature-row:hover {
    border-color: var(--landing-line);
    background: #fff;
    box-shadow: 0 13px 32px rgba(31, 75, 67, .06);
    transform: translateX(4px);
}

.feature-row-icon {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    border-radius: 14px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.feature-row h3 {
    margin: 0 0 4px;
    color: var(--landing-ink);
    font-size: .94rem;
}

.feature-row p {
    margin: 0;
    color: var(--landing-muted);
    font-size: .74rem;
    line-height: 1.65;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.community-card {
    position: relative;
    min-height: 230px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 25px;
    background: linear-gradient(155deg, #fff, #f8fcfb);
    box-shadow: 0 14px 36px rgba(31, 75, 67, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.community-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 105px;
    height: 105px;
    border: 16px solid rgba(7, 136, 120, .045);
    border-radius: 50%;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--landing-shadow);
}

.community-card:nth-child(2) {
    background: linear-gradient(155deg, #fff, #fffaf1);
}

.community-card:nth-child(3) {
    background: linear-gradient(155deg, #fff, #f7f9fe);
}

.community-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.community-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
    font-size: 1.1rem;
}

.community-role {
    padding: 5px 8px;
    border-radius: 999px;
    color: #637873;
    background: #edf3f2;
    font-size: .62rem;
    font-weight: 700;
}

.community-card h3 {
    margin: 0 0 8px;
    color: var(--landing-ink);
    font-size: 1rem;
}

.community-card p {
    margin: 0;
    color: var(--landing-muted);
    font-size: .77rem;
    line-height: 1.7;
}

.download-panel {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 35px;
    align-items: center;
    padding: clamp(30px, 5vw, 55px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 33px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 200, 87, .28), transparent 24%),
        linear-gradient(125deg, #075e55, #00897b 68%, #11a68f);
    box-shadow: var(--landing-shadow-strong);
}

.download-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 245px;
    height: 245px;
    right: -80px;
    bottom: -150px;
    border: 32px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.download-panel h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.35rem);
    line-height: 1.15;
    letter-spacing: -.045em;
}

.download-panel p {
    max-width: 650px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.78);
    font-size: .85rem;
}

.download-panel-actions {
    display: grid;
    gap: 9px;
    min-width: 250px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 61px;
    padding: 8px 17px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 10px;
    color: #fff;
    background: #050505;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.store-badge:hover {
    color: #fff;
    background: #171717;
    box-shadow: 0 13px 23px rgba(0,0,0,.27);
    transform: translateY(-2px);
}

.store-badge:active { transform: scale(.96); }

.store-badge:focus-visible {
    outline: 3px solid #ffca69;
    outline-offset: 3px;
}

.store-badge > i { width: 31px; font-size: 2rem; text-align: center; }
.store-badge > span { display: grid; line-height: 1; }
.store-badge small { font-size: .58rem; letter-spacing: .04em; }
.store-badge strong { margin-top: 3px; font-size: 1.26rem; font-weight: 500; }

.download-note {
    color: rgba(255,255,255,.7);
    font-size: .61rem;
    text-align: center;
}

.rider-callout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 17px;
    padding: 25px 28px;
    border: 1px solid #d9e8e5;
    border-radius: 23px;
    background:
        radial-gradient(circle at 95% 20%, rgba(255, 201, 104, .13), transparent 18%),
        #fff;
    box-shadow: 0 14px 35px rgba(31, 75, 67, .05);
}


.rider-callout-copy {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.rider-callout-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: #9b6500;
    background: #fff2d5;
}

.rider-callout h3 {
    margin: 0 0 4px;
    color: var(--landing-ink);
    font-size: 1rem;
}

.rider-callout p {
    margin: 0;
    color: var(--landing-muted);
    font-size: .74rem;
}

footer.landing-footer {
    position: relative;
    padding: 72px 0 24px;
    overflow: hidden;
    color: #d9e7e4;
    background:
        radial-gradient(circle at 88% 15%, rgba(255, 201, 104, .09), transparent 20%),
        radial-gradient(circle at 5% 85%, rgba(19, 171, 146, .10), transparent 24%),
        #112f2a;
}

footer.landing-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(86%, 900px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
    transform: translateX(-50%);
}

.landing-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.15fr)
        minmax(115px, .45fr)
        minmax(145px, .55fr)
        minmax(300px, 1.25fr);
    gap: clamp(24px, 3.3vw, 42px);
    padding-bottom: 42px;
}

.landing-footer .landing-brand-name {
    color: #fff;
}

.landing-footer .landing-brand-tagline {
    color: #9eb3ae;
}

.footer-summary {
    max-width: 390px;
    margin: 17px 0 0;
    color: #9fb4af;
    font-size: .73rem;
    line-height: 1.75;
}

.landing-footer h3 {
    margin: 7px 0 17px;
    color: #fff;
    font-size: .79rem;
}

.landing-footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-footer-links a,
.landing-footer-links span {
    color: #9fb4af;
    font-size: .7rem;
    text-decoration: none;
    transition: color .18s ease;
}

.landing-footer-links a:hover {
    color: #fff;
}

.footer-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 112px;
    margin: 0;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 36px rgba(0,0,0,.17);
    transition: transform .2s ease, box-shadow .2s ease;
}

.footer-seal img {
    width: 100%;
    height: auto;
}

.footer-seal:hover {
    transform: translateY(-4px);
    box-shadow: 0 21px 45px rgba(0,0,0,.23);
}

.footer-support-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 16px;
    align-items: start;
}

.footer-support-copy {
    min-width: 0;
}

.landing-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #839c96;
    font-size: .65rem;
}

.landing-footer-bottom p {
    margin: 0;
}

.footer-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.footer-service-tags span {
    padding: 4px 7px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
}

.landing-body .modal-overlay {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    background: rgba(5, 28, 24, .74);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .2s ease;
}

.landing-body .modal-overlay.active {
    display: flex;
    opacity: 1;
}

.landing-body .modal-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 780px);
    max-height: min(90svh, 820px);
    padding: clamp(22px, 4vw, 34px);
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 22px;
    color: var(--landing-ink);
    background: #fff;
    box-shadow: 0 30px 85px rgba(5, 35, 30, .28);
}

.landing-body .admin-login-modal .modal-container {
    width: min(100%, 460px);
    max-height: 95svh;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.landing-body .login-box {
    width: 100%;
    max-width: 460px;
    padding: clamp(24px, 5vw, 38px);
    border: 1px solid var(--landing-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 75px rgba(5, 35, 30, .22);
}

.landing-body .login-box:hover {
    transform: none;
}

.landing-body .form-group {
    margin-bottom: 19px;
}

.landing-body .login-header {
    margin-bottom: 25px;
    text-align: center;
}

.login-brand-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 16px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.landing-body .login-header h2 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 1.55rem;
}

.landing-body .login-header p {
    margin: 5px 0 0;
    color: var(--landing-muted);
    font-size: .76rem;
}

.landing-body .form-group label {
    display: block;
    margin: 0 0 7px;
    color: #435c57;
    font-size: .72rem;
    font-weight: 600;
}

.landing-body .form-field {
    position: relative;
}

.landing-body .form-control {
    width: 100%;
    height: 50px;
    padding: 11px 46px;
    border: 1px solid #d8e6e3;
    border-radius: 13px;
    outline: 0;
    color: var(--landing-ink);
    background: #f8fbfa;
    font-family: inherit;
    font-size: .82rem;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.landing-body .form-control:focus {
    border-color: var(--landing-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 127, 112, .11);
}

.landing-body .input-icon,
.landing-body .toggle-password {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: #8ca09b;
}

.landing-body .input-icon {
    left: 16px;
    pointer-events: none;
}

.landing-body .toggle-password {
    right: 8px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.landing-body .toggle-password:hover {
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.landing-body .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #009783, #006f62);
    box-shadow: 0 13px 25px rgba(0, 127, 112, .22);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
}

.landing-body .error-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 17px;
    padding: 11px 12px;
    border: 1px solid #f3c8cc;
    border-radius: 12px;
    color: #a93640;
    background: #fff1f2;
    font-size: .7rem;
}

.landing-body .modal-close {
    border: 0;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 11px;
    color: #6b7d79;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.landing-body .modal-close:hover {
    background: #f0f6f4;
}

.landing-body .admin-login-modal .modal-close {
    position: absolute;
    z-index: 5;
    top: -12px;
    right: -12px;
    color: #526964;
    background: #fff;
    box-shadow: 0 9px 24px rgba(11, 49, 43, .18);
}

.landing-body .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 0 0 auto;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--landing-line);
}

.modal-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--landing-primary);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.landing-body .modal-title {
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.landing-body .modal-body {
    min-height: 0;
    overflow-y: auto;
    padding-right: 8px;
    color: #506762;
    scrollbar-width: thin;
    scrollbar-color: #bad4ce transparent;
}

.landing-body .modal-body h3 {
    margin: 22px 0 7px;
    color: var(--landing-ink);
    font-size: .9rem;
}

.landing-body .modal-body h3:first-child {
    margin-top: 0;
}

.landing-body .modal-body p,
.landing-body .modal-body li {
    font-size: .73rem;
    line-height: 1.75;
}

.landing-body .modal-body p {
    margin: 0 0 10px;
}

.landing-body .modal-body ul {
    margin: 8px 0 13px;
    padding-left: 20px;
}

.corseal-button {
    border: 0;
    cursor: pointer;
}

.landing-body .corseal-modal {
    padding: 0;
    background: rgba(0, 0, 0, .92);
}

.landing-body .corseal-modal .modal-container {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 50px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.landing-body .corseal-modal .modal-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    color: #fff;
    background: rgba(255,255,255,.11);
}

.corseal-fullscreen {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landing-body.modal-open {
    overflow: hidden;
}

.landing-body .reveal {
    will-change: opacity, transform;
}

@media (max-width: 1020px) {
    .landing-nav-links {
        gap: 0;
    }

    .landing-nav-links a {
        padding-inline: 9px;
        font-size: .75rem;
    }

    .landing-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        gap: 30px;
    }

    .stage-chip-one { left: -22px; }
    .stage-chip-two { right: -20px; }

    .feature-layout {
        gap: 38px;
    }

    .landing-footer-grid {
        grid-template-columns:
            minmax(220px, 1.05fr)
            minmax(100px, .4fr)
            minmax(125px, .5fr)
            minmax(280px, 1.2fr);
        gap: 25px;
    }
}

@media (max-width: 840px) {
    .landing-shell {
        width: min(calc(100% - 28px), var(--landing-shell));
    }

    .landing-nav-shell {
        min-height: 70px;
    }

    .landing-brand img {
        width: 43px;
        height: 43px;
    }

    .landing-nav-links {
        position: fixed;
        z-index: 1100;
        top: 90px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 3px;
        padding: 10px;
        border: 1px solid var(--landing-line);
        border-radius: 17px;
        background: rgba(255,255,255,.98);
        box-shadow: 0 22px 55px rgba(19, 61, 54, .18);
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .landing-nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .landing-nav-links a {
        width: 100%;
        padding: 10px 12px;
        font-size: .8rem;
    }

    .landing-menu-toggle {
        display: inline-flex;
    }

    .landing-nav-cta {
        display: none;
    }

    .landing-hero {
        min-height: auto;
        padding-top: 118px;
    }

    .landing-hero-grid,
    .feature-layout,
    .download-panel {
        grid-template-columns: 1fr;
    }

    .landing-hero-copy {
        text-align: center;
    }

    .landing-eyebrow {
        margin-inline: auto;
    }

    .landing-hero h1,
    .landing-hero-lead {
        margin-inline: auto;
    }

    .landing-hero-actions,
    .landing-trust-row {
        justify-content: center;
    }

    .phone-stage {
        min-height: 600px;
    }

    .landing-section-header {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .feature-showcase {
        min-height: 420px;
    }

    .download-panel-actions {
        width: min(100%, 300px);
        min-width: 0;
    }

    .landing-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .landing-brand-tagline {
        display: none;
    }

    .landing-hero {
        padding-bottom: 68px;
    }

    .landing-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .landing-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .landing-hero-actions a {
        width: 100%;
    }

    .landing-trust-row {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-inline: auto;
    }

    .phone-stage {
        min-height: 590px;
    }

    .phone-shell {
        width: min(300px, 82vw);
    }

    .phone-screen {
        min-height: 540px;
    }

    .phone-map {
        height: 160px;
    }

    .stage-chip {
        position: static;
        width: min(100%, 300px);
        margin-top: 10px;
    }

    .phone-stage {
        align-content: center;
        gap: 3px;
    }

    .landing-trust-strip {
        margin-top: -22px;
    }

    .trust-strip-grid,
    .process-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-item {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--landing-line);
    }

    .trust-strip-item:last-child {
        border-bottom: 0;
    }

    .process-card:not(:last-child)::after {
        display: none;
    }

    .feature-showcase {
        min-height: 455px;
        padding: 25px;
    }

    .showcase-card {
        left: 22px;
        right: 22px;
        bottom: 22px;
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .showcase-rating {
        grid-column: 2;
    }

    .feature-row {
        padding-inline: 0;
    }

    .download-panel {
        padding: 27px 22px;
        border-radius: 23px;
    }

    .rider-callout {
        align-items: stretch;
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .rider-callout .landing-secondary-button {
        width: 100%;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .landing-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-service-tags {
        justify-content: flex-start;
    }

    .landing-body .modal-overlay {
        align-items: flex-end;
        padding: 8px;
    }

    .landing-body .modal-container {
        width: 100%;
        max-height: 92svh;
        padding: 21px;
        border-radius: 20px 20px 13px 13px;
    }

    .landing-body .admin-login-modal .modal-container {
        padding: 0;
    }

    .landing-body .admin-login-modal .modal-close {
        top: 10px;
        right: 10px;
        z-index: 4;
    }

    .landing-body .login-box {
        padding: 27px 20px 22px;
        border-radius: 20px 20px 13px 13px;
    }
}

@media (max-width: 390px) {
    .landing-shell {
        width: min(calc(100% - 20px), var(--landing-shell));
    }

    .landing-brand-name {
        font-size: 1.08rem;
    }

    .landing-hero h1 {
        font-size: 2.05rem;
    }

    .phone-shell {
        width: 276px;
    }

    .phone-services {
        gap: 5px;
    }

    .phone-service {
        font-size: .51rem;
    }

    .showcase-card {
        grid-template-columns: 1fr;
    }

    .showcase-rider {
        display: none;
    }

    .showcase-rating {
        grid-column: auto;
    }

    .footer-support-column {
        grid-template-columns: minmax(0, 1fr) 94px;
        gap: 12px;
    }

    .footer-seal {
        width: 94px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .landing-body *,
    .landing-body *::before,
    .landing-body *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
