* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #111827;

    background-image: url("/images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header {
    width: calc(100% - 64px);
    margin: 24px auto;
    padding: 18px 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    gap: 14px;
    align-items: center;
}

.logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.logo-icon img {
    width: 80%;
    height: 80%;
}

.logo h2 {
    margin: 0;
    font-size: 30px;
}

.logo p {
    margin: 2px 0 0;
    font-size: 14px;
}

nav {
    display: flex;
    gap: 42px;
}

nav a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

nav a.active {
    color: #f5b700;
    border-bottom: 3px solid #ffc400;
    padding-bottom: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-btn {
    height: 52px;

    padding: 0 18px;

    border-radius: 16px;

    background: #111827;
    color: white;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s;
}

.store-btn svg {
    width: 22px;
    height: 22px;
}

.store-btn:hover {
    transform: translateY(-2px);
    background: #000;
}

.phone {
    height: 52px;

    padding: 0 24px;

    border-radius: 16px;

    background: #ffc400;
    color: #111827;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;

    text-decoration: none;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #111827;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #ffc400;
}

.mobile-menu {
    display: none;
}

input[type="tel"] {
    width: 100%;
    height: 58px;

    padding: 0 20px;
    margin-bottom: 24px;

    border: 1.5px solid #e5e7eb;
    border-radius: 16px;

    background: #fff;

    color: #111827;

    font-size: 16px;
    font-weight: 600;

    outline: none;

    box-shadow: 0 8px 22px rgba(17, 24, 39, .04);

    transition: border-color .2s ease,
    box-shadow .2s ease;
}

input[type="tel"]:focus {
    border-color: #ffc400;
    box-shadow: 0 0 0 4px rgba(255, 242, 18, .28),
    0 12px 28px rgba(17, 24, 39, .08);
}

.field-error {
    margin-top: -18px;
    margin-bottom: 18px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 700;
    display: none;
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .15) !important;
}

.success-message {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #dcfce7;
    color: #166534;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: opacity 0.4s ease;
}

.hero {
    width: calc(100% - 120px);
    margin: 70px auto 30px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 22px;
}

.left p {
    font-size: 23px;
    line-height: 1.5;
    color: #4b5563;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 32px 0 26px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #ffc400;
    color: #111827;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    box-shadow: 0 10px 24px rgba(255, 242, 18, .35);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-text b {
    font-size: 17px;
    font-weight: 900;
    color: #111827;
}

.benefit-text span {
    font-size: 14px;
    line-height: 1.45;
    color: #374151;
}

.taxi-box {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.taxi-car-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .25));
}

.form-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.form-head {
    background: linear-gradient(135deg, #ffd200, #ffc400);
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-icon {
    width: 74px;
    height: 74px;
    min-width: 74px;

    border-radius: 50%;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon svg {
    width: 34px;
    height: 34px;
}

.form-head h2 {
    margin: 0;
    font-size: 30px;
}

.form-head p {
    margin: 8px 0 0;
    font-weight: 600;
}

form {
    padding: 36px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 900;
    color: #111827;
}

.custom-select {
    position: relative;
    margin-bottom: 24px;
}

.custom-select-btn {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;

    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 16px;
    font-weight: 700;
    color: #6b7280;

    cursor: pointer;
}

.custom-select.open .custom-select-btn {
    border-color: #FFF212;
    box-shadow: 0 0 0 4px rgba(255, 242, 18, .28);
}

.select-pin {
    color: #FFF212;
    font-size: 23px;
}

.selected-text {
    flex: 1;
    text-align: left;
}

.select-arrow {
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.custom-options {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 50;

    background: #fff;
    border: 1.5px solid #FFF212;
    border-radius: 18px;
    padding: 8px;

    box-shadow: 0 18px 40px rgba(17, 24, 39, .16);
    max-height: 270px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    display: block;
}

.custom-option {
    padding: 14px 16px;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;
    color: #111827;

    cursor: pointer;
}

.custom-option:hover {
    background: rgba(255, 242, 18, .28);
}

.hidden-option {
    display: none;
}

.submit-btn {
    width: 100%;
    height: 62px;

    border: none;
    border-radius: 16px;

    background: #ffc400;
    color: #111827;

    font-size: 20px;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    cursor: pointer;

    transition: .2s;
}

.submit-btn svg {
    width: 22px;
    height: 22px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 242, 18, .45);
}

.submit-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bottom-info {
    width: calc(100% - 80px);

    margin: 30px auto;

    padding: 24px 34px;

    border-radius: 28px;

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.bottom-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bottom-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

    border-radius: 50%;

    background: #ffc400;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-icon svg {
    width: 28px;
    height: 28px;
}

.bottom-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bottom-text b {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}

.bottom-text span {
    font-size: 15px;
    line-height: 1.45;
    color: #4B5563;
}

.content-section {
    width: calc(100% - 120px);
    margin: 34px auto;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.content-section-plain {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.section-head {
    margin-bottom: 26px;
}

.section-head span {
    color: #f5b700;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-head h2 {
    max-width: 720px;
    margin: 8px 0 0;
    font-size: 34px;
    line-height: 1.25;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-item {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
}

.step-item b {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffc400;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 20px;
}

.step-item h3 {
    margin: 18px 0 8px;
    font-size: 21px;
}

.step-item p,
.about-grid p {
    color: #4b5563;
    line-height: 1.65;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 34px;
    align-items: start;
}

.about-stats {
    display: grid;
    gap: 14px;
}

.about-stats div {
    padding: 20px;
    border-radius: 18px;
    background: #111827;
    color: #fff;
}

.about-stats b {
    display: block;
    margin-bottom: 6px;
    color: #ffc400;
    font-size: 30px;
}

.about-stats span {
    color: #d1d5db;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-grid a,
.contact-grid div {
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
}

.contact-grid b {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-grid span {
    color: #4b5563;
}

.site-footer {
    width: calc(100% - 80px);
    margin: 34px auto 24px;
    padding: 34px;
    border-radius: 28px;
    background: #111827;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 80%;
    height: 80%;
}

.footer-brand h3,
.footer-column h4 {
    margin: 14px 0 12px;
}

.footer-brand p {
    max-width: 360px;
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a,
.footer-column span,
.footer-legal a {
    color: #d1d5db;
    font-size: 15px;
    text-decoration: none;
}

.footer-column a:hover,
.footer-legal a:hover {
    color: #ffc400;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.legal-page {
    width: min(960px, calc(100% - 32px));
    margin: 34px auto;
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .1);
}

.legal-page h1 {
    margin: 0 0 18px;
    font-size: 36px;
}

.legal-page h2 {
    margin: 26px 0 10px;
    font-size: 22px;
}

.legal-page p,
.legal-page li,
.legal-page a {
    color: #374151;
    line-height: 1.7;
}

.legal-page ul {
    padding-left: 22px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #ffc400;
    color: #111827;
    font-weight: 800;
    text-decoration: none;
}

.legal-back:hover {
    background: #f5b700;
}

.legal-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 900px) {
    .header {
        width: calc(100% - 24px);
        flex-wrap: wrap;
        gap: 14px;
        padding: 16px;
    }

    nav {
        display: none;
    }

    .header-actions {
        width: 100%;
        gap: 8px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .menu-toggle {
        width: 100%;
        display: flex;
    }

    .store-btn {
        width: 100%;
        height: 48px;
        padding: 0;
        justify-content: center;
        font-size: 0;
        gap: 0;
    }

    .store-btn svg {
        width: 24px;
        height: 24px;
    }

    .phone {
        width: 100%;
        height: 48px;
        padding: 0;
        overflow: hidden;
        font-size: 0;
    }

    .phone::before {
        content: "☎";
        font-size: 22px;
    }

    .mobile-menu {
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #e5e7eb;
        display: none;
        flex-direction: column;
        gap: 6px;
    }

    .header.menu-open .mobile-menu {
        display: flex;
    }

    .mobile-menu a {
        padding: 13px 14px;
        border-radius: 12px;
        color: #111827;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-menu a.active,
    .mobile-menu a:hover {
        background: rgba(255, 196, 0, .2);
        color: #f5b700;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 22px 0;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 21px;
    }

    .taxi-box {
        height: 170px;
    }

    .taxi-car-img {
        max-width: 100%;
    }

    .hero {
        width: calc(100% - 24px);
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-card {
        order: -1;
    }

    .left {
        order: 1;
    }

    .left h1 {
        font-size: 38px;
    }

    .left p {
        font-size: 18px;
    }

    .bottom-info {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
    }

    .content-section {
        width: calc(100% - 24px);
        padding: 24px;
    }

    .section-head h2 {
        font-size: 27px;
    }

    .steps-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        width: calc(100% - 24px);
        padding: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}
