/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; margin: 0; background: #111; }
main { display: block; margin: 0; }
body {
    margin: 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.625;
    color: #333;
    background: #fff;
}
a { color: #ee6630; text-decoration: none; transition: color .15s; }
a:hover { color: #c7511f; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.4em; }
.container { max-width: 1170px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
em.rub { font-style: normal; }

h1, h2, h3 { color: #333; line-height: 1.3; font-weight: 700; }
h1 { font-size: 28px; margin: 0 0 18px; }
h2 { font-size: 22px; margin: 28px 0 12px; }
h3 { font-size: 18px; margin: 22px 0 10px; }
p  { margin: 0 0 14px; }


/* ============================================================
   HEADER
   ============================================================ */
header {
    background: transparent;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background 0.35s;
}
header.scrolled {
    background: #2b2b2b;
}
header:not(.scrolled) .header-address { color: rgba(255,255,255,0.65); }
header:not(.scrolled) .nav > li > a { color: rgba(255,255,255,0.85); }
.header-inner {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 26px;
    row-gap: 4px;
    padding: 12px 24px;
    position: relative;
}

/* Logo */
.logo {
    grid-column: 1;
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-img {
    height: 72px;
    width: auto;
    display: block;
    border-radius: 4px;
}
.logo:hover { opacity: .85; }

/* Phone in header */
.header-phone {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}
.header-phone:hover { color: #ee6630; }
.phone-icon { width: 22px; height: 22px; flex-shrink: 0; fill: white; }

/* Nav */
nav { grid-column: 3; grid-row: 2; justify-self: end; }
.nav {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav > li { position: relative; }
.nav > li > a {
    display: block;
    padding: 8px 12px;
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
    transition: color .15s;
    white-space: nowrap;
}
.nav > li > a:hover { color: #fff; }
.nav .dropdown {
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background: #2b2b2b;
    border-top: 2px solid #ee6630;
    padding: 4px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    opacity: 0; visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 100;
}
.nav .has-dropdown:hover .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav .dropdown li a {
    display: block;
    padding: 9px 16px;
    color: #ccc;
    font-size: 14px;
    transition: color .12s, background .12s;
}
.nav .dropdown li a:hover { background: #3a3a3a; color: #fff; }

/* Address */
.header-address {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    font-size: 13px;
    font-weight: 300;
    color: #999;
    line-height: 1.4;
    white-space: nowrap;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none; border: 0;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}


/* ============================================================
   FLOATING SERVICE BUTTON
   ============================================================ */
.service-btn {
    position: fixed;
    bottom: 24px; right: 24px;
    background: #ee6630;
    color: #fff;
    padding: 11px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    z-index: 190;
    box-shadow: 0 4px 14px rgba(238,102,48,.45);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .15s, transform .12s;
    text-decoration: none;
}
.service-btn svg { width: 18px; height: 14px; flex-shrink: 0; fill: white; }
.service-btn:hover { background: #c7511f; color: #fff; transform: translateY(-1px); }


/* ============================================================
   PROMO SLIDER
   ============================================================ */
.promo {
    position: relative;
    overflow: hidden;
    background: #1b1d21;
    color: #fff;
    min-height: 100vh;
}
.slide {
    position: absolute; inset: 0;
    display: none;
    height: 100vh;
    overflow: hidden;
}
.slide.active { display: block; }

.slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center right;
    z-index: 0;
}
.slide-bg-1 {
    background: linear-gradient(90deg, #111 0%, #1e1e1e 55%, #2d2d2d 100%);
}
.slide-bg-2 {
    background: linear-gradient(90deg, #111 0%, #1e1e1e 55%, #2d2d2d 100%);
}

/* Photo — right 60% of slide */
.slide-photo {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 60%;
    z-index: 1;
    overflow: hidden;
}
.slide-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #111 0%, transparent 50%);
    z-index: 2;
}
.slide-photo-1 { background: url('../img/c2fc43ec7de7017237892e5f518dfc41.png') top left/cover no-repeat; }
.slide-photo-2 { background: url('../img/c2fc43ec7de7017237892e5f518dfc41.png') top left/cover no-repeat; }

.slide-inner {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 0 60px;
}
.slide-content { max-width: 520px; }
.slide-content .title {
    font-size: 80px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    position: relative;
    left: -4px;
    padding-bottom: 42px;
    margin: 0;
}
.slide-content .teaser {
    font-size: 24px;
    line-height: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 41px;
    position: relative;
    left: -4px;
}
.slide-cta {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 0 29px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    line-height: 44px;
    border: 1px solid #e94f20;
    cursor: pointer;
    transition: background .3s;
    text-decoration: none;
    margin-right: 34px;
    position: relative;
    overflow: hidden;
    vertical-align: top;
}
.btn span { position: relative; z-index: 1; }
.btn::before, .btn::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: #e94f20;
    transition: .3s;
    z-index: 0;
}
.btn::before {
    transform: rotateZ(45deg) translateY(-100px) translateX(-103px);
    left: -200px;
}
.btn::after {
    transform: rotateZ(-45deg) translateY(-7px);
    right: -200px;
}
.btn:hover::before { left: -110px; }
.btn:hover::after  { right: -100px; }
.btn:hover { color: #fff; background: transparent; }

.terms {
    display: inline-block;
    position: relative;
    padding-left: 41px;
    font-weight: 300;
    vertical-align: top;
}
.terms::before {
    content: '';
    position: absolute;
    top: 7px; left: 0;
    width: 1px; height: 54px;
    background: #323438;
}
.terms-time {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #626365;
}
.terms-price {
    display: block;
    font-size: 42px;
    line-height: 1.1;
    color: #ee6630;
    font-weight: 300;
}

/* Promo arrows — flow below .slide-cta inside .slide-content */
.promo-arrows {
    display: flex;
    gap: 0;
    margin-top: 28px;
}
.nav-arrow {
    width: 50px; height: 50px;
    position: relative;
    display: inline-block;
    padding: 0;
    text-decoration: none;
    color: transparent;
    font-size: 0;
}
.nav-arrow::before {
    content: '';
    position: absolute;
    width: 17px; height: 17px;
    border-style: solid;
    border-color: #ee6630;
    border-width: 2px 2px 0 0;
    top: 50%; left: 50%;
}
.nav-arrow.js-slide-prev::before {
    transform: translate(-30%, -50%) rotateZ(-135deg);
}
.nav-arrow.js-slide-next::before {
    transform: translate(-70%, -50%) rotateZ(45deg);
}


/* ============================================================
   SLIDE ANIMATIONS
   ============================================================ */
@keyframes slidePhotoIn {
    from { transform: translateX(50px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideContentIn {
    from { transform: translateY(28px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.slide.active .slide-photo {
    animation: slidePhotoIn 0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.slide.active .slide-content {
    animation: slideContentIn 0.65s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s both;
}

/* ============================================================
   BEST COMPANY
   ============================================================ */
.best-company {
    background: #fff;
    padding-top: 140px;
    padding-bottom: 0;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
}
.bc-counter-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 46px;
}
.counter {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    position: relative;
}
.counter .digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 101px;
    font-size: 72px;
    font-weight: 300;
    line-height: 101px;
    color: #333;
    background: #fff;
    border: 1px solid #d7d8da;
    border-radius: 4px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}
.counter .digit::after {
    content: "";
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(0,0,0,.06);
}
.bc-title {
    font-size: 40px;
    font-weight: 300;
    color: #333;
    text-align: center;
    line-height: 1;
}
.bc-title span {
    color: #888;
    font-size: 30px;
    display: block;
    padding-top: 11px;
}

.advantages {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 40px;
    padding-top: 66px;
    padding-bottom: 190px;
    font-size: 18px;
    line-height: 24px;
}
.advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #555;
    min-width: 90px;
}
.adv-icon {
    width: 80px; height: 80px;
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
}
.adv-icon svg { width: 60px; height: 60px; }


/* ============================================================
   NEXT CHECK CALCULATOR
   ============================================================ */
.next-check {
    padding-top: 90px;
    padding-bottom: 0;
    background: #ebeded;
}
.section-title {
    font-size: 40px;
    font-weight: 300;
    color: #333;
    margin: 0 0 54px;
    line-height: 48px;
    padding-left: 22px;
}

.form-and-calendar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 62px;
}
.form-container {
    background: #fff;
    border-radius: 4px;
    padding: 22px 24px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.field-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Radio buttons */
.form-group { margin-bottom: 18px; }
.radios { display: flex; gap: 24px; flex-wrap: wrap; }
.radio-label {
    display: flex; align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}
.radio-label input[type="radio"] { display: none; }
.radio-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: border-color .15s;
}
.radio-label input[type="radio"]:checked + .radio-dot {
    border-color: #ee6630;
    background: #ee6630;
    box-shadow: inset 0 0 0 3px #fff;
}

.date-input-wrap { position: relative; }
.date-input-wrap input[type="text"] {
    width: 100%;
    padding: 11px 42px 11px 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
    background: #fff;
    color: #333;
    transition: border-color .15s;
    font-family: inherit;
}
.date-input-wrap input[type="text"]:focus {
    outline: 0;
    border-color: #ee6630;
}
.date-icon {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    pointer-events: none;
}

/* Calendar widget — matches original 479×344 PNG */
.calendar-container { display: flex; justify-content: flex-start; }
.calendar {
    display: block;
    position: relative;
    width: 479px;
    height: 344px;
    margin: -30px 0 -3px 47px;
    background: url('../img/calendar.png') 0 0 no-repeat;
    transform-origin: left center;
}
.cal-badge {
    position: absolute;
    top: -14px; right: -18px;
    width: 115px; height: 115px;
    background: #ee6630;
    color: #fff;
    border-radius: 50%;
    font-weight: 300;
    text-align: center;
    line-height: 24px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cal-badge span {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    padding: 0 10px;
    font-weight: 300;
}
.cal-frame { display: none; }
.cal-bg-img { display: none; }
.cal-digits-overlay {
    position: absolute;
    top: 0; left: 0;
    padding: 38px 44px 0;
    display: flex;
    gap: 0;
}
.cal-digits-overlay span {
    display: inline-block;
    width: 187px;
    padding-left: 11px;
    font-size: 116px;
    font-weight: 400;
    line-height: 184px;
    text-align: center;
    color: #2b2b2b;
}
.cal-date {
    position: absolute;
    bottom: 64px;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}
.cal-date .js-cal-month {
    display: inline-block;
    width: 236px;
    text-align: right;
}
.cal-sep { margin-left: -7px; }

/* Result */
.result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    padding-bottom: 64px;
    top: -53px;
}
.result::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: #d4d6d7;
    grid-column: 1 / -1;
}
.result-text { padding-top: 32px; }
.result .text.success {
    font-size: 29px;
    line-height: 40px;
    font-weight: 300;
    color: #333;
    padding-left: 29px;
    letter-spacing: -0.5px;
}
.result .text.success strong { color: #ee6630; font-weight: 400; }
.result .text.overdue {
    font-size: 29px;
    line-height: 40px;
    font-weight: 300;
    color: #ee6630;
    padding-left: 29px;
}
.remind-me-form {
    position: relative;
    padding-top: 35px;
    padding-left: 71px;
}
.remind-me-form .field-label {
    padding-bottom: 9px;
    font-weight: 400;
    color: #555;
    font-size: 14px;
}
.remind-me-form form { display: flex; gap: 0; align-items: center; }
.remind-me-form input[type="text"] {
    width: 260px;
    height: 60px;
    padding: 0 20px;
    font-size: 20px;
    line-height: 60px;
    font-weight: 300;
    border: none;
    border-radius: 0;
    font-family: inherit;
    background: #fff;
    color: #333;
}
.remind-me-form input[type="text"]:focus { outline: none; box-shadow: none; }
.remind-me-form input[type="text"]::placeholder { color: rgba(0,0,0,.4); font-weight: 300; }
.remind-me-form button {
    display: inline-block;
    width: 92px;
    height: 60px;
    margin-left: 16px;
    color: #fff;
    background: #ee6630;
    border: 2px solid #ee6630;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    transition: .125s;
    overflow: hidden;
}
.remind-me-form button:hover { color: #ee6630; background: #fff; }
.remind-hint {
    margin-top: 10px;
    padding-right: 80px;
    font-size: 12px;
    line-height: 20px;
    color: #888;
}
.error-container {
    color: #ee6630;
    font-size: 12px;
    margin-top: 6px;
}
.error-container.hidden { display: none; }


/* ============================================================
   ECONOMY
   ============================================================ */
.economy {
    padding-bottom: 133px;
    background: #697b81;
    color: #fff;
    overflow: hidden;
}
.economy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.econ-title {
    padding-top: 90px;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    line-height: 48px;
    margin-bottom: 0;
    letter-spacing: -0.2px;
}
.switch-container {
    padding-top: 48px;
    font-size: 30px;
    line-height: 56px;
    font-weight: 300;
    color: #fff;
}
.switch-container span {
    display: inline-block;
    position: relative;
    padding: 0 7px;
    font-weight: normal;
}
.switch-container span .switch {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    left: calc(50% - 25px);
    cursor: pointer;
}
.switch-container span .switch::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    border-style: solid;
    border-color: #fff;
    border-width: 2px 2px 0 0;
    left: calc(50% - 8px);
}
.switch-container span .switch:focus { outline: none; }
.switch-container span .switch.up { top: -50px; }
.switch-container span .switch.up::after {
    transform: translateY(34px) rotateZ(-45deg);
    animation: people-up 3s ease 1s infinite both;
}
.switch-container span .switch.down { bottom: -90px; }
.switch-container span .switch.down::after {
    transform: translateY(-34px) rotateZ(135deg);
    animation: people-down 3s ease 2s infinite both;
}
@keyframes people-up {
    0%   { opacity: 0; transform: translateY(44px) rotateZ(-45deg); }
    30%  { opacity: 1; }
    60%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(34px) rotateZ(-45deg); }
}
@keyframes people-down {
    0%   { opacity: 0; transform: translateY(-44px) rotateZ(135deg); }
    30%  { opacity: 1; }
    60%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-34px) rotateZ(135deg); }
}
.group-label {
    font-weight: 300;
    color: #fff;
    font-size: 30px;
    line-height: 56px;
    padding: 0;
}

.economy-right {
    position: relative;
    padding-top: 98px;
    padding-left: 100px;
    overflow: visible;
}
.econ-slide { display: none; }
.econ-slide.active { display: block; }
.econ-info {
    position: relative;
    padding-left: 34px;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    color: #fff;
    margin-bottom: 20px;
}
.econ-info .water-icon {
    position: absolute;
    left: 0; top: 2px;
    width: 20px; height: 26px;
    flex-shrink: 0;
}
.econ-info span {
    display: block;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #ccc;
}
.econ-figure {
    position: relative;
    width: 455px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: contain;
}
.econ-visual-1 { background-image: url('../img/6f3bba6b768ee613c6ac0af8c87cabad.png'); }
.econ-visual-2 { background-image: url('../img/306bdb701c5e846fd84bca6baf38835b.png'); }
.econ-visual-3 { background-image: url('../img/0c1cd7f0bd7e8cc42947a69b24f8c471.png'); }
.econ-sum {
    position: absolute;
    top: -17px; right: -50px;
    width: 213px; height: 213px;
    background: #ee6630;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 46px;
    font-weight: 300;
    color: #fff;
    box-shadow: 0 4px 20px rgba(238,102,48,.55);
    text-align: center;
    line-height: 1;
}


/* ============================================================
   RELIABLE SERVICE (long text)
   ============================================================ */
.reliable-service {
    background: #fff;
    padding: 87px 0 0;
}
.reliable-service .container {
    padding-bottom: 50px;
}
.breadcrumb { font-size: 13px; color: #999; margin-bottom: 6px; }
.breadcrumb a { color: #999; }
.reliable-service h1 { color: #333; }
.reliable-service h2 { color: #333; }
.reliable-service h3 { color: #333; }
.reliable-service a { color: #ee6630; }
.reliable-service a:hover { color: #c7511f; }
.reliable-service ul li { margin-bottom: 5px; }

/* Advantages cards */
.advantages-cards { margin: 32px 0; }
.advantages-cards h2 { text-align: center; margin-bottom: 26px; }
.cards-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    flex: 1;
    min-width: 100px;
    max-width: 160px;
}
.card-icon {
    width: 60px; height: 60px;
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 48px; height: 48px; }

/* How it works */
.how-it-work { margin: 34px 0; overflow: hidden; padding: 66px 0 62px; position: relative; }
.how-it-work h2 { text-align: center; margin-bottom: 30px; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
    padding-top: 159px;
}
.step-icon-wrap {
    position: absolute;
    top: 47px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 14px;
}
.step-icon {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 60px; height: 60px; }
.step-arrow {
    position: absolute;
    top: 100px;
    right: -18px;
    z-index: 1;
    pointer-events: none;
    font-size: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.step-arrow::before {
    content: "›";
    font-size: 24px;
    color: #ccc;
    line-height: 1;
}
.step-arrow-last { display: none; }
.step-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.35;
    text-align: center;
}
.step-hint {
    position: relative;
    font-size: 13px;
    color: #fff;
    background: #ee6630;
    padding: 12px 14px;
    margin-top: 18px;
    line-height: 1.45;
    border-radius: 2px;
    width: 100%;
    text-align: center;
}
.step-hint::before {
    content: "";
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ee6630;
}
.footnote {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    line-height: 1.5;
}

/* Price table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 8px;
    font-size: 14px;
}
.price-table th, .price-table td {
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    text-align: left;
    vertical-align: middle;
}
.price-table thead th {
    background: #ee6630;
    color: #fff;
    font-weight: 700;
    border-color: #d4561f;
}
.price-table tbody tr:nth-child(even) td { background: #fafafa; }
.price-table tbody td:last-child { white-space: nowrap; color: #333; }
.small-note { font-size: 11px; color: #999; margin-top: 4px; }

/* Districts heading */
.districts-title { font-size: 22px; margin-bottom: 12px; }
.districts { margin-bottom: 16px; line-height: 2; }
.districts a { color: #ee6630; font-weight: 600; margin-right: 4px; }
.districts a:hover { color: #c7511f; text-decoration: underline; }

/* Districts layout */
.districts-body {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 30px;
    align-items: start;
}
.districts-body { display: flex; align-items: center; gap: 0; }
.districts-body .post-tag { flex: 1; }
.districts-van { flex-shrink: 0; }
.districts-van-img { width: 440px; max-width: 100%; display: block; }

/* Post tags — chip/tag style matching original */
.post-tag {
    margin: 50px 0 35px;
    padding: 0;
    line-height: 1.8;
}
.post-tag a {
    background-color: #aaa;
    border-radius: 0 2px 2px 0;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    line-height: 13px;
    margin: 0 0 2px 10px;
    padding: 4px 7px 3px;
    position: relative;
    text-transform: uppercase;
    transition: 0.2s linear;
}
.post-tag a::before {
    border-top: 10px solid transparent;
    border-right: 8px solid #aaa;
    border-bottom: 10px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 0; left: -8px;
    width: 0;
    transition: 0.2s linear;
}
.post-tag a::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 4px;
    position: absolute;
    top: 8px; left: -2px;
    width: 4px;
}
.post-tag a:hover { background: #444; color: #fff; }
.post-tag a:hover::before { border-right-color: #444; }


/* ============================================================
   LEAVE REQUEST
   ============================================================ */
.leave-request {
    background: url('../img/bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 70px 0;
}
.lr-overlay {
    background-color: rgba(235, 237, 237, 0.95);
    padding: 40px 50px 0;
    margin: 0 auto;
    max-width: 480px;
    text-align: center;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
}
.lr-title {
    font-size: 32px;
    font-weight: 300;
    color: #003333;
    margin-bottom: 0;
    line-height: 1.2;
    padding-bottom: 34px;
}
.lr-select {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 34px;
    padding-top: 0;
    text-align: center;
}
.lr-select a {
    width: 55px; height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px; font-weight: 400;
    color: #033;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    transition: background .12s, color .12s, border-color .12s;
    text-decoration: none;
}
.lr-select a:hover { border-color: #ee6630; color: #033; }
.lr-select a.active { background: #ee6630; color: #fff; border-color: #ee6630; }
.lr-total {
    font-size: 22px;
    color: #003333;
    margin-bottom: 20px;
    font-weight: 300;
}
.lr-sep { color: #aaa; margin: 0 4px; }
.js-total-price { font-weight: 400; font-size: 22px; color: #ee6630; padding-left: 20px; }
.btn-orange, .btn.btn-primary {
    display: inline-block;
    background: #ee6630;
    color: #fff;
    padding: 12px 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    border-radius: 6px;
    border: 1px solid #ee6630;
    text-decoration: none;
    transition: background .15s;
    position: relative;
}
.btn-orange:hover, .btn.btn-primary:hover { background: #c7511f; border-color: #c7511f; color: #fff; }
.lr-btn-wrapper { padding: 29px 0 50px; }


/* ============================================================
   NEWS
   ============================================================ */
.news {
    padding: 90px 0 96px;
    background: #fff;
    border-top: 1px solid #ebebeb;
}
.news-heading {
    font-size: 42px;
    font-weight: 300;
    line-height: 52px;
    margin: 0 0 42px -2px;
    color: #333;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.entry {
    display: block;
    position: relative;
    padding-right: 50px;
    color: #141c25;
    text-decoration: none;
}
.entry:hover { opacity: .85; }
.entry .entry-title {
    font-weight: 600;
    color: #ee6630;
    margin-bottom: 0;
    padding-bottom: 16px;
    font-size: 18px;
    line-height: 28px;
}
.entry .entry-title span { text-decoration: underline; }
.entry:hover .entry-title span { text-decoration: none; }
.entry .teaser {
    color: #333;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 24px;
    margin: 0;
}
.entry .entry-date {
    color: #999;
    font-size: 14px;
    line-height: 36px;
    position: relative;
}
.entry .entry-date::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 25px; height: 2px;
    background: #e1e5e6;
}


/* ============================================================
   GO-TOP BUTTON
   ============================================================ */
.go-top {
    display: block;
    position: fixed;
    bottom: 180px; left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #141c25;
    z-index: 80;
    text-decoration: none;
}
.go-top:hover { color: #ee6630; text-decoration: none; }
.go-top span { opacity: .5; }
.go-top::before, .go-top::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 17px; height: 17px;
    border-style: solid;
    border-color: #ee6630;
    border-width: 2px 2px 0 0;
}
.go-top::before {
    opacity: .3;
    transform: translate(-50%, -37px) rotateZ(-45deg);
    animation: scrollme2 1s linear .1s infinite;
}
.go-top::after {
    transform: translate(-50%, -42px) rotateZ(-45deg);
    animation: scrollme1 1s linear 0s infinite;
}
@keyframes scrollme1 {
    0%   { opacity: 1; transform: translate(-50%, -42px) rotateZ(-45deg); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -52px) rotateZ(-45deg); }
}
@keyframes scrollme2 {
    0%   { opacity: .3; transform: translate(-50%, -37px) rotateZ(-45deg); }
    50%  { opacity: .3; }
    100% { opacity: 0; transform: translate(-50%, -47px) rotateZ(-45deg); }
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #2b2b2b;
    color: #999;
    padding: 36px 0;
    font-size: 14px;
}
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: #ee6630; text-decoration: none; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 30px;
}
.footer-phone-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    padding-left: 30px;
}
.footer-phone-icon {
    position: absolute;
    left: 0; top: 8px;
    width: 19px; height: 24px;
}
.footer-phone-link {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}
.footer-phone-link:hover { color: #ee6630; }
.footer-company { color: #777; font-size: 12px; line-height: 1.5; }
.footer-address-col {
    padding-top: 8px;
    padding-left: 40px;
    font-size: 14px;
    line-height: 20px;
}
.footer-disclaimer { color: #666; font-size: 12px; display: block; margin-top: 6px; }
.footer-copy-col {
    padding-top: 4px;
    padding-left: 31px;
    line-height: 26px;
    font-size: 12px;
    color: #999;
}
.footer-copy-col a { color: #fff; }
.footer-copy-col a:hover { color: #ee6630; }
.footer-dev { color: #666; font-size: 12px; }


/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 300;
    padding: 20px;
    animation: fadeIn .18s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
    background: #fff;
    border-radius: 4px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    animation: pop .2s ease-out;
    overflow: hidden;
}
@keyframes pop {
    from { transform: scale(.95); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.modal-header {
    background: #ee6630;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}
.modal-close {
    background: none; border: 0;
    font-size: 26px; line-height: 1;
    color: #fff; cursor: pointer;
    padding: 0; opacity: .85;
}
.modal-close:hover { opacity: 1; }
.modal-body { padding: 24px 24px 28px; }
.modal .form-group { margin-bottom: 16px; }
.modal .form-group label {
    display: block;
    font-weight: 400;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}
.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}
.modal .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ee6630' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.modal .form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus { outline: 0; border-color: #ee6630; }
.input-with-icon { position: relative; }
.input-with-icon input { padding-right: 54px; }
.input-icon-right {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    display: flex; align-items: center; gap: 4px;
    pointer-events: none;
}
.form-group--checkbox { margin-top: 6px; }
.modal-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}
.modal-checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #ee6630;
    cursor: pointer;
}
.modal-checkbox-label a { color: #ee6630; }
.form-error {
    background: #fef2ee;
    color: #c0392b;
    border: 1px solid #f5c6c0;
    padding: 8px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    font-size: 13px;
}
.btn-submit {
    width: 160px;
    display: block;
    margin: 20px auto 0;
    background: #ee6630;
    color: #fff;
    border: 0;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}
.btn-submit:hover { background: #c7511f; }

.modal-success { text-align: center; padding: 36px 30px; }
.success-check {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #4caf50;
    color: #fff;
    font-size: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.thanks { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 10px; }
.success-text { color: #666; font-size: 15px; }


/* ============================================================
   DISTRICTS section
   ============================================================ */
.reliable-service--districts {
    background: #f8f8f8;
    padding: 44px 0;
    border-top: 1px solid #ebebeb;
}
.reliable-service--districts .container {
    background-image: none !important;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .header-address { display: none; }
    .header-inner { grid-template-rows: auto; }
    nav { grid-row: 1; align-self: center; }
    .logo, .header-phone { grid-row: 1; }
    .econ-figure { width: 320px; height: 280px; }
    .econ-sum { width: 150px; height: 150px; font-size: 34px; right: -30px; }
    .calendar { transform: scale(.8); }
}

@media (max-width: 990px) {
    .calendar { transform: scale(.7); margin-left: 0; }
    .economy-right { padding-left: 20px; }
    .econ-figure { width: 260px; height: 230px; }
    .econ-sum { width: 130px; height: 130px; font-size: 28px; right: -20px; }
}

@media (max-width: 860px) {
    .header-inner { display: flex; flex-wrap: wrap; align-items: center; }
    .logo { order: 1; }
    .header-phone { order: 2; }
    nav { order: 3; width: 100%; margin-left: 0; margin-top: 2px; }
    .nav { display: none; flex-direction: column; border-top: 1px solid #3a3a3a; padding-top: 6px; }
    .nav.open { display: flex; }
    .nav > li > a { padding: 10px 6px; }
    .nav .dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; border-top: 0;
        background: #333; padding-left: 16px; display: none;
    }
    .nav .has-dropdown.open .dropdown { display: block; }
    .hamburger { display: block; order: 4; margin-left: auto; }

    .form-and-calendar { grid-template-columns: 1fr; }
    .economy-grid { grid-template-columns: 1fr; }
    .economy-right { padding-top: 30px; padding-left: 0; }
    .econ-figure { width: 260px; height: 230px; }
    .econ-sum { width: 120px; height: 120px; font-size: 26px; }
    .bc-counter-wrap { margin-bottom: 30px; }
    .advantages { gap: 20px; padding-bottom: 60px; padding-top: 40px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .step-arrow-last { display: block; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-copy-col { grid-column: 1/-1; }
    .best-company { padding-top: 70px; }
    .calendar { transform: scale(.55); transform-origin: left center; margin: 0; }
    .result { grid-template-columns: 1fr; top: 0; }
    .remind-me-form { padding-left: 0; }
    .districts-body { grid-template-columns: 1fr; }
    .go-top { left: 10px; }
    .entry { padding-right: 0; }
    .how-it-work { padding: 30px 0; }
}

@media (max-width: 600px) {
    .slide-content .title { font-size: 40px; padding-bottom: 26px; }
    .slide-content .teaser { font-size: 14px; line-height: 1.5; }
    .slide-inner { padding: 140px 0 60px; }
    .terms-time { font-size: 16px; }
    .terms-price { font-size: 28px; }
    .terms::before { display: none; }
    .terms { padding-left: 0; padding-top: 15px; }
    .slide-cta { flex-direction: column; }
    h1 { font-size: 22px; }
    h2 { font-size: 19px; }
    .section-title { font-size: 26px; padding-bottom: 20px; line-height: 1.2; }
    .bc-title { font-size: 26px; }
    .bc-title span { font-size: 20px; }
    .counter .digit { width: 40px; height: 68px; font-size: 46px; margin: 0 5px; line-height: 68px; }
    .advantages { font-size: 16px; line-height: 20px; }
    .econ-title { font-size: 30px; line-height: 1.2; }
    .switch-container { font-size: 22px; padding-top: 20px; }
    .group-label { font-size: 22px; line-height: 40px; }
    .cards-grid { flex-wrap: wrap; gap: 24px; }
    .card { min-width: 80px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .lr-overlay { padding: 40px 20px; }
    .lr-title { font-size: 30px; }
    .service-btn { font-size: 13px; padding: 10px 14px; }
    .promo-arrows { bottom: 16px; }
    .news { padding: 60px 0; }
    .news-heading { font-size: 26px; line-height: 1.2; padding-bottom: 1em; }
    .best-company { padding-top: 40px; }
    .next-check { padding-top: 40px; }
    .remind-me-form input[type="text"] { width: 180px; font-size: 16px; height: 48px; }
    .remind-me-form button { height: 48px; width: 70px; font-size: 14px; }
    .result .text.success, .result .text.overdue { font-size: 20px; padding-left: 0; }
    .calendar { transform: scale(.48); transform-origin: left top; }
}
