@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@500;600;700;800;900&family=Onest:wght@400;500;600;700;800;900&display=swap');

/* =========================================================
   ABT FRONT CSS — unified UI system + logo color tokens
   Шрифты: Onest для интерфейса, Nunito Sans для крупных заголовков
   Логика: сначала дизайн-токены, затем общие компоненты, затем секции
   ========================================================= */

/* =========================================================
   1. TOKENS / BASE
   ========================================================= */

:root {
    /* Logo palette: sunset + sea + palm silhouette */
    --abt-font-ui: "Onest", Arial, sans-serif;
    --abt-font-heading: "Nunito Sans", "Onest", Arial, sans-serif;

    --abt-logo-sky: #1597B8;
    --abt-logo-sea: #087A9A;
    --abt-logo-deep-sea: #087f91;
    --abt-logo-sunset: #f6c343;
    --abt-logo-sun: #FFB23F;
    --abt-logo-coral: #E8466F;
    --abt-logo-magenta: #C7297D;
    --abt-logo-ink: #22304e;

    --abt-sky-rgb: 21, 151, 184;
    --abt-sea-rgb: 8, 122, 154;
    --abt-deep-sea-rgb: 6, 77, 102;
    --abt-sunset-rgb: 244, 122, 40;
    --abt-sun-rgb: 255, 178, 63;
    --abt-coral-rgb: 232, 70, 111;
    --abt-ink-rgb: 16, 24, 39;
    --abt-bg-warm-rgb: 255, 247, 234;
    --abt-bg-cream-rgb: 255, 250, 240;

    /* Backward-compatible semantic variables used across the plugin */
    --abt-blue: var(--abt-logo-sea);
    --abt-blue2: var(--abt-logo-deep-sea);
    --abt-blue-dark: #073047;
    --abt-dark: var(--abt-logo-ink);
    --abt-text: #18323B;
    --abt-muted: #647782;

    --abt-bg: #FFF7EA;
    --abt-card: #FFFFFF;
    --abt-soft: #EAF8FA;
    --abt-sand: var(--abt-logo-sun);
    --abt-yellow: var(--abt-logo-sunset);

    --abt-green: #0F766E;
    --abt-red: #991B1B;
    --abt-orange: #C2410C;

    --abt-line: rgba(var(--abt-ink-rgb), .11);
    --abt-line-strong: rgba(var(--abt-ink-rgb), .18);

    --abt-radius-xs: 14px;
    --abt-radius-sm: 18px;
    --abt-radius-md: 24px;
    --abt-radius-lg: 28px;
    --abt-radius-xl: 34px;
    --abt-radius-2xl: 38px;
    --abt-radius-pill: 999px;

    --abt-shadow-sm: 0 8px 24px rgba(var(--abt-deep-sea-rgb), .08);
    --abt-shadow-md: 0 18px 48px rgba(var(--abt-deep-sea-rgb), .12);
    --abt-shadow-lg: 0 28px 74px rgba(var(--abt-deep-sea-rgb), .18);
    --abt-shadow-modal: 0 30px 90px rgba(var(--abt-ink-rgb), .32);

    --abt-grad-main: linear-gradient(135deg, #08799a, #087e91);: linear-gradient(135 deg, #016caa, #018bc9);
    --abt-grad-main-hover: linear-gradient(135deg, var(--abt-logo-sea), var(--abt-logo-deep-sea));
    --abt-grad-dark: linear-gradient(135deg, var(--abt-logo-ink), var(--abt-logo-deep-sea));
    --abt-grad-sun: linear-gradient(135deg, #FFE7A8, var(--abt-logo-sun), var(--abt-logo-sunset));
    --abt-grad-sunset: linear-gradient(135deg, var(--abt-logo-sun), var(--abt-logo-sunset), var(--abt-logo-coral));
    --abt-grad-page: radial-gradient(circle at 8% 3%, rgba(var(--abt-sun-rgb), .28), transparent 24vw),
    radial-gradient(circle at 92% 15%, rgba(var(--abt-sky-rgb), .14), transparent 26vw),
    linear-gradient(180deg, #FFF7EA 0%, #FFF1DC 42%, #EAF8FA 100%);
    --abt-grad-hero: radial-gradient(circle at 10% 16%, rgba(var(--abt-sun-rgb), .36), transparent 28%),
    radial-gradient(circle at 52% 18%, rgba(var(--abt-sky-rgb), .16), transparent 24%),
    linear-gradient(135deg, #FFF7EA 0%, #EAF8FA 54%, #FFE6BF 100%);

    --abt-h1-size-desktop: clamp(54px, 6.1vw, 96px);
    --abt-h2-size-desktop: clamp(30px, 4vw, 52px);
    --abt-h3-size-desktop: 26px;
    --abt-text-size-desktop: 17px;
    --abt-button-size-desktop: 16px;

    --abt-h1-size-mobile: clamp(36px, 10vw, 48px);
    --abt-h2-size-mobile: clamp(30px, 8vw, 38px);
    --abt-h3-size-mobile: 23px;
    --abt-text-size-mobile: 16px;
    --abt-button-size-mobile: 16px;

    --ug-hero-image: url("../img/gagra-hero.webp");
    --ug-palm-shadow-image: url("../img/palm-shadow-left-transparent.webp");
}

.abt-wrap {
    overflow-x: hidden;
    background: var(--abt-grad-page);
    color: var(--abt-text);
    font-family: var(--abt-font-ui);
    font-size: var(--abt-text-size-desktop);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.abt-wrap *,
.abt-wrap *::before,
.abt-wrap *::after {
    box-sizing: border-box;
}

.abt-wrap input,
.abt-wrap select,
.abt-wrap textarea,
.abt-wrap button {
    font-family: var(--abt-font-ui);
}

.abt-container {
    width: min(1270px, calc(100% - 32px));
    margin: 0 auto;
}

.abt-muted {
    color: var(--abt-muted) !important;
}

.abt-delete-me,
.abt-prices-mobile,
.abt-modal-scroll-hint {
    display: none;
}

/* =========================================================
   2. TYPOGRAPHY — единый стиль заголовков
   ========================================================= */

.abt-heading, .abt-section-head h2, .abt-hero h1, .abt-hero h2, .abt-hero-title, .abt-hotel-body h3, .abt-date-card h3, .abt-example h3, .abt-steps h3, .abt-final h2, .abt-manager-card h2, .abt-hotel-modal h2, .abt-lead-aside h2, .abt-lead-main-head h3, .abt-review-form-card h3, .abt-thankyou-card h1, .abt-calc-public-hero h1, .abt-calc-public-card h2, .abt-calc-payment-note h2, .abt-calc-manager h2, .abt-price-card h3 {
    margin-top: 0;
    color: var(--abt-dark);
    font-family: var(--abt-font-heading);
    font-weight: 800;
    text-wrap: balance;
}

.abt-section-head h2,
.abt-final h2,
.abt-thankyou-card h1 {
    margin-bottom: 14px;
    font-size: var(--abt-h2-size-desktop);
    line-height: 1.05;
}

.abt-hero h1, .abt-hero h2, .abt-calc-public-hero h1 {
    font-size: clamp(42px, 4.45vw, 70px);
    line-height: 1.05;
    letter-spacing: .05em;
    margin: 0;
}

.abt-hotel-body h3,
.abt-date-card h3,
.abt-example h3,
.abt-steps h3,
.abt-calc-public-card h2,
.abt-calc-payment-note h2,
.abt-calc-manager h2,
.abt-price-card h3 {
    font-size: var(--abt-h3-size-desktop);
    line-height: 1.15;
}

.abt-section-head p,
.abt-hero p,
.abt-feature p,
.abt-hotel-body p,
.abt-example p,
.abt-review p,
.abt-text p,
.abt-calc-public-card,
.abt-calc-payment-note p {
    color: var(--abt-muted);
    line-height: 1.55;
}

.abt-section-head {
    max-width: 1280px;
    margin: 0 auto 38px;
    text-align: center;
}

.abt-section-head.abt-left {
    margin-left: 0;
    text-align: left;
}

.abt-section-head p {
    max-width: 760px;
    margin: 0 auto;
    text-wrap: pretty;
}

.abt-section-head.abt-left p {
    margin-inline: 0;
}

/* =========================================================
   3. UNIFIED COMPONENTS — кнопки, бейджи, карточки
   ========================================================= */

.abt-section,
.abt-hotels-section,
#abt-hotels {
    scroll-margin-top: 110px;
}

.abt-section {
    position: relative;
    padding: 86px 0;
}

.abt-card,
.abt-feature,
.abt-hotel-card,
.abt-example,
.abt-review,
.abt-final,
.abt-date-card,
.abt-review-form-card,
.abt-company,
.abt-doc-grid article,
.abt-price-card,
.abt-calc-public-card,
.abt-calc-payment-note,
.abt-calc-manager,
.abt-thankyou-card {
    background: var(--abt-card);
    border: 1px solid rgba(22, 51, 58, .10) !important;
    border-radius: var(--abt-radius-lg);
    box-shadow: var(--abt-shadow-md) !important;
}

.abt-card-hover,
.abt-feature,
.abt-date-card,
.abt-example,
.abt-review,
.abt-doc-grid article,
.abt-hotel-card-modern {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.abt-card-hover:hover, .abt-feature:hover, .abt-date-card:hover, .abt-example:hover, .abt-review:hover, .abt-doc-grid article:hover {
    border-color: rgb(254 189 35 / 49%) !important;
    box-shadow: 1px 1px 60px 5px rgb(255 194 50 / 30%) !important;
}

.abt-btn,
.abt-mobile-bar a,
.abt-mobile-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 15px 24px;
    border: 0;
    border-radius: var(--abt-radius-pill);
    color: inherit;
    font-size: var(--abt-button-size-desktop);
    font-weight: 800 !important;
    line-height: 1;
    letter-spacing: -.01em;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.abt-btn:hover,
.abt-mobile-bar a:hover,
.abt-mobile-bar button:hover {
    text-decoration: none;
}

.abt-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0b96a7 0%, #077386 100%);
    box-shadow: 0 18px 38px rgba(8, 127, 145, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.abt-btn-primary:hover {
    background: linear-gradient(135deg, #0db9ce, #0a97b0);
}

.abt-btn-light {
    border: 1px solid rgb(71 85 105 / 36%);
}

.abt-btn-phone {
    background: #00628d;
    color: #fff;
}

.abt-btn-dark {
    color: #18323b;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(var(--abt-deep-sea-rgb), .08);
    border: 1px solid rgb(71 85 105 / 36%);
}

.abt-btn-dark:hover {
    background: rgb(248 208 108);
}

.abt-btn-vk {
    background: #2677f2;
    color: #fff;
}


.abt-btn img,
.abt-mobile-bar img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.abt-hero-actions,
.abt-card-actions,
.abt-modal-actions,
.abt-manager-buttons,
.abt-thankyou-actions,
.abt-calc-manager-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.abt-badge,
.abt-kicker,
.abt-note,
.abt-calc-badge,
.abt-review-trip,
.abt-manager-pills span,
.abt-hotel-title-badge,
.abt-hotel-mark,
.abt-hotel-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    border-radius: var(--abt-radius-pill);
    line-height: 1.15;
    white-space: nowrap;
}

.abt-kicker {
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .82) !important;
    border: 1px solid rgba(255, 255, 255, .68) !important;
    color: var(--abt-blue2) !important;
    box-shadow: var(--abt-shadow-sm) !important;
    backdrop-filter: blur(14px);
}

.abt-kicker-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 50px;
    flex: 0 0 auto;
}

.abt-kicker-logo img {
    display: block;
    width: auto;
    height: 16px;
    max-width: 50px;
    object-fit: contain;
}

.abt-kicker-text {
    display: inline-block;
    min-width: 0;
}

.abt-note {
    margin-top: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(242, 165, 65, .26) !important;
    background: #FFF1D0 !important;
    color: #74500A !important;
}

.abt-blue {
    background: radial-gradient(circle at top left, rgba(var(--abt-sun-rgb), .20), transparent 34%),
    linear-gradient(135deg, var(--abt-logo-ink), var(--abt-logo-deep-sea), var(--abt-logo-sea)) !important;
    color: #fff;
}

.abt-blue .abt-section-head h2,
.abt-blue .abt-section-head p,
.abt-blue .abt-feature h3,
.abt-blue .abt-feature p,
.abt-blue .abt-feature strong {
    color: #fff;
}

.abt-soft {
    background: radial-gradient(circle at top right, rgba(var(--abt-sky-rgb), .10), transparent 32%),
    linear-gradient(180deg, var(--abt-soft), #FFF7EA);
}

/* =========================================================
   4. HERO
   ========================================================= */

.abt-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 200, 69, .28), transparent 32%),
    linear-gradient(135deg, #eaf7ff 0%, #fff8e8 100%);
}

.abt-hero.abt-section.abt-hero-premium {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 82px);
    padding: 0 0 80px !important;
    display: flex;
    align-items: center;
    background: var(--abt-grad-hero) !important;
}

.abt-hero-premium .abt-hero-photo {
    position: absolute;
    inset: 0 0 0 auto;
    width: 52%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(var(--abt-sky-rgb), .34), rgba(var(--abt-bg-warm-rgb), .15)),
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .8), transparent 24%),
    linear-gradient(135deg, #a7dce4, #e8f5ef);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.abt-hero-premium .abt-hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgb(255 247 234 / 0%) 0%, rgb(255 247 234 / 72%) 22%, rgba(var(--abt-bg-warm-rgb), .18) 52%, rgb(106 79 34 / 2%) 100%), linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08));
}

.abt-hero-premium::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 auto 0 0 !important;
    width: min(70%, 1120px) !important;
    z-index: 1 !important;
    border: 0 !important;
    border-radius: 0 !important;
    pointer-events: none !important;
    background: radial-gradient(circle at 14% 22%, rgba(var(--abt-sun-rgb), .38), transparent 25%),
    radial-gradient(circle at 84% 34%, rgba(255, 255, 255, .72), transparent 22%),
    linear-gradient(115deg, rgba(var(--abt-bg-cream-rgb), .98) 0%, rgba(var(--abt-bg-cream-rgb), .94) 62%, rgba(var(--abt-bg-cream-rgb), .72) 100%);
    clip-path: ellipse(88% 108% at 0% 50%);
}

.abt-hero-premium::after {
    content: "" !important;
    position: absolute !important;
    left: 41% !important;
    bottom: 34px !important;
    width: 210px !important;
    height: 86px !important;
    z-index: 2 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: radial-gradient(circle at 8% 78%, rgba(203, 164, 91, .72) 0 8px, transparent 9px),
    radial-gradient(circle at 15% 70%, rgba(203, 164, 91, .28) 0 22px, transparent 23px);
    opacity: .7;
    pointer-events: none !important;
}

.abt-hero-premium .abt-hero-wave {
    position: absolute;
    top: -8%;
    bottom: -8%;
    left: 47%;
    width: 170px;
    z-index: 1;
    background: linear-gradient(90deg, rgba(var(--abt-bg-cream-rgb), .88), rgba(var(--abt-bg-cream-rgb), .18));
    border-radius: var(--abt-radius-pill);
    filter: blur(.2px);
    transform: rotate(7deg);
    pointer-events: none;
}

.abt-hero-premium .abt-container {
    position: relative;
    z-index: 3;
}

.abt-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 30px;
    align-items: center;
}

.abt-hero-premium .abt-hero-grid {
    position: relative;
    z-index: 3;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr) !important;
    gap: clamp(34px, 5vw, 76px) !important;
    justify-items: center;
}

.abt-hero-copy {
    max-width: 790px;
}

.abt-hero-premium .abt-kicker {
    width: auto !important;
    gap: 12px;
    margin-bottom: 34px;
    padding: 12px 19px !important;
    color: #334155 !important;
    box-shadow: 0 14px 38px rgba(var(--abt-deep-sea-rgb), .10) !important;
    backdrop-filter: blur(16px);
}

.abt-hero-premium .abt-kicker-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #f2b735;
    box-shadow: 0 0 0 6px rgba(242, 183, 53, .16);
}

.abt-hero-premium .abt-kicker-logo {
    max-width: 58px;
}

.abt-hero-premium .abt-kicker-logo img {
    height: 18px;
}

.abt-hero-title {
    font-size: clamp(42px, 4.45vw, 70px);
    line-height: 1.05;
    letter-spacing: .05em;
}

.abt-title-accent {
    display: block;
    color: var(--abt-logo-deep-sea);
}

.abt-title-dash {
    color: var(--abt-logo-ink);
}

.abt-hero-lead {
    margin: 20px 0 0;
    max-width: 640px;
    color: var(--ug-muted);
    font-size: clamp(16px, 1.05vw, 19px);
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: .03em;
}

.abt-hero-premium .abt-hero-actions {
    gap: 14px;
    margin-top: 28px;
}

.abt-hero-premium .abt-btn i {
    font-size: 22px;
    line-height: 1;
}

.abt-hero-premium .abt-btn-light {
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(var(--abt-deep-sea-rgb), .08);
}

.abt-hero-premium .abt-btn-light:hover {
    background: rgb(248 208 108);
    box-shadow: 0 12px 20px 0px rgb(135 113 72 / 23%);
}

.abt-hero-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.abt-hero-mini-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: var(--abt-radius-pill);
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .72);
    color: #475569;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(var(--abt-deep-sea-rgb), .07);
    backdrop-filter: blur(12px);
}

.abt-hero-mini-points i {
    color: var(--abt-logo-deep-sea);
    font-size: 17px;
}

.abt-hero-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.abt-hero-card {
    position: relative;
    display: grid;
    gap: 12px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: var(--abt-radius-xl);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--abt-shadow-md);
    backdrop-filter: blur(14px);
}

.abt-hero-card-premium {
    width: min(100%, 520px);
    padding: clamp(34px, 4vw, 42px) !important;
    border-radius: var(--abt-radius-2xl) !important;
    background: rgba(255, 255, 255, .88) !important;
    border: 1px solid rgba(255, 255, 255, .86) !important;
    box-shadow: 0 28px 80px rgba(var(--abt-deep-sea-rgb), .20) !important;
    backdrop-filter: blur(20px);
    font-family: "Manrope", Arial, sans-serif;
}

.abt-hero-card-premium .abt-hero-days, .abt-hero-card-premium .abt-hero-price {
    display: block;
    color: var(--abt-logo-deep-sea);
    font-size: 5em;
    line-height: 1 !important;
    letter-spacing: -.055em;
    font-weight: 700;
}

.abt-hero-days em, .abt-hero-price em {
    font-style: normal;
    font-size: .6em;
    letter-spacing: .01rem;
}

.abt-hero-card span,
.abt-hero-card-premium span {
    display: block;
    color: var(--abt-muted);
    font-size: clamp(17px, 1.35vw, 18px);
    font-weight: 500;
    line-height: 1.35;
}

.ug-hero__palm-shadow {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 330px;
    height: 530px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.62;
    background-image: var(--ug-palm-shadow-image);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    top: 270px;
}

.abt-hero-card-line {
    height: 1px;
    margin: 6px 0;
    background: linear-gradient(90deg, rgba(var(--abt-sea-rgb), .18), rgba(var(--abt-sea-rgb), .04));
}

.abt-discount {
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: var(--abt-radius-sm);
    background: var(--abt-grad-sun);
    color: #4E3300;
    font-weight: 900;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

.abt-hero-card-premium .abt-discount {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 62px;
    margin-top: 24px;
    padding: 10px 18px;
    border-radius: 18px;
    color: #3d2c11;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    background: linear-gradient(135deg, #fff3c8 0%, #f8cd63 100%);
    box-shadow: 0 12px 24px rgba(187, 132, 32, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.abt-hero-card-premium .abt-discount i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .42);
    color: #c48a13;
    font-size: 23px;
}

.abt-hero-card-premium .abt-discount span {
    color: #4e3300;
    font-size: 17px;
    font-weight: 900;
}

/* =========================================================
   5. FEATURE / DATES / HOTELS / PRICES
   ========================================================= */

.abt-feature-grid,
.abt-date-grid,
.abt-hotels-grid,
.abt-review-grid,
.abt-steps {
    display: grid;
    gap: 20px;
}

.abt-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.abt-date-grid,
.abt-hotels-grid,
.abt-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.abt-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.abt-feature {
    display: grid !important;
    grid-template-columns: 62px minmax(0, 1fr) !important;
    align-items: start !important;
    column-gap: 18px !important;
    row-gap: 8px !important;
    min-height: 220px !important;
    padding: 26px 24px !important;
    text-align: left !important;
    border-radius: 26px !important;
}

.abt-feature i {
    width: 62px !important;
    height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: var(--abt-radius-sm) !important;
    font-size: 31px !important;
    line-height: 1 !important;
    border: 1px solid #016caa33;
    background: linear-gradient(135deg, #FFE8A6, #F8C95C);
    color: #8A610E;
}

.abt-feature h3 {
    align-self: center !important;
    margin: 2px 0 0 !important;
}

.abt-feature p {
    grid-column: 1 / -1 !important;
    margin: 8px 0 0 !important;
}

.abt-feature strong {
    grid-column: 2 !important;
    display: block !important;
    margin: -2px 0 0 !important;
    color: var(--abt-blue2);
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 900;
}

.abt-blue .abt-feature {
    min-height: 190px !important;
    background: rgba(255, 255, 255, .11) !important;
    border-color: rgba(255, 255, 255, .18) !important;
    box-shadow: none !important;
}

.abt-blue .abt-feature i {
    background: rgba(255, 255, 255, .16) !important;
    color: var(--abt-yellow) !important;
}

.abt-blue .abt-feature p {
    color: rgba(255, 255, 255, .82) !important;
}

.abt-date-card,
.abt-example,
.abt-review {
    padding: 26px;
}

.abt-date-card h3 {
    margin-bottom: 18px;
}

.abt-date-list {
    display: grid;
    gap: 10px;
}

.abt-date-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(22, 51, 58, .10) !important;
    border-radius: var(--abt-radius-sm);
    background: #fff !important;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.abt-date-item:hover {
    background: #F1FBFC !important;
    border-color: rgba(var(--abt-sky-rgb), .25) !important;
}

.abt-date-item span {
    font-size: 22px;
    font-weight: 600;
}

.abt-date-item small {
    font-weight: 800;
}

.abt-status-open {
    color: var(--abt-logo-deep-sea);
}

.abt-status-popular {
    color: #1d4ed8;
}

.abt-status-few {
    color: var(--abt-orange);
}

.abt-status-full {
    color: var(--abt-red);
}

.abt-hotels-section {
    background: rgba(255, 255, 255, .36);
}

.abt-hotel-card {
    overflow: hidden;
}

.abt-hotel-card-modern {
    overflow: hidden;
    border-radius: 32px !important;
}

.abt-hotel-card-modern:hover {
    box-shadow: 1px 1px 20px 0 rgb(83 210 255 / 31%) !important;
}

.abt-hotel-img {
    height: 240px;
    background: #dbeaf2;
}

.abt-hotel-card-modern .abt-hotel-img {
    position: relative;
    overflow: hidden;
    height: 300px !important;
    border-radius: 28px 28px 0 0;
}

.abt-hotel-img img,
.abt-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-hotel-card-modern .abt-hotel-img img {
    transition: transform 1s ease;
}

.abt-hotel-card-modern:hover .abt-hotel-img img {
    transform: scale(1.065);
    filter: saturate(1.05) contrast(1.03);
}

.abt-hotel-card-modern .abt-hotel-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 25, 41, .58) 0%, rgba(4, 25, 41, .05) 40%, rgba(4, 25, 41, .72) 100%);
    pointer-events: none;
}

.abt-img-placeholder {
    background: linear-gradient(135deg, #dbeafe, #fef3c7);
    color: var(--abt-blue2);
    font-size: 50px;
}

.abt-hotel-photo-overlay {
    position: absolute;
    inset: 14px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
    pointer-events: none;
}

.abt-hotel-title-badge {
    grid-column: 1;
    grid-row: 1;
    padding: 9px 13px;
    background: rgba(7, 47, 73, .82);
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(14px);
}

.abt-hotel-mark {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .92);
    color: var(--abt-blue2);
    font-weight: 600;
}

.abt-hotel-price-badge {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    padding: 11px 15px;
    font-size: 17px;
    font-weight: 600;
    backdrop-filter: blur(14px);
    background: var(--abt-yellow);
    box-shadow: 0 12px 24px rgba(187, 132, 32, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.abt-hotel-body {
    padding: 24px;
}

.abt-hotel-card-modern .abt-hotel-body {
    padding: 22px 24px 24px;
}

.abt-hotel-card-modern .abt-hotel-body h3 {
    display: none;
}

.abt-hotel-body p {
    margin: 0 0 16px;
    overflow-wrap: anywhere;
}

.abt-hotel-card-modern .abt-hotel-body p {
    margin-bottom: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.abt-hotel-meta {
    display: grid;
    gap: 8px;
}

.abt-hotel-card-modern .abt-hotel-meta {
    margin-bottom: 4px;
}

.abt-hotel-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--abt-blue2);
    font-weight: 800;
}

.abt-hotel-card-modern .abt-card-actions {
    margin-top: 20px;
}

.abt-price-responsive {
    overflow: auto;
    padding-bottom: 8px;
}

.abt-prices {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 51, 58, .10) !important;
    border-radius: var(--abt-radius-lg);
    background: #fff;
    box-shadow: var(--abt-shadow-md);
}

.abt-prices th,
.abt-prices td {
    padding: 17px 16px !important;
    border-bottom: 1px solid rgba(22, 51, 58, .09) !important;
    text-align: left;
    white-space: nowrap;
}

.abt-prices th {
    background: var(--abt-grad-main) !important;
    color: #fff !important;
    font-weight: 900;
}

.abt-prices tr:last-child td {
    border-bottom: 0;
}

.abt-prices tbody tr:hover td {
    background: #F1FBFC !important;
}

.abt-price-card {
    padding: 22px;
}

.abt-price-card h3 {
    margin-bottom: 16px;
}

.abt-price-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.abt-price-card-grid div {
    padding: 14px;
    border: 1px solid rgba(22, 51, 58, .10) !important;
    border-radius: var(--abt-radius-sm);
    background: linear-gradient(180deg, #F8FCFD, #FFFFFF) !important;
}

.abt-price-card-grid span {
    display: block;
    margin-bottom: 4px;
    color: var(--abt-muted);
    font-size: 14px;
    font-weight: 800;
}

.abt-price-card-grid strong {
    display: block;
    color: var(--abt-blue2);
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
}

.abt-price-card-btn {
    margin-top: 16px;
}


.abt-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}


/* =========================================================
   Example calculation card
   ========================================================= */

.abt-example {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;

    padding: 30px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(8, 127, 145, 0.08), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fffaf0 100%);
    border: 1px solid rgba(22, 51, 58, 0.10);
    box-shadow: 0 24px 70px rgba(15, 55, 65, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.abt-example::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #087f91 0%, #74b9a9 45%, #f7ca62 100%);
}

.abt-example::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(247, 202, 98, 0.16);
    pointer-events: none;
}

.abt-example h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #101827;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.abt-example .abt-muted {
    position: relative;
    z-index: 1;
    margin: -8px 0 2px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.abt-example dl {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;

    margin: 4px 0 0;
    border: 1px solid rgba(22, 51, 58, 0.10);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.abt-example dt,
.abt-example dd {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(22, 51, 58, 0.08);
    font-size: 15px;
    line-height: 1.4;
}

.abt-example dt {
    color: #667a80;
    font-weight: 800;
    background: rgba(8, 127, 145, 0.045);
}

.abt-example dd {
    color: #1f2937;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.58);
}

.abt-example dt:last-of-type,
.abt-example dd:last-of-type {
    border-bottom: 0;
}

.abt-example .abt-mini-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-example .abt-mini-list li {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;

    padding: 10px 14px 10px 42px;
    border-radius: 16px;
    color: #344054;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(22, 51, 58, 0.08);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.abt-example .abt-mini-list li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #f7ca62;
    box-shadow: 0 0 0 5px rgba(247, 202, 98, 0.18);
}

.abt-example .abt-total {
    position: relative;
    z-index: 1;

    margin-top: 2px;
    padding: 18px 20px;
    border-radius: 20px;
    color: #3d2c11;
    background: linear-gradient(135deg, #fff3c8 0%, #f8cd63 100%);
    border: 1px solid rgba(176, 124, 20, 0.16);
    box-shadow: 0 14px 34px rgba(187, 132, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 850;
}

.abt-example .abt-total strong {
    color: #2d210e;
    font-size: 20px;
    font-weight: 950;
}

.abt-example .abt-payment {
    position: relative;
    z-index: 1;

    margin: 0;
    padding: 16px 18px;
    border-radius: 18px;
    color: #566579;
    background: rgba(8, 127, 145, 0.06);
    border: 1px solid rgba(8, 127, 145, 0.11);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

.abt-example .abt-btn {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: 2px;
}

/* Если карточки стоят сеткой */
.abt-examples-grid,
.abt-examples {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Hover только на устройствах с мышью */
@media (hover: hover) {
    .abt-example {
        transition: transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
    }

    .abt-example:hover {
        border-color: rgba(8, 127, 145, 0.18);
        box-shadow: 0 30px 82px rgba(15, 55, 65, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}

/* Планшеты */
@media (max-width: 1024px) {
    .abt-example {
        padding: 26px;
        border-radius: 24px;
    }

    .abt-examples-grid,
    .abt-examples {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Телефоны */
@media (max-width: 560px) {
    .abt-example {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .abt-example h3 {
        font-size: 24px;
    }

    .abt-example .abt-muted {
        font-size: 15px;
    }

    .abt-example dl {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .abt-example dt {
        padding: 12px 14px 5px;
        border-bottom: 0;
        background: rgba(8, 127, 145, 0.045);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .abt-example dd {
        padding: 0 14px 12px;
        border-bottom: 1px solid rgba(22, 51, 58, 0.08);
        font-size: 15px;
    }

    .abt-example dt:last-of-type,
    .abt-example dd:last-of-type {
        border-bottom: 0;
    }

    .abt-example .abt-total {
        padding: 16px;
        font-size: 16px;
    }

    .abt-example .abt-total strong {
        display: block;
        margin-top: 4px;
        font-size: 18px;
    }

    .abt-example .abt-payment {
        padding: 14px;
        font-size: 14px;
    }

    .abt-example .abt-btn {
        width: 100%;
        align-self: stretch;
    }
}


/* =========================================================
   Booking steps / Как забронировать тур
   ========================================================= */
.steps {
    background: radial-gradient(circle at 18% 20%, rgba(247, 202, 98, 0.16), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(8, 127, 145, 0.08), transparent 30%),
    linear-gradient(180deg, #fff8ec 0%, #fffaf2 100%);
}

.steps::before {
    content: "";
    position: absolute;
    left: -170px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(8, 127, 145, 0.06);
    pointer-events: none;
}

.steps::after {
    content: "";
    position: absolute;
    right: -220px;
    top: -240px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(247, 202, 98, 0.11);
    pointer-events: none;
}

.abt-booking-steps, .abt-steps {
    position: relative;
    padding: 26px 20px 96px;
    overflow: hidden;
}

.abt-booking-steps .abt-container,
.abt-steps .abt-container {
    position: relative;
    z-index: 1;
}

.abt-booking-steps .abt-section-head,
.abt-steps .abt-section-head {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.abt-booking-steps .abt-section-head h2,
.abt-steps .abt-section-head h2 {
    margin: 0;
    color: #101827;
    font-size: clamp(34px, 3.1vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 900;
}

/* Сетка шагов */
.abt-booking-steps-grid,
.abt-steps-grid,
.abt-booking-steps-list,
.abt-steps-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* Декоративная линия маршрута между карточками */
.abt-booking-steps-grid::before,
.abt-steps-grid::before,
.abt-booking-steps-list::before,
.abt-steps-list::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 42px;
    height: 2px;
    background: repeating-linear-gradient(
            90deg,
            rgba(8, 127, 145, 0.24) 0 10px,
            transparent 10px 18px
    );
    pointer-events: none;
}

/* Карточка шага */
.abt-booking-steps article,
.abt-steps article {
    position: relative;
    z-index: 1;
    min-height: 245px;
    padding: 28px 24px 26px;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(8, 127, 145, 0.07), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fffaf0 100%);
    border: 1px solid rgba(22, 51, 58, 0.10);
    transition: transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.abt-booking-steps article:hover, .abt-steps article:hover {
    border-color: rgba(8, 127, 145, 0.18);
    box-shadow: -2px 1px 20px rgb(249 206 105 / 33%), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Номер шага */
.abt-booking-steps article > span,
.abt-steps article > span {
    position: relative;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    color: #8a610e;
    background: linear-gradient(135deg, #ffe8a6 0%, #f8c95c 100%);
    border: 1px solid rgba(176, 124, 20, 0.18);
    box-shadow: 0 12px 28px rgba(188, 137, 36, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

    font-size: 20px;
    line-height: 1;
    font-weight: 950;
}

/* Заголовок шага */
.abt-booking-steps article h3,
.abt-steps article h3 {
    margin: 0;
    color: #101827;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-weight: 900;
}

/* Описание */
.abt-booking-steps article p,
.abt-steps article p {
    margin: 14px 0 0;
    color: #566579;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 550;
}

/* Планшеты */
@media (max-width: 1024px) {
    .abt-booking-steps,
    .abt-steps {
        padding: 72px 18px 82px;
    }

    .abt-booking-steps-grid,
    .abt-steps-grid,
    .abt-booking-steps-list,
    .abt-steps-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .abt-booking-steps-grid::before,
    .abt-steps-grid::before,
    .abt-booking-steps-list::before,
    .abt-steps-list::before {
        display: none;
    }
}

/* Телефоны */
@media (max-width: 640px) {
    .abt-booking-steps, .abt-steps {
        padding: 20px 16px;
    }

    .abt-booking-steps .abt-section-head,
    .abt-steps .abt-section-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .abt-booking-steps .abt-section-head h2,
    .abt-steps .abt-section-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .abt-booking-steps-grid,
    .abt-steps-grid,
    .abt-booking-steps-list,
    .abt-steps-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-booking-steps article,
    .abt-steps article {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .abt-booking-steps article > span,
    .abt-steps article > span {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 16px;
        font-size: 18px;
    }

    .abt-booking-steps article h3,
    .abt-steps article h3 {
        font-size: 19px;
    }

    .abt-booking-steps article p,
    .abt-steps article p {
        font-size: 15px;
    }
}


/* =========================================================
   6. GALLERY / EXAMPLES / STEPS / DOCS / REVIEWS
   ========================================================= */

.abt-gallery-section {
    position: relative;
    overflow: hidden;
    padding: 88px 20px 100px;
    color: #fff;
    background: radial-gradient(circle at 18% 18%, rgba(255, 232, 166, 0.13), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #0a4d5a 0%, #087f91 52%, #067284 100%);
}

.abt-gallery-section::before {
    content: "";
    position: absolute;
    left: -180px;
    top: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.abt-gallery-section::after {
    content: "";
    position: absolute;
    right: -240px;
    bottom: -280px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(255, 232, 166, 0.09);
    pointer-events: none;
}

.abt-gallery-section .abt-container {
    position: relative;
    z-index: 1;
}

.abt-gallery-carousel {
    position: relative;
    margin-top: 38px;
}

.abt-gallery-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
}

.abt-gallery-track::-webkit-scrollbar {
    display: none;
}

.abt-gallery-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 330px;
    margin: 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateZ(0);
    scroll-snap-align: start;
}

.abt-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.02) 45%,
            rgba(3, 45, 56, 0.78) 100%
    );
    pointer-events: none;
}

.abt-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease,
    filter 0.55s ease;
}

.abt-gallery-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.03);
}

.abt-gallery-caption {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    padding: 18px 18px 17px;
    border-radius: 20px;
    background: rgba(5, 58, 70, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.abt-gallery-caption strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.abt-gallery-caption span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

.abt-gallery-nav {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #087f91;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.abt-gallery-nav:hover {
    color: #066d7d;
    background: #fff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.abt-gallery-nav i {
    display: block;
    font-size: 26px;
    line-height: 1;
}

.abt-gallery-prev {
    left: -27px;
}

.abt-gallery-next {
    right: -27px;
}

.abt-gallery-nav.is-disabled,
.abt-gallery-nav:disabled {
    opacity: 0.42;
    cursor: default;
    pointer-events: none;
    transform: translateY(-50%) scale(0.96);
}

/* Tablet */
@media (max-width: 1024px) {
    .abt-gallery-section {
        padding: 72px 18px 82px;
    }

    .abt-gallery-track {
        gap: 18px;
    }

    .abt-gallery-card {
        flex-basis: calc((100% - 18px) / 2);
        min-height: 290px;
        border-radius: 24px;
    }

    .abt-gallery-card img {
        min-height: 290px;
    }

    .abt-gallery-prev {
        left: 12px;
    }

    .abt-gallery-next {
        right: 12px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .abt-gallery-section {
        padding: 58px 16px 66px;
    }

    .abt-gallery-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .abt-gallery-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .abt-gallery-head p {
        font-size: 16px;
    }

    .abt-gallery-track {
        gap: 16px;
    }

    .abt-gallery-card {
        flex-basis: 100%;
        min-height: 280px;
    }

    .abt-gallery-card img {
        min-height: 280px;
    }

    .abt-gallery-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 15px;
        border-radius: 17px;
    }

    .abt-gallery-caption strong {
        font-size: 20px;
    }

    .abt-gallery-nav {
        width: 46px;
        height: 46px;
    }

    .abt-gallery-nav i {
        font-size: 24px;
    }
}

/* =========================================================
   7. FAQ / FINAL / THANK YOU / PAGINATION
   ========================================================= */

.abt-faq {
    display: grid;
    gap: 12px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
}

.abt-faq details {
    overflow: hidden;
    border: 1px solid var(--abt-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.abt-faq summary {
    padding: 18px 22px;
    color: var(--abt-dark);
    font-weight: 700;
    cursor: pointer;
}

.abt-faq details div {
    padding: 0 22px 18px;
    color: #334155;
}

.abt-final {
    position: relative;
    overflow: hidden;
    padding: 44px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(var(--abt-sun-rgb), .28), transparent 32%),
    linear-gradient(135deg, #FFFFFF, #EAF8FA) !important;
}

.abt-final::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(var(--abt-sky-rgb), .10);
}

.abt-final > * {
    position: relative;
    z-index: 1;
}

.abt-final p {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 20px;
}

.abt-thankyou-section {
    min-height: 58vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 20%, rgba(255, 200, 69, .26), transparent 30%),
    linear-gradient(135deg, #eaf7ff 0%, #fff8e8 100%);
}

.abt-thankyou-card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(30px, 5vw, 58px);
    text-align: center;
}

.abt-thankyou-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #e6f8ee;
    color: #16a34a;
    font-size: 42px;
}

.abt-thankyou-card p {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 20px;
}

.abt-thankyou-actions {
    justify-content: center;
    margin: 24px 0;
}

.abt-thankyou-note {
    max-width: 680px;
    margin: 0 auto;
    padding: 16px 18px;
    border-radius: 22px;
    background: #f6fafc;
    color: var(--abt-muted);
}

.abt-pagination {
    margin-top: 24px;
}

.abt-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-pagination a,
.abt-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--abt-border, #dbe5ef);
    border-radius: var(--abt-radius-pill);
    background: #fff;
    color: var(--abt-text, #101828);
    font-weight: 800;
    text-decoration: none;
}

.abt-pagination .current {
    background: var(--abt-accent, #f6c343);
    border-color: transparent;
}

.abt-empty {
    padding: 22px;
    border: 1px solid var(--abt-border, #dbe5ef);
    border-radius: var(--abt-radius-sm);
    background: #fff;
    color: var(--abt-muted, #667085);
    text-align: center;
}

/* =========================================================
   8. MODALS / FORMS
   ========================================================= */

.abt-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .26s ease, visibility .26s ease;
}

.abt-modal.is-open,
.abt-modal.is-closing {
    visibility: visible;
}

.abt-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.abt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .66);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .26s ease;
}

.abt-modal.is-open .abt-modal-backdrop {
    opacity: 1;
}

.abt-modal.is-closing .abt-modal-backdrop {
    opacity: 0;
}

.abt-modal-panel {
    position: relative;
    z-index: 2;
    width: min(980px, calc(100% - 28px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    margin: 0 !important;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--abt-shadow-modal) !important;
    opacity: 0;
    transform: translateY(18px) scale(.97);
    transition: transform .26s cubic-bezier(.2, .8, .2, 1),
    opacity .26s ease;
    -webkit-overflow-scrolling: touch;
}

.abt-modal.is-open .abt-modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.abt-modal.is-closing .abt-modal-panel {
    opacity: 0;
    transform: translateY(14px) scale(.98);
}

.abt-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.abt-lead-panel {
    width: min(1360px, calc(100vw - 56px)) !important;
    max-height: calc(100dvh - 56px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: var(--abt-radius-xl) !important;
    background: #fff;
}

.abt-lead-box,
.abt-lead-box-v24 {
    display: grid;
    grid-template-columns: minmax(390px, 430px) minmax(0, 1fr) !important;
    gap: 0;
    overflow: hidden;
    border-radius: var(--abt-radius-xl);
    background: #fff;
}

.abt-lead-aside {
    position: relative;
    min-height: 100%;
    padding: 40px 34px !important;
    background: radial-gradient(circle at 10% 5%, rgba(255, 200, 69, .24), transparent 34%),
    linear-gradient(145deg, #07334e, #0b668e);
    color: #fff;
}

.abt-lead-aside::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.abt-lead-aside-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.abt-lead-manager-photo {
    width: 66px !important;
    height: 66px !important;
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    object-fit: cover;
    background: #eaf6ff;
    color: #08344f;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .20);
}

.abt-lead-aside-top strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.abt-lead-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
}

.abt-lead-aside h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 3vw, 50px) !important;
    line-height: 1.04 !important;
}

.abt-lead-aside p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px !important;
    line-height: 1.55;
}

.abt-lead-aside-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--abt-radius-sm);
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
    font-size: 17px !important;
    font-weight: 600;
    line-height: 1.45;
}

.abt-lead-aside-note i {
    color: var(--abt-yellow);
    font-size: 22px;
    line-height: 1;
}

.abt-lead-contact-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
}

.abt-lead-contact-actions .abt-btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .95);
    color: #082f49;
    box-shadow: none;
    font-weight: 750;
}

.abt-lead-contact-actions .abt-btn img {
    width: 19px;
    height: 19px;
}

.abt-lead-main {
    padding: 34px 34px 30px;
}

.abt-lead-main-head {
    margin: 0 0 18px;
}

.abt-lead-main-head h3,
.abt-review-form-card h3 {
    margin-bottom: 6px !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
}

.abt-review-form-card {
    width: 100% !important;
    max-width: none !important;
    padding: 34px !important;
    margin: 1rem 0;
}

.abt-review-form-card h3::after {
    content: 'Отзыв появится на сайте после проверки.';
    display: block;
    margin-top: 8px;
    color: var(--abt-muted);
    font-size: 15px;
    line-height: 1.45;
    font-family: var(--abt-font-ui);
    font-weight: 500;
    letter-spacing: 0;
}

.abt-lead-main-head p {
    margin: 0;
    color: var(--abt-muted);
    font-size: 15px;
    line-height: 1.45;
}

.abt-form-grid,
.abt-lead-form .abt-form-grid,
.abt-review-form .abt-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    margin-bottom: 14px;
}

.abt-lead-form label,
.abt-review-form label {
    display: grid;
    gap: 7px;
    color: var(--abt-dark);
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.abt-lead-form input,
.abt-lead-form select,
.abt-lead-form textarea,
.abt-review-form input,
.abt-review-form select,
.abt-review-form textarea {
    width: 100%;
    min-height: 50px !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(22, 51, 58, .13) !important;
    border-radius: 15px !important;
    background: #fff !important;
    color: var(--abt-dark) !important;
    font: inherit;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    outline: none;
    box-shadow: none !important;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.abt-lead-form textarea, .abt-review-form textarea {
    min-height: 92px !important;
    resize: vertical;
    margin: 0 0 1rem 0;
}

.abt-lead-form input:focus,
.abt-lead-form select:focus,
.abt-lead-form textarea:focus,
.abt-review-form input:focus,
.abt-review-form select:focus,
.abt-review-form textarea:focus {
    border-color: rgba(var(--abt-sky-rgb), .55) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(var(--abt-sky-rgb), .11) !important;
}

.abt-lead-form input::placeholder,
.abt-lead-form textarea::placeholder,
.abt-review-form input::placeholder,
.abt-review-form textarea::placeholder {
    color: #94a3b8 !important;
    font-weight: 600 !important;
}

.abt-consent {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 4px 0 14px;
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.abt-consent input {
    width: 16px !important;
    height: 16px !important;
    min-height: auto !important;
    flex: 0 0 16px;
    padding: 0 !important;
    border-radius: 4px !important;
}

.abt-consent a {
    color: var(--abt-blue2) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    font-weight: 800;
}

.abt-consent a:hover {
    text-decoration: none !important;
}

.abt-hp {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.abt-lead-form > .abt-btn-primary,
.abt-review-form > .abt-btn-primary {
    min-height: 50px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 800;
}

.abt-form-message {
    margin-top: 12px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
}

.abt-form-message.is-success,
.abt-form-message.is-error {
    padding: 12px 14px;
    border-radius: var(--abt-radius-xs);
}

.abt-form-message.is-success {
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #047857;
}

.abt-form-message.is-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.abt-form-success-card {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid #bbf7d0;
    border-radius: var(--abt-radius-sm);
    background: #ecfdf5;
    color: #064e3b;
}

.abt-form-success-card strong {
    display: block;
    margin-bottom: 4px;
    color: #065f46;
    font-size: 18px;
}

.abt-form-success-card p {
    margin: 0;
    color: #047857;
}

/* =========================================================
   9. HOTEL MODAL / MANAGER FOOTER / POPUP
   ========================================================= */

.abt-hotel-modal {
    padding: 22px;
    border-radius: var(--abt-radius-xl) !important;
}

.abt-hotel-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.abt-hotel-modal h2 {
    margin: 8px 0 14px;
    font-size: 42px;
}

.abt-hotel-slider .abt-slides {
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--abt-radius-md);
}

.abt-price-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.abt-price-table div {
    padding: 12px;
    border: 1px solid var(--abt-line);
    border-radius: 16px;
    background: #f8fbfe;
}

.abt-price-table span {
    display: block;
    color: var(--abt-muted);
    font-weight: 700;
}

.abt-price-table strong {
    color: var(--abt-blue2);
    font-size: 20px;
}

.abt-hotel-modal .abt-price-table,
.abt-hotel-modal .abt-price-table-wagons {
    display: none !important;
}

.abt-manager-wrap {
    margin: 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

.abt-manager-wrap + .abt-wrap,
.abt-manager-wrap + footer,
.abt-manager-wrap + .site-footer,
.abt-manager-wrap + .abt-theme-footer {
    margin-top: 0 !important;
}

.abt-manager-footer {
    min-height: 640px;
    margin: 0 !important;
    background-image: linear-gradient(rgba(7, 47, 73, .64), rgba(7, 47, 73, .66)),
    var(--abt-footer-bg, linear-gradient(135deg, #063047, #0f718f));
    background-size: cover;
    background-position: center;
    color: #fff;
}

.abt-manager-overlay {
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 16px;
}

.abt-manager-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.abt-manager-photo {
    width: 136px;
    height: 136px;
    border: 4px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.abt-manager-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: var(--abt-blue2);
    font-size: 54px;
}

.abt-manager-card h2 {
    margin: 22px 0 12px;
    color: #fff;
    font-size: 30px;
}

.abt-manager-card p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
}

.abt-manager-pills {
    display: grid;
    gap: 12px;
    max-width: 620px;
    margin: 26px auto;
}

.abt-manager-pills span {
    justify-content: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .92);
    color: #243144;
}

.abt-manager-buttons {
    justify-content: center;
}

.abt-manager-buttons .abt-btn {
    min-width: 170px;
}

.abt-dark-footer {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 0 max(24px, calc((100% - 1270px) / 2));
    background: #111;
    color: #fff;
}

.abt-mobile-bar {
    display: none;
    background: rgba(255, 255, 255, .88) !important;
    border-top: 1px solid rgba(22, 51, 58, .10) !important;
    backdrop-filter: blur(18px);
}

.abt-discount-popup {
    position: fixed;
    right: 22px;
    bottom: calc(96px + env(safe-area-inset-bottom));
    z-index: 99998;
    display: block !important;
    max-width: 360px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(.97);
    transition: opacity .26s ease,
    transform .26s cubic-bezier(.2, .8, .2, 1),
    visibility .26s ease;
}

.abt-discount-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.abt-discount-popup-card {
    position: relative;
    padding: 22px;
    border: 1px solid var(--abt-line);
    border-radius: var(--abt-radius-lg);
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
    animation: none !important;
}

.abt-discount-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--abt-blue2);
    font-size: 22px;
    cursor: pointer;
}

.abt-discount-popup-manager {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-right: 38px;
}

.abt-discount-popup-manager img,
.abt-discount-popup-avatar {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    object-fit: cover;
    background: #eaf6ff;
    color: var(--abt-blue2);
    font-size: 28px;
}

.abt-discount-popup-manager span {
    display: block;
    color: var(--abt-dark);
    font-weight: 900;
}

.abt-discount-popup-manager small {
    display: block;
    color: var(--abt-muted);
    font-weight: 700;
}

.abt-discount-popup h3 {
    margin: 0 0 10px;
    color: var(--abt-dark);
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.abt-discount-popup p {
    margin: 0 0 16px;
    color: var(--abt-muted);
    font-size: 16px;
    line-height: 1.45;
}

.abt-discount-popup .abt-btn {
    width: 100%;
}

/* =========================================================
   10. CALCULATION PAGE
   ========================================================= */

.abt-calculation-public {
    padding-top: 38px !important;
    padding-bottom: 70px !important;
    background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.abt-calculation-public .abt-container.abt-calc-public-wrap {
    width: min(calc(100% - 32px), 1180px) !important;
    max-width: 1180px !important;
}

.abt-calc-public-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: stretch;
    gap: 24px;
    padding: 34px;
    border-radius: var(--abt-radius-xl);
    background: linear-gradient(135deg, var(--abt-blue-dark), var(--abt-logo-sea));
    color: #fff;
    box-shadow: 0 18px 55px rgba(7, 48, 71, .16) !important;
}

.abt-calc-public-hero h1 {
    margin: 12px 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
}

.abt-calc-public-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .92) !important;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

.abt-calc-badge {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.abt-calc-total-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    border-radius: var(--abt-radius-lg);
    background: #fff;
    color: #0f172a;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.abt-calc-total-box span {
    color: var(--abt-muted);
    font-weight: 800;
}

.abt-calc-total-box strong {
    display: block;
    margin: 8px 0;
    color: var(--abt-blue-dark);
    font-size: 42px;
    line-height: 1;
    letter-spacing: -.04em;
}

.abt-calc-total-box small {
    color: var(--abt-muted);
    line-height: 1.4;
}

.abt-calc-countdown {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
    padding: 18px 20px;
    border: 1px solid #ffd35a;
    border-radius: 22px;
    background: #fff7d6;
    color: #6b4c00;
    box-shadow: 0 12px 34px rgba(255, 200, 69, .16);
}

.abt-calc-countdown i {
    font-size: 30px;
}

.abt-calc-countdown strong,
.abt-calc-countdown span {
    display: block;
}

.abt-calc-countdown strong {
    font-size: 18px;
}

.abt-calc-countdown.is-expired {
    border-color: #fecaca;
    background: #fee2e2;
    color: var(--abt-red);
}

.abt-calc-public-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 18px;
    margin-top: 18px;
}

.abt-calc-public-card,
.abt-calc-payment-note,
.abt-calc-manager {
    padding: 26px;
}

.abt-calc-dl {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    margin: 0;
}

.abt-calc-dl dt {
    color: var(--abt-blue-dark);
    font-weight: 900;
}

.abt-calc-dl dd {
    margin: 0;
    color: #334155;
}

.abt-calc-lines {
    display: grid;
    gap: 10px;
}

.abt-calc-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid #eef3f8;
}

.abt-calc-line span {
    color: #172033;
    font-weight: 800;
}

.abt-calc-line small {
    display: block;
    margin-top: 2px;
    color: var(--abt-muted);
    font-weight: 600;
}

.abt-calc-line b {
    color: var(--abt-blue-dark);
    white-space: nowrap;
}

.abt-calc-line.is-discount b {
    color: #15803d;
}

.abt-calc-final,
.abt-calc-prepay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: var(--abt-radius-sm);
}

.abt-calc-final {
    background: #eaf6ff;
    color: var(--abt-blue-dark);
}

.abt-calc-final strong {
    font-size: 28px;
    white-space: nowrap;
}

.abt-calc-prepay {
    border: 1px solid #ffe08a;
    background: #fff7d6;
    color: #6b4c00;
}

.abt-calc-prepay strong {
    font-size: 24px;
    white-space: nowrap;
}

.abt-calc-payment-note {
    margin-top: 18px;
    background: #fffef8;
}

.abt-calc-manager {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.abt-calc-manager-photo {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #eaf6ff;
    color: var(--abt-blue-dark);
    font-size: 42px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.abt-calc-manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-calc-manager p {
    margin: 0 0 14px;
    color: var(--abt-muted);
    line-height: 1.6;
}

/* =========================================================
   11. RESPONSIVE
   ========================================================= */

@media (min-width: 901px) {
    .abt-modal-panel.abt-hotel-modal {
        width: min(1360px, calc(100vw - 72px));
        max-height: calc(100dvh - 72px);
        padding: 28px;
        overflow: hidden;
    }

    .abt-hotel-modal-grid {
        grid-template-columns: minmax(480px, 1.08fr) minmax(440px, .92fr);
        gap: 34px;
        align-items: stretch;
        max-height: calc(100dvh - 128px);
    }

    .abt-hotel-modal-content {
        min-height: 0;
        max-height: calc(100dvh - 128px);
        overflow: auto;
        padding-right: 8px;
        scrollbar-width: thin;
    }

    .abt-hotel-slider,
    .abt-hotel-slider .abt-slides {
        height: 100%;
        min-height: 560px;
        max-height: calc(100dvh - 128px);
    }

    .abt-hotel-slider .abt-slide img {
        border-radius: 26px;
    }

    .abt-hotel-modal h2 {
        margin-bottom: 18px;
        font-size: clamp(38px, 3vw, 54px);
        line-height: 1.02;
    }

    .abt-hotel-modal-content > p {
        margin-bottom: 18px;
        font-size: 17px;
        line-height: 1.55;
    }

    .abt-hotel-modal .abt-check-list {
        columns: 2;
        column-gap: 22px;
        margin-bottom: 18px;
    }

    .abt-hotel-modal .abt-check-list li {
        break-inside: avoid;
        margin-bottom: 8px;
    }

    .abt-hotel-modal .abt-modal-actions {
        position: sticky;
        bottom: -1px;
        z-index: 4;
        margin: 18px -8px 0;
        padding: 16px 8px 2px;
        background: linear-gradient(to top, #fff 80%, rgba(255, 255, 255, 0));
    }
}

@media (min-width: 701px) and (max-width: 1120px) {
    .abt-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .abt-feature {
        min-height: 185px !important;
    }
}

@media (max-width: 1100px) {
    .abt-hero-premium .abt-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr) !important;
        gap: 34px !important;
    }

    .abt-hero-title {
        font-size: clamp(48px, 6.6vw, 74px) !important;
    }

    .abt-hero-card-premium {
        padding: 34px !important;
    }
}

@media (max-width: 1024px) {
    .abt-hero-grid,
    .abt-company,
    .abt-hotel-modal-grid {
        grid-template-columns: 1fr;
    }

    .abt-feature-grid,
    .abt-steps,
    .abt-hotels-grid,
    .abt-date-grid,
    .abt-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .abt-hotel-slider .abt-slides {
        min-height: 420px;
    }
}

@media (max-width: 900px) {
    .abt-section {
        padding: 58px 0;
    }

    .abt-modal {
        align-items: flex-start;
        padding: 9px;
    }

    .abt-modal-panel.abt-hotel-modal {
        width: calc(100% - 18px);
        max-height: calc(100dvh - 18px);
        padding: 16px 16px 18px;
        overflow: auto;
    }

    .abt-hotel-modal-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .abt-hotel-slider .abt-slides {
        height: 290px;
        min-height: 290px !important;
        max-height: 38vh;
        border-radius: 24px;
    }

    .abt-hotel-modal h2 {
        margin: 0 0 12px;
        padding-right: 56px;
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.05;
    }

    .abt-hotel-modal-content > p {
        margin: 0 0 14px;
        font-size: 16px;
        line-height: 1.5;
    }

    .abt-hotel-modal .abt-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
        padding-bottom: 6px;
    }

    .abt-hotel-modal .abt-modal-actions .abt-btn {
        width: 100%;
        min-height: 54px;
        white-space: normal;
    }

    .abt-modal-scroll-hint {
        display: block;
        position: fixed;
        left: 50%;
        bottom: calc(18px + env(safe-area-inset-bottom));
        z-index: 10002;
        padding: 9px 14px;
        border-radius: var(--abt-radius-pill);
        background: rgba(7, 47, 73, .92);
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        box-shadow: 0 10px 30px rgba(15, 23, 42, .24);
        pointer-events: none;
        transform: translateX(-50%);
    }

    .abt-modal.is-scrolled .abt-modal-scroll-hint {
        display: none;
    }

    .abt-lead-panel {
        width: calc(100vw - 18px) !important;
        max-height: calc(100dvh - 18px) !important;
        overflow: auto !important;
        border-radius: var(--abt-radius-lg) !important;
    }

    .abt-lead-box,
    .abt-lead-box-v24 {
        display: block;
        grid-template-columns: 1fr !important;
        border-radius: var(--abt-radius-lg);
    }

    .abt-lead-aside {
        min-height: auto;
        padding: 20px 18px 18px !important;
        border-radius: 28px 28px 0 0;
    }

    .abt-lead-aside-top {
        margin-bottom: 12px;
        padding-right: 52px;
    }

    .abt-lead-manager-photo {
        width: 52px !important;
        height: 52px !important;
        flex-basis: 52px;
    }

    .abt-lead-eyebrow {
        font-size: 12px;
    }

    .abt-lead-aside-top strong {
        font-size: 17px;
    }

    .abt-lead-aside h2 {
        max-width: 92%;
        margin-bottom: 8px;
        font-size: 26px !important;
        line-height: 1.12 !important;
    }

    .abt-lead-aside p {
        font-size: 14px !important;
        line-height: 1.42;
    }

    .abt-lead-aside-note {
        display: none;
    }

    .abt-lead-contact-actions {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .abt-lead-contact-actions .abt-btn {
        min-height: 42px;
        padding: 10px;
        font-size: 14px;
    }

    .abt-lead-contact-actions .abt-btn:first-child {
        grid-column: 1 / -1;
    }

    .abt-lead-main {
        padding: 18px 16px;
    }

    .abt-lead-main-head h3,
    .abt-review-form-card h3 {
        font-size: 22px !important;
    }

    .abt-lead-main-head p {
        font-size: 14px;
    }

    .abt-form-grid,
    .abt-lead-form .abt-form-grid,
    .abt-review-form .abt-form-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .abt-lead-form label,
    .abt-review-form label {
        gap: 6px !important;
        font-size: 14px !important;
    }

    .abt-lead-form input,
    .abt-lead-form select,
    .abt-lead-form textarea,
    .abt-review-form input,
    .abt-review-form select,
    .abt-review-form textarea {
        min-height: 47px !important;
        padding: 11px 13px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
    }

    .abt-lead-form textarea,
    .abt-review-form textarea {
        min-height: 82px !important;
    }

    .abt-lead-form > .abt-btn-primary,
    .abt-review-form > .abt-btn-primary {
        width: 100%;
        min-height: 50px;
        position: sticky;
        bottom: 0;
        z-index: 3;
    }

    .abt-reviews-section .abt-review-form-card {
        padding: 22px !important;
        border-radius: var(--abt-radius-md) !important;
    }

    .abt-hero.abt-section.abt-hero-premium {
        min-height: auto;
        padding: 58px 0 64px !important;
    }

    .abt-hero-premium .abt-hero-photo {
        width: 100%;
        opacity: .18;
    }

    .abt-hero-premium .abt-hero-wave,
    .abt-hero-premium::after {
        display: none;
    }

    .abt-hero-premium::before {
        width: 100% !important;
        clip-path: none;
        background: rgba(var(--abt-bg-cream-rgb), .84);
    }

    .abt-hero-premium .abt-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .abt-hero-copy {
        max-width: none;
    }

    .abt-hero-title {
        font-size: clamp(40px, 10vw, 58px) !important;
        line-height: .98 !important;
    }

    .abt-hero-premium .abt-kicker {
        margin-bottom: 24px;
    }

    .abt-hero-premium .abt-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .abt-hero-premium .abt-btn {
        width: 100%;
        padding-inline: 18px !important;
    }

    .abt-hero-mini-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .abt-hero-card-premium {
        width: 100%;
        border-radius: 30px !important;
    }

    .abt-hotel-card-modern .abt-hotel-img {
        height: 250px !important;
    }

    .abt-gallery-prev {
        left: 10px;
    }

    .abt-gallery-next {
        right: 10px;
    }

    .abt-calc-public-hero,
    .abt-calc-public-grid {
        grid-template-columns: 1fr;
    }

    .abt-calc-public-hero {
        padding: 24px;
        border-radius: var(--abt-radius-lg);
    }

    .abt-calc-total-box strong {
        font-size: 34px;
    }

    .abt-calc-manager {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .abt-calc-manager-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .abt-discount-popup {
        left: 14px;
        right: 14px;
        bottom: calc(92px + env(safe-area-inset-bottom));
        max-width: none;
    }

    .abt-discount-popup-card {
        padding: 18px;
        border-radius: var(--abt-radius-md);
    }

    .abt-discount-popup h3 {
        font-size: 23px;
    }

    .abt-discount-popup p {
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    html,
    body {
        overflow-x: hidden;
    }

    .abt-wrap {
        font-size: var(--abt-text-size-mobile);
        line-height: 1.5;
    }

    .abt-wrap:has(.abt-mobile-bar) {
        padding-bottom: 96px;
    }

    .abt-container {
        width: min(100% - 24px, 1270px) !important;
    }

    .abt-section {
        padding: 46px 0;
    }

    .abt-section-head {
        max-width: 96%;
        margin-bottom: 22px;
    }

    .abt-faq {
        grid-template-columns: 1fr;
    }

    .abt-section-head h2,
    .abt-final h2,
    .abt-thankyou-card h1 {
        font-size: var(--abt-h2-size-mobile) !important;
        line-height: 1.12 !important;
        letter-spacing: -.032em !important;
    }

    .abt-section-head p,
    .abt-hero p,
    .abt-feature p,
    .abt-hotel-body p,
    .abt-example p,
    .abt-review p,
    .abt-text p,
    .abt-calc-public-card,
    .abt-calc-payment-note p {
        font-size: var(--abt-text-size-mobile) !important;
        line-height: 1.5 !important;
    }

    .abt-hero h1,
    .abt-hero h2,
    .abt-calc-public-hero h1 {
        font-size: var(--abt-h1-size-mobile) !important;
        line-height: 1.05 !important;
    }

    .abt-feature-grid,
    .abt-steps,
    .abt-hotels-grid,
    .abt-date-grid,
    .abt-examples-grid,
    .abt-doc-grid,
    .abt-review-grid {
        grid-template-columns: 1fr;
    }

    .abt-feature-grid {
        gap: 14px !important;
    }

    .abt-feature {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        grid-template-areas:
            "icon title"
            "icon text";
        align-items: center !important;
        column-gap: 16px !important;
        row-gap: 4px !important;
        min-height: auto !important;
        padding: 20px !important;
        border-radius: var(--abt-radius-md) !important;
    }

    .abt-feature i {
        grid-area: icon !important;
        width: 64px !important;
        height: 64px !important;
        font-size: 30px !important;
    }

    .abt-feature h3 {
        grid-area: title !important;
        margin: 0 !important;
        font-size: var(--abt-h3-size-mobile) !important;
        line-height: 1.15 !important;
    }

    .abt-feature p {
        grid-area: text !important;
        margin: 0 !important;
    }

    .abt-feature strong {
        grid-column: 2 !important;
        margin: 4px 0 0 !important;
        font-size: 20px !important;
    }

    .abt-kicker {
        width: 100%;
        justify-content: flex-start;
        gap: 8px !important;
        padding: 13px 16px;
        font-size: 12px !important;
        line-height: 1.35 !important;
        letter-spacing: .04em;
    }

    .abt-kicker-logo {
        max-width: 42px;
    }

    .abt-kicker-logo img {
        height: 14px;
        max-width: 42px;
    }

    .abt-hero-actions {
        display: grid;
        grid-template-columns: 1.25fr .9fr;
        gap: 12px;
    }

    .abt-hero-actions .abt-btn,
    .abt-card-actions .abt-btn {
        width: 100%;
        padding-inline: 14px;
    }

    .abt-hero-card {
        margin-top: 8px;
        padding: 26px;
        border-radius: var(--abt-radius-lg);
    }

    .abt-date-card,
    .abt-example,
    .abt-review,
    .abt-price-card,
    .abt-doc-grid article {
        border-radius: var(--abt-radius-md) !important;
    }

    .abt-date-card {
        padding: 24px;
    }

    .abt-date-card h3 {
        font-size: 28px !important;
        line-height: 1.12 !important;
    }

    .abt-date-item {
        padding: 17px 18px;
        border-radius: var(--abt-radius-sm);
    }

    .abt-date-item span {
        font-size: 21px !important;
        line-height: 1.15 !important;
    }

    .abt-date-item small {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .abt-hotels-grid {
        gap: 24px;
    }

    .abt-hotel-img {
        height: 260px;
    }

    .abt-hotel-body {
        padding: 24px;
    }

    .abt-hotel-body h3 {
        font-size: 29px !important;
        line-height: 1.12 !important;
    }

    .abt-hotel-card-modern .abt-hotel-img {
        height: 255px !important;
        border-radius: 26px 26px 0 0;
    }

    .abt-hotel-photo-overlay {
        inset: 12px;
        gap: 8px;
    }

    .abt-hotel-title-badge {
        max-width: calc(100vw - 170px);
        overflow: hidden;
        padding: 8px 11px;
        font-size: 15px;
        text-overflow: ellipsis;
    }

    .abt-hotel-mark {
        padding: 7px 10px;
        font-size: 12px;
    }

    .abt-hotel-price-badge {
        padding: 10px 12px;
        font-size: 15px;
    }

    .abt-hotel-card-modern .abt-hotel-body p {
        -webkit-line-clamp: 3;
    }

    .abt-card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .abt-prices-desktop {
        display: none !important;
    }

    .abt-prices-mobile {
        display: grid;
        gap: 16px;
    }

    .abt-price-card {
        padding: 22px;
        border-radius: 26px;
    }

    .abt-price-card h3 {
        margin-bottom: 14px;
        font-size: 26px !important;
        line-height: 1.14 !important;
    }

    .abt-price-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .abt-price-card-grid div {
        padding: 14px 13px;
        border-radius: var(--abt-radius-sm);
    }

    .abt-price-card-grid strong {
        font-size: 18px !important;
        line-height: 1.18 !important;
    }

    .abt-price-card-grid span {
        font-size: 13px !important;
    }

    .abt-price-card-btn {
        width: 100%;
        min-height: 54px;
        white-space: normal;
    }

    .abt-note {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 16px 18px;
        border-radius: 22px;
        font-size: 17px;
        text-align: center;
    }

    .abt-example {
        padding: 23px !important;
    }

    .abt-example h3 {
        font-size: 27px !important;
        line-height: 1.15 !important;
    }

    .abt-example dl {
        grid-template-columns: 1fr;
        gap: 2px;
        font-size: 15.5px !important;
        line-height: 1.45 !important;
    }

    .abt-example dd,
    .abt-example dt,
    .abt-mini-list,
    .abt-payment {
        font-size: 15.5px !important;
        line-height: 1.45 !important;
    }

    .abt-total {
        font-size: 16px !important;
        line-height: 1.35 !important;
    }

    .abt-company {
        padding: 24px;
    }

    .abt-doc-grid article {
        font-size: 17px;
    }

    .abt-gallery-carousel {
        margin-inline: -2px;
    }

    .abt-gallery-track {
        gap: 14px;
        padding: 2px 22px 4px !important;
        scroll-padding-left: 22px;
    }

    .abt-gallery-card {
        flex-basis: 100%;
        border-radius: var(--abt-radius-md);
    }

    .abt-gallery-card img {
        aspect-ratio: 4 / 3;
    }

    .abt-gallery-card figcaption {
        padding: 14px 15px 16px;
    }

    .abt-gallery-card figcaption strong {
        font-size: 18px;
    }

    .abt-gallery-card figcaption span {
        font-size: 14px;
    }

    .abt-gallery-nav,
    .abt-slider-btn {
        width: 42px;
        height: 42px;
    }

    .abt-gallery-prev {
        left: 8px;
    }

    .abt-gallery-next {
        right: 8px;
    }

    .abt-slide figcaption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 16px;
        border-radius: var(--abt-radius-sm);
    }

    .abt-slide figcaption strong {
        font-size: 20px;
    }

    .abt-final {
        padding: 34px 20px !important;
    }

    .abt-final h2 {
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .abt-final p {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }

    .abt-manager-footer,
    .abt-manager-overlay {
        min-height: auto;
    }

    .abt-manager-overlay {
        padding: 70px 16px 96px;
    }

    .abt-manager-card h2 {
        font-size: 31px !important;
        line-height: 1.12 !important;
    }

    .abt-manager-card p {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }

    .abt-manager-photo {
        width: 126px;
        height: 126px;
    }

    .abt-manager-pills span {
        border-radius: 22px;
        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    .abt-manager-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .abt-manager-buttons .abt-btn {
        width: 100%;
        min-width: 0;
        padding-inline: 14px;
    }

    .abt-manager-buttons .abt-btn-primary {
        grid-column: 1 / -1;
    }

    .abt-dark-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px 34px;
    }

    .abt-mobile-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 9999;
        display: grid;
        grid-template-columns: 1fr 1fr 1.12fr;
        gap: 8px;
        padding: 9px;
        padding-bottom: max(9px, env(safe-area-inset-bottom));
        border: 1px solid var(--abt-line);
        border-radius: var(--abt-radius-md);
        box-shadow: 0 18px 55px rgba(15, 23, 42, .28);
    }

    .abt-mobile-bar a,
    .abt-mobile-bar button {
        min-height: 56px;
        border-radius: var(--abt-radius-sm);
        background: #f1f5f9;
        color: #0f172a;
        font-size: var(--abt-button-size-mobile) !important;
    }

    .abt-mobile-bar button {
        background: var(--abt-yellow);
    }

    .abt-mobile-bar > :last-child:nth-child(2) {
        grid-column: 2 / -1;
    }

    .abt-review-top strong {
        font-size: 17px;
    }

    .abt-review-photo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .abt-thankyou-card {
        padding: 28px 22px;
        border-radius: var(--abt-radius-lg);
        text-align: left;
    }

    .abt-thankyou-card h1 {
        font-size: 34px;
    }

    .abt-thankyou-card p {
        font-size: 17px;
    }

    .abt-thankyou-actions {
        justify-content: flex-start;
    }

    .abt-thankyou-actions .abt-btn {
        width: 100%;
    }

    .abt-calculation-public {
        padding: 12px 0 34px !important;
    }

    .abt-calculation-public .abt-container.abt-calc-public-wrap {
        width: min(calc(100% - 12px), 1180px) !important;
    }

    .abt-calc-public-hero {
        gap: 16px !important;
        padding: 18px !important;
        border-radius: var(--abt-radius-md) !important;
    }

    .abt-calc-public-hero h1 {
        margin: 10px 0 8px !important;
        font-size: 26px !important;
        line-height: 1.1 !important;
    }

    .abt-calc-public-hero p {
        color: rgba(255, 255, 255, .92) !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .abt-calc-badge {
        padding: 7px 10px !important;
        font-size: 12px !important;
    }

    .abt-calc-total-box {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .abt-calc-total-box strong {
        font-size: 30px !important;
    }

    .abt-calc-countdown {
        margin: 12px 0 !important;
        padding: 14px !important;
        border-radius: var(--abt-radius-sm) !important;
    }

    .abt-calc-public-grid {
        gap: 12px !important;
        margin-top: 12px !important;
    }

    .abt-calc-public-card,
    .abt-calc-payment-note,
    .abt-calc-manager {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    .abt-calc-public-card h2,
    .abt-calc-payment-note h2,
    .abt-calc-manager h2 {
        margin-bottom: 14px !important;
        font-size: 24px !important;
    }

    .abt-calc-dl {
        grid-template-columns: 92px minmax(0, 1fr) !important;
        gap: 8px 10px !important;
    }

    .abt-calc-dl dt,
    .abt-calc-dl dd,
    .abt-calc-line span,
    .abt-calc-line b {
        font-size: 14px !important;
    }

    .abt-calc-line {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 12px 0 !important;
    }

    .abt-calc-line small {
        font-size: 12px !important;
    }

    .abt-calc-final,
    .abt-calc-prepay {
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .abt-calc-final strong,
    .abt-calc-prepay strong {
        font-size: 22px !important;
    }

    .abt-calc-payment-note,
    .abt-calc-manager {
        margin-top: 12px !important;
    }

    .abt-calc-manager-photo {
        width: 86px !important;
        height: 86px !important;
    }

    .abt-calc-manager p {
        font-size: 14px !important;
    }

    .abt-calc-manager-actions {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px !important;
    }

    .abt-calc-manager-actions .abt-btn {
        width: 100%;
        min-height: 44px !important;
        padding-inline: 12px !important;
        font-size: 13px !important;
    }

    .abt-calc-manager-actions .abt-btn:first-child,
    .abt-calc-manager-actions .abt-btn:last-child {
        grid-column: 1 / -1;
    }

    .abt-hero-card-premium .abt-discount span {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .abt-container {
        width: min(100% - 24px, 1270px) !important;
    }

    .abt-btn {
        min-height: 52px;
        padding: 14px 18px;
    }

    .abt-calc-public-hero h1 {
        font-size: 32px;
    }

    .abt-calc-public-card,
    .abt-calc-payment-note,
    .abt-calc-manager {
        padding: 20px;
        border-radius: var(--abt-radius-md);
    }

    .abt-calc-dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .abt-calc-final,
    .abt-calc-prepay,
    .abt-calc-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .abt-calc-final strong,
    .abt-calc-prepay strong {
        font-size: 26px;
    }

    .ug-hero__palm-shadow {
        background-image: none;
    }
}

@media (max-width: 520px) {
    .abt-hero.abt-section.abt-hero-premium {
        padding-top: 42px !important;
    }

    .abt-hero-title {
        font-size: 39px !important;
        letter-spacing: -.045em !important;
    }

    .abt-hero-lead {
        font-size: 17px !important;
    }

    .abt-hero-premium .abt-kicker {
        align-items: flex-start;
        border-radius: 22px !important;
        white-space: normal;
    }

    .abt-hero-premium .abt-hero-actions {
        grid-template-columns: 1fr;
    }

    .abt-hero-card-premium {
        padding: 26px 22px !important;
    }

    .abt-hero-card-premium .abt-hero-days,
    .abt-hero-card-premium .abt-hero-price {
        font-size: 44px !important;
    }

    .abt-hero-card-premium .abt-discount {
        padding: 15px;
        border-radius: 19px;
    }
}

@media (max-width: 430px) {
    .abt-hero-actions,
    .abt-card-actions,
    .abt-manager-buttons {
        grid-template-columns: 1fr;
    }

    .abt-price-table,
    .abt-price-card-grid {
        grid-template-columns: 1fr;
    }

    .abt-section-head h2 {
        font-size: 30px !important;
    }

    .abt-hero h1,
    .abt-hero h2 {
        font-size: 38px !important;
    }

    .abt-hotel-body h3 {
        font-size: 28px !important;
    }

    .abt-example h3 {
        font-size: 26px !important;
    }

    .abt-price-card h3 {
        font-size: 25px !important;
    }

    .abt-mobile-bar {
        grid-template-columns: 1fr 1fr;
    }

    .abt-mobile-bar a:nth-child(2):not(:last-child) {
        display: none;
    }

    .abt-mobile-bar > :last-child,
    .abt-mobile-bar > :last-child:nth-child(2) {
        grid-column: auto;
    }

    .abt-lead-panel {
        width: calc(100vw - 10px) !important;
        max-height: calc(100dvh - 10px) !important;
        border-radius: var(--abt-radius-md) !important;
    }

    .abt-lead-aside {
        padding: 18px 14px 16px !important;
        border-radius: 24px 24px 0 0;
    }

    .abt-lead-aside h2 {
        font-size: 24px !important;
    }

    .abt-lead-main {
        padding: 16px 14px;
    }

    .abt-lead-contact-actions {
        grid-template-columns: 1fr;
    }

    .abt-lead-contact-actions .abt-btn:first-child {
        grid-column: auto;
    }
}


/* =========================================================
   Slider fixes: main gallery + hotel popup slider
   ========================================================= */

/* Main gallery is a horizontal animated strip. */
.abt-gallery-track {
    display: flex !important;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.abt-gallery-track::-webkit-scrollbar {
    display: none;
}

.abt-gallery-card {
    flex: 0 0 calc((100% - 24px) / 2) !important;
    scroll-snap-align: none !important;
}

.abt-gallery-nav.is-disabled,
.abt-gallery-nav:disabled {
    opacity: 0.42;
    cursor: default;
    pointer-events: none;
    transform: translateY(-50%) scale(0.96);
}

/* Hotel modal popup must stay visible when JS adds .is-open. */
.abt-modal.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.abt-modal.is-open .abt-modal-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Hotel popup slider is not a scroll strip. It switches layered slides. */
.abt-slider,
.abt-hotel-slider {
    position: relative;
}

.abt-hotel-slider {
    overflow: hidden;
    border-radius: var(--abt-radius-md);
    background: #eef6f8;
}

.abt-hotel-slider .abt-slides {
    position: relative !important;
    display: block !important;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--abt-radius-md);
    background: #eef6f8;
}

.abt-hotel-slider .abt-slide {
    position: absolute !important;
    inset: 0;
    display: block !important;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(34px) scale(0.985);
    transition: opacity 0.42s ease,
    transform 0.42s cubic-bezier(.22, .8, .22, 1),
    visibility 0.42s ease;
}

.abt-hotel-slider .abt-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.abt-hotel-slider .abt-slide.is-prev {
    transform: translateX(-34px) scale(0.985);
}

.abt-hotel-slider .abt-slide.is-next {
    transform: translateX(34px) scale(0.985);
}

.abt-hotel-slider .abt-slide.is-leaving-left {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-34px) scale(0.985);
}

.abt-hotel-slider .abt-slide.is-leaving-right {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(34px) scale(0.985);
}

.abt-hotel-slider .abt-slide img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    border-radius: var(--abt-radius-md);
}

.abt-slider-btn {
    position: absolute;
    z-index: 6;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #087f91;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.abt-slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.abt-slider-btn i {
    display: block;
    font-size: 25px;
    line-height: 1;
}

.abt-slider-btn.abt-prev {
    left: 14px;
}

.abt-slider-btn.abt-next {
    right: 14px;
}

@media (max-width: 1024px) {
    .abt-gallery-track {
        gap: 18px;
    }

    .abt-gallery-card {
        flex-basis: calc((100% - 18px) / 2) !important;
    }
}

@media (max-width: 900px) {
    .abt-hotel-slider .abt-slides {
        min-height: 360px !important;
        height: 360px !important;
        max-height: none !important;
    }

    .abt-hotel-slider .abt-slide img {
        min-height: 360px !important;
    }
}

@media (max-width: 760px) {
    .abt-gallery-track {
        gap: 16px;
    }

    .abt-gallery-card {
        flex-basis: 100% !important;
    }
}

@media (max-width: 560px) {
    .abt-hotel-slider .abt-slides {
        min-height: 280px !important;
        height: 280px !important;
        border-radius: 20px;
    }

    .abt-hotel-slider .abt-slide img {
        min-height: 280px !important;
    }

    .abt-slider-btn {
        width: 40px;
        height: 40px;
    }

    .abt-slider-btn.abt-prev {
        left: 10px;
    }

    .abt-slider-btn.abt-next {
        right: 10px;
    }
}

/* =========================================================
   Additional payments / Дополнительные оплаты
   ========================================================= */

.abt-extra-payments,
.abt-additional-payments,
.abt-fees-section {
    position: relative;
    overflow: hidden;
    padding: 88px 20px 100px;
    color: #fff;
    background: radial-gradient(circle at 16% 18%, rgba(255, 232, 166, 0.13), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.11), transparent 30%),
    linear-gradient(135deg, #0a4d5a 0%, #087f91 54%, #067284 100%);
}

.abt-extra-payments::before, .abt-additional-payments::before, .abt-fees-section::before {
    content: "";
    position: absolute;
    left: -190px;
    top: -230px;
    width: 3340px;
    height: 540px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.075);
    pointer-events: none;
}

.abt-extra-payments::after,
.abt-additional-payments::after,
.abt-fees-section::after {
    content: "";
    position: absolute;
    right: -260px;
    bottom: -300px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: rgba(247, 202, 98, 0.10);
    pointer-events: none;
}

.abt-extra-payments .abt-container,
.abt-additional-payments .abt-container,
.abt-fees-section .abt-container {
    position: relative;
    z-index: 1;
}

.abt-extra-payments .abt-section-head,
.abt-additional-payments .abt-section-head,
.abt-fees-section .abt-section-head {
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}

.abt-extra-payments .abt-section-head h2, .abt-additional-payments .abt-section-head h2, .abt-fees-section .abt-section-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: 1.08;
}

.abt-extra-payments .abt-section-head p,
.abt-additional-payments .abt-section-head p,
.abt-fees-section .abt-section-head p {
    margin: 18px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: -0.015em;
}

/* Сетка карточек */
.abt-extra-payments-grid,
.abt-additional-payments-grid,
.abt-fees-grid,
.abt-fee-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* Карточка доплаты */
.abt-extra-payments article, .abt-additional-payments article, .abt-fees-section article, .abt-fee-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 26px 24px 24px;
    border-radius: 26px;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.abt-extra-payments article:hover, .abt-additional-payments article:hover, .abt-fees-section article:hover, .abt-fee-card:hover {
    border-color: rgba(255, 232, 166, 0.34);
    box-shadow: -1px 2px 82px 8px rgb(0 0 0 / 27%), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Верхняя тонкая линия карточки */
.abt-extra-payments article::before,
.abt-additional-payments article::before,
.abt-fees-section article::before,
.abt-fee-card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #ffe8a6 0%, #f8c95c 55%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0.95;
}

/* Иконка */
.abt-extra-payments article i,
.abt-additional-payments article i,
.abt-fees-section article i,
.abt-fee-card i,
.abt-extra-payments article svg,
.abt-additional-payments article svg,
.abt-fees-section article svg,
.abt-fee-card svg {
    position: relative;
    z-index: 1;
}

.abt-extra-payments article > i,
.abt-additional-payments article > i,
.abt-fees-section article > i,
.abt-fee-card > i {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #8a610e;
    background: linear-gradient(135deg, #ffe8a6 0%, #f8c95c 100%);
    border: 1px solid rgba(176, 124, 20, 0.18);
    box-shadow: 0 14px 30px rgba(188, 137, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 28px;
    line-height: 1;
}

/* Если иконка внутри отдельного div */
.abt-extra-payments .abt-icon,
.abt-additional-payments .abt-icon,
.abt-fees-section .abt-icon,
.abt-fee-card .abt-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #8a610e;
    background: linear-gradient(135deg, #ffe8a6 0%, #f8c95c 100%);
    border: 1px solid rgba(176, 124, 20, 0.18);
    box-shadow: 0 14px 30px rgba(188, 137, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 28px;
    line-height: 1;
}

/* Заголовок карточки */
.abt-extra-payments article h3,
.abt-additional-payments article h3,
.abt-fees-section article h3,
.abt-fee-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.24;
    letter-spacing: -0.025em;
    font-weight: 500;
}

/* Цена */
.abt-extra-payments article strong,
.abt-additional-payments article strong,
.abt-fees-section article strong,
.abt-fee-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 18px;
    color: #fff3c8;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 600;
}

/* Описание */
.abt-extra-payments article p,
.abt-additional-payments article p,
.abt-fees-section article p,
.abt-fee-card p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.52;
    font-weight: 550;
}

/* Если цена размечена отдельным классом */
.abt-fee-price,
.abt-extra-price,
.abt-payment-price {
    display: block;
    margin-top: 18px;
    color: #fff3c8;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 950;
}

/* Планшеты */
@media (max-width: 1100px) {
    .abt-extra-payments-grid,
    .abt-additional-payments-grid,
    .abt-fees-grid,
    .abt-fee-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Телефоны */
@media (max-width: 640px) {
    .abt-extra-payments,
    .abt-additional-payments,
    .abt-fees-section {
        padding: 58px 16px 66px;
    }

    .abt-extra-payments .abt-section-head,
    .abt-additional-payments .abt-section-head,
    .abt-fees-section .abt-section-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .abt-extra-payments .abt-section-head h2,
    .abt-additional-payments .abt-section-head h2,
    .abt-fees-section .abt-section-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .abt-extra-payments .abt-section-head p,
    .abt-additional-payments .abt-section-head p,
    .abt-fees-section .abt-section-head p {
        font-size: 16px;
    }

    .abt-extra-payments-grid,
    .abt-additional-payments-grid,
    .abt-fees-grid,
    .abt-fee-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-extra-payments article,
    .abt-additional-payments article,
    .abt-fees-section article,
    .abt-fee-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .abt-extra-payments article > i,
    .abt-additional-payments article > i,
    .abt-fees-section article > i,
    .abt-fee-card > i,
    .abt-extra-payments .abt-icon,
    .abt-additional-payments .abt-icon,
    .abt-fees-section .abt-icon,
    .abt-fee-card .abt-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
        border-radius: 16px;
        font-size: 25px;
    }

    .abt-extra-payments article h3,
    .abt-additional-payments article h3,
    .abt-fees-section article h3,
    .abt-fee-card h3 {
        font-size: 20px;
    }

    .abt-extra-payments article strong,
    .abt-additional-payments article strong,
    .abt-fees-section article strong,
    .abt-fee-card strong,
    .abt-fee-price,
    .abt-extra-price,
    .abt-payment-price {
        margin-top: 14px;
        font-size: 27px;
    }

    .abt-extra-payments article p,
    .abt-additional-payments article p,
    .abt-fees-section article p,
    .abt-fee-card p {
        margin-top: 14px;
        font-size: 15px;
    }
}

/* =========================================================
   Company / About section
   ========================================================= */

.abt-company {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: 42px;
    align-items: stretch;

    padding: 42px;
    border-radius: 34px;
    background: radial-gradient(circle at 12% 14%, rgba(247, 202, 98, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(8, 127, 145, 0.08), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #fff7e8 100%);
    border: 1px solid rgba(22, 51, 58, 0.10);
    box-shadow: 0 28px 80px rgba(15, 55, 65, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.abt-company::before {
    content: "";
    position: absolute;
    right: -150px;
    top: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(8, 127, 145, 0.065);
    pointer-events: none;
}

.abt-company::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -220px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(247, 202, 98, 0.12);
    pointer-events: none;
}

.abt-company > div {
    position: relative;
    z-index: 1;
}

.abt-company .abt-section-head {
    margin: 0 0 24px;
    max-width: 720px;
}

.abt-company .abt-section-head h2 {
    margin: 0;
    color: #101827;
    font-size: clamp(34px, 3.2vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.abt-company .abt-section-head p {
    margin: 18px 0 0;
    max-width: 680px;
    color: #566579;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 650;
    letter-spacing: -0.018em;
}

.abt-company .abt-text {
    max-width: 760px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(22, 51, 58, 0.10);
}

.abt-company .abt-text p {
    margin: 0;
    color: #344054;
    font-size: 17px;
    line-height: 1.72;
    font-weight: 520;
    letter-spacing: -0.01em;
}

.abt-company .abt-text p + p {
    margin-top: 16px;
}

/* Факты справа */
.abt-facts {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-content: center;
}

.abt-facts > div {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    padding: 22px 24px;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(255, 232, 166, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(22, 51, 58, 0.10);
    box-shadow: 0 18px 45px rgba(15, 55, 65, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.abt-facts > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 5px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, #087f91 0%, #f8c95c 100%);
}

.abt-facts > div::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -54px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: rgba(8, 127, 145, 0.055);
    pointer-events: none;
}

.abt-facts > div:hover {
    border-color: rgba(8, 127, 145, 0.18);
    box-shadow: 0 26px 64px rgba(15, 55, 65, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.abt-facts strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #087f91;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.abt-facts span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    color: #566579;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 750;
}

/* Если вокруг обычная секция без фона — сделаем отступы аккуратнее */
.abt-section:has(.abt-company) {
    background: radial-gradient(circle at 12% 18%, rgba(247, 202, 98, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fff8ec 100%);
}

/* Планшеты */
@media (max-width: 1024px) {
    .abt-company {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 34px;
        border-radius: 30px;
    }

    .abt-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Телефоны */
@media (max-width: 640px) {
    .abt-company {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .abt-company .abt-section-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .abt-company .abt-section-head p {
        font-size: 16px;
    }

    .abt-company .abt-text {
        padding-top: 20px;
    }

    .abt-company .abt-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .abt-facts {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .abt-facts > div {
        min-height: auto;
        padding: 20px 20px 20px 22px;
        border-radius: 20px;
    }

    .abt-facts strong {
        font-size: 36px;
    }

    .abt-facts span {
        font-size: 14px;
    }
}

/* =========================================================
   Documents section / Документы для поездки
   ========================================================= */

.abt-documents-section,
.abt-section.abt-soft:has(.abt-doc-grid) {
    position: relative;
    overflow: hidden;
    padding: 88px 20px 100px;
    color: #fff;
    background: radial-gradient(circle at 16% 18%, rgba(255, 232, 166, 0.13), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.11), transparent 30%),
    linear-gradient(135deg, #0a4d5a 0%, #087f91 54%, #067284 100%);
}

.abt-documents-section::before,
.abt-section.abt-soft:has(.abt-doc-grid)::before {
    content: "";
    position: absolute;
    left: -190px;
    top: -230px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.075);
    pointer-events: none;
}

.abt-documents-section::after,
.abt-section.abt-soft:has(.abt-doc-grid)::after {
    content: "";
    position: absolute;
    right: -260px;
    bottom: -300px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: rgba(247, 202, 98, 0.10);
    pointer-events: none;
}

.abt-documents-section .abt-container,
.abt-section.abt-soft:has(.abt-doc-grid) .abt-container {
    position: relative;
    z-index: 1;
}

.abt-documents-section .abt-section-head,
.abt-section.abt-soft:has(.abt-doc-grid) .abt-section-head {
    max-width: 900px;
    margin: 0 auto 44px;
    text-align: center;
}

.abt-documents-section .abt-section-head h2, .abt-section.abt-soft:has(.abt-doc-grid) .abt-section-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 56px);
}

.abt-doc-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.abt-doc-grid article {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 24px 22px 22px;
    border-radius: 26px;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.abt-doc-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 232, 166, 0.34);
    box-shadow: 0 32px 82px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.abt-doc-grid article::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #ffe8a6 0%, #f8c95c 55%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0.95;
}

.abt-doc-grid article::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -54px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

.abt-doc-grid article i {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #8a610e;
    background: linear-gradient(135deg, #ffe8a6 0%, #f8c95c 100%);
    border: 1px solid rgba(176, 124, 20, 0.18);
    box-shadow: 0 14px 30px rgba(188, 137, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 28px;
    line-height: 1;
}

.abt-doc-grid article span {
    display: block;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Сделаем важные слова визуально плотнее, если будут <strong> внутри span */
.abt-doc-grid article span strong {
    color: #fff3c8;
    font-weight: 900;
}

/* Планшеты */
@media (max-width: 1180px) {
    .abt-doc-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .abt-doc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Телефоны */
@media (max-width: 640px) {
    .abt-documents-section,
    .abt-section.abt-soft:has(.abt-doc-grid) {
        padding: 58px 16px 66px;
    }

    .abt-documents-section .abt-section-head,
    .abt-section.abt-soft:has(.abt-doc-grid) .abt-section-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .abt-documents-section .abt-section-head h2,
    .abt-section.abt-soft:has(.abt-doc-grid) .abt-section-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .abt-doc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-doc-grid article {
        min-height: auto;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        padding: 20px;
        border-radius: 22px;
    }

    .abt-doc-grid article i {
        width: 52px;
        height: 52px;
        margin-bottom: 0;
        border-radius: 16px;
        font-size: 25px;
    }

    .abt-doc-grid article span {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* =========================================================
   Reviews section + review cards / Светлый блок отзывов
   ========================================================= */

/* Секция отзывов */
.abt-reviews-section,
.abt-section:has(.abt-review) {
    position: relative;
    overflow: hidden;
    padding: 88px 20px 100px;
    background: radial-gradient(circle at 14% 18%, rgba(247, 202, 98, 0.14), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(8, 127, 145, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #fff8ec 100%);
}

/* Декоративные пятна */
.abt-reviews-section::before,
.abt-section:has(.abt-review)::before {
    content: "";
    position: absolute;
    left: -190px;
    top: -230px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: rgba(8, 127, 145, 0.055);
    pointer-events: none;
}

.abt-reviews-section::after,
.abt-section:has(.abt-review)::after {
    content: "";
    position: absolute;
    right: -260px;
    bottom: -300px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: rgba(247, 202, 98, 0.12);
    pointer-events: none;
}

.abt-reviews-section .abt-container,
.abt-section:has(.abt-review) .abt-container {
    position: relative;
    z-index: 1;
}

/* Заголовок секции */
.abt-reviews-section .abt-section-head,
.abt-section:has(.abt-review) .abt-section-head {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.abt-reviews-section .abt-section-head h2, .abt-section:has(.abt-review) .abt-section-head h2 {
    margin: 0;
    color: #101827;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: 1.08;
}

.abt-reviews-section .abt-section-head p,
.abt-section:has(.abt-review) .abt-section-head p {
    margin: 18px auto 0;
    max-width: 760px;
    color: #566579;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: -0.015em;
}

/* Сетка отзывов */
.abt-reviews-grid,
.abt-review-grid,
.abt-reviews-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Карточка отзыва */
.abt-review {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 26px 24px 24px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(8, 127, 145, 0.08), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fffaf0 100%);
    border: 1px solid rgba(22, 51, 58, 0.10);
    box-shadow: 0 24px 70px rgba(15, 55, 65, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
    color: #101827;
    transition: transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

/* Верхняя цветная линия карточки */
.abt-review::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #087f91 0%, #74b9a9 44%, #f8c95c 100%);
}

/* Большая декоративная кавычка */
.abt-review::after {
    content: "“";
    position: absolute;
    right: 22px;
    top: 28px;
    color: rgba(8, 127, 145, 0.08);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 126px;
    line-height: 0.7;
    font-weight: 900;
    pointer-events: none;
}

.abt-review:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 127, 145, 0.18);
    box-shadow: 0 32px 84px rgba(15, 55, 65, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Верх карточки: фото + имя */
.abt-review-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* Фото / аватар */
.abt-review-photo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #eaf9fb 0%, #ffffff 100%);
    border: 1px solid rgba(8, 127, 145, 0.16);
    box-shadow: 0 12px 26px rgba(8, 127, 145, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.abt-review-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Заглушка аватара */
.abt-review-photo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #087f91;
    font-size: 30px;
}

.abt-review-photo-placeholder i {
    display: block;
    line-height: 1;
}

/* Имя */
.abt-review-top strong {
    display: block;
    margin: 0;
    color: #101827;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.abt-review-top strong span {
    display: block;
}

/* Город / подпись под именем */
.abt-review-top div > span {
    display: block;
    margin-top: 4px;
    color: #667a80;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

/* Звёзды */
.abt-stars {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #d99a13;
    background: rgba(248, 201, 92, 0.16);
    border: 1px solid rgba(248, 201, 92, 0.30);
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 900;
}

/* Год отдыха */
.abt-review-trip {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-left: 8px;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #087f91;
    background: rgba(8, 127, 145, 0.08);
    border: 1px solid rgba(8, 127, 145, 0.12);
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
}

/* Текст отзыва */
.abt-review p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    color: #344054;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 520;
    letter-spacing: -0.01em;
}

/* Форма отзыва, если она рядом */
.abt-review-form {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    padding: 28px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(8, 127, 145, 0.07), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fffaf0 100%);
    border: 1px solid rgba(22, 51, 58, 0.10);
    box-shadow: 0 24px 70px rgba(15, 55, 65, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Планшеты */
@media (max-width: 1100px) {
    .abt-reviews-grid,
    .abt-review-grid,
    .abt-reviews-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Телефоны */
@media (max-width: 640px) {
    .abt-reviews-section,
    .abt-section:has(.abt-review) {
        padding: 58px 16px 66px;
    }

    .abt-reviews-section .abt-section-head,
    .abt-section:has(.abt-review) .abt-section-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .abt-reviews-section .abt-section-head h2,
    .abt-section:has(.abt-review) .abt-section-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .abt-reviews-section .abt-section-head p,
    .abt-section:has(.abt-review) .abt-section-head p {
        font-size: 16px;
    }

    .abt-reviews-grid,
    .abt-review-grid,
    .abt-reviews-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-review {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .abt-review::before {
        left: 18px;
        right: 18px;
    }

    .abt-review::after {
        right: 12px;
        top: 30px;
        font-size: 96px;
    }

    .abt-review-photo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .abt-review-photo-placeholder {
        font-size: 27px;
    }

    .abt-review-top {
        gap: 12px;
        margin-bottom: 16px;
    }

    .abt-review-top strong {
        font-size: 17px;
    }

    .abt-review-top div > span {
        font-size: 13px;
    }

    .abt-stars {
        font-size: 16px;
    }

    .abt-review-trip {
        display: flex;
        width: fit-content;
        margin-left: 0;
        margin-top: 8px;
    }

    .abt-review p {
        font-size: 15px;
        line-height: 1.6;
    }

    .abt-review-form {
        padding: 22px 18px;
        border-radius: 22px;
    }
}

@media (max-width: 900px) {
    .abt-hero-premium .abt-hero-photo {
        display: none !important;
        background-image: none !important;
    }
}