:root {
    --aefin-navy-950: #0b1628;
    --aefin-navy-900: #101d33;
    --aefin-navy-800: #172a46;
    --aefin-blue: #2a67d8;
    --aefin-blue-soft: #edf4ff;
    --aefin-pink: #ff2f8d;
    --aefin-pink-dark: #d9146b;
    --aefin-pink-soft: #fff0f6;
    --aefin-ink: #18283d;
    --aefin-muted: #64748b;
    --aefin-surface: #f6f8fc;
    --aefin-line: #dde6f0;
    --aefin-white: #ffffff;
    --aefin-shadow: 0 22px 58px rgba(16, 29, 51, 0.12);
    --aefin-radius: 24px;
    --aefin-radius-sm: 14px;
    --aefin-button-height: 50px;
    --aefin-button-padding-y: 13px;
    --aefin-button-padding-x: 25px;
    --aefin-button-radius: 10px;
    --aefin-button-font-size: 16px;
    --aefin-button-font-weight: 700;
    --aefin-button-line-height: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--aefin-white);
    color: var(--aefin-ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body,
p,
a,
button,
input,
textarea,
select {
    font-family: "Manrope", Arial, sans-serif;
}

::selection {
    background: var(--aefin-pink);
    color: var(--aefin-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--aefin-navy-900);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 18px;
}

p {
    color: var(--aefin-muted);
    margin: 0 0 20px;
}

a {
    color: var(--aefin-blue);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

a:hover,
a:focus {
    color: var(--aefin-pink-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section {
    padding: 100px 0;
}

.section-kicker,
.hero-eyebrow,
.modal-kicker {
    color: var(--aefin-pink-dark);
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 42px;
    max-width: 710px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.about-copy h2,
.faq-preview h2 {
    font-size: clamp(32px, 4vw, 50px);
}

.section-heading p,
.about-copy > p,
.faq-preview .col-lg-5 > p {
    font-size: 18px;
}

.aefin-btn,
.btn,
.header .get-quote .btn,
.legacy-home-hero .single-slider .btn {
    align-items: center;
    border: 0;
    border-radius: var(--aefin-button-radius);
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-size: var(--aefin-button-font-size);
    font-weight: var(--aefin-button-font-weight);
    height: var(--aefin-button-height);
    justify-content: center;
    line-height: var(--aefin-button-line-height);
    min-height: var(--aefin-button-height);
    padding: var(--aefin-button-padding-y) var(--aefin-button-padding-x);
    text-align: center;
}

/* Кнопки меняют цвет, но не смещаются и не масштабируются при наведении. */
.aefin-btn,
.btn,
button[type="submit"] {
    transform: none !important;
}

.aefin-btn:hover,
.aefin-btn:focus,
.aefin-btn:active,
.btn:hover,
.btn:focus,
.btn:active,
button[type="submit"]:hover,
button[type="submit"]:focus,
button[type="submit"]:active {
    transform: none !important;
}

.aefin-btn::before,
.btn::before {
    display: none;
}

.aefin-btn--primary,
.header .get-quote .btn {
    background: var(--aefin-navy-900);
    color: var(--aefin-white);
}

.aefin-btn--primary:hover,
.header .get-quote .btn:hover {
    background: var(--aefin-pink);
    color: var(--aefin-white);
}

.aefin-btn--light {
    background: rgba(255, 255, 255, .9);
    box-shadow: inset 0 0 0 1px rgba(16, 29, 51, .13);
    color: var(--aefin-navy-900);
}

.aefin-btn--light:hover {
    background: var(--aefin-white);
    box-shadow: inset 0 0 0 1px var(--aefin-pink);
    color: var(--aefin-pink-dark);
}

.aefin-btn--outline {
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--aefin-navy-900);
    color: var(--aefin-navy-900);
}

.aefin-btn--outline:hover {
    background: var(--aefin-navy-900);
    box-shadow: inset 0 0 0 1px var(--aefin-navy-900);
    color: var(--aefin-white);
}

.aefin-btn--pink {
    background: var(--aefin-pink);
    color: var(--aefin-white);
}

.aefin-btn--pink:hover {
    background: var(--aefin-white);
    color: var(--aefin-navy-900);
}

.aefin-btn--full {
    width: 100%;
}

/* Header */
.header {
    background: var(--aefin-white);
    position: relative;
    z-index: 1000;
}

.header .topbar {
    background: var(--aefin-navy-950);
    border: 0;
    padding: 10px 0;
}

.header .topbar .top-link,
.header .top-contact {
    margin: 0;
}

.header .topbar .top-link li,
.header .top-contact li {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    margin-right: 22px;
}

.header .topbar .top-link li:last-child,
.header .top-contact li:last-child {
    margin-right: 0;
}

.header .topbar .top-link li a,
.header .top-contact li a {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
}

.header .topbar .top-link li a:hover,
.header .top-contact li a:hover {
    color: var(--aefin-white);
}

.header .top-contact li i {
    color: var(--aefin-pink);
    margin-right: 7px;
}

.header .header-inner {
    background: var(--aefin-white);
    border-bottom: 1px solid var(--aefin-line);
    box-shadow: none;
    min-height: 94px;
    transition: box-shadow .2s ease;
}

.header .header-inner.is-sticky {
    box-shadow: 0 12px 35px rgba(16, 29, 51, .10);
}

.header .inner {
    min-height: 94px;
}

.header .row,
.header .header-inner .col-lg-3,
.header .header-inner .col-lg-7,
.header .header-inner .col-lg-2 {
    align-items: center;
}

.header .logo {
    float: none;
    margin: 0;
    padding: 0;
}

.brand-logo {
    align-items: center;
    display: flex;
    height: 92px;
}

.brand-logo img {
    height: auto;
    max-width: 285px;
    width: 100%;
}

.header .main-menu {
    float: none;
    text-align: center;
}

.header .nav li {
    margin-right: 23px;
}

.header .nav li:last-child {
    margin-right: 0;
}

.header .nav li a {
    color: var(--aefin-navy-900);
    font-size: 14px;
    font-weight: 700;
    padding: 36px 0 31px;
    position: relative;
}

.header .nav li a::before {
    background: var(--aefin-pink);
    border-radius: 3px 3px 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width .2s ease;
    width: 0;
}

.header .nav li.active a,
.header .nav li:hover a {
    color: var(--aefin-pink-dark);
}

.header .nav li.active a::before,
.header .nav li:hover a::before {
    width: 100%;
}

.header .get-quote {
    margin: 0;
}

.header .get-quote .btn {
    padding: var(--aefin-button-padding-y) var(--aefin-button-padding-x);
}

.header .get-quote .header-login-placeholder,
.header .get-quote .header-login-placeholder:hover,
.header .get-quote .header-login-placeholder:focus {
    background: var(--aefin-navy-900);
    color: var(--aefin-white);
    cursor: default;
    transform: none !important;
}

.aefin-form-honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

/* Главный экран: сохранена исходная композиция с текстом поверх большой фотографии. */
.slider .single-slider {
    background-color: var(--aefin-surface);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 600px;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.slider .single-slider::before {
    display: none;
}

.slider .single-slider .container {
    position: relative;
    z-index: 2;
}

.legacy-home-hero .single-slider .text {
    margin-top: 120px;
    max-width: 660px;
}

.legacy-home-hero .single-slider h1 {
    color: #204264;
    font-size: 38px;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin: 0;
}

.legacy-home-hero .single-slider h1 span {
    color: var(--aefin-pink-dark);
}

.legacy-home-hero .single-slider p {
    color: #204264;
    font-size: 20px;
    margin-top: 27px;
    max-width: 650px;
}

.legacy-home-hero .single-slider .button {
    margin-top: 30px;
}

.legacy-home-hero .single-slider .btn {
    background: var(--aefin-pink);
    color: var(--aefin-white);
    margin-right: 10px;
}

.legacy-home-hero .single-slider .btn.primary {
    background: var(--aefin-navy-900);
}

.legacy-home-hero .single-slider .btn:hover {
    color: var(--aefin-white);
}

.hero-copy {
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--aefin-radius);
    box-shadow: 0 25px 70px rgba(16, 29, 51, .10);
    max-width: 670px;
    padding: 42px 46px;
}

.hero-eyebrow {
    margin-bottom: 17px;
}

.hero-copy h1 {
    font-size: clamp(43px, 5vw, 68px);
    letter-spacing: -.055em;
    margin-bottom: 22px;
}

.hero-copy h1 span {
    color: var(--aefin-pink-dark);
    display: block;
}

.hero-copy p {
    color: #43546a;
    font-size: 18px;
    line-height: 1.7;
    max-width: 590px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-slider .owl-nav button,
.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
    align-items: center;
    background: rgba(16, 29, 51, .72) !important;
    border: 0;
    border-radius: 50%;
    color: var(--aefin-white) !important;
    display: flex;
    font-size: 34px !important;
    height: 50px;
    justify-content: center;
    line-height: 1;
    width: 50px;
}

.hero-slider .owl-nav button:hover {
    background: var(--aefin-pink) !important;
}

.hero-slider .owl-dots {
    bottom: 24px;
    display: flex;
    gap: 7px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.hero-slider .owl-dot {
    background: rgba(16, 29, 51, .30) !important;
    border-radius: 999px;
    height: 7px;
    width: 22px;
}

.hero-slider .owl-dot.active {
    background: var(--aefin-pink) !important;
    width: 40px;
}

/* Три карточки под главным экраном возвращены к исходной композиции. */
.schedule .single-schedule {
    background: linear-gradient(145deg, var(--aefin-navy-900), #203b62);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(16, 29, 51, .20);
    overflow: hidden;
}

.schedule .col-lg-4:nth-child(2) .single-schedule {
    background: linear-gradient(145deg, #5a1f49 0%, #9d1f62 100%);
}

.schedule .col-lg-4:nth-child(3) .single-schedule {
    background: linear-gradient(145deg, #1a2942, #442243);
}

.schedule .single-schedule:hover {
    transform: none;
}

.schedule .single-schedule .inner {
    min-height: 310px;
}

.schedule .single-schedule h4 {
    letter-spacing: -.02em;
}

.schedule .single-schedule p {
    font-size: 14px;
    line-height: 1.65;
}

.schedule .single-schedule a {
    font-size: 14px;
    font-weight: 700;
}

.schedule .single-schedule a:hover {
    color: var(--aefin-white);
}

/* Home content */
.trust-strip {
    background: var(--aefin-white);
    position: relative;
    z-index: 4;
}

.trust-grid {
    background: var(--aefin-white);
    border: 1px solid var(--aefin-line);
    border-radius: var(--aefin-radius);
    box-shadow: var(--aefin-shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -44px;
    overflow: hidden;
}

.trust-card {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    min-height: 178px;
    padding: 35px 30px;
}

.trust-card + .trust-card {
    border-left: 1px solid var(--aefin-line);
}

.trust-icon {
    align-items: center;
    background: var(--aefin-pink-soft);
    border-radius: 14px;
    color: var(--aefin-pink-dark);
    display: flex;
    flex: 0 0 52px;
    font-size: 21px;
    height: 52px;
    justify-content: center;
}

.trust-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.leasing-section {
    padding-top: 125px;
}

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

.leasing-card,
.benefit-card,
.content-card,
.object-card,
.condition-card,
.doc-card,
.faq-card,
.guide-card {
    background: var(--aefin-white);
    border: 1px solid var(--aefin-line);
    border-radius: var(--aefin-radius);
    box-shadow: 0 12px 38px rgba(16, 29, 51, .06);
}

.leasing-card {
    min-height: 330px;
    overflow: hidden;
    padding: 32px;
    position: relative;
}

.leasing-card::after {
    background: var(--aefin-pink);
    border-radius: 50%;
    content: "";
    height: 105px;
    opacity: .08;
    position: absolute;
    right: -42px;
    top: -42px;
    width: 105px;
}

.leasing-card:hover {
    border-color: rgba(255, 47, 141, .45);
    box-shadow: var(--aefin-shadow);
    transform: none;
}

.leasing-card__icon {
    align-items: center;
    background: var(--aefin-navy-900);
    border-radius: 16px;
    color: var(--aefin-white);
    display: flex;
    font-size: 25px;
    height: 58px;
    justify-content: center;
    margin-bottom: 28px;
    width: 58px;
}

.leasing-card h3,
.object-card h2 {
    font-size: 22px;
}

.leasing-card p {
    font-size: 15px;
}

.leasing-card a {
    bottom: 28px;
    color: var(--aefin-pink-dark);
    font-size: 14px;
    font-weight: 800;
    position: absolute;
}

/* Новый блок категорий: асимметричная композиция без движения карточек. */
.transport-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 47, 141, .08), transparent 25%),
        linear-gradient(180deg, var(--aefin-white), var(--aefin-surface));
    overflow: hidden;
}

.transport-heading {
    align-items: end;
    display: grid;
    gap: 45px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    margin-bottom: 44px;
}

.transport-heading h2 {
    font-size: clamp(34px, 4.5vw, 54px);
    margin: 0;
    max-width: 780px;
}

.transport-heading > p {
    border-left: 3px solid var(--aefin-pink);
    font-size: 17px;
    margin: 0 0 5px;
    padding-left: 22px;
}

.transport-showcase {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(310px, .8fr) minmax(0, 1.7fr);
}

.transport-feature {
    background: linear-gradient(145deg, var(--aefin-navy-950), #252443 72%, #522047);
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(11, 22, 40, .20);
    min-height: 520px;
    overflow: hidden;
    padding: 46px 42px;
    position: relative;
}

.transport-feature::before {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
    height: 260px;
    position: absolute;
    right: -105px;
    top: -85px;
    width: 260px;
}

.transport-feature::after {
    background: var(--aefin-pink);
    bottom: 0;
    content: "";
    height: 7px;
    left: 42px;
    position: absolute;
    width: 88px;
}

.transport-feature__label {
    color: var(--aefin-pink);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    margin-bottom: 48px;
    position: relative;
    text-transform: uppercase;
    z-index: 2;
}

.transport-feature h3 {
    color: var(--aefin-white);
    font-size: clamp(30px, 3vw, 42px);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.transport-feature p {
    color: rgba(255, 255, 255, .67);
    font-size: 15px;
    margin-bottom: 32px;
    max-width: 370px;
    position: relative;
    z-index: 2;
}

.transport-feature .aefin-btn {
    position: relative;
    z-index: 2;
}

.transport-feature__number {
    bottom: -42px;
    color: transparent;
    font-size: 190px;
    font-weight: 800;
    letter-spacing: -.1em;
    line-height: 1;
    opacity: .13;
    position: absolute;
    right: 8px;
    -webkit-text-stroke: 2px var(--aefin-white);
}

.transport-catalog {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transport-card {
    --transport-accent: var(--aefin-pink);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--aefin-line);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(16, 29, 51, .06);
    min-height: 250px;
    overflow: hidden;
    padding: 29px 30px 27px;
    position: relative;
    transform: none !important;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.transport-card::before {
    background: var(--transport-accent);
    content: "";
    height: 5px;
    left: 30px;
    position: absolute;
    top: 0;
    width: 54px;
}

.transport-card--commercial { --transport-accent: #9d1f62; }
.transport-card--equipment { --transport-accent: var(--aefin-navy-800); }
.transport-card--moto { --transport-accent: #51264f; }

.transport-card:hover {
    background: var(--aefin-white);
    border-color: rgba(217, 20, 107, .30);
    box-shadow: 0 18px 42px rgba(16, 29, 51, .10);
    transform: none !important;
}

.transport-card__meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 27px;
}

.transport-card__meta span {
    color: var(--transport-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.transport-card__meta i {
    align-items: center;
    background: var(--aefin-navy-900);
    border-radius: 12px;
    color: var(--aefin-white);
    display: flex;
    font-size: 18px;
    height: 43px;
    justify-content: center;
    width: 43px;
}

.transport-card h3 {
    font-size: 21px;
    margin-bottom: 11px;
}

.transport-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 23px;
}

.transport-card__link {
    color: var(--aefin-pink-dark);
    font-size: 13px;
    font-weight: 800;
}

.transport-card__link:hover {
    color: var(--aefin-navy-900);
}

.process-section {
    background: var(--aefin-navy-950);
    overflow: hidden;
    position: relative;
}

.process-section::before {
    background: radial-gradient(circle, rgba(255, 47, 141, .24), transparent 65%);
    content: "";
    height: 520px;
    position: absolute;
    right: -170px;
    top: -250px;
    width: 520px;
}

.process-section .section-heading h2,
.process-section .section-heading p {
    color: var(--aefin-white);
}

.process-section .section-heading p {
    opacity: .7;
}

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

.process-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--aefin-radius);
    min-height: 260px;
    padding: 30px;
}

.process-card > span {
    color: var(--aefin-pink);
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 38px;
}

.process-card h3 {
    color: var(--aefin-white);
    font-size: 20px;
}

.process-card p {
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    margin: 0;
}

.about-section {
    background: var(--aefin-surface);
}

.about-media {
    margin-right: 35px;
    position: relative;
}

.about-media::before {
    border: 2px solid var(--aefin-pink);
    border-radius: var(--aefin-radius);
    content: "";
    inset: 22px -22px -22px 22px;
    position: absolute;
}

.about-media img {
    border-radius: var(--aefin-radius);
    box-shadow: var(--aefin-shadow);
    display: block;
    position: relative;
    width: 100%;
}

.about-media__badge {
    background: var(--aefin-white);
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 12px 35px rgba(16, 29, 51, .15);
    color: var(--aefin-navy-900);
    font-size: 14px;
    font-weight: 800;
    left: 24px;
    padding: 12px 19px;
    position: absolute;
}

.about-media__badge i {
    color: var(--aefin-pink-dark);
    margin-right: 7px;
}

.about-copy {
    padding-left: 35px;
}

.check-list {
    list-style: none;
    margin: 28px 0 32px;
    padding: 0;
}

.check-list li {
    color: var(--aefin-ink);
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    align-items: center;
    background: var(--aefin-pink-soft);
    border-radius: 50%;
    color: var(--aefin-pink-dark);
    content: "✓";
    display: flex;
    font-size: 11px;
    font-weight: 800;
    height: 20px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 3px;
    width: 20px;
}

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

.benefit-card {
    padding: 36px;
}

.benefit-card i {
    color: var(--aefin-pink-dark);
    font-size: 28px;
    margin-bottom: 28px;
}

.benefit-card h3 {
    font-size: 21px;
}

.benefit-card p {
    margin: 0;
}

.faq-preview {
    background: linear-gradient(135deg, var(--aefin-blue-soft), var(--aefin-pink-soft));
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--aefin-radius-sm);
    padding: 24px 27px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    margin: 0;
}

.cta-band {
    background: var(--aefin-navy-900);
    padding: 52px 0;
}

.cta-band__inner {
    align-items: center;
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.cta-band__inner span {
    color: rgba(255, 255, 255, .63);
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.cta-band__inner h2 {
    color: var(--aefin-white);
    font-size: clamp(27px, 4vw, 40px);
    margin: 0;
}

/* Inner pages */
.inner-hero {
    background: var(--aefin-navy-950);
    overflow: hidden;
    padding: 82px 0 88px;
    position: relative;
}

.inner-hero::after {
    background: radial-gradient(circle, rgba(255, 47, 141, .28), transparent 67%);
    content: "";
    height: 530px;
    position: absolute;
    right: -80px;
    top: -275px;
    width: 530px;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero__crumbs {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.inner-hero__crumbs a {
    color: rgba(255, 255, 255, .82);
}

.inner-hero__crumbs span {
    color: var(--aefin-pink);
    margin: 0 8px;
}

.inner-hero h1 {
    color: var(--aefin-white);
    font-size: clamp(38px, 5vw, 62px);
    margin-bottom: 18px;
    max-width: 820px;
}

.inner-hero p {
    color: rgba(255, 255, 255, .70);
    font-size: 18px;
    margin: 0;
    max-width: 720px;
}

.inner-page {
    background: var(--aefin-surface);
    padding: 90px 0 110px;
}

.intro-note {
    background: var(--aefin-white);
    border: 1px solid var(--aefin-line);
    border-left: 4px solid var(--aefin-pink);
    border-radius: var(--aefin-radius-sm);
    margin-bottom: 35px;
    padding: 24px 28px;
}

.intro-note p {
    margin: 0;
}

.object-grid,
.condition-grid,
.doc-grid,
.faq-grid,
.guide-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.object-card,
.condition-card,
.doc-card,
.faq-card,
.guide-card,
.content-card {
    padding: 36px;
}

.object-card {
    min-height: 340px;
    scroll-margin-top: 130px;
}

.object-card__icon,
.doc-card__icon {
    align-items: center;
    background: var(--aefin-pink-soft);
    border-radius: 17px;
    color: var(--aefin-pink-dark);
    display: flex;
    font-size: 25px;
    height: 62px;
    justify-content: center;
    margin-bottom: 28px;
    width: 62px;
}

.object-card p,
.condition-card p,
.doc-card p,
.faq-card p,
.guide-card p {
    margin-bottom: 18px;
}

.plain-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.plain-list li {
    border-top: 1px solid var(--aefin-line);
    color: var(--aefin-ink);
    font-size: 14px;
    padding: 12px 0 12px 22px;
    position: relative;
}

.plain-list li::before {
    background: var(--aefin-pink);
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 2px;
    position: absolute;
    top: 21px;
    width: 6px;
}

.condition-card > span,
.faq-card > span {
    color: var(--aefin-pink-dark);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.condition-card h2,
.doc-card h2,
.faq-card h2,
.guide-card h2,
.content-card h2 {
    font-size: 25px;
}

.steps-list {
    counter-reset: leasing-step;
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.steps-list li {
    align-items: flex-start;
    counter-increment: leasing-step;
    display: flex;
    gap: 15px;
}

.steps-list li::before {
    align-items: center;
    background: var(--aefin-navy-900);
    border-radius: 50%;
    color: var(--aefin-white);
    content: counter(leasing-step);
    display: flex;
    flex: 0 0 31px;
    font-size: 12px;
    font-weight: 800;
    height: 31px;
    justify-content: center;
}

.bank-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
}

.bank-card {
    background: var(--aefin-white);
    border: 1px solid var(--aefin-line);
    border-radius: var(--aefin-radius);
    box-shadow: var(--aefin-shadow);
    overflow: hidden;
}

.bank-card__head {
    background: var(--aefin-navy-900);
    padding: 28px 34px;
}

.bank-card__head h2,
.bank-card__head p {
    color: var(--aefin-white);
}

.bank-card__head h2 {
    font-size: 27px;
    margin-bottom: 8px;
}

.bank-card__head p {
    margin: 0;
    opacity: .65;
}

.bank-details {
    margin: 0;
    padding: 10px 34px 24px;
}

.bank-row {
    border-bottom: 1px solid var(--aefin-line);
    display: grid;
    gap: 20px;
    grid-template-columns: 42% 1fr;
    padding: 18px 0;
}

.bank-row:last-child {
    border-bottom: 0;
}

.bank-row dt {
    color: var(--aefin-muted);
    font-size: 13px;
    font-weight: 700;
}

.bank-row dd {
    color: var(--aefin-navy-900);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    overflow-wrap: anywhere;
}

.safety-note {
    background: linear-gradient(145deg, var(--aefin-pink-soft), var(--aefin-blue-soft));
    border-radius: var(--aefin-radius);
    padding: 34px;
}

.safety-note i {
    color: var(--aefin-pink-dark);
    font-size: 30px;
    margin-bottom: 24px;
}

.safety-note h2 {
    font-size: 24px;
}

.safety-note .plain-list li {
    border-color: rgba(16, 29, 51, .10);
}

.guide-card__image {
    border-radius: 18px;
    height: 230px;
    margin: -18px -18px 28px;
    object-fit: cover;
    width: calc(100% + 36px);
}

.guide-card .guide-label {
    color: var(--aefin-pink-dark);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.page-cta {
    align-items: center;
    background: var(--aefin-navy-900);
    border-radius: var(--aefin-radius);
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 38px 42px;
}

.page-cta h2,
.page-cta p {
    color: var(--aefin-white);
}

.page-cta h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-cta p {
    margin: 0;
    opacity: .67;
}

/* Contacts */
.contacts-page {
    background: var(--aefin-surface);
    padding: 90px 0 110px;
}

.contacts-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.contacts-panel,
.contacts-form-card,
.contacts-map-card {
    background: var(--aefin-white);
    border: 1px solid var(--aefin-line);
    border-radius: var(--aefin-radius);
    box-shadow: 0 14px 42px rgba(16, 29, 51, .07);
}

.contacts-panel,
.contacts-form-card {
    padding: 38px;
}

.contacts-panel h2,
.contacts-form-card h2 {
    font-size: 29px;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 28px;
}

.contact-method {
    align-items: flex-start;
    background: var(--aefin-surface);
    border-radius: var(--aefin-radius-sm);
    display: flex;
    gap: 15px;
    padding: 18px;
}

.contact-method > i {
    color: var(--aefin-pink-dark);
    font-size: 19px;
    margin-top: 3px;
    width: 22px;
}

.contact-method span {
    color: var(--aefin-muted);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.contact-method a,
.contact-method strong {
    color: var(--aefin-navy-900);
    font-size: 15px;
    font-weight: 700;
}

.contact-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.contact-form-grid .form-group--wide {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--aefin-navy-900);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
}

.form-control {
    background: var(--aefin-surface);
    border: 1px solid var(--aefin-line);
    border-radius: 12px;
    color: var(--aefin-ink);
    font-size: 15px;
    min-height: 50px;
    padding: 12px 15px;
}

textarea.form-control {
    min-height: 122px;
    resize: vertical;
}

.form-control:focus {
    background: var(--aefin-white);
    border-color: var(--aefin-pink);
    box-shadow: 0 0 0 3px rgba(255, 47, 141, .12);
}

.aefin-captcha {
    margin-bottom: 18px;
}

.aefin-captcha__row {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 190px minmax(92px, 1fr) auto;
}

.aefin-captcha__image {
    background: var(--aefin-surface);
    border: 1px solid var(--aefin-line);
    border-radius: 12px;
    display: block;
    height: var(--aefin-button-height);
    min-height: var(--aefin-button-height);
    object-fit: cover;
    width: 190px;
}

.aefin-captcha__input {
    font-size: 20px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    height: var(--aefin-button-height);
    letter-spacing: .16em;
    min-height: var(--aefin-button-height);
    text-align: center;
}

.aefin-captcha__refresh {
    background: var(--aefin-white);
    gap: 7px;
    height: var(--aefin-button-height);
    min-height: var(--aefin-button-height);
    white-space: nowrap;
}

.aefin-captcha__refresh:disabled {
    cursor: wait;
    opacity: .62;
}

.aefin-captcha__hint {
    color: var(--aefin-muted);
    display: block;
    font-size: 12px;
    margin-top: 7px;
}

.form-note,
.form-status {
    font-size: 12px;
    line-height: 1.55;
}

.form-status {
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 0;
}

.form-status.is-success,
.form-status.is-error {
    padding: 10px 12px;
}

.form-status.is-success {
    background: #edf9f2;
    color: #146c3b;
}

.form-status.is-error {
    background: #fff0f2;
    color: #a21b36;
}

.contacts-map-card {
    margin-top: 28px;
    overflow: hidden;
    padding: 8px;
}

#map {
    border-radius: 18px;
    height: 430px;
    overflow: hidden;
    width: 100%;
}

/* Modal */
.leasing-modal .modal-dialog {
    max-width: 570px;
}

.leasing-modal .modal-content {
    border: 0;
    border-radius: var(--aefin-radius);
    box-shadow: 0 30px 90px rgba(11, 22, 40, .32);
    overflow: hidden;
}

.leasing-modal .modal-header {
    align-items: flex-start;
    background: var(--aefin-navy-900);
    border: 0;
    padding: 30px 34px 24px;
}

.leasing-modal .modal-kicker {
    color: var(--aefin-pink);
    margin-bottom: 8px;
}

.leasing-modal .modal-title {
    color: var(--aefin-white);
    font-size: 29px;
    margin: 0;
}

.leasing-modal .close {
    color: var(--aefin-white);
    font-size: 31px;
    opacity: .75;
    text-shadow: none;
}

.leasing-modal .modal-body {
    padding: 30px 34px 34px;
}

/* Footer */
.footer {
    background: var(--aefin-navy-950);
}

.footer .footer-top {
    background: transparent;
    padding: 75px 0 60px;
}

.footer .single-footer {
    margin: 0;
}

.footer-brand-logo {
    background: var(--aefin-white);
    border-radius: 13px;
    display: inline-flex;
    margin-bottom: 23px;
    max-width: 290px;
    padding: 10px 13px;
}

.footer-brand-logo img {
    height: auto;
    width: 100%;
}

.footer .single-footer p,
.footer .footer-legal-name {
    color: rgba(255, 255, 255, .63);
    font-size: 14px;
    line-height: 1.7;
}

.footer .footer-legal-name {
    color: var(--aefin-white);
    display: block;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.footer .single-footer h2 {
    color: var(--aefin-white);
    font-size: 20px;
    margin-bottom: 27px;
    padding: 0;
}

.footer .single-footer h2::before {
    display: none;
}

.footer-contacts ul,
.footer-links-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contacts li {
    align-items: flex-start;
    color: rgba(255, 255, 255, .68);
    display: flex;
    font-size: 13px;
    gap: 10px;
    margin-bottom: 13px;
}

.footer-contacts li i {
    color: var(--aefin-pink);
    margin-top: 4px;
    width: 14px;
}

.footer-contacts li a {
    color: rgba(255, 255, 255, .75);
}

.footer-telegram-bot {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 47, 141, .34);
    border-radius: 14px;
    color: var(--aefin-white);
    display: flex;
    gap: 12px;
    margin-top: 18px;
    max-width: 330px;
    padding: 12px 14px;
    transition: background-color .2s ease, border-color .2s ease;
}

.footer-telegram-bot:hover,
.footer-telegram-bot:focus {
    background: rgba(255, 47, 141, .12);
    border-color: var(--aefin-pink);
    color: var(--aefin-white);
}

.footer-telegram-bot__icon {
    align-items: center;
    background: var(--aefin-pink);
    border-radius: 50%;
    color: var(--aefin-white);
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.footer-telegram-bot__icon i {
    font-size: 17px;
}

.footer-telegram-bot__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.footer-telegram-bot__copy small {
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-telegram-bot__copy strong {
    color: var(--aefin-white);
    font-size: 14px;
    font-weight: 800;
}

.footer-telegram-bot__arrow {
    color: rgba(255, 255, 255, .54);
    margin-left: auto;
}

.footer-links-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.footer .f-link ul li {
    margin-bottom: 10px;
}

.footer .f-link ul li a {
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    padding: 0;
}

.footer .f-link ul li a:hover {
    color: var(--aefin-pink);
    padding: 0;
}

.footer .copyright {
    background: #07101e;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
    text-align: center;
}

.footer .copyright p {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    margin: 0;
}

#scrollUp {
    align-items: center;
    background: var(--aefin-pink);
    border-radius: 50%;
    bottom: 26px;
    color: var(--aefin-white);
    display: flex;
    height: 46px;
    justify-content: center;
    right: 26px;
    width: 46px;
}

@media (max-width: 1199px) {
    .brand-logo img { max-width: 240px; }
    .header .nav li { margin-right: 14px; }
    .header .nav li a { font-size: 13px; }
    .header .get-quote .btn { padding-left: var(--aefin-button-padding-x); padding-right: var(--aefin-button-padding-x); }
    .leasing-grid { grid-template-columns: repeat(2, 1fr); }
    .transport-showcase { grid-template-columns: minmax(285px, .75fr) minmax(0, 1.4fr); }
    .transport-feature { padding: 38px 34px; }
    .transport-card { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 991px) {
    .section { padding: 76px 0; }
    .header .topbar { display: none; }
    .header .header-inner,
    .header .inner { min-height: 82px; }
    .header .logo { position: relative; z-index: 20; }
    .brand-logo { height: 80px; max-width: 255px; }
    .header .main-menu,
    .header .get-quote { display: none; }
    .header .mobile-nav { display: block; }
    .slicknav_menu { background: transparent; padding: 0; }
    .slicknav_btn { background: var(--aefin-navy-900); border-radius: 10px; margin: 21px 0 0; padding: 11px; }
    .slicknav_nav { background: var(--aefin-white); border: 1px solid var(--aefin-line); border-radius: 16px; box-shadow: var(--aefin-shadow); padding: 10px; position: absolute; right: 15px; top: 70px; width: min(330px, calc(100vw - 30px)); }
    .slicknav_nav a { border-radius: 9px; color: var(--aefin-navy-900); font-weight: 700; margin: 0; padding: 11px 13px; }
    .slicknav_nav a:hover { background: var(--aefin-pink-soft); color: var(--aefin-pink-dark); }
    .slider .single-slider { height: 500px; min-height: 0; }
    .slider .single-slider::before { background: rgba(255, 255, 255, .5); content: ""; display: block; inset: 0; position: absolute; }
    .legacy-home-hero .single-slider .text { margin-top: 90px; }
    .hero-copy { max-width: 620px; padding: 35px; }
    .trust-grid { grid-template-columns: 1fr; margin-top: -32px; }
    .trust-card { min-height: 0; }
    .trust-card + .trust-card { border-left: 0; border-top: 1px solid var(--aefin-line); }
    .leasing-section { padding-top: 95px; }
    .transport-heading { align-items: start; gap: 20px; grid-template-columns: 1fr; }
    .transport-heading > p { max-width: 620px; }
    .transport-showcase { grid-template-columns: 1fr; }
    .transport-feature { min-height: 390px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .about-media { margin: 0 22px 65px 0; }
    .about-copy { padding-left: 0; }
    .bank-layout,
    .contacts-layout { grid-template-columns: 1fr; }
    .footer .single-footer { margin-bottom: 38px; }
}

@media (max-width: 767px) {
    body { font-size: 15px; }
    .section { padding: 64px 0; }
    .section-heading { margin-bottom: 30px; }
    .brand-logo { max-width: 220px; }
    .slider .single-slider { background-position: 62% center; height: 460px; min-height: 0; }
    .legacy-home-hero .single-slider .text { margin-top: 72px; }
    .legacy-home-hero .single-slider h1 { font-size: 30px; line-height: 1.18; }
    .legacy-home-hero .single-slider p { font-size: 16px; line-height: 1.55; margin-top: 20px; }
    .legacy-home-hero .single-slider .button { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
    .legacy-home-hero .single-slider .btn { margin: 0; }
    .schedule .single-schedule { margin-bottom: 25px; }
    .schedule .single-schedule .inner { min-height: 0; }
    .hero-copy { background: rgba(255, 255, 255, .89); padding: 27px 23px; }
    .hero-copy h1 { font-size: 38px; }
    .hero-copy p { font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .aefin-btn { width: 100%; }
    .hero-slider .owl-nav { display: none; }
    .trust-card { padding: 27px 23px; }
    .leasing-grid,
    .process-grid,
    .benefit-grid,
    .object-grid,
    .condition-grid,
    .doc-grid,
    .faq-grid,
    .guide-grid { grid-template-columns: 1fr; }
    .leasing-card { min-height: 295px; }
    .transport-heading { margin-bottom: 30px; }
    .transport-heading > p { font-size: 15px; }
    .transport-feature { min-height: 400px; padding: 34px 26px; }
    .transport-feature__label { margin-bottom: 35px; }
    .transport-feature::after { left: 26px; }
    .transport-catalog { grid-template-columns: 1fr; }
    .transport-card { min-height: 235px; padding: 27px 24px 24px; }
    .transport-card::before { left: 24px; }
    .process-card { min-height: 225px; }
    .about-media::before { display: none; }
    .about-media { margin-right: 0; }
    .cta-band__inner,
    .page-cta { align-items: flex-start; flex-direction: column; }
    .cta-band__inner .aefin-btn,
    .page-cta .aefin-btn { width: 100%; }
    .inner-hero { padding: 65px 0 70px; }
    .inner-page,
    .contacts-page { padding: 65px 0 80px; }
    .object-card,
    .condition-card,
    .doc-card,
    .faq-card,
    .guide-card,
    .content-card,
    .contacts-panel,
    .contacts-form-card { padding: 27px 23px; }
    .bank-card__head,
    .bank-details,
    .safety-note { padding-left: 23px; padding-right: 23px; }
    .bank-row { gap: 7px; grid-template-columns: 1fr; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form-grid .form-group--wide { grid-column: auto; }
    .aefin-captcha__row { grid-template-columns: minmax(92px, 1fr) auto; }
    .aefin-captcha__image { grid-column: 1 / -1; }
    .page-cta { padding: 30px 25px; }
    .footer .footer-top { padding: 58px 0 35px; }
    .footer .footer-legal-name { white-space: normal; }
    .leasing-modal .modal-header,
    .leasing-modal .modal-body { padding-left: 23px; padding-right: 23px; }
}

@media (max-width: 420px) {
    .brand-logo { max-width: 190px; }
    .legacy-home-hero .single-slider h1 { font-size: 27px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
