*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

:root {
    --bg: #060606;
    --accent: #ffae00;
    --green: #28ff1c;
    --white: #ffffff;
    --glass: rgba(135, 135, 135, 0.03);
    --radius-sm: 10px;
    --radius-md: 25px;
    --radius-lg: 35px;
    --max-w: 1440px;
    --pad: clamp(1.5rem, 4vw, 5rem);
}

.container {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #151515;
}
body {
    overflow-x: hidden;
    background: var(--bg);
    color: var(--white);
    font-family: "Rethink Sans", sans-serif;
    line-height: 1.5;
}

#main {
    padding-top: 6.5rem;
}

.blog .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
    max-width: var(--max-w);
}

.blog__grid {
    margin: 2rem auto;
}

.blog-card {
    margin-bottom: 2rem;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #151515;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
    border: 2px solid #151515;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffc13a;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12.65px;
    padding: 5px;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    position: relative;
    line-height: 1;
}
.btn:hover {
    opacity: 0.85;
}
.btn--yellow:hover {
    opacity: 1;
}

@property --a {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.btn--yellow {
    position: relative;
    display: inline-flex;
    padding: 1px;
    border-radius: 13px;
    background: conic-gradient(
        from var(--a),
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.22),
        #ffae00
    );
    animation: rotate-border 5s linear infinite;
    box-shadow: 0 0 10px rgba(255, 174, 0, 0.3);
    transition:
        background 1s ease,
        box-shadow 1s ease;
    width: max-content;
    line-height: 0;
    vertical-align: top;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.btn--yellow .btn__inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    border-radius: 12.654322px;
    box-shadow: 0 0 19px rgba(255, 174, 0, 0.55);
    font-size: 18px;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.btn--yellow .btn__inner svg {
    flex-shrink: 0;
}

.btn--yellow:hover {
    animation-play-state: paused;
    background: #ffae00;
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.5);
}

@keyframes rotate-border {
    0% {
        --a: 0deg;
    }
    100% {
        --a: 360deg;
    }
}

.btn--yellow.btn--lg {
    width: 327px;
    min-height: 56px;
}

.btn--yellow.btn--lg .btn__inner {
    min-height: 46px;
    width: 100%;
    justify-content: center;
    padding: 7.592593px 45.555557px 7.592593px 41.759258px;
}

.btn--yellow.btn--sm {
    width: 162px;
    min-height: 44px;
    border-radius: 10px;
    padding: 4px;
    border-width: 2px;
}

.btn--yellow.btn--sm .btn__inner {
    min-height: 36px;
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    padding: 6px 36px 6px 33px;
    font-size: 12px;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.55);
}

.btn--yellow-outline {
    background: var(--white);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.35);
    border: 2px solid transparent;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 800;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-left: 0;
    padding-right: 0;
}
.navbar {
    max-width: 100vw;
    width: 100vw;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
    background: var(--bg);
    border: none;
    transition: background 0.25s ease, border-color 0.25s ease;
    padding: 1.5rem 2.4rem;
}
.site-header.is-scrolled .navbar {
    background: var(--bg);
    border-color: transparent;
}
.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 !important;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.navbar__logo-image {
    width: 168px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.navbar__hamburger {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 34px;
    height: 26px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.navbar__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
}
.navbar__brand {
    display: flex;
    flex-direction: column;
}
.navbar__brand-main {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}
.navbar__brand-sub {
    font-size: 0.38rem;
    font-weight: 600;
    letter-spacing: 0.71em;
    text-transform: uppercase;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar__menu > li {
    position: relative;
}
.navbar__has-submenu {
    padding-bottom: 0.65rem;
    margin-bottom: -0.65rem;
}
.navbar__submenu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.navbar__submenu-toggle span {
    position: absolute;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.16s ease, opacity 0.16s ease;
}
.navbar__submenu-toggle span:last-child {
    transform: rotate(90deg);
}
.navbar__menu a {
    font-size: 0.92rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.navbar__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
    padding: 0.65rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity 0.16s ease,
        transform 0.16s ease,
        visibility 0.16s ease;
}
.navbar__submenu li {
    list-style: none;
}
.navbar__submenu a {
    display: block;
    padding: 0.52rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}
.navbar__has-submenu:hover > .navbar__submenu,
.navbar__has-submenu:focus-within > .navbar__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.navbar__menu a:hover,
.navbar__menu a.is-active {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 174, 0, 0.25);
}
.navbar__cta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.navbar__available {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
}
.navbar__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(40, 255, 28, 0.15);
    flex-shrink: 0;
}

.hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3.2rem;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.hero__available {
    font-size: 0.875rem;
    font-weight: 600;
    font-style: italic;
    color: var(--green);
}
.hero__title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.hero__title svg {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}
.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.375rem);
    font-weight: 600;
}
.hero__stats {
    display: flex;
    gap: 3rem;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat__num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}
.stat__num--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.stat__num--with-icon svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}
.stat__label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hero__available-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 327px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green);
}
.hero__available-tag .navbar__dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(40, 255, 28, 0.2);
}
.hero__phone {
    font-size: 1.125rem;
    font-weight: 800;
}
.hero__image {
    flex: 0 0 49%;
    max-width: 49%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: visible;
}
.hero__image img {
    border-radius: inherit;
    width: 100%;
    object-fit: cover;
    max-height: 560px;
    position: relative;
    z-index: 2;
    display: block;
}
.hero__curve {
    position: absolute;
    left: 0;
    right: calc(-1 * var(--pad));
    bottom: 100px;
    transform: none;
    width: auto;
    scale: 1.5;
    max-width: unset;
    z-index: 1;
    pointer-events: none;
}
.hero__curve svg {
    width: 100%;
    height: auto;
    display: block;
}

.banner {
    background: var(--accent);
    border-radius: var(--radius-md);
    margin: 2rem auto 2rem;
    max-width: calc(var(--max-w) - 2 * var(--pad));
}
.banner .container {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.banner__text {
    flex: 1;
    min-width: 260px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem 1.5rem;
}
.banner__title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0;
    white-space: nowrap;
}
.banner__text p {
    font-size: 0.82rem;
    font-weight: 700;
    color: #000;
    max-width: none;
    margin: 0;
}

.btn--snake-white {
    position: relative;
    display: inline-flex;
    padding: 1px;
    border-radius: 13px;
    background: conic-gradient(from var(--a), rgba(0,0,0,.6), rgba(0,0,0,.15), #ffffff);
    animation: rotate-border 5s linear infinite;
    box-shadow: 0 0 10px rgba(0,0,0,.15);
    transition: background 1s ease, box-shadow 1s ease;
    width: max-content;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}
.btn--snake-white:hover { opacity: 1; animation-play-state: paused; }
.btn--snake-white .btn__inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
}
.btn--snake-white.btn--lg {
    width: 327px;
    min-height: 56px;
}
.btn--snake-white.btn--lg .btn__inner {
    min-height: 46px;
    padding: 7px 45px 7px 41px;
}

.services {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.card {
    background: var(--glass);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}.card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.card__icon {
    flex-shrink: 0;
}.card h3 {
    font-size: 1.4rem;
    font-weight: 800;
}
.card p {
    font-size: 1rem;
    font-weight: 500;
}

.reviews {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.reviews__mobile-controls {
    display: none;
}
.reviews__arrow {
    border: 0;
    background: transparent;
    width: 30px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.reviews__arrow--prev svg {
    transform: rotate(180deg);
}
.reviews__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.6875rem;
    gap: 2rem;
}
.reviews__headline h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
}
.reviews__headline p {
    margin-top: 1px;
    font-size: 1.5rem;
    font-weight: 600;
}
.reviews__score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    width: 161px;
}
.reviews__score-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}
.reviews__stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    line-height: 1;
}
.reviews__num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.reviews__count {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: right;
}
.reviews__layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.reviews__layout--custom {
    grid-template-columns: repeat(3, 1fr);
}
.reviews__layout--grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.reviews__layout--grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.reviews__layout--list {
    grid-template-columns: 1fr;
}
.reviews__col {
    min-width: 0;
}
.reviews__col--middle {
    display: grid;
    gap: 15px;
}
.review-card {
    background: rgba(135, 135, 135, 0.03);
    border-radius: 35px;
    padding: 25px 26px 25px 30px;
    display: flex;
    flex-direction: column;
}
.review-card--short {
    min-height: 252px;
}
.review-card--tall {
    min-height: 415px;
}
.review-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.review-card__author {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
}
.review-card__author-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-width: 40px;
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-card__avatar--purple {
    background: #8a59ff;
}
.review-card__avatar--green {
    background: #39d86a;
    color: #05220d;
}
.review-card__stars {
    font-size: 1.12rem;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--accent);
}
.review-card__score {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-top: 0.2rem;
}
.review-card__rating {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
}
.review-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 40px;
}
.review-card__meta strong {
    font-size: 0.95rem;
    font-weight: 800;
}
.review-card p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}
.review-card--with-photo {
    justify-content: space-between;
}
.review-card--custom {
    min-height: auto;
}
.review-card__photo {
    margin-top: auto;
}
.review-card__photo img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 5px;
}
.review-card__photo--left img {
    object-position: 25% center;
}
.review-card__photo--right img {
    object-position: 75% center;
    filter: brightness(0.92) saturate(1.05);
}

.stats {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.stats__grid {
    background: var(--glass);
    border-radius: var(--radius-lg);
    padding: 2.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.stat-item__num {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 3.125rem;
    font-weight: 800;
    color: var(--accent);
}
.stat-item__icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}
.stat-item__label {
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    font-weight: 600;
    white-space: nowrap;
}

.gallery {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}
.gallery__mobile-controls {
    display: none;
}
.gallery__arrow {
    border: 0;
    background: transparent;
    width: 30px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.gallery__arrow--prev svg {
    transform: rotate(180deg);
}
.gallery h2 {
    font-size: 2.75rem;
    font-weight: 800;
}
.gallery__sub {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.gallery__grid {
    display: grid;
    gap: 0.625rem;
}
.gallery__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.gallery__grid--cols-2 {
    grid-template-columns: repeat(4, 1fr);
}
.gallery__grid img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.offer {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.offer > .container {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}
.offer--left > .container {
    flex-direction: row-reverse;
}
.offer__image {
    flex: 0 0 50%;
}
.offer__image img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.offer__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 280px;
}
.offer__text h2 {
    font-size: 2.75rem;
    font-weight: 800;
}
.offer__text p {
    font-size: 1rem;
    font-weight: 600;
}
.offer__area {
    flex: 0 0 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: auto;
    text-align: right;
}
.offer__area-list {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.4;
}
.offer__area-all {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    width: 100%;
    text-align: right;
}

.help-center {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.help-center .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.help-center__title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
}
.help-center__content {
    width: min(1100px, 100%);
    text-align: left;
    margin-top: 0.5rem;
}
.help-center__content h2,
.help-center__content h3,
.help-center__content h4 {
    margin-top: 1.2rem;
    margin-bottom: 0.55rem;
    font-weight: 800;
}
.help-center__content h3 {
    font-size: 1.35rem;
}
.help-center__content p {
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}
.help-center__content ul {
    margin: 0.2rem 0 1rem 1.25rem;
    padding: 0;
}
.help-center__content li {
    font-size: 1.06rem;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.blog {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
}
.blog__mobile-controls {
    display: none;
}
.blog__arrow {
    border: 0;
    background: transparent;
    width: 30px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.blog__arrow--prev svg {
    transform: rotate(180deg);
}
.blog h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 4rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.blog-card__img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-card__title {
    font-size: 1.25rem;
    font-weight: 800;
}
.blog-card__title a:hover {
    color: var(--accent);
}

.full-map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 1.5rem;
}
.full-map iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

.content-page {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}
.content-page__container {
    max-width: 1100px;
}
.entry-card {
    background: rgba(135, 135, 135, 0.03);
    border-radius: var(--radius-md);
    padding: 2rem 2rem 2.2rem;
}
.entry-title {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.entry-meta {
    font-size: 0.86rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 1rem;
}
.entry-content {
    font-size: 1.03rem;
    line-height: 1.75;
}
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content blockquote {
    margin-bottom: 1rem;
}
.entry-content ul,
.entry-content ol {
    padding-left: 1.2rem;
}
.entry-content h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-top: 1.2rem;
}
.entry-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 1rem;
}
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.archive-card {
    background: rgba(135, 135, 135, 0.03);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.archive-card__thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}
.archive-card__title {
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
}
.archive-card__title a:hover,
.archive-card__readmore:hover {
    color: var(--accent);
}
.archive-card__excerpt {
    font-size: 0.94rem;
    line-height: 1.6;
    opacity: 0.9;
}
.archive-card__readmore {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
}
.offer-grid {
    margin-top: 1.2rem;
}
.offer-card {
    min-height: 220px;
}

.error-page {
    padding-top: 4rem;
    padding-bottom: 5rem;
}
.error-card {
    background: transparent;
    text-align: center;
    padding: 3.5rem 2.5rem;
}
.error-card__title {
    margin-bottom: 1rem;
}
.error-card__content {
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.92;
}
.error-card__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.error-card__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.error-card__phone {
    font-size: 1.15rem;
    font-weight: 800;
}
.error-card__phone:hover {
    color: var(--accent);
}

.site-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: var(--bg);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.6rem;
    flex-wrap: wrap;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer__logo-image {
    width: 252px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.footer__brand-main {
    display: block;
    font-size: 1.84rem;
    font-weight: 800;
}
.footer__brand-sub {
    display: block;
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.71em;
}
.footer__copy {
    font-size: 0.75rem;
    font-weight: 600;
}
.footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.9;
    text-decoration: none;
    color: var(--white);
}
.footer__credit:hover {
    color: var(--accent);
}
.footer__credit-logo {
    display: inline-flex;
    line-height: 0;
    opacity: 0.96;
}
.footer__credit-logo svg {
    width: 89px;
    height: 21px;
}
.footer__nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: flex-end;
}
.footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
    flex: 1;
    min-width: 520px;
    margin-left: auto;
}
.footer__cta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-left: 1.4rem;
    flex-shrink: 0;
}
.footer__nav a {
    font-size: 0.75rem;
    font-weight: 600;
}
.footer__nav a.is-active {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 174, 0, 0.25);
}

@media (max-width: 1400px) and (max-height: 820px) {
    .hero__curve {
        right: 0;
        bottom: 64px;
        scale: 1.15;
    }
}

@media (max-width: 1024px) {
    .services__grid,
    .blog__grid,
    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reviews__layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .reviews__col--middle {
        grid-template-columns: 1fr;
    }
    .review-card--short,
    .review-card--tall {
        min-height: auto;
    }
    .reviews__header {
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .hero .container {
        flex-direction: column;
    }
    .hero {
        min-height: auto;
        padding-top: 8rem;
    }
    .hero__image {
        flex: 1;
        max-width: 100%;
    }
    .offer,
    .offer--left {
        flex-direction: column;
        gap: 2rem;
    }
    .offer__image {
        flex: 1;
        max-width: 100%;
    }
    .banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .banner__text {
        grid-template-columns: 1fr;
    }
    .footer__nav {
        min-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__cta {
        margin-left: 0;
    }
}
@media (max-width: 640px) {
    #main {
        padding-top: 10.5rem;
    }
    .site-header {
        top: 0;
    }
    .navbar {
        padding: 0.95rem 0.75rem;
    }
    .footer__inner {
        gap: 1.3rem;
        justify-content: center;
        text-align: center;
    }
    .footer__brand {
        align-items: center;
    }
    .footer__nav {
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    .footer__nav ul {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
    }
    .footer__nav a {
        font-size: 0.92rem;
        white-space: nowrap;
    }
    .footer__cta {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    .footer__cta .navbar__available {
        white-space: nowrap;
    }
    .navbar__container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo burger"
            "cta cta";
        align-items: center;
        row-gap: 0.85rem;
    }
    .navbar__logo {
        grid-area: logo;
    }
    .navbar__logo-image {
        width: 210px;
        height: 38px;
    }
    .navbar__hamburger {
        display: inline-flex;
        grid-area: burger;
        justify-self: end;
        width: 44px;
        height: 34px;
        gap: 6px;
    }
    .navbar__hamburger span {
        width: 36px;
        height: 3px;
    }
    .navbar__menu {
        display: none;
    }
    .navbar__menu--active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #000000;
        padding: 1rem 1.5rem;
        gap: 1rem;
        z-index: 1000;
        list-style: none;
        width: 100%;
    }
    .navbar__has-submenu {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .navbar__has-submenu > a {
        grid-column: 1;
    }
    .navbar__submenu-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
    }
    .navbar__submenu {
        position: static;
        display: none;
        grid-column: 1 / -1;
        min-width: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        padding: 0.1rem 0 0.2rem 0.8rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
    .navbar__has-submenu.is-open > .navbar__submenu {
        display: flex;
    }
    .navbar__has-submenu.is-open > .navbar__submenu-toggle span:last-child {
        transform: rotate(0deg);
        opacity: 0;
    }
    .navbar__submenu a {
        font-size: 0.95rem;
        opacity: 0.92;
        padding: 0.4rem 0;
        white-space: normal;
    }
    .navbar__menu--active li {
        list-style: none;
    }
    .navbar__menu--active a {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.75rem 0;
        text-decoration: none;
        color: var(--white);
        cursor: pointer;
    }
    .navbar__menu--active a:active,
    .navbar__menu--active a:hover {
        color: var(--accent);
    }
    .navbar__hamburger--active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }
    .navbar__hamburger--active span:nth-child(2) {
        opacity: 0;
    }
    .navbar__hamburger--active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }
    .navbar__cta {
        grid-area: cta;
        width: 100%;
        justify-content: center;
    }
    .navbar__cta .btn {
        width: 100%;
        max-width: none;
        min-height: 58px;
    }
    .navbar__cta .btn.btn--sm {
        width: 100%;
        min-height: 58px;
        padding: 1px;
    }
    .navbar__cta .btn.btn--sm .btn__inner {
        width: 100%;
        min-height: 52px;
        font-size: 17px;
        font-weight: 800;
        gap: 11px;
        padding: 8px 16px;
    }
    .navbar__cta .btn.btn--sm .btn__inner svg {
        width: 20px;
        height: 20px;
    }
    .navbar__available {
        display: none;
    }
    .services__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }
    .archive-grid {
        grid-template-columns: 1fr;
    }
    .entry-card {
        padding: 1.2rem 1rem 1.4rem;
    }
    .error-page {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }
    .error-card {
        padding: 2rem 1rem;
    }
    .error-card__actions {
        width: 100%;
        flex-direction: column;
    }
    .error-card__actions .btn {
        width: 100%;
        max-width: 100%;
    }
    .error-card__actions .btn.btn--lg,
    .error-card__actions .btn--snake-white.btn--lg {
        width: 100%;
    }
    .error-card__contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .hero .container {
        align-items: center;
    }
    .hero__image,
    .hero__curve {
        display: none;
    }
    .hero__content {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .hero__available,
    .hero__sub,
    .hero__phone,
    .hero__available-tag {
        text-align: center;
    }
    .hero__title {
        font-size: clamp(1.8rem, 7.8vw, 2.35rem);
        white-space: nowrap;
        justify-content: center;
        gap: 8px;
    }
    .hero__title svg {
        width: 34px;
        height: 34px;
    }
    .hero__stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    .hero__stats .stat__num {
        font-size: 2.05rem;
    }
    .hero__stats .stat__num--with-icon svg {
        width: 0.82em;
        height: 0.82em;
    }
    .stat {
        flex: 1 1 0;
        align-items: center;
    }
    .hero__actions {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.65rem;
    }
    .hero__actions .btn {
        width: 100%;
        max-width: 100%;
    }
    .stats__grid {
        flex-direction: column;
        align-items: center;
    }
    .offer__area,
    .offer--eu,
    .help-center {
        display: none;
    }
    .banner {
        display: none;
    }
    .reviews__header {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .reviews__mobile-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 58%;
        transform: translateY(-50%);
        pointer-events: none;
        padding: 0 0.3rem;
    }
    .reviews__arrow {
        pointer-events: auto;
    }
    .reviews__track {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 0;
        scrollbar-width: none;
    }
    .reviews__track::-webkit-scrollbar {
        display: none;
    }
    .reviews__track > .reviews__col,
    .reviews__track > .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }
    .reviews__headline {
        width: 100%;
        text-align: center;
    }
    .reviews__headline h2 {
        font-size: 2rem;
    }
    .reviews__headline p {
        font-size: 1.1rem;
    }
    .reviews__score {
        width: auto;
        align-items: center;
    }
    .reviews__score-line {
        justify-content: center;
    }
    .reviews__count {
        text-align: center;
    }
    .gallery__mobile-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 62%;
        transform: translateY(-50%);
        pointer-events: none;
        padding: 0 0.3rem;
    }
    .gallery h2 {
        font-size: 1.7rem;
        white-space: nowrap;
    }
    .gallery .container,
    .blog .container {
        overflow: hidden;
    }
    .gallery__arrow {
        pointer-events: auto;
    }
    .gallery__grid,
    .gallery__grid--cols-4,
    .gallery__grid--cols-2 {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 0;
        scrollbar-width: none;
    }
    .gallery__grid::-webkit-scrollbar,
    .gallery__grid--cols-4::-webkit-scrollbar,
    .gallery__grid--cols-2::-webkit-scrollbar {
        display: none;
    }
    .gallery__grid img,
    .gallery__grid--cols-4 img,
    .gallery__grid--cols-2 img {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }
    .blog__mobile-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 54%;
        transform: translateY(-50%);
        pointer-events: none;
        padding: 0 0.3rem;
    }
    .blog__arrow {
        pointer-events: auto;
    }
    .blog__grid,
    .blog__track {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 0;
        scrollbar-width: none;
    }
    .blog__grid::-webkit-scrollbar,
    .blog__track::-webkit-scrollbar {
        display: none;
    }
    .blog__grid .blog-card,
    .blog__track .blog-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }
}
