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

@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;
}

:root {
    --p-color: #336DFE;
    --s-color: #4C4B4E;
    --t-color: #4C4B4E;
    --w-color: #FFFFFF;
    --l-color: #E4E4E4;
}

body {
    font-family: 'iransans', sans-serif;
    background: var(--w-color);
    color: var(--s-color);
    direction: rtl;
}

p {
    font-weight: 400;
}

.pa-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-image: url('./assets/patterns/hero-pattern.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
}

.pa-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.pa-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
    flex: 2;
}

.pa-hero-image {
    width: 100%;
    display: flex;
    justify-content: end;
    flex: 1;
}

.pa-hero-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--swiper-theme-color);
    margin: 0;
    text-align: right;
}

.pa-hero-subtitle {
    font-size: 40px;
    font-weight: 800;
    color: var(--s-color);
    line-height: 1.6;
    text-align: right;
}

.pa-hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(-90deg, rgb(233, 233, 233), rgba(233, 233, 233, 0));
    border-radius: 12px;
    font-size: 32px;
    font-weight: 600;
    color: var(--s-color);
    width: fit-content;
    align-self: flex-start;
}

.pa-badge-icon {
    display: flex;
    justify-content: center;
    line-height: 0;
}

.pa-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    justify-content: flex-start;
}

.pa-btn {
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'iransans', sans-serif;
    width: 210px;
    height: 60px;
}

.pa-btn-primary {
    background: var(--p-color);
    color: var(--w-color);
    transition: 0.3s ease-in-out;
}

.pa-btn-primary:hover {
    background: var(--s-color);
}

.pa-btn-secondary {
    background: var(--w-color);
    color: var(--s-color);
    border: 2px solid var(--s-color);
    transition: 0.3s ease-in-out;
}

.pa-btn-secondary:hover {
    border-color: var(--p-color);
    color: var(--p-color);
}

.pa-btn-primary-light:hover {
    background: #646366;
}

.pa-btn-primary-dark {
    background: var(--s-color);
}

.pa-btn-primary-dark:hover {
    background: var(--w-color);
    color: var(--s-color);
}

.pa-btn-secondary-light {
    background: transparent;
    color: var(--l-color);
    border: 2px solid var(--l-color);
    transition: 0.3s ease-in-out;
}

.pa-btn-secondary-light:hover {
    background: transparent;
    color: var(--w-color);
    border: 2px solid var(--w-color);
}

.pa-hero-buttons.pa-btn-items {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

/* Title */
.pa-section-title {
    position: relative;
    margin: 140px 0 30px;
}

.pa-section-title.pa-section-title-w {
    margin: 0 0 30px;
}

.pa-section-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--s-color);
    margin-right: 44px;
}

.pa-section-title-w h3 {
    color: var(--w-color);
}

.pa-section-title::before {
    content: "";
    background-image: url('./assets/icons/plus.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 4px;
}

.plus-w::before {
    content: "";
    background-image: url('./assets/icons/plus-w.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 4px;
}

/* Features Section */
.features {
    position: relative;
}

.pa-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: -130px;
}

.pa-feature-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 70px rgba(51, 109, 254, 0.2);
    text-align: center;
    height: 120px;
    transition: 0.3s ease-in-out;
    border: 2px solod var(--w-color);
    overflow: hidden;
    flex: 1;
}

.pa-feature-card:hover {
    box-shadow: 0 20px 70px rgba(51, 109, 254, 0.3);
}

.pa-feature-icon {
    min-width: 90px;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 70px rgba(51, 109, 254, 0.4);
    border: 2px solod var(--w-color);
}

.pa-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--s-color);
    margin-right: 8px;
}

/* Stats Section */
/*.pa-stats {*/
/*    margin-top: 60px;*/
/*    margin-bottom: 80px;*/
/*}*/

.pa-stats-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.pa-stats-container {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 32px;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 100px;
}

.pa-stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pa-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.pa-stat-icon {
    width: 120px;
    height: 120px;
    background: var(--w-color);
    outline: 5px solid var(--swiper-theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: absolute;
    top: -100px;
    overflow: hidden;
}

.pa-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-top: 40px;
}

.pa-stat-label {
    font-size: 24px;
    font-weight: 600;
    color: var(--l-color);
    margin-top:20px;
}

/* About Section */
.pa-about {
    margin-bottom: 80px;
}

.pa-about-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

.pa-about-title-icon {
    color: #2563eb;
}

.pa-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* video player */
.pa-about-video {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    display: block;
    align-items: center;
    justify-content: center;
}

.pa-about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pa-player {
    width: 720px;
    height: 400px;
    background: #111;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.pa-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pa-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pa-center-play::before {
    content: "▶";
    font-size: 28px;
    color: #333;
    margin-left: 4px;
}

.pa-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.pa-progress {
    width: 100%;
    height: 4px;
    background: #555;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.pa-progress-bar {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 4px;
}

.pa-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 14px;
}

.pa-left,
.pa-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pa-btn {
    cursor: pointer;
    opacity: 0.9;
}

.pa-btn:hover {
    opacity: 1;
}

.pa-about-list {
    background-image: url('./assets/patterns/s-pattern.svg');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 20px 70px rgba(51, 109, 254, 0.2);
    height: 380px;
}

.pa-about-list-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--p-color);
    margin-bottom: 8px;
    text-align: right;
}

.pa-about-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: right;
}

.pa-about-item::before {
    content: "";
    background-image: url('./assets/icons/b-arrow.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 12px;
    height: 18px;
    position: absolute;
    right: 0;
    top: 12px;
}

.pa-about-item-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #4c4b4e;
    margin-right: 24px;
}

/* How It Works Section */
.pa-how-it-works {
    background-repeat: no-repeat;
    background-size: 96%;
    background-position: center;
    background-color: var(--s-color);
    margin: 0 -20px;
    padding: 80px 20px 70px;
    margin-top: 150px;
}

.pa-how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pa-how-it-works-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.pa-how-it-works-title-icon {
    color: #60a5fa;
}

.pa-how-it-works-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pa-how-card {
    background: white;
    border-radius: 32px;
    padding: 10px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}

.pa-how-card:hover {
    transform: translateY(-4px);
}

.pa-how-card-ads-items {
    display: flex;
    align-items: center;
    justify-content: start;
}

.pa-how-card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-how-card-title {
    font-size: 20px;
    font-weight: 800;
        text-align: start;
    line-height: 34px;
    color: var(--s-color);
}

.pa-how-card-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--s-color);
    text-align: center;
    font-weight: 400 !important;
    min-height: 160px;
}

.how-work-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pa-how-it-works-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.pa-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Why Choose Us Section */
.pa-why-choose {
    margin-bottom: 80px;
    margin-top: 80px;
}

.pa-why-choose-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.pa-why-choose-title-icon {
    color: #60a5fa;
}

.pa-why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pa-why-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pa-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.pa-why-card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.pa-why-card-text {
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
    text-align: center;
}

.pa-why-choose-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Logo Slider */
.pa-logo {
    margin-top: 320px !important;
}

.pa-logo-slider-wrapper {
    display: flex;
    justify-content: center;
}

.pa-logo-slider {
    width: 100%;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 70px rgba(51, 109, 254, 0.2);
    overflow: hidden;
    direction: ltr;
    position: relative;
    padding: 20px 0;
}

.pa-logo-slider::before,
.pa-logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.pa-logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.pa-logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.pa-logo-track {
    display: flex;
    width: max-content;
    animation: pa-logo-scroll 25s linear infinite;
}

.pa-logo-track:hover {
    animation-play-state: paused;
}

.pa-logo-item {
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0 15px;
}

.pa-logo-item img {
    max-width: 100%;
    max-height: 70px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pa-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes pa-logo-scroll {
    0% {
        transform: translateX(0);
    }

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

/* Testimonials Section */
.testimonials {
    background-image: url('./assets/patterns/t-pattern.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
}

.pa-testimonials {
    position: relative;
    margin-bottom: 40px;
}

.pa-testimonials-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

.pa-testimonials-title-icon {
    color: #2563eb;
}

.pa-testimonials-slider {
    position: relative;
    padding: 0 10px 50px;
    overflow: hidden;
}

.pa-testimonials-slider .swiper-slide {
    width: 100%;
    box-sizing: border-box;
    margin: auto;
}

.pa-testimonial-card {
    background: white;
    border-radius: 32px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    height: 250px;
    box-shadow: 0 20px 40px rgba(51, 109, 254, 0.12);
    width: 100%;
    box-sizing: border-box;
}

.pa-testimonial-card:hover {
    transform: translateY(-2px);
}

.pa-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pa-testimonial-avatar {
    flex-shrink: 0;
}

.pa-testimonial-avatar img {
    border-radius: 24px;
}

.pa-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.pa-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.pa-testimonial-specialty {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pa-specialty-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: var(--p-color);
    color: var(--w-color);
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 4px;
}

.testimonial-star {
    line-height: 0;
    margin-top: 1px;
}

.pa-specialty-badge-primary {
    background: #dbeafe;
    color: #2563eb;
}

.pa-testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
    text-align: right;
    padding: 0 4px;
}

.pa-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.pa-slider-prev {
    right: -50px;
}

.pa-slider-next {
    left: -50px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--p-color);
}

/* FAQ Section */
.pa-faq {
    background-image: url('./assets/patterns/f-pattern.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    position: relative;
    margin-top: 140px;
    background-color: var(--p-color);
    padding: 50px 0 0;
}

.pa-faq-container {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.pa-faq-container::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pa-faq-image {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 560px;
}

.pa-faq-image img {
    position: absolute;
    top: -162px;
    width: 90%;
}

.pa-faq-image-placeholder {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.pa-faq-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.pa-faq-section {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    gap: 80px;
    margin-bottom: 80px;
}

.pa-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pa-faq-icon {
    font-size: 36px;
    font-weight: 300;
}

.pa-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.pa-faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pa-faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: 'iransans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    text-align: right;
    transition: all 0.3s ease;
}

.pa-faq-question:hover {
    background: #f8fafc;
}

.pa-faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #64748b;
}

.pa-faq-item-active .pa-faq-arrow {
    transform: rotate(180deg);
}

.pa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}

.pa-faq-item-active .pa-faq-answer {
    max-height: 500px;
    padding: 20px 24px;
}

.pa-faq-answer p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.pa-faq-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for FAQ */
@media (max-width: 1024px) {
    .pa-faq-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    
    .pa-how-card-text {
    min-height: 39px !important;
    padding: 8px 4px 0;
}

    .pa-faq-image-placeholder {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .pa-faq-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

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

    .pa-faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }

    .pa-faq-answer {
        font-size: 14px;
    }

    .pa-faq-item-active .pa-faq-answer {
        padding: 16px 20px;
    }

    .pa-faq-buttons {
        flex-direction: column;
    }

    .pa-faq-buttons .pa-btn {
        width: 180px;
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .pa-testimonials-title {
        font-size: 24px;
    }

    .pa-testimonials-slider {
        padding: 0 10px 50px;
    }

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

    .pa-slider-btn.pa-slider-next,
    .pa-slider-btn.pa-slider-prev {
        display: none;
    }

    .pa-testimonials {
        padding: 40px 0px;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {

    .pa-testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .pa-how-card-icon {
    width: 80px;
    height: 60px;
}
.pa-how-card-title {
    font-size: 17px;
    width: 60%;
    line-height: 28px;
}
}

@media (max-width: 768px) {

    .pa-why-choose-title,
    .pa-testimonials-title {
        font-size: 24px;
    }

    .pa-why-choose-buttons {
        flex-direction: column;
    }

    .pa-why-choose-buttons .pa-btn {
        width: 100%;
    }

    .pa-testimonials-container {
        grid-template-columns: 1fr;
    }

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

/* Consultation Form Section */
.pa-consultation {
    margin-top: 100px;
}

.pa-consultation-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pa-consultation-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pa-consultation-image {
    position: relative;
    z-index: 1;
}

.pa-consultation-image img {
    width: 100%;
    height: auto;
    border-radius: 32px;
}

.pa-consultation-form-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 30%;
    width: 50%;
}

.pa-consultation-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--s-color);
    text-align: center;
    margin-bottom: 32px;
}

.pa-consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pa-form-group {
    position: relative;
}

.pa-form-group img {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.pa-form-input {
    width: 100%;
    padding: 16px 48px 16px 20px;
    border: 2px solid var(--w-color);
    border-radius: 20px;
    font-size: 15px;
    font-family: 'iransans', sans-serif;
    transition: all 0.3s ease;
    background: white;
    height: 70px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pa-form-input:focus {
    outline: none;
    border-color: none
}

.pa-form-input::placeholder {
    color: #94a3b8;
}

.pa-form-select {
    appearance: none;
    cursor: pointer;
}

.pa-form-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.pa-form-submit {
    background: var(--s-color);
    color: var(--w-color);
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'iransans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 8px;
    height: 70px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pa-form-submit:hover {
    background: var(--p-color)
}

/* Responsive Design for Consultation Form */
@media (max-width: 1024px) {
    .pa-consultation-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .pa-consultation-image {
        order: 2;
    }

    .pa-consultation-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .pa-consultation-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .pa-consultation-form-wrapper {
        padding: 30px 20px;
    }

    .pa-consultation-title {
        font-size: 20px;
    }

    .pa-form-input {
        padding: 14px 44px 14px 16px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pa-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pa-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pa-stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .pa-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 768px) {
    .pa-hero-title {
        font-size: 36px;
    }

    .pa-hero-subtitle {
        font-size: 18px;
    }

    .pa-hero-buttons {
        flex-direction: column;
    }

    .pa-btn {
        width: 100%;
    }

    .pa-features {
        grid-template-columns: 1fr;
    }

    .pa-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }

    .pa-stat-number {
        font-size: 28px;
    }

    .pa-about-title,
    .pa-how-it-works-title {
        font-size: 26px;
    }

    .pa-how-it-works-buttons {
        flex-direction: column;
    }

    .pa-how-it-works-buttons .pa-btn {
        width: 100%;
    }
}

.pa-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
}

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

.s-banner {
    display: none !important;
}

@media (max-width: 480px) {
    .pa-stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1400px) {
    .pa-container {
        padding: 0 48px;
    }

    .pa-hero-title {
        font-size: 40px;
    }

    .pa-section-title {
        position: relative;
        margin: 120px 0 30px;
    }

    .pa-hero-subtitle {
        font-size: 32px;
    }

    .pa-hero-badge {
        font-size: 26px;
    }

    .pa-badge-icon img {
        width: 90%;
    }

    .pa-btn {
        padding: 0;
        font-size: 18px;
        width: 200px;
        height: 56px;
    }

    .pa-features {
        margin-top: -200px;
    }

    .pa-feature-card {
        height: 100px;
    }

    .pa-feature-icon {
        min-width: 80px;
        min-height: 80px;
    }

    .pa-feature-title {
        font-size: 20px;
        margin-right: 10px;
    }

    .pa-how-it-works {
        margin-top: 80px;
    }

    .pa-section-title h3 {
        font-size: 26px;
    }

    .pa-logo {
        margin-top: 340px !important;
    }

    .pa-section-title::before {
        width: 28px;
        height: 28px;
    }

    .plus-w::before {
        width: 28px;
        height: 28px;
    }

    .pa-stats-container {
        margin-top: 90px;
    }

    .pa-stats-container {
        padding: 40px 40px;
    }

    .pa-stat-icon {
        width: 100px;
        height: 100px;
        top: -90px;
    }

    .pa-stat-item {
        gap: 0;
    }

    .pa-stat-number {
        font-size: 28px;
        margin-top: 24px;
    }

    .pa-stat-label {
        font-size: 22px;
    }

    .pa-stat-icon img {
        width: 80%;
    }

    .pa-how-it-works {
        padding: 80px 60px;
    }

    .pa-testimonials {
        padding: 0 20px;
    }

    .pa-slider-btn.pa-slider-next img,
    .pa-slider-btn.pa-slider-prev img {
        width: 38%;
    }

    .pa-slider-next {
        left: -30px;
    }

    .pa-slider-prev {
        right: -30px;
    }
    
    .pa-banner {
    margin-top: 100px;
}
}

@media (max-width: 1200px) {
    .hero {
        background-size: 94%;
    }

    .pa-features {
        margin-top: -110px;
    }

    .pa-section-title {
        margin: 100px 0 30px;
    }

    .pa-hero-content {
        flex: 1.2;
    }

    .pa-hero-image img {
        width: 80%;
    }

    .pa-hero-image {
        padding-left: 40px;
    }

    .pa-hero-title {
        font-size: 38px;
    }

    .pa-hero-subtitle {
        font-size: 30px;
    }

    .pa-hero-badge {
        font-size: 24px;
    }

    .pa-badge-icon img {
        width: 80%;
    }

    .pa-hero-badge {
        padding: 10px 20px;
    }

    .pa-btn {
        font-size: 17px;
        width: 180px;
        height: 52px;
    }

    .pa-feature-title {
        font-size: 18px;
        margin-right: 2px;
    }

    .pa-feature-card {
        padding: 12px;
        border-radius: 28px;
        height: 90px;
    }

    .pa-feature-icon {
        min-width: 70px;
        min-height: 70px;
    }

    .pa-feature-icon img {
        width: 28px;
    }

    .pa-stat-label {
        font-size: 20px;
    }

    .pa-stat-number {
        font-size: 26px;
        margin-top: 30px;
    }

    .pa-about-list,
    .pa-about-video {
        height: 320px;
    }

    .pa-about-list {
        padding: 32px;
    }

    .pa-about-item::before {
        width: 10px;
        height: 14px;
        right: 0;
        top: 8px;
    }

    .pa-about-item-text {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.8;
        color: var(--s-color);
        margin-right: 18px;
    }

    .pa-about-list {
        gap: 12px;
    }

    .pa-about-list-title {
        font-size: 24px;
        margin-bottom: 0px;
    }

.pa-how-card {
    padding: 12px;
    gap: 0;
}

.pa-how-card-text {
    min-height: 60px !important;
}

.pa-how-card-icon {
    width: 90px;
    height: 72px;
}

    .pa-how-card-icon img {
        width: 90%;
    }

    .pa-how-card-title {
        font-size: 18px;
    }

.pa-how-card-text {
    font-size: 16px !important;
    line-height: 1.7;
    min-height: 130px;
}

section.pa-how-it-works {
    padding: 60px 70px 30px;
}

    .pa-consultation-form-wrapper {
        padding: 60px 50px;
        top: 20%;
        width: 60%;
        z-index: 9999;
    }

    .pa-form-input {
        height: 66px;
    }

    .pa-form-submit {
        height: 66px;
    }

    .pa-faq-section {
        margin-bottom: 40px;
    }
}



@media (max-width: 992px) {
    .pa-container {
        padding: 0 32px;
    }

    .pa-section-title h3 {
        font-size: 24px;
        margin-right: 34px;
    }

    .pa-section-title::before {
        width: 24px;
        height: 25px;
    }

    .plus-w::before {
        width: 24px;
        height: 25px;
    }

    .pa-hero-image {
        padding-left: 0;
    }

    .pa-hero-title {
        font-size: 30px;
    }

    .pa-hero-subtitle {
        font-size: 24px;
    }

    .pa-hero-badge {
        font-size: 22px;
    }

    .pa-badge-icon img {
        width: 70%;
    }

    .pa-hero-badge {
        padding: 8px 20px;
    }

    .pa-hero-badge {
        gap: 0;
    }

    .pa-features {
        gap: 12px;
        margin-top: -100px;
    }

    .pa-feature-card {
        height: 80px;
    }

    .pa-feature-icon {
        min-width: 60px;
        min-height: 60px;
        border-radius: 20px;
    }

    .pa-feature-title {
        font-size: 16px;
        margin-right: 0;
    }

    .pa-stats-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .pa-stat-icon {
        width: 90px;
        height: 90px;
        top: -80px;
    }

    .pa-stat-icon img {
        width: 70%;
    }

    .pa-stats-container {
        margin-top: 70px;
    }

    .pa-about-list,
    .pa-about-video {
        height: auto;
        min-height: 380px;
    }

    .pa-how-it-works {
        margin-top: 0;
    }

    .pa-about-item-text {
        font-size: 20px;
        margin-right: 20px;
    }

    .pa-about-item::before {
        top: 12px;
    }

    .pa-about-list {
        background-size: 40%;
    }

    .pa-how-it-works-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .pa-how-it-works {
        padding: 50px 50px;
    }

    .pa-how-card-title {
        font-size: 16px;
    }

    .pa-consultation-container {
        padding: 0 40px;
    }

    .pa-logo {
        margin-top: 380px !important;
    }

    .pa-faq-image {
        display: none;
    }

    .pa-faq-container {
        padding: 10px;
    }

    .pa-faq-section {
        margin-bottom: 20px;
    }

    .pa-faq-section {
        flex-direction: column;
    }

    .pa-faq-list {
        width: 100%;
    }
    
    .pa-faq-container {
    margin-bottom: 50px;
}

.pa-how-card-text {
    font-size: 15px;
    line-height: 1.6;
    min-height: 120px;
}

.pa-how-card-icon img {
    width: 90%;
}

.pa-how-card {
    padding: 10px 20px 10px !important;
    gap: 0 !important;
}

.pa-how-card {
    padding: 0 20px 10px;
    gap: 8px;
}

.pa-how-card-icon {
    width: 70px;
    height: 70px;
}

.pa-banner {
    margin-top: 80px;
    margin-bottom: 80px;
}
}

@media (max-width: 768px) {
    .pa-section-title h3 {
        font-size: 22px;
        margin-right: 32px;
    }

    .pa-section-title::before {
        width: 20px;
        height: 20px;
    }

    .plus-w::before {
        width: 20px;
        height: 20px;
    }

    .pa-hero {
        display: flex;
        align-items: center;
        margin-bottom: 80px;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .pa-hero-content {
        width: 100%;
        flex: 1;
        align-items: center;
        order: 2;
    }

    .pa-hero-image {
        order: 1;
        justify-content: center;
    }

    .pa-hero-image img {
        width: 80%;
    }

    .pa-hero-title {
        font-size: 40px;
        color: var(--p-color);
    }

    .pa-hero-subtitle {
        font-size: 30px;
        text-align: center;
    }

    .pa-hero-badge {
        align-self: center;
    }

    .pa-hero-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .pa-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
        gap: 20px;
    }

    .pa-stats-container {
        padding: 30px 40px;
    }

    .pa-stat-icon {
        width: 80px;
        height: 80px;
        top: -70px;
    }

    .pa-stat-number {
        font-size: 24px;
        margin-top: 24px;
    }

    .pa-stat-label {
        font-size: 18px;
          margin-top:10px;
    }

    .pa-stat-icon img {
        width: 62%;
    }

    .pa-about-item-text {
        font-size: 18px;
        line-height: 42px;
    }

    .pa-about-item::before {
        top: 14px;
    }

    .pa-about-list-title {
        font-size: 22px;
    }

    .pa-how-card-icon img {
        width: 82%;
    }

    .pa-how-card {
        padding: 16px;
        gap: 14px;
    }

    .pa-how-card-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .pa-how-card-title {
        font-size: 18px;
        line-height: 1.8;
        height: 30px;
    }
    
    .pa-how-card-text {
    min-height: 50px !important;
}

.pa-how-card-icon {
    width: 70px;
    height: 50px;
}

    .pa-how-it-works {
        padding: 40px 40px;
    }

    .pa-how-it-works-cards {
        gap: 16px;
    }

    .pa-consultation-form-wrapper {
        padding: 60px 50px;
        top: 15%;
        width: 80%;
        z-index: 9999;
        border-radius: 22px;
    }

    .pa-logo-slider {
        padding: 10px 0;
    }

    .pa-form-input {
        height: 60px;
    }

    .pa-form-submit {
        height: 60px;
    }
    
        .pa-faq-container {
    margin-bottom: 40px;
}

.pa-how-it-works-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.pa-how-card-title {
    font-size: 17px;
    width: 100%;
}

.l-banner {
    display: none !important;
}


.s-banner {
    display: block !important;
}


}

@media (max-width: 576px) {
    .pa-hero-image img {
        width: 90%;
    }

    .pa-hero-title {
        font-size: 36px;
        color: var(--p-color);
    }

    .pa-hero-subtitle {
        font-size: 26px;
        text-align: center;
    }

    .pa-stat-icon {
        position: initial;
    }

    .pa-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .pa-stats-container {
        padding: 50px 30px;
    }

    .pa-stats-container {
        margin-top: 0;
    }

    .pa-about-item-text {
        font-size: 17px;
        line-height: 42px;
    }

    .pa-about-list,
    .pa-about-video {
        height: auto;
        min-height: auto;
    }

    .pa-how-it-works-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        margin-bottom: 20px;
    }

    .pa-how-card-icon img {
        width: 100%;
    }

    .pa-how-card-title {
        font-size: 20px;
        height: 30px;
    }
    
    .pa-how-card {
    padding: 12px;
    gap: 10px;
}

    .pa-how-card-text {
        font-size: 16px;
        line-height: 1.9;
    }

    .pa-how-card-text {
        min-height: 140px;
    }

    .pa-consultation-form-wrapper {
        padding: 50px 40px;
        top: 20%;
        width: 86%;
        z-index: 9999;
        border-radius: 20px;
    }

    .pa-form-input {
        height: 58px;
    }

    .pa-form-submit {
        height: 58px;
    }

    .pa-form-submit {
        font-size: 18px;
    }

    .pa-how-it-works {
        margin-top: 90px;
    }

    .pa-faq {
        margin-top: 100px;
    }

    .pa-logo {
        margin-top: 420px;
    }
    
    section.pa-how-it-works {
    padding: 60px 50px 30px;
}

p.pa-how-card-text {
    text-align: start;
}

.pa-section-title h3 {
    font-size: 22px;
    margin-right: 32px;
    line-height: 38px;
}

.pa-section-title::before {
    width: 20px;
    height: 20px;
    top: 10px;
}

.pa-about {
    margin-bottom: 20px;
}

.pa-banner {
    margin-top: 0;
    margin-bottom: 40px;
}
}

@media (max-width: 480px) {
    .pa-section-title {
        margin: 60px 0 30px;
    }

    .pa-section-title h3 {
        font-size: 20px;
        margin-right: 30px;
    }

    .pa-container {
        padding: 24px;
    }

    .pa-hero-title {
        font-size: 32px;
        color: var(--p-color);
    }

    .pa-hero-subtitle {
        font-size: 24px;
        line-height: 42px;
    }

    .pa-hero-badge {
        align-self: center;
        width: 100%;
        justify-content: center;
    }

    .pa-hero-badge {
        font-size: 20px;
    }

    .pa-hero-buttons {
        width: 100%;
        justify-content: center;
    }

    .pa-btn {
        font-size: 16px;
        width: 100%;
        height: 50px;
    }

    .pa-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: -100px;
        gap: 16px;
    }

    .pa-feature-title {
        font-size: 15px;
        margin-right: 0;
    }

    .pa-feature-card {
        padding: 8px;
        height: 70px;
        border-radius: 20px;
    }

    .pa-feature-icon {
        min-width: 54px;
        min-height: 54px;
        border-radius: 18px;
    }

    .pa-stats-container {
        padding: 30px 20px;
    }

    .pa-about-list {
        padding: 22px;
    }

    .pa-about-list-title {
        font-size: 20px;
    }

    .pa-about-item-text {
        font-size: 16px;
        margin-right: 20px;
        line-height: 34px;
    }

    .pa-about-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pa-about-list,
    .pa-about-video {
        height: auto;
        min-height: auto;
        border-radius: 28px;
    }

    .pa-how-card-title {
        font-size: 18px;
        line-height: 1.8;
        height: 30px;
    }

    .pa-how-card-icon img {
        width: 100%;
    }
    
    .pa-how-card {
    padding: 12px;
    gap: 8px;
}

.pa-how-card-icon {
    height: 50px;
}

.pa-how-card {
    padding: 12px 16px;
    gap: 8px;
}
    .pa-consultation-title {
        font-size: 18px;
    }

    .pa-how-it-works {
        margin-top: 0px;
    }

    .pa-consultation {
    margin-top: 50px;
}

    .pa-consultation-container {
        padding: 0;
    }

    .pa-consultation-form-wrapper {
        top: 12%;
        width: 92%;
    }

    .pa-logo {
        margin-top: 300px !important;
    }

    .pa-faq {
        margin-top: 80px;
    }
    
    input:not([type="submit"]), select, textarea {
    font-size: 14px !important;
}

.pa-form-group img {
    width: 20px;
}

.pa-form-submit {
    font-size: 16px;
}

#pbm-isolated-wrap p {
    margin: 0 !important;
    padding: 0 18px 0 8px;
    text-align: right;
}
}

@media (max-width: 414px) {
    .pa-container {
        padding: 0 20px;
    }

    .pa-hero-content {
        gap: 14px;
    }

    .pa-section-title {
        margin: 40px 0 20px;
    }
    
    .pa-about {
    margin-bottom: 40px;
}

    .pa-feature-card {
        height: 60px;
        gap: 8px;
    }

    .pa-features {
        gap: 10px 8px;
          margin-top: -60px;
    }
    

    .pa-feature-title {
        font-size: 14px;
        margin-right: 0;
    }

    .pa-hero-subtitle {
        font-size: 22px;
        line-height: 38px;
    }

    .pa-hero-badge {
        font-size: 19px;
    }

    .pa-feature-icon {
        min-width: 48px;
        min-height: 48px;
        border-radius: 14px;
    }

    .pa-feature-icon img {
        width: 24px;
    }

    .pa-stat-number {
        font-size: 22px;
        margin-top: 16px;
    }

    .pa-stat-label {
        font-size: 17px;
    }

    .pa-about-item-text {
        font-size: 15px;
        margin-right: 20px;
        line-height: 30px;
    }

    .pa-about-list-title {
        font-size: 18px;
    }

    .pa-about-item::before {
        top: 8px;
    }

    .pa-about-list,
    .pa-about-video {
        border-radius: 20px;
    }

    .pa-consultation-form-wrapper {
        padding: 28px;
        top: 20%;
        width: 86%;
        z-index: 9999;
        border-radius: 24px;
    }

    .pa-consultation-image img {
        width: 100%;
        height: auto;
        border-radius: 26px;
    }

    .pa-consultation-title {
        font-size: 16px;
    }

    .pa-form-submit {
        font-size: 16px;
    }

    .pa-faq-container {
        padding: 0;
    }

    .pa-faq-question {
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .pa-faq-section {
        margin-bottom: 0;
    }
    
    .pa-logo {
    margin-top: 280px !important;
}

.pa-faq {
    margin-top: 50px;
}

section.pa-how-it-works {
    padding: 60px 40px 30px;
}

    .pa-hero-badge {
        font-size: 16px !important;
    }
	.pa-faq-question {
    padding: 14px 16px;
    font-size: 14px !important;
    line-height: 1.7;
}

}

@media (max-width: 390px) {
    .pa-section-title h3 {
        font-size: 18px;
        margin-right: 28px;
        line-height: 34px;
    }

    .pa-section-title::before {
        width: 18px;
        height: 18px;
        top: 8px;
    }

    .plus-w::before {
        width: 18px;
        height: 18px;
    }

    .pa-stat-number {
        font-size: 20px;
        margin-top: 12px;
    }

    .pa-stat-label {
        font-size: 16px;
    }

    .pa-btn {
        font-size: 15px;
        width: 100%;
        height: 45px;
    }

    .pa-feature-title {
        font-size: 13px;
    }

    .pa-hero-title {
        font-size: 28px;
        color: var(--p-color);
    }

    .pa-hero-subtitle {
        font-size: 20px;
        line-height: 36px;
    }

    .pa-btn {
        font-size: 14px;
        width: 100%;
        height: 44px;
    }

    .pa-feature-card {
        height: 56px;
        gap: 8px;
    }

    .pa-feature-icon {
        min-width: 44px;
        min-height: 44px;
        border-radius: 12px;
    }

    .pa-feature-icon img {
        width: 22px;
    }

    .pa-how-card-title {
        font-size: 16px;
        line-height: 1.8;
        height: 30px;
    }

    .pa-how-card-icon img {
        width: 80%;
    }

.pa-how-card-icon {
    width: 90px;
    height: 50px;
    display: flex;
    justify-content: start;
}

.pa-how-card-text {
    font-size: 14.5px !important;
    line-height: 1.6;
        min-height: 120px;
}

.pa-how-card {
    padding: 2px 12px 12px;
    gap: 2px;
}

    .pa-consultation-container {
        padding: 0;
        border-radius: 20px;
    }

    .pa-consultation-form-wrapper {
        padding: 20px;
        top: 14%;
        width: 90%;
        z-index: 2;
        border-radius: 20px;
    }
    
    .pa-logo {
    margin-top: 400px !important;
}

.pa-how-card {
    border-radius: 20px;
}

section.pa-how-it-works {
    padding: 40px 40px 30px;
}

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

    .pa-logo {
        margin-top: 440px !important;
    }

}

@media (max-width: 375px) {
    .pa-container {
        padding: 20px;
    }

    .pa-hero-title {
        font-size: 26px;
        color: var(--p-color);
    }

    .pa-hero-subtitle {
        font-size: 18px;
        line-height: 36px;
    }

    .pa-hero-badge {
        font-size: 16px;
    }

    .pa-badge-icon img {
        width: 54%;
    }

    .pa-about-item-text {
        font-size: 15px;
        margin-right: 18px;
        line-height: 26px;
    }

    .pa-how-card-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .pa-consultation-form-wrapper {
        padding: 24px;
    }

    .pa-form-input {
        height: 50px;
        border-radius: 14px;
    }

    .pa-form-submit {
        height: 50px;
        border-radius: 14px;
    }

    .pa-form-submit {
        font-size: 15px;
    }

    .pa-consultation-form {
        gap: 16px;
    }
    
    .pa-how-card {
    padding: 8px 15px 8px !important;
    gap: 0 !important;
}

.pa-section-title.pa-section-title-w {
    margin: 0 0 20px;
}
    
}

@media (max-width: 360px) {
    .pa-stats-container {
        padding: 20px 10px;
    }

    .pa-stat-icon {
        width: 70px;
        height: 70px;
    }

    .pa-container {
        padding: 16px;
    }

    .pa-features {
        gap: 8px 8px;
    }

    .pa-feature-card {
        padding: 6px;
        height: 50px;
        gap: 8px;
        border-radius: 14px;
    }

    .pa-feature-icon {
        min-width: 40px;
        min-height: 40px;
        border-radius: 10px;
    }

    .pa-feature-icon img {
        width: 20px;
    }

    .pa-testimonial-text {
        line-height: 1.5;
    }
}


#pbm-preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #ffffff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999999 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.pbm-loader {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007aff;
    border-radius: 50%;
    animation: pbm-spin 1s linear infinite;
}

@keyframes pbm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pbm-preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease, visibility 0.5s !important;
}


.h_iframe-aparat_embed_frame {
    position: relative;
    width: 100% !important;
}

.pa-form-group-select::after {
	content: "";
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: -1px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #4c4b4e;
	z-index: 3;
}