@font-face {
    font-family: Inter-Regular;
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../fonts/Inter-Bold.ttf');
}

@font-face {
    font-family: LondrinaShadow-Regular;
    src: url('../fonts/LondrinaShadow-Regular.ttf');
}

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.DZf5i8hb9G {
    padding: 25px;
}

.DZf5i8hb9G h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.DZf5i8hb9G p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    margin: 20px 0;
    text-align: center;
}

.service-price .mW87Vkiaqz {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
    display: block;
}

.service-price .YrIvYGwuj5 {
    color: #7f8c8d;
    font-size: 16px;
}

.PD6iYpUitm {
    display: block;
    background: #ff8c00;
    color: #fff;
    padding: 12px 25px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.PD6iYpUitm:hover {
    background: #2980b9;
    color: #fff;
}

/* Service Plans Styles */
.service-plans {
    background: #f8f9fa;
    padding: 80px 0;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

.plan-card.featured {
    border: 2px solid #ff8c00;
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    color: #2c3e50;
    font-size: 26px;
    margin-bottom: 15px;
}

.plan-price {
    margin: 20px 0;
}

.plan-price .amount {
    font-size: 42px;
    color: #ff8c00;
    font-weight: 700;
}

.plan-price .period {
    color: #7f8c8d;
    font-size: 18px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.plan-button {
    display: block;
    background: #ff8c00;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.plan-button:hover {
    background: #2980b9;
    color: #fff;
}

/* Testimonials Styles */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #f1c40f;
    font-size: 24px;
    margin-bottom: 20px;
}

.review-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.JDv5wooZlH {
    display: flex;
    align-items: center;
}

.JDv5wooZlH img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.JDv5wooZlH-info h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 18px;
}

.JDv5wooZlH-info p {
    color: #7f8c8d;
    margin: 5px 0 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff8c00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .plan-card.featured {
        transform: none;
    }

    .service-image {
        height: 200px;
    }

    .section-title {
        font-size: 28px;
    }

    .DZf5i8hb9G h3 {
        font-size: 20px;
    }

    .plan-price .amount {
        font-size: 32px;
    }
}

:root {
    --clr-coldblue: #4a6cff;
    --clr-deepviolet: #5a3e9b;
    --clr-lightgray: #f7f9fc;
    --clr-darktext: #212121;
    --shadow-subtle: rgba(74, 108, 255, 0.25);
    --shadow-strong: rgba(90, 62, 155, 0.3);
    --max-width: 1300px;
}

.YRLbDYgjJK {
    background: linear-gradient(135deg, var(--clr-lightgray) 0%, #e5eaff 100%);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 680px;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-darktext);
}

.furnace-alternate__container {
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

/* Геометричний фон з великими кругами */
.YRLbDYgjJK::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, #ff8c00 35%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    animation: slow-rotate 20s linear infinite;
}

.furnace-alternate__text-block {
    flex: 1 1 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    animation: slide-in-left 1.3s ease forwards;
    opacity: 0;
    transform: translateX(-60px);
    z-index: 20;
}

.furnace-alternate__text-block h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 6px var(--shadow-subtle);
    color: var(--clr-deepviolet);
}

.furnace-alternate__text-block h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #ff8c00;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -0.5rem;
    text-shadow: 0 0 4px var(--shadow-strong);
}

.furnace-alternate__text-block p {
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
    max-width: 600px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

.furnace-alternate__buttons {
    margin-top: 2rem;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-alternate-primary,
.btn-alternate-secondary {
    padding: 14px 36px;
    font-weight: 700;
    border-radius: 35px;
    cursor: pointer;
    font-size: 1.05rem;
    user-select: none;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 15px var(--shadow-subtle);
}

.btn-alternate-primary {
    background: #ff8c00;
    color: white;
    box-shadow:
        0 8px 25px var(--shadow-subtle),
        0 0 25px #ff8c00;
}

.btn-alternate-primary:hover,
.btn-alternate-primary:focus {
    background: var(--clr-deepviolet);
    box-shadow:
        0 12px 30px var(--shadow-strong),
        0 0 40px var(--clr-deepviolet);
    transform: translateY(-3px);
    outline: none;
}

.btn-alternate-secondary {
    background: transparent;
    border: 2.5px solid #ff8c00;
    color: #ff8c00;
}

.btn-alternate-secondary:hover,
.btn-alternate-secondary:focus {
    background: #ff8c00;
    color: white;
    box-shadow: 0 8px 20px var(--shadow-subtle);
    outline: none;
    transform: translateY(-3px);
}

.ncgWgii2Kc {
    flex: 1 1 480px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(74, 108, 255, 0.2);
    animation: slide-in-right 1.4s ease forwards;
    opacity: 0;
    transform: translateX(60px);
    cursor: default;
    will-change: transform;
    transition: transform 0.5s ease;
    background: white;
}

.ncgWgii2Kc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 25px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.07));
}

.ncgWgii2Kc:hover img,
.ncgWgii2Kc:focus-within img {
    transform: scale(1.08) rotate(1.5deg);
}

/* Анімації */
@keyframes slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Адаптивність */
@media (max-width: 1024px) {
    .furnace-alternate__container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .furnace-alternate__text-block,
    .ncgWgii2Kc {
        flex: 1 1 100%;
        max-width: 540px;
        margin: 0 auto;
        text-align: center;
    }

    .furnace-alternate__text-block h1 {
        font-size: 1.8rem;
    }

    .furnace-alternate__text-block h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .YRLbDYgjJK {
        padding: 3rem 1rem;
    }

    .btn-alternate-primary,
    .btn-alternate-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Контейнер для всіх секцій */
.DVUhHu9nME {
    max-width: 1340px;
    margin: 4rem auto;
    padding: 0 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    color: #212121;
    line-height: 1.6;
}

/* Базовий стиль заголовків */
.content-header {
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.02em;
    color: #111;
}

/* Підкреслення під заголовком */
.content-header::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    border-radius: 2px;
    margin-top: 0.5rem;
}

/* Головний рядок секції */
.content-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Текстовий блок */
.CWtYzE44b9 {
    flex: 1 1 380px;
    font-size: 1.05rem;
    color: #333;
}

.CWtYzE44b9 p {
    margin-bottom: 1.4rem;
}

/* Блок з картинкою */
.content-image {
    flex: 0 0 380px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 8px 20px rgb(255 106 0 / 0.3),
        0 0 15px rgb(238 9 121 / 0.2);
    transition: transform 0.35s ease;
}

.content-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-image:hover {
    transform: scale(1.07);
}

/* Віддзеркалювання для другого рядка */
.content-row.reverse {
    flex-direction: row-reverse;
}

/* Адаптивність */
@media (max-width: 768px) {
    .content-row {
        flex-direction: column !important;
        gap: 2rem;
    }

    .content-image,
    .CWtYzE44b9 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Основні стилі секцій */
.S4SnLGrsWA {
    max-width: 1340px;
    margin: 5rem auto;
    padding: 0 1.25rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1e1e1e;
}

/* Заголовки */
.S4SnLGrsWA h2 {
    font-weight: 900;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.04em;
    position: relative;
    color: #222;
}

.S4SnLGrsWA h2::after {
    content: "";
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    border-radius: 3px;
    display: block;
    margin: 0.8rem auto 0;
}

/* Контейнер для списків */
.kUB0hMmKoV {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem 3rem;
}

/* Окрема "картка" функції */
.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.8rem;
    box-shadow:
        0 12px 25px rgb(255 69 0 / 0.15),
        0 0 10px rgb(255 140 0 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 40px rgb(255 69 0 / 0.25),
        0 0 15px rgb(255 140 0 / 0.2);
}

/* Заголовок всередині картки */
.feature-card h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ff4500;
}

/* Текст картки */
.feature-card p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
    color: #444;
}

/* Темна секція (для "Why Choose Us") */
.dark-bg-section {
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgb(255 140 0 / 0.4);
}

.dark-bg-section h2 {
    color: #fff;
}

/* Відступи між секціями */
.mb-6 {
    margin-bottom: 6rem !important;
}

/* Адаптивність */
@media (max-width: 768px) {
    .S4SnLGrsWA h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }
}

/* Загальний контейнер */
.uUVcvnoeJb {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #2b2b2b;
}

/* Заголовок секції */
.uUVcvnoeJb>h2 {
    font-weight: 800;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    position: relative;
    color: #1a1a1a;
}

.uUVcvnoeJb>h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 6px;
    background: linear-gradient(90deg, #00bfa5, #005f73);
    border-radius: 4px;
    margin: 1rem auto 0;
}

/* Сітка блогу */
.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem 2.5rem;
}

/* Карта блогу */
article.fWsFT2wwF3 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgb(0 95 115 / 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

article.fWsFT2wwF3:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgb(0 95 115 / 0.3);
}

/* Зображення */
.fWsFT2wwF3 figure {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.fWsFT2wwF3 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s ease;
}

article.fWsFT2wwF3:hover figure img {
    transform: scale(1.05);
}

/* Тіло карти */
.K8MWIhbenI {
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Заголовок блогу */
.K8MWIhbenI h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 1rem;
    line-height: 1.25;
}

/* Опис */
.K8MWIhbenI p {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.55;
    color: #444444;
    margin-bottom: 0;
}

/* Адаптивність */
@media (max-width: 768px) {
    .uUVcvnoeJb>h2 {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .K8MWIhbenI h3 {
        font-size: 1.3rem;
    }
}

/* Базові стилі та кольорова палітра */
.unique-mission-section {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

/* Заголовок секції - прихований для цієї частини */
/* Переважна увага на візуальний баланс тексту й зображень */

/* Контейнер рядків: flex із відступами */
.unique-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

/* Ліва частина зображення */
.unique-image-wrapper {
    flex: 1 1 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.unique-image-wrapper:hover img {
    transform: scale(1.1);
}

.unique-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

/* Права частина тексту */
.unique-text-wrapper {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.unique-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
}

/* Відмінність першого абзацу - більш виразний */
.unique-text-wrapper p:first-child {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0b3c49;
}

/* Дублювання не потрібно, тому приховаємо 4-й абзац якщо він повторюється */
.unique-text-wrapper p.VnnqkL8pBn {
    display: none;
}

/* Другий блок – обернена логіка: текст ліворуч, зображення праворуч */
.unique-row.reverse {
    flex-direction: row-reverse;
}

/* Кнопка з ефектом підкреслення */
.unique-cta-btn {
    align-self: flex-start;
    margin-top: 1.8rem;
    background: transparent;
    border: 2px solid #0b3c49;
    color: #0b3c49;
    font-weight: 700;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
}

.unique-cta-btn:hover,
.unique-cta-btn:focus {
    background-color: #0b3c49;
    color: #fff;
    outline: none;
}

/* Адаптивність */
@media (max-width: 900px) {

    .unique-row,
    .unique-row.reverse {
        flex-direction: column;
    }

    .unique-image-wrapper,
    .unique-text-wrapper {
        flex: 1 1 100%;
    }

    .unique-text-wrapper p:first-child {
        font-size: 1.2rem;
    }
}

:root {
    --theme-color-1: #786DEA;
    --theme-color-2: #2F2F38;
    --theme-color-3: #F1F1FC;
    --theme-color-4: #E5E0F8;
    --theme-color-5: #D2E1FD;

    --body-bg: #ffffff;
    --font-color: #7B7B7B;
    --heading-color1: #060606;
    --heading-color2: #010101;
    --font-white: #ffffff;
    --border: 1px solid #ddd;
}

body {
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1,
h2,
h3 {
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium';
    font-weight: normal;
}

.huffrex-header {
    position: relative;
    background: #111;
    color: #fefefe;
    user-select: none;
}

/* Top bar */
.HYyB2il4wV {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: #222;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.huffrex-contact a {
    color: #ff6f61;
    text-decoration: none;
    font-weight: 600;
}

.huffrex-contact a:hover,
.huffrex-contact a:focus {
    text-decoration: underline;
    outline: none;
}

/* Burger button */
.nav-toggle {
    display: none;
}

.rlCeqscLy2 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 26px;
    height: 22px;
    cursor: pointer;
}

.rlCeqscLy2 span {
    width: 100%;
    height: 3px;
    background: #ff6f61;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle:checked+.HYyB2il4wV .rlCeqscLy2 span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked+.HYyB2il4wV .rlCeqscLy2 span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked+.HYyB2il4wV .rlCeqscLy2 span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Logo */
.UvMfPA9V1H-area {
    text-align: center;
    background: linear-gradient(90deg, #ff6f61 0%, #ff8c00 100%);
    padding: 1rem 0;
}

.UvMfPA9V1H {
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #111;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Segoe UI Black', 'Segoe UI', sans-serif;
}

.UvMfPA9V1H:hover,
.UvMfPA9V1H:focus {
    color: #000;
    outline: none;
    text-shadow: 0 0 6px #ff6f61;
}

/* Горизонтальне меню - ДЕСKTOP */
.huffrex-nav {
    background: #181818;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.huffrex-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.huffrex-nav a {
    color: #ff6f61;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.huffrex-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.huffrex-nav a:hover,
.huffrex-nav a:focus {
    color: #ff8c00;
    outline: none;
}

.huffrex-nav a:hover::after,
.huffrex-nav a:focus::after {
    width: 100%;
}

/* Мобільне спливаюче меню */
.huffrex-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #111;
    padding-top: 70px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 100vh;
    z-index: 25;
}

.huffrex-mobile-nav ul {
    list-style: none;
    width: 100%;
    text-align: center;
}

.huffrex-mobile-nav li+li {
    margin-top: 1.5rem;
}

.huffrex-mobile-nav a {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f4a261;
    text-decoration: none;
}

.huffrex-mobile-nav a:hover,
.huffrex-mobile-nav a:focus {
    color: #e76f51;
    outline: none;
}

/* Кнопка закриття */
.MQL2G3QBPG {
    position: absolute;
    top: 0.7rem;
    right: 1.5rem;
    font-size: 3rem;
    color: #f4a261;
    cursor: pointer;
    user-select: none;
}

/* Оверлей */
.huffrex-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
    cursor: pointer;
}

.footer-about a {
    color: #ff6f61;
    text-decoration: none;
    font-weight: 600;
}

/* Показати мобільне меню і оверлей при відкритті */
.nav-toggle:checked~.huffrex-mobile-nav {
    display: flex;
}

.nav-toggle:checked~.huffrex-overlay {
    display: block;
}

/* Приховати бургер і телефон на десктоп */
@media (min-width: 769px) {

    .rlCeqscLy2,
    .huffrex-contact {
        display: none;
    }
}

/* Приховати горизонтальне меню на мобільних */
@media (max-width: 768px) {
    .huffrex-nav {
        display: none;
    }
}

.btn-main {
    color: #fff;
    background: var(--theme-color-1);
    transition: all .5s ease-out;
    white-space: nowrap;
    min-width: 100px;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background: #5248c1;
    transition: all .5s ease-out;
}

.btn-secondary {
    color: var(--heading-color1);
    background-color: transparent;
    transition: all .5s ease-out;
    border: 1px solid var(--heading-color1);
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
}

.btn-no-design {
    color: var(--heading-color1);
    transition: ease-in 0.3s;
}

.btn-no-design:hover {
    color: var(--theme-color-1);
    transition: ease-in 0.3s;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}

.navbar.fixed-top {
    position: fixed;
    background-color: var(--body-bg);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--heading-color1);
    font-family: 'Inter-Medium';
    font-weight: normal;
    height: 100%;
    position: relative;
    font-size: 14px;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: var(--theme-color-1);
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 150px;
}

.dropdown .nav-link:after {
    font-family: "Fontawesome";
    font-weight: 400;
    content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item {
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar {
    background: transparent;
    height: 80px;
}

.dropdown-menu {
    min-width: 12rem;
}

.dropdown-menu li {
    margin: 5px 0px 5px 0px;
}

.dropdown-menu li a {
    color: var(--heading-color1);
    font-size: 14px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
    background-color: #fff;
}

.dropdown-menu li a:hover {
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu {
    transition: ease-in-out 0.3s;
}

.policy-main-heading {
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description {
    margin-bottom: 20px;
}

.page-full-coming {
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}

.page-coming-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.page-coming-inner h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.page-coming-inner p {
    margin-bottom: 20px;
    color: var(--font-white);
}

.soon-subscribe {
    width: 100%;
}

.soon-form-wrapper {
    position: relative;
    width: 100%;
}

.soon-input {
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}

.soon-submit {
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}

.soon-counter-list {
    display: flex;
}

.soon-counter-list>div {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-1);
    font-family: 'Inter-Bold';
    font-weight: normal;
    font-size: 32px;
}

.soon-counter-list>div span {
    font-family: 'Inter-Regular';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}

.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

.coming-soon .footer-social-list {
    margin-top: 20px;
}

.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}

.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page {
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.error-page-content h1 {
    font-size: 120px;
    color: var(--theme-color-1);
}

.error-page-content h3 {
    font-size: 40px;
    font-family: 'Inter-Bold';
    color: var(--theme-color-2);
}

.error-page-content p {
    font-size: 20px;
    margin: 20px 0px;
}

.faq .accordion-item {
    margin-bottom: 15px;
    border: transparent;
    background-color: transparent;
}

.faq .accordion-button {
    border: transparent;
}

.faq .accordion-button {
    border-radius: 12px !important;
    background-color: #E5E0F8;
    font-size: 14px;
    padding: 1.5rem 1rem;
    color: var(--heading-color1);
    font-family: 'Inter-Medium';
    /* border-bottom: var(--border); */
}

.faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--heading-color1);
}

.faq .accordion-button span {
    margin-right: 10px;
}

.faq .accordion-body p span {
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: '\f068';
    font-family: Fontawesome;
    transform: none;
    color: var(--theme-color-2);
}

.faq .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: Fontawesome;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color);
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-body {
    padding: 1rem 1rem;
}

.faq .accordion-button:not(.collapsed) {
    border-radius: 12px 12px 0px 0px !important;
    border: var(--border);
    border-bottom: transparent;
    background-color: #E5E0F8;
}

.faq .accordion-collapse.collapse.show .accordion-body {
    border-radius: 0px 0px 12px 12px !important;
    border: var(--border) !important;
    border-top: transparent !important;
    background-color: #E5E0F8 !important;
    padding-top: 0;
}


#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-2);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}

#backTop:hover {
    background-color: var(--theme-color-2);
}

.section-heading-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-main-heading {
    color: var(--heading-color1);
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.section-heading-description {
    text-align: center;
}

.section {
    padding: 60px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact {
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display {
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left: 0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
    height: 200px;
}

.success-msg-contact-display p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.check-success-icon {
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p,
.success-msg-display p {
    margin-bottom: 0;
}

.error-msg p,
.error-msg-display p {
    margin-bottom: 0;
}

/* header */
.header-btns {
    display: flex;
    align-items: center;
}

/* home */
.main-image-container {
    width: 100%;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #F1F1FC 0.34%, rgba(241, 241, 252, 0.00) 104.33%);
    background-size: cover;
    height: 820px;
}

.mainimage-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}

.mainimage-wrapper h1 {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 50px;
}

.mainimage-wrapper h1 span {
    color: var(--theme-color-1);
}

.mainimage-btns {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.mainimage-btns a {
    margin-right: 20px;
}

.mainbanner-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funfactors {
    width: 100%;
    height: 230px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: var(--theme-color-2);
}

.funfactors::before {
    content: url('../images/funfact-bg.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.funfactor-list {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.funfactor-item {
    flex: 50%;
}

.funfactor-item-wrapper h2 {
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 15px;
}

.funfactor-item-wrapper h4 {
    font-size: 16px;
    font-family: 'Inter-Medium';
    margin-bottom: 0;
    color: var(--font-white);
}

.section-content-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
}

.section-heading-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-small-heading {
    font-size: 14px;
    font-family: 'Inter-Medium';
    margin-bottom: 15px;
}

.section-heading {
    font-size: 34px;
    color: var(--heading-color1);
    margin-bottom: 20px;
    line-height: 48px;
}

.section-heading span {
    color: var(--theme-color-1);
}

.features-accordion .accordion-button::after {
    display: none;
}

.features-accordion .accordion-item {
    border: none;
}

.features-accordion .accordion-button {
    color: var(--heading-color1);
    font-size: 16px;
    font-family: 'Inter-Medium';
    opacity: 0.7;
}

.features-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    color: var(--heading-color1);
    font-size: 16px;
    font-family: 'Inter-Medium';
    opacity: 1;
}

.partners {
    background-color: var(--theme-color-3);
}

.partner-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.testimonial-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
    margin: 20px 0px;
}

.testimonial-top i {
    color: #FDB428;
}

.testimonial-middle {
    width: 100%;
    display: inline-block;
    padding: 15px 0px;
}

.testimonial-bottom {
    width: 100%;
    display: flex;
    align-items: center;
}

.testimonial-bottom-image {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: inline-block;
    margin-right: 15px;
}

.testimonial-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-bottom-info h3 {
    font-size: 16px;
}

.testimonial-bottom-info p {
    margin-bottom: 0;
}

.prev-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--theme-color-1);
    color: var(--theme-color-1);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: -50px;
}

.next-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
    color: var(--font-white);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: -50px;
}

.provide {
    background-color: var(--theme-color-2);
    overflow: hidden;
}

.service-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    background-color: transparent;
    transition: ease-in 0.3s;
    padding: 25px;
    border-radius: 12px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background-color: var(--theme-color-1);
}

.service-wrapper h3 {
    margin: 20px 0px;
    font-size: 24px;
    color: var(--font-white);
}

.service-wrapper p {
    color: var(--font-white);
}

.service-wrapper:hover {
    background-color: #292936;
    transition: ease-in 0.3s;
}

.join {
    background-color: var(--theme-color-3);
    overflow: hidden;
}

.join-layer-img {
    position: absolute;
    right: 0;
    bottom: -35%;
    z-index: 1;
}

.section-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

footer {
    background-color: var(--theme-color-2);
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 4rem;
}

.lTOuAEr0Pe {
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-heading {
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 2rem;
    font-family: 'Inter-SemiBold';
}

.lTOuAEr0Pe ul li {
    margin-bottom: 15px;
}

.lTOuAEr0Pe ul li:last-child {
    margin-bottom: 0px;
}

.lTOuAEr0Pe ul li a {
    color: var(--font-white);
}

.jd3cvDPfAA {
    width: 100%;
    position: relative;
    display: inline-block;
}

.jd3cvDPfAA ul li {
    margin-bottom: 15px;
}

.jd3cvDPfAA ul li:last-child {
    margin-bottom: 0px;
}

.jd3cvDPfAA ul li a {
    color: var(--font-white);
    display: flex;
}

.jd3cvDPfAA ul li a i {
    margin-right: 10px;
    align-items: baseline;
}

.footer-about h2 {
    color: var(--font-white);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-about h4 {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Inter-Medium';
    color: var(--font-white);
    line-height: 25px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social li a {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: 1px solid var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    border-radius: 50%;
    transition: ease-in 0.3s;
}

.hyper-contact-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.05),
        0 0 40px rgba(0, 150, 250, 0.15);
}

/* Заголовок */
.hc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hc-title {
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    color: #003366;
    margin-bottom: 0.4rem;
}

.hc-subtitle {
    font-weight: 400;
    font-size: 1.15rem;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Інформаційні картки */
.rXoJjB33z7 {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hc-card {
    background: #e1f0ff;
    border-radius: 14px;
    padding: 1.8rem 2rem;
    box-shadow: 0 5px 15px rgb(0 100 255 / 0.12);
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    user-select: none;
}

.hc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgb(0 100 255 / 0.25);
}

.fAGEV4p137 {
    font-size: 1.8rem;
    color: #ff8c00;
}

.hc-link {
    font-weight: 600;
    font-size: 1.1rem;
    color: #003366;
    text-decoration: none;

    transition: color 0.25s ease;
}

.hc-link:hover,
.hc-link:focus {
    color: #ff8c00;
    outline: none;
    text-decoration: underline;
}

/* Головний контент: форма і карта */
.hc-main-content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    align-items: start;
}

/* Форма */
.hc-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    background: #f9fbff;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgb(0 100 255 / 0.1);
}

.hc-form-row {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
    /* Для адаптивності */
}

.rFxIDJzDXI {
    flex: 1 1 100%;
    /* За замовчуванням - повна ширина */
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 2px solid #aacfff;
    font-size: 1rem;
    font-weight: 500;
    color: #003366;
    background: #e7f1ff;
    transition: border-color 0.25s ease;
    min-width: 0;
    /* Щоб уникнути переповнення */
}

.rFxIDJzDXI:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 12px #ff8c0088;
}

.hc-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: 2px solid #aacfff;
    font-size: 1rem;
    font-weight: 500;
    color: #003366;
    background: #e7f1ff;
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.25s ease;
}

.hc-textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 12px #ff8c0088;
}

.hc-btn-submit {
    background: linear-gradient(120deg, #ff8c00, #ff8c00);
    border: none;
    padding: 1.1rem 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 7px 20px #ff8c00aa;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hc-btn-submit:hover,
.hc-btn-submit:focus {
    background: linear-gradient(120deg, #ff8c00, #ff8c00);
    box-shadow: 0 10px 28px #ff8c00aa;
    outline: none;
}

/* Карта */
.hc-map-container {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgb(0 100 255 / 0.15);
    min-height: 400px;
    /* або будь-який потрібний вам висотний мінімум */
    width: 100%;
    /* щоб займати всю ширину батьків */
    position: relative;
    /* для абсолютного позиціонування iframe */
}

.hc-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



/* Адаптивність */

/* Планшети */
@media (max-width: 1024px) {
    .hc-main-content {
        grid-template-columns: 1fr;
        /* Зробити одну колонку */
        gap: 2rem;
    }

    .hc-map-container {
        min-height: 280px;
    }
}

/* Мобільні */
@media (max-width: 600px) {
    .hyper-contact-section {
        padding: 3rem 1rem;
        border-radius: 16px;
        box-shadow:
            0 6px 12px rgba(0, 0, 0, 0.05),
            0 0 30px rgba(0, 150, 250, 0.1);
    }

    .hc-title {
        font-size: 2rem;
    }

    .hc-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .rXoJjB33z7 {
        gap: 1.5rem;
    }

    .hc-card {
        flex: 1 1 95%;
        padding: 1.5rem 1.8rem;
    }

    .hc-form {
        padding: 1.5rem 2rem;
    }

    .hc-form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .rFxIDJzDXI {
        flex: 1 1 100%;
    }

    .hc-btn-submit {
        font-size: 1rem;
        padding: 1rem 0;
    }

    @media (max-width: 600px) {
        .hc-map-container {
            border-radius: 14px;
            min-height: 240px;
            margin-top: 2rem;
            position: relative;
        }
    }
}


.SOIdrrZRn1 {
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    margin-top: 2rem;
    padding: 30px 0px;
}

.SOIdrrZRn1 p {
    color: var(--font-white);
}

.footer-social li a:hover {
    transition: ease-in 0.3s;
    background-color: var(--theme-color-1);
    color: var(--font-white);
    border: 1px solid var(--theme-color-1);
}

.page-banner-container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--theme-color-5);
}

.page-banner-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.page-banner-wrapper ul li {
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

.page-banner-wrapper ul li:last-child {
    margin-right: 0px;
}

.page-banner-heading {
    font-size: 32px;
    margin-bottom: 5px;
}

.page-banner-wrapper ul li:first-child::after {
    content: '\f105';
    position: relative;
    display: inline-block;
    font-family: Fontawesome;
    margin-left: 10px;
}

.page-banner-wrapper ul li:first-child {
    color: var(--theme-color-1);
}

.page-banner-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('../images/page-banner-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.growth-list-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    background-color: transparent;
    transition: ease-in 0.3s;
    padding: 25px;
    border-radius: 12px;
}

.growth-list-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 50%;
    background-color: var(--theme-color-1);
}

.growth-list-wrapper h3 {
    margin: 20px 0px;
    font-size: 24px;
}

.growth-list-wrapper:hover {
    background-color: #292936;
    transition: ease-in 0.3s;
}

.growth-list-wrapper:hover h3,
.growth-list-wrapper:hover p {
    color: var(--font-white);
}

.benefits {
    background-color: var(--theme-color-4);
}

.benefits-card-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
}

.benefits-card-img {
    width: 100%;
    height: 280px;
    position: relative;
    display: inline-block;
    transition: ease-in 0.3s;
    overflow: hidden;
    border-radius: 12px;
}

.benefits-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: ease-in 0.3s;
}

.benefits-card-wrapper:hover .benefits-card-img img {
    transition: ease-in 0.3s;
    transform: scale(1.5);
    border-radius: 12px;
}

.benefits-card-content {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
    padding-bottom: 0;
}

.benefits-card-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    transition: ease-in 0.3s;
}

.benefits-card-wrapper:hover .benefits-card-content h3 {
    transition: ease-in 0.3s;
    color: var(--theme-color-1);
}

.learn-more-link {
    width: 100%;
    display: inline-block;
    color: var(--theme-color-1);
    font-family: 'Inter-Medium';
    margin-top: 15px;
    text-decoration: underline;
    transition: ease-in 0.3s;
}

.learn-more-link:hover {
    text-decoration: underline;
    transition: ease-in 0.3s;
    color: var(--theme-color-1);
}

.sync-list-wrapper {
    display: flex;
    align-items: flex-start;
}

.sync-list-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background-color: #FDB428;
    margin-right: 20px;
}

.sync-list-content h4 {
    color: var(--heading-color1);
    font-size: 18px;
    margin-bottom: 10px;
}

.sync-content-wrapper ul {
    margin-top: 20px;
}

.sync-content-wrapper li {
    margin-bottom: 20px;
}

.paymentFeatures {
    background-color: var(--theme-color-2);
}

.payfeature-list-item {
    margin-bottom: 15px;
}

.payfeature-list-wrapper {
    display: flex;
    align-items: center;
}

.payfeature-list-wrapper h4 {
    font-size: 16px;
    margin-left: 15px;
    color: var(--font-white);
    font-family: 'Inter-Medium';
}

.contact-form-group {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    color: var(--font-color);
    border-radius: 6px;
    border: var(--border);
}

.contacts-card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
    background-color: var(--theme-color-4);
    text-align: center;
}

.contacts-card h3 {
    font-size: 20px;
    margin: 15px 0px;
}

.blog-card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
}

.blog-image {
    width: 100%;
    height: 180px;
    position: relative;
    display: inline-block;
    border-radius: 12px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    object-fit: cover;
}

.blog-middle {
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 15px 0px 6px 0px;
}

.blog-middle a h3 {
    font-size: 16px;
}

.blog-author {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin: 15px 0px 0px 0px;
}

.blog-author img {
    min-width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.blog-author h4 {
    font-size: 14px;
    color: var(--theme-color-1);
    font-family: 'Inter-Medium';
}

.blog-bottom span {
    margin-bottom: 5px;
    width: 100%;
    display: inline-block;
    font-size: 12px;
}

.blog-bottom p {
    min-height: 50px;
    overflow: hidden;
    max-height: 50px;
    margin-bottom: 10px;
}

.read-more-link {
    text-decoration: underline;
    color: var(--theme-color-1);
    font-family: 'Inter-Medium';
}

.read-more-link:hover {
    text-decoration: underline;
    color: var(--theme-color-1);
    font-family: 'Inter-Medium';
}

.blogDetails-wrapper p {
    margin-bottom: 20px;
}

.blogDetails-wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.comments-wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    margin: 3rem 0;
}

.comments-wrapper h3 {
    padding: 10px 10px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.comments-list-item {
    display: flex;
}

.comments-avatar {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 15px;
    min-width: 60px;
}

.comments-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comments-info-top h4 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 10px;
}

.comments-info-top h4 a {
    font-size: 14px;
    font-family: 'Poppins-Medium';
    color: var(--theme-color-3);
}

.comments-info-top p {
    margin-bottom: 10px;
    font-size: 12px;
}

.reply-wrapper h3 {
    padding: 10px 10px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.contactus-form-group {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contactus-form-input {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.blogDetails-relatedlist {
    width: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
}

.blogDetails-relatedlist h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.blogDetails-relatedlist ul li {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.blogDetails-relatedlist ul li a {
    display: flex;
    color: var(--heading-color1);
}

.blogDetails-relatedlist ul li a::before {
    font-family: Fontawesome;
    position: relative;
    display: inline-block;
    content: '\f101';
    color: var(--theme-color-1);
    margin-right: 10px;
}

.blogDetails-relatedlist ul li p {
    font-size: 10px;
    margin-left: 18px;
}

.blogDetails-relatedlist ul li:last-child {
    padding-bottom: 0px;
    border-bottom: 1px solid transparent;
    margin-bottom: 0px;
}

.blogDetails-relatedlist ul li a:hover {
    color: var(--theme-color-1);
    transition: ease-in 0.3s;
}

.blogcontent-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 30px 0px;
}

.blog-author p {
    margin-bottom: 0;
    font-size: 12px;
    margin-left: 15px;
}

.blogDetails-author {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--theme-color-2);
}

.blogDetails-wrapper h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.team-card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
}

.team-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    position: relative;
    display: inline-block;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.team-info {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.team-info h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0px;
}

.team-info ul {
    margin-top: 15px;
}

.team-info ul li {
    display: inline-block;
    margin: 0px 0px;
}

.team-info ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.main-content-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: inline-block;
}

.sign-page-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
}

.sign-page-image {
    width: 65%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.sign-page-image img {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
}

.sign-page-form {
    width: 35%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 2rem 3rem;
    text-align: center;
    flex-direction: column;
}

.sign-page-form img {
    width: 150px;
    margin: auto;
}

.sign-page-bottom p {
    margin-bottom: 15px;
}

.sign-page-bottom p:last-child {
    margin-bottom: 0px;
}

.sign-page-bottom p a {
    font-family: 'Inter-Medium';
    color: var(--theme-color-1);
}

.sign-page-bottom p a:hover {
    color: var(--theme-color-1);
}

.sign-page-middle h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sign-page-middle h4 {
    font-family: 'Inter-Medium';
    color: var(--heading-color1);
    margin-bottom: 2rem;
    font-size: 18px;
}

.sign-form-container {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.sign-label {
    width: 100%;
    position: relative;
    display: inline-block;
    font-family: 'Inter-Medium';
    color: var(--heading-color1);
    text-align: left;
    margin-bottom: 5px;
}

.sign-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.sign-form-container .btn-main {
    width: 100%;
    max-width: 100%;
}

.sign-page-top {
    margin-bottom: 2rem;
}