: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 a:hover {
    color: 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-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.fw-btn:hover {
    filter: brightness(0.96);
}

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

.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-btn-inline {
    width: auto;
    margin: 0;
    padding: 10px 18px;
    white-space: nowrap;
}

.fw-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fw-apps a {
    display: inline-block;
    height: 40px;
}

.fw-apps img {
    height: 40px;
    width: auto;
}

.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);
}

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

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

    .fw-nav {
        order: 3;
        width: 100%;
    }

    .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;
    }
}
