/* ===== FONTS ===== */
@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Regular.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Regular.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Medium.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Medium.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-DemiBold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-DemiBold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-DemiBold.ttf') format('ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Bold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Bold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-ExtraBold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-ExtraBold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-ExtraBold.ttf') format('ttf');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Black.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Black.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Black.ttf') format('ttf');
    font-weight: 900;
    font-style: normal;
}

/* ===== VARIABLES ===== */
:root {
    --color-primary: #162499;
    --color-red: #cf0e0f;
    --color-red-dark: #d20e0e;
    --color-red-alt: #ce0e11;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-text-dark: #333333;
    --color-text-muted: #4b4b4d;
    --color-text-light: #f1f2f2;
    --color-input-bg: #f4f4f4;
    --color-faq-active-bg: #1c2cb2;

    --gradient-brand: linear-gradient(90deg, #162499 0%, #d10e0f 100%);

    --font-family: 'iransans', 'Tahoma', sans-serif;

    --fs-xs: 12px;
    --fs-sm: 15px;
    --fs-base: 18px;
    --fs-md: 20px;
    --fs-lg: 24px;
    --fs-xl: 28px;
    --fs-2xl: 30px;
    --fs-3xl: 32px;
    --fs-4xl: 40px;
    --fs-hero: 70px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    --radius-3xl: 50px;
    --radius-pill: 100px;
    --radius-circle: 150px;

    --shadow-card: 0px 20px 30px rgba(22, 36, 153, 0.15);
    --shadow-avatar: 0px 30px 50px rgba(0, 0, 0, 0.4);
    --shadow-btn: 0px 10px 40px rgba(0, 0, 0, 0.1);

    --spacing-section: 80px;
    --spacing-container-pad: 160px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family) !important;
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1600px;
    padding: 0 24px;
    margin: 0 auto;
}

/* ===== UTILITIES & BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 220px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-md);
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.3s, transform 0.3s;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--color-red);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.btn--primary:hover {
    color: var(--color-white);
}

.btn--primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: glass-shine 3s infinite;
}

@keyframes glass-shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn--outline-blue {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: white;
}

.btn--outline-white {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn--outline-white:hover {
    color: var(--color-white);
}

.btn-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
}

.hero__bg::before {
    content: '';
    background-image: url('assets/images/hero.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    width: 100%;
    height: 720px;
    position: absolute;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.92) 35%, rgba(255, 255, 255, 0.4) 65%, transparent 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 50px 60px;
}

.hero__brand {
    font-size: var(--fs-hero);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 80px;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 80px;
    margin-bottom: 24px;
}

.hero__actions {
    margin-top: 8px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 3;
}

.stats-bar__bg {
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px 40px;
    margin-top: 160px;
    position: relative;
}

.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stats-bar__icon {
    width: 120px;
    height: 120px;
    background: white;
    border: 4px solid var(--color-red-alt);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-avatar);
    margin-top: -60px;
}

.stats-bar__icon img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.stats-bar__number {
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
}

.stats-bar__label {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
}

/* ===== SERVICES SECTION ===== */
.services {
    position: relative;
    background: #F0F0F0;
    display: flex;
    flex-direction: column;
    padding: 60px 0;
    margin-top: 150px;
    z-index: 2;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 2340 / 200;
    background: url('./assets/shapes/t-shape.svg') no-repeat top center;
    background-size: cover;
    transform: translateY(-100%);
    z-index: -1;
}

.services::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 2340 / 200;
    background: url('./assets/shapes/b-shape.svg') no-repeat top center;
    background-size: cover;
    transform: translateY(20%);
    z-index: -1;
}

.services__inner {
    margin: 0 auto;
}

.services__title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: #132197;
    margin-bottom: 48px;
    text-align: right;
}

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

.services__card {
    background: white;
    border-radius: var(--radius-circle);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 15px;
    min-height: 140px;
}

.services__card-text {
    flex: 1;
}

.services__card-heading {
    font-size: var(--fs-md);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 24px;
    margin-bottom: 12px;
    text-align: right;
}

.services__card-desc {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 32px;
    text-align: right;
}

.services__card-icon {
    width: 110px;
    height: 110px;
    border-radius: 92px;
    background: var(--gradient-brand);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services__card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ===== ABOUT SECTION ===== */
.about {
    margin-top: 140px;
}

.about__card {
    background: var(--color-primary);
    border-radius: var(--radius-3xl);
    padding: 50px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about__media {
    flex: 0 0 auto;
    width: 44%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.about__media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
}

.about__video-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(22, 36, 153, 0.85);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 0 0 30px 30px;
}

.about__video-bar-line {
    flex: 1;
    height: 2px;
    background: rgba(241, 242, 242, 0.4);
    border-radius: 2px;
    position: relative;
}

.about__video-bar-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: white;
    border-radius: 2px;
}

.about__video-time {
    font-size: 12px;
    color: var(--color-text-light);
    font-family: 'Inter', sans-serif;
}

.about__video-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.about__video-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__video-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.about__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about__heading {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: white;
    line-height: normal;
}

.about__text {
    font-size: var(--fs-base);
    color: white;
    line-height: 34px;
    font-weight: 400;
}

.about__actions {
    margin-top: 8px;
}

/* ===== BANNERS ===== */
.banners {
    margin-top: 140px;
}

.l-banner img {
    border-radius: 32px;
}

.s-banner img {
    border-radius: 24px;
}

.s-banner {
    display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    margin-top: 100px;
}

.testimonials__inner {
    margin: 0 auto;
}

.testimonials__header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.testimonials__title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-primary);
}

.testimonials__wrapper {
    position: relative;
}

.testimonials__grid {
    padding-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 37px;
    box-shadow: var(--shadow-card);
    padding: 110px 19px 32px;
    position: relative;
    min-height: 256px;
}

.testimonial-card__avatar {
    position: absolute;
    top: -48px;
    right: 50%;
    transform: translateX(50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 6.5px solid white;
    box-shadow: 0px 16.7px 41.8px rgba(22, 36, 153, 0.15);
    overflow: hidden;
    background: #4b4b4d;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.testimonial-card__rating {
    position: absolute;
    top: 67px;
    right: 50%;
    transform: translateX(50%);
    background: white;
    border-radius: 10px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card__rating-score {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.testimonial-card__rating-star {
    color: #f5a623;
    font-size: 14px;
}

.testimonial-card__text {
    font-size: var(--fs-sm);
    color: var(--color-text-dark);
    line-height: 28px;
    text-align: center;
    margin: 24px 0 0;
}

.testimonial-card__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonial-card__name {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--color-text-dark);
}

.testimonial-card__badge {
    background: var(--color-primary);
    color: white;
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 6px 8px;
    border-radius: 10px;
}

.slider-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonials__nav-btn.nav-btn-r.swiper-button-next-custom,
.testimonials__nav-btn.nav-btn-l.swiper-button-prev-custom {
    padding: 0 !important;
    background: transparent !important;
}

.testimonials__nav-btn.nav-btn-r.swiper-button-next-custom:hover,
.testimonials__nav-btn.nav-btn-l.swiper-button-next-custom:hover {
	background: transparent !important;
}

.nav-btn-r,
.nav-btn-l {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
}

.nav-btn-r {
    right: -40px;
}

.nav-btn-l {
    left: -40px;
}

.swiper-horizontal {
    padding: 0 0 50px !important;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

.testimonials-swiper {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.testimonials-swiper .swiper-wrapper {
    box-sizing: border-box;
}

.testimonials__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(var(--spacing-container-pad) - 49px);
    position: absolute;
    top: 50%;
    right: calc(0px - (var(--spacing-container-pad) - 49px));
    left: calc(0px - (var(--spacing-container-pad) - 49px));
    transform: translateY(-50%);
    pointer-events: none;
    margin-top: 30px;
}

.testimonials__nav-btn {
    width: 40px;
    height: 40px;
    pointer-events: all;
    cursor: pointer;
    transition: transform 0.2s;
}

.testimonials__nav-btn img {
    width: 40px;
    height: 40px;
}

.testimonials__actions {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* ===== BRANDS ===== */
.brands {
    margin: 140px 0 0;
}

.brands__title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
    text-align: right;
}

.brands__logos {
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
}

.brands__track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

.brands__logo-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brands__logo-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.brands__logos:hover .brands__track {
    animation-play-state: paused;
}

/* ===== FAQ + FORM SECTION ===== */
.main-from {
    width: 100%;
    flex: 1;
}

.faq-form {
    margin: 140px 0 50px;
}

.faq-form__card {
    background: var(--color-primary);
    border-radius: var(--radius-3xl);
    padding: 24px;
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: 754px;
    margin-bottom: 40px;
}

.faq-form__form-wrap {
    flex: 0 0 auto;
    width: 100%;
    background: white;
    border-radius: var(--radius-2xl);
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.faq-form__logo {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.faq-form__form-title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-primary);
    text-align: right;
    white-space: nowrap;
}

.faq-form__field {
    background: var(--color-input-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    padding: 9px 16px 9px 23px;
    height: 70px;
    width: 100%;
}

.faq-form__field--tall {
    height: 120px;
    align-items: flex-start;
}

.faq-form__field-label {
    flex: 1;
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: right;
}

.faq-form__field-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #555;
}

.faq-form__field-icon svg {
    width: 24px;
    height: 24px;
}

.faq-form__submit {
    background: var(--color-red-dark);
    color: white;
    border-radius: var(--radius-lg);
    height: 70px;
    width: 100%;
    font-size: var(--fs-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: opacity 0.2s;
}

.faq-form__submit:hover {
    opacity: 0.9;
}

.faq-form__form-wrap input,
.faq-form__form-wrap textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'iransans';
    font-size: 16px;
    color: #162499;
}

.faq-form__form-wrap textarea {
    padding: 8px 0 0;
    resize: none !important;
}

.faq-form__faq-wrap {
    flex: 1;
    padding: 40px;
}

.faq-form__faq-title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 24px;
    cursor: pointer;
}

.faq-item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: right;
    flex: 1;
}

.faq-item__indicator {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 2px 15px 2px 15px;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.faq-item--open .faq-item__chevron {
    transform: rotate(-180deg)
}

.faq-item__chevron {
    width: 15px;
    height: 10px;
    flex-shrink: 0;
    margin-left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item__chevron svg {
    width: 15px;
    height: 10px;
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #1c2cb2;
}

.faq-item__body.is-open {
    max-height: 200px;
}

.faq-item__body p {
    font-size: var(--fs-sm);
    color: white;
    line-height: 32px;
    padding: 21px 24px;
    text-align: right;
}

.faq-item--open .faq-item__header {
    background: white;
}


.page-id-1501 #content,
.postid-1501 #content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 24px !important;
    margin: 0 auto !important;
}

.faq-form__form-wrap input, .faq-form__form-wrap textarea {
    background: transparent !important;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1400px) {
    .hero__content {
        padding: 60px 140px 60px;
    }

    .hero__brand {
        font-size: 42px;
        line-height: 70px;
    }

    .hero__subtitle {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .btn {
        height: 60px;
        width: 200px;
        font-size: 18px;
    }

    .stats-bar__bg {
        height: 160px;
        padding: 0 20px 10px;
        margin-top: 40px;
    }

    .stats-bar__icon {
        width: 110px;
        height: 110px;
    }

    .stats-bar__number {
        font-size: 28px;
    }

    .stats-bar__label {
        font-size: 22px;
    }

    .services {
        margin-top: 120px;
    }

    .services__title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .services__card-icon {
        width: 90px;
        height: 90px;
    }

    .services__card-heading {
        font-size: 17px;
    }

    .services__card-desc {
        font-size: 15px;
    }

    .about__heading {
        font-size: 26px;
    }

    .banners {
        margin-top: 120px;
    }

    .slider-arrows {
        display: none;
    }

    .testimonials__title {
        font-size: 26px;
    }

    .brands__title {
        font-size: 26px;
    }

    .brands {
        margin: 80px auto;
    }

    .faq-form {
        margin: 120px 0 50px;
    }
}

@media (max-width: 1200px) {
    .hero__brand {
        font-size: 38px;
        line-height: 50px;
    }

    .hero__subtitle {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 60px;
    }

    .btn {
        height: 50px;
        width: 170px;
        font-size: 18px;
    }

    .stats-bar__icon {
        width: 90px;
        height: 90px;
    }

    .stats-bar__number {
        font-size: 24px;
    }

    .stats-bar__label {
        font-size: 20px;
    }

    .stats-bar__bg {
        margin-top: 50px;
        height: 130px;
        padding: 0 20px 10px;
    }

    .services__card-icon {
        width: 80px;
        height: 80px;
    }

    .services__card-heading {
        font-size: 16px;
    }

    .services__card-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .services__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about__media {
        flex: 1;
    }

    .about__card {
        padding: 40px;
    }

    .about__heading {
        font-size: 24px;
    }

    .banners {
        margin-top: 140px;
    }

    .testimonials__title {
        font-size: 24px;
    }

    .brands {
        margin: 60px auto;
    }

    .brands__title {
        font-size: 24px;
    }

    .faq-form__card {
        flex-direction: column;
        gap: 0;
    }

    .main-from {
        width: 100%;
        padding: 40px;
    }

    .faq-form__form-wrap {
        width: 100%;
    }

    .faq-form {
        margin: 100px 0 50px;
    }
}

@media (max-width: 992px) {
    .hero__content {
        padding: 60px 90px 60px;
    }

    .hero__brand {
        font-size: 32px;
        line-height: 50px;
    }

    .hero__subtitle {
        font-size: 24px;
        margin-bottom: 0;
        line-height: 60px;
    }

    .btn {
        height: 50px;
        width: 160px;
        font-size: 17px;
    }

    .stats-bar__icon {
        width: 80px;
        height: 80px;
    }

    .stats-bar__icon img {
        width: 70px;
        height: 70px;
    }

    .stats-bar__number {
        font-size: 22px;
    }

    .stats-bar__label {
        font-size: 18px;
    }

    .stats-bar__bg {
        margin-top: 30px;
        height: 130px;
        padding: 0 20px 10px;
    }

    .services {
        margin-top: 100px;
    }

    .services__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services__title {
        font-size: 22px;
    }

    .services__card-heading {
        font-size: 17px;
    }

    .services__card-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .services__card {
        min-height: 100px;
    }

    .about {
        margin-top: 100px;
    }

    .about__card {
        padding: 40px;
        flex-direction: column;
    }

    .about__media {
        width: 100%;
    }

    .about__heading {
        font-size: 22px;
    }

    .about__text {
        font-size: 16px;
    }

    .banners {
        margin-top: 100px;
    }

    .testimonials__title {
        font-size: 22px;
    }

    .testimonials {
        margin-top: 60px;
    }

    .brands__title {
        font-size: 22px;
    }

    .brands {
        margin: 80px auto;
    }

    .faq-form {
        margin: 80px 0 50px;
    }
}

@media (max-width: 768px) {


    .hero__content {
        padding: 30px 90px 60px;
    }

    .hero__brand {
        font-size: 26px;
        line-height: 30px;
    }

    .hero__subtitle {
        font-size: 24px;
        margin-bottom: 0;
        line-height: 50px;
    }

    .btn {
        height: 50px;
        width: 150px;
        font-size: 16px;
    }

    .btn.btn--outline-blue {
        background: white;
    }

    .stats-bar__bg {
        margin-top: 140px;
        height: 150px;
        padding: 0 20px 10px;
    }

    .services {
        margin-top: 80px;
    }

    .about {
        margin-top: 80px;
    }

    .about__card {
        border-radius: 32px;
    }

    .about__content {
        gap: 18px;
    }

    .about__media {
        border-radius: 20px;
    }

    .about__media img {
        height: 350px;
    }

    .banners {
        margin-top: 80px;
    }

    .l-banner {
        display: none;
    }

    .s-banner {
        display: block;
    }

    .testimonial-card__avatar {
        width: 120px;
        height: 120px;
    }

    .testimonial-card__name {
        font-size: 18px;
    }

    .testimonial-card__rating {
        top: 50px;
    }

    .testimonial-card {
        border-radius: 32px;
        padding: 80px 19px 32px;
        min-height: 220px;
    }

    .brands__logo-item img {
        width: 40px;
        height: 40px;
    }

    .brands__logos {
        height: 110px;
    }

    .faq-form {
        margin: 60px 0 50px;
    }

    .faq-form__faq-wrap {
        padding: 20px;
    }

    .main-from {
        width: 100%;
        padding: 20px;
    }

    .faq-form__faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-item__title {
        font-size: 15px;
    }

    .faq-form__logo {
        height: 48px;
        width: auto;
        object-fit: contain;
    }

    .faq-form__form-title {
        font-size: 24px;
    }

    .faq-form__submit {
        font-size: 18px;
    }
    
        .hero {
        position: relative;
        min-height: 500px;
    }
    
        .hero__bg::before {
        content: '';
        background-image: url('assets/images/hero-mobile.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 20%;
        width: 100%;
        height: 740px;
        position: absolute;
    }

    .hero__content {
        padding: 30px 0 60px;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        top: 320px;
    }

    
        .hero-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #ffffffd9;
        padding: 24px;
        border-radius: 32px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        width: 82%;
    }
}

@media (max-width: 576px) {
    .hero {
        position: relative;
        min-height: 500px;
    }

    .hero__bg::before {
        content: '';
        background-image: url('assets/images/hero-mobile.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 20%;
        width: 100%;
        height: 500px;
        position: absolute;
    }

    .hero__content {
        padding: 30px 0 60px;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        top: 280px;
    }

    .hero-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #ffffffd9;
        padding: 24px;
        border-radius: 32px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        width: 82%;
    }

    .btn.btn--outline-blue {
        background: white;
    }

    .btn-group {
        justify-content: center;
    }

    .stats-bar__icon {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .stats-bar__icon img {
        width: 60px;
        height: 60px;
    }

    .stats-bar__bg {
        margin-top: 140px;
        height: 130px;
        padding: 0 20px 0;
    }

    .stats-bar__label {
        font-size: 16px;
    }

    .stats-bar__number {
        font-size: 20px;
    }

    .services {
        margin-top: 60px;
        padding: 30px 0;
    }

    .services__title {
        font-size: 20px;
    }

    .services__card-icon {
        width: 70px;
        height: 70px;
    }

    .services__card-icon img {
        width: 30px;
        height: 30px;
    }

    .services__card-heading {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .services__card-desc {
        font-size: 15px;
        line-height: 28px;
    }

    .about {
        margin-top: 60px;
    }

    .about__heading {
        font-size: 20px;
    }

    .about__media img {
        height: 260px;
    }

    .about__card {
        padding: 30px;
        gap: 40px;
    }

    .banners {
        margin-top: 60px;
    }

    .testimonials__title {
        font-size: 20px;
    }

    .testimonials {
        margin-top: 50px;
    }

    .testimonials__header {
        margin-bottom: 10px;
    }

    .brands {
        margin: 50px auto;
    }

    .brands__logo-item img {
        width: 40px;
        height: 40px;
    }

    .brands__logos {
        height: 110px;
    }

    .faq-form {
        margin: 40px 0 50px;
    }

    .faq-form__card {
        gap: 24px;
        border-radius: 32px;
    }

    .faq-form__faq-wrap {
        padding: 0;
    }

    .main-from {
        width: 100%;
        padding: 0;
    }

    .faq-form__form-wrap {
        border-radius: 24px;
        padding: 30px;
    }

    .faq-form__logo {
        height: 38px;
    }

    .faq-item__header {
        padding: 20px 16px;
    }
    
        .section-actions {
        padding: 40px 0 0;
        justify-content: center;
        display: flex;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        position: relative;
        min-height: 400px;
    }

    .hero__content {
        top: 220px;
        z-index: 99999;
    }

    .hero__brand {
        font-size: 26px;
        line-height: 10px;
    }

    .stats-bar__icon {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .stats-bar__icon img {
        width: 50px;
        height: 50px;
    }

    .stats-bar__number {
        font-size: 18px;
    }

    .stats-bar__label {
        font-size: 15px;
    }

    .stats-bar__bg {
        padding: 0;
    }

    .services__card-heading {
        margin-bottom: 4px;
    }

    .services__title {
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .brands {
        margin: 60px auto;
    }

    .banners {
        margin-top: 50px;
    }

    .faq-form__faq-title {
        font-size: 22px;
    }

    .faq-item__title {
        font-size: 15px;
        line-height: 28px;
    }

    .faq-item__header {
        padding: 8px 16px;
    }

    .faq-item__chevron {
        margin-right: 8px;
    }

    .faq-form__form-wrap {
        gap: 24px;
    }

    .faq-form__form-title {
        font-size: 22px;
    }

    .faq-form__form-wrap input,
    .faq-form__form-wrap textarea {
        padding: 12px 0;
    }

    .faq-form__field {
        height: 60px;
    }

    .faq-form__submit {
        height: 60px;
    }
}

@media (max-width: 390px) {
    .container {
        padding: 16px;
        margin: 0 auto;
    }

    .hero {
        position: relative;
        min-height: 360px;
    }

    .hero-items {
        width: 90%;
        box-shadow: 0 10px 30px #00000014;
    }

    .hero__brand {
        font-size: 22px;
    }

    .hero__subtitle {
        font-size: 20px;
    }
    
    .hero__bg::before {
    height: 400px;
}

    .stats-bar__icon {
        margin-top: -40px;
    }

    .stats-bar__icon img {
        width: 44px;
        height: 44px;
    }

    .stats-bar__label {
        font-size: 14px;
    }

    .stats-bar__bg {
        margin-top: 120px;
        border-radius: 20px;
    }

    .services {
        margin-top: 40px;
        padding: 10px 0;
    }

    .services__card-icon {
        width: 60px;
        height: 60px;
    }

    .services__card-icon img {
        width: 24px;
        height: 24px;
    }

    .services__card-heading {
        font-size: 15px;
    }

    .services__card-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .about {
        margin-top: 40px;
    }

    .about__card {
        border-radius: 24px;
        padding: 20px;
    }

    .about__text {
        font-size: 14px;
        line-height: 26px;
    }

    .about__media img {
        height: 200px;
    }

    .banners {
        margin-top: 30px;
    }

    .testimonials {
        margin-top: 20px;
    }

    .testimonial-card {
        padding: 70px 19px 32px;
    }

    .testimonial-card__avatar {
        width: 110px;
        height: 110px;
    }

    .testimonial-card__rating {
        top: 40px;
    }

    .brands {
        margin: 30px auto;
    }

    .brands__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .brands__logos {
        border-radius: 24px;
        height: 80px;
    }

.brands__logo-item img {
    width: 50px;
    height: 50px;
}

    .faq-form {
        margin: 30px 0 40px;
    }

    .faq-form__card {
        padding: 24px 16px;
    }

    .faq-form__faq-title {
        font-size: 18px;
    }

    .faq-list {
        gap: 16px;
    }

    .faq-item__header {
        padding: 4px 16px;
    }

    .faq-item__title {
        font-size: 14px;
        line-height: 26px;
    }

    .faq-item__indicator {
        width: 18px;
        height: 18px;
    }

    .faq-item__chevron {
        width: 13px;
        height: 8px;
    }

    .faq-item__body p {
        font-size: 14px;
        color: white;
        line-height: 24px;
        padding: 16px;
    }

    .faq-form__form-wrap {
        padding: 24px;
    }

    .faq-form__logo {
        height: 28px;
    }

    .faq-form__form-title {
        font-size: 18px;
    }

    .faq-form__field {
        height: 50px;
        gap: 4px;
    }

    .faq-form__submit {
        height: 50px;
        font-size: 16px;
    }

    .section-actions {
        padding: 40px 0 0;
    }
    
    .page-id-1501 #content,
.postid-1501 #content {
    padding: 0 16px !important;
}
}
