:root {
    --accent: #e17f1d;
    --accent-soft: #fff3e6;
    --ink: #1a1a1a;
    --muted: #5b5b5b;
    --line: #e8e8e8;
    --card-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.fw-site-header {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.fw-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.fw-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.fw-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    white-space: nowrap;
}

.fw-logo img {
    max-height: 44px;
    width: auto;
}

.fw-logo-bars {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fw-logo-bars::before,
.fw-logo-bars::after {
    content: "";
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: var(--accent);
}

.fw-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 500;
}

.fw-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
}

.fw-nav-toggle-bars {
    width: 18px;
    height: 12px;
    display: inline-block;
    background:
        linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
        linear-gradient(var(--ink), var(--ink)) 0 5px / 100% 2px no-repeat,
        linear-gradient(var(--ink), var(--ink)) 0 10px / 100% 2px no-repeat;
}

.fw-nav a {
    position: relative;
    padding: 4px 0;
}

.fw-nav a:hover,
.fw-nav a.is-active {
    color: var(--accent);
}

.fw-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.fw-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.fw-phone svg {
    flex-shrink: 0;
}

.fw-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.fw-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.fw-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.88) 42%,
        rgba(255, 255, 255, 0.45) 100%
    );
}

.fw-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 36px 0 52px;
}

.fw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
}

.fw-hero h1 {
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.12;
    margin: 0 0 18px;
    max-width: 18ch;
}

.fw-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 46ch;
}

.fw-bullets li {
    margin: 10px 0;
    padding-left: 26px;
    position: relative;
    color: #333;
    line-height: 1.45;
}

.fw-bullets li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: 800;
}

.fw-book-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    padding: 24px;
}

.fw-book-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.fw-alert {
    background: #fdecec;
    color: #8a1f1f;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.fw-ok {
    background: #e8f7ee;
    color: #146c3a;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.fw-fare {
    background: var(--accent-soft);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, white);
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.fw-route-fields {
    position: relative;
    margin-bottom: 8px;
}

.fw-route-fields::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 34px;
    bottom: 34px;
    border-left: 2px dotted #ccc;
    z-index: 0;
}

.fw-field {
    position: relative;
    margin-bottom: 12px;
}

.fw-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.fw-input-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}

.fw-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    z-index: 2;
    pointer-events: none;
}

.fw-input-wrap input {
    width: 100%;
    padding: 12px 44px 12px 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
}

.fw-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
}

.fw-input-wrap input:focus,
.fw-field select:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--accent) 55%, white);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, white);
}

.fw-locate-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    z-index: 2;
}

.fw-locate-btn:hover {
    background: var(--accent-soft);
}

.fw-passenger {
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 12px;
}

.fw-passenger.is-collapsed .fw-passenger-body {
    display: none;
}

.fw-passenger-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 0 10px;
    cursor: pointer;
    color: #333;
}

.fw-passenger-toggle::after {
    content: " ▾";
    color: var(--accent);
    font-size: 12px;
}

.fw-passenger.is-collapsed .fw-passenger-toggle::after {
    content: " ▸";
}

.fw-passenger.is-collapsed {
    margin-bottom: 0;
}

.fw-passenger.is-collapsed .fw-passenger-toggle {
    padding-bottom: 0;
}

.fw-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--accent);
    color: #fff !important;
    border: 0;
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 28%, transparent);
}

.fw-btn:hover {
    filter: brightness(0.95);
    color: #fff !important;
}

.fw-btn-outline {
    background: #fff;
    color: var(--accent) !important;
    border: 2px solid var(--accent);
    box-shadow: none;
}

.fw-btn-outline:hover {
    background: var(--accent-soft);
    color: var(--accent) !important;
    filter: none;
}

.fw-btn-inline {
    width: auto;
    margin: 0;
    padding: 12px 18px;
    white-space: nowrap;
}

.fw-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.fw-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.fw-pay {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.fw-pay span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    color: #555;
    background: #fafafa;
}

.fw-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 12px 0 44px;
}

.fw-feature {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    padding: 22px;
    transition: transform 0.15s ease;
}

.fw-feature:hover {
    transform: translateY(-2px);
}

.fw-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.fw-feature h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.fw-feature p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
}

.fw-feature-more {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.fw-driver {
    background: var(--accent-soft);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.fw-driver-main {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.fw-driver-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fw-driver strong {
    color: var(--accent);
}

.fw-driver-sub {
    margin-top: 4px;
    color: #444;
    font-size: 14px;
}

.fw-driver-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.fw-offer-code {
    margin: 24px 0;
    padding: 22px 24px;
    border-radius: 16px;
    background: var(--accent-soft);
    text-align: center;
}

.fw-offer-code-label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
}

.fw-offer-code-value {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent);
    word-break: break-all;
}

.fw-offer-code-hint {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.45;
}

.fw-apps-page {
    justify-content: flex-start;
    margin: 8px 0 24px;
}

.fw-apps {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 28px;
}

.fw-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    line-height: 0;
    flex-shrink: 0;
}

.fw-store-badge img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 148px;
}

.fw-footer {
    border-top: 1px solid var(--line);
    padding: 20px 0 32px;
    font-size: 13px;
    color: #777;
}

.fw-footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.fw-footer-inner > :first-child {
    justify-self: start;
}

.fw-footer-inner > :nth-child(2) {
    justify-self: center;
}

.fw-footer-inner > :last-child {
    justify-self: end;
}

.fw-footer a:hover {
    color: var(--accent);
}

.fw-powered {
    color: #888;
}

.fw-powered strong {
    color: var(--accent);
}

.fw-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fw-lang {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
}

.fw-lang a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #666;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 999px;
    line-height: 1;
}

.fw-lang a.is-active {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.fw-lang a:hover {
    color: #111;
}

.fw-wa {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.fw-safety-hint {
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
    max-width: 42ch;
    line-height: 1.45;
}

a.fw-feature {
    text-decoration: none;
    color: inherit;
    display: block;
}

.fw-feature-more {
    display: inline-block;
    margin-top: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
}

.fw-page-hero {
    background:
        linear-gradient(180deg, var(--accent-soft), #fff 78%),
        #fff;
    border-bottom: 1px solid var(--line);
    padding: 28px 0 22px;
}

.fw-page-kicker {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fw-page-hero h1 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
}

.fw-page-sub {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.fw-page {
    padding: 28px 0 56px;
    max-width: 720px;
}

.fw-page-lead {
    color: #444;
    line-height: 1.55;
    margin: 0 0 22px;
}

.fw-prose {
    color: #333;
    line-height: 1.65;
    margin-bottom: 22px;
    font-size: 16px;
}

.fw-prose br + br {
    display: block;
    content: '';
    margin-top: 0.55em;
}

.fw-page-media {
    margin: 0 0 22px;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0ee;
}

.fw-page-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.fw-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.fw-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin: 8px 0 12px;
}

.fw-contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    color: #333;
    font-size: 14px;
    text-decoration: none;
    display: grid;
    gap: 4px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.fw-contact-card:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, white);
    transform: translateY(-1px);
}

.fw-contact-card-accent {
    background: var(--accent-soft);
    border-color: color-mix(in srgb, var(--accent) 35%, white);
}

.fw-contact-icon {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
}

.fw-contact-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fw-contact-card strong {
    color: var(--ink);
    font-size: 15px;
    word-break: break-word;
}

.fw-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.fw-schedule-form {
    max-width: 520px;
}

.fw-schedule-form .fw-field {
    margin-bottom: 12px;
}

.fw-schedule-form textarea,
.fw-schedule-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
}

.fw-schedule-form textarea:focus,
.fw-schedule-form input:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--accent) 55%, white);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, white);
}

.fw-req {
    color: var(--accent);
}

.fw-form-note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.fw-form-note a {
    color: var(--accent);
    font-weight: 700;
}

.fw-footer-links a:hover {
    color: var(--accent);
}

.fw-sticky-contact {
    display: none;
}

@media (max-width: 920px) {
    .fw-hero-grid,
    .fw-features {
        grid-template-columns: 1fr;
    }

    .fw-header-inner {
        flex-wrap: wrap;
        position: relative;
    }

    .fw-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .fw-nav,
    .fw-header-actions {
        display: none;
        width: 100%;
        order: 3;
    }

    body.fw-nav-open .fw-nav,
    body.fw-nav-open .fw-header-actions {
        display: flex;
    }

    .fw-nav {
        flex-direction: column;
        gap: 4px;
        padding: 8px 0 4px;
        border-top: 1px solid var(--line);
    }

    .fw-nav a {
        padding: 10px 4px;
        font-weight: 600;
    }

    .fw-nav a.is-active::after {
        display: none;
    }

    .fw-nav a.is-active {
        color: var(--accent);
    }

    .fw-header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 4px 0 12px;
        border-top: 1px solid var(--line);
    }

    .fw-phone-text {
        font-size: 14px;
    }

    .fw-hero h1 {
        max-width: none;
    }

    .fw-driver {
        flex-direction: column;
        align-items: flex-start;
    }

    .fw-driver-actions {
        align-items: flex-start;
        width: 100%;
    }

    .fw-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fw-footer-inner > * {
        justify-self: center !important;
    }

    .fw-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fw-page-actions .fw-btn-inline {
        width: 100%;
        text-align: center;
    }

    .fw-sticky-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        background: #111;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .fw-sticky-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
    }

    .fw-sticky-call {
        background: #111;
    }

    .fw-sticky-wa {
        background: var(--accent);
    }

    .fw-sticky-contact:has(a:only-child) {
        grid-template-columns: 1fr;
    }

    body {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }
}
