:root {
    --blue: #2563eb;
    --purple: #6d28d9;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --gradient-start: #2563eb;
    --gradient-end: #d1f2eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    position: relative;
    padding: 100px 0 300px;
    overflow: visible;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content {
    margin-top: 5%;
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.highlight {
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    display: block;
    margin: 24px 0;
}

.cta-button {

        background: linear-gradient(90deg, #c084fc, #7c3aed);
        text-decoration: none;
        color: #fff;
        padding: 25px 56px;
        margin-bottom: 20px;
        border-radius: 14px;
        border: none;
        font-weight: 700;
        font-size: 17px;
        box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
        cursor: pointer;
        transition: 0.2s;

}

.cta-button:hover {
    background: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.5);
}

.hero-image {
    flex: 1;
    min-width: 320px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s ease 0.3s;
}

.hero-image img.loaded {
    opacity: 1;
    transform: translateX(0);
}

.advantages-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

.advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    justify-content: center;
    margin-top: -150px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.advantages.visible {
    opacity: 1;
    transform: translateY(0);
}

.advantage-card {
    background: var(--card);
    border-radius: 20px;
    padding: 36px 24px;
    width: calc(25% - 18px);
    min-width: 280px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.15);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    z-index: 3;
}

.advantage-card:nth-child(1) { transition-delay: 0.15s; }
.advantage-card:nth-child(2) { transition-delay: 0.25s; }
.advantage-card:nth-child(3) { transition-delay: 0.35s; }
.advantage-card:nth-child(4) { transition-delay: 0.45s; }

.advantages.visible .advantage-card {
    opacity: 1;
    transform: translateY(0);
}

.advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--blue);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--blue);
    font-size: 18px;
}

.icon-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.header-title {
    white-space: nowrap;
}

.advantage-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 1200px) {
    .advantage-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 220px;
    }
    
    .container {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
    margin-top: -5%;
    }
    
    .hero-image {
        text-align: center;
        order: -1;
        margin-bottom: 32px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .advantages {
        margin-top: -80px;
        padding: 0 20px;
        gap: 20px;
    }
    
    .advantage-card {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 32px auto 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .highlight {
        font-size: 18px;
    }
    
    .icon-img {
        width: 32px;
        height: 32px;
    }
    
    .card-header {
        font-size: 16px;
    }
}
:root {
    --blue: #2563eb;
    --purple: #6d28d9;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mission-section {
    width: 100%;
    padding: 120px 0;
    background: var(--bg);
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-header {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mission-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.container .mission-title {
    flex: 0 0 30%;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;

    line-height: 1.3;
    margin: 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.9s ease 0.3s;
}

.mission-header.visible .mission-title {
    opacity: 1;
    transform: translateX(0);
}

.mission-text {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.9s ease 0.4s;
}

.mission-header.visible .mission-text {
    opacity: 1;
    transform: translateX(0);
}

.stats-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stat-block {
    flex: 1;
    min-width: 280px;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.stat-block:nth-child(1) { transition-delay: 0.6s; }
.stat-block:nth-child(2) { transition-delay: 0.8s; }
.stat-block:nth-child(3) { transition-delay: 1.0s; }

.stats-grid.visible .stat-block {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.stats-grid.visible .stat-number {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease 0.1s;
}

.stats-grid.visible .stat-label {
    opacity: 1;
    transform: translateY(0);
}

.stat-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.2s;
}

.stats-grid.visible .stat-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .mission-header {
        gap: 40px;
        margin-bottom: 28px;
    }
    
    .mission-title {
        font-size: 32px;
    }
    
    .mission-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .mission-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .mission-title {
        flex: none;
        width: 100%;
        font-size: 30px;
    }
    
    .mission-text {
        width: 100%;
    }
    
    .stats-grid {
        gap: 32px;
        justify-content: center;
    }
    
    .stat-block {
        text-align: center;
        flex: 1 1 300px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 28px;
    }
    
    .mission-text {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .stat-desc {
        font-size: 15px;
    }
}
:root {
    --blue: #2563eb;
    --light-green: #d1f2eb;
    --text: #0f172a;
    --muted: #475569;
    --card-bg: #ffffff;
    --image-bg: #a5f3fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.features-section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--blue), var(--light-green));
    overflow: hidden;
}

.features-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.container .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    padding: 0;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: white !important;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1240px;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-item:nth-child(1) { transition-delay: 0.3s; }
.feature-item:nth-child(2) { transition-delay: 0.5s; }
.feature-item:nth-child(3) { transition-delay: 0.7s; }

.features-grid.visible .feature-item {
    opacity: 1;
    transform: translateY(0);
}

.feature-image {
    width: 100%;
    height: 140px;
    background: var(--image-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 28px;
    padding: 20px;
}

.feature-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.feature-item:nth-child(2) .feature-image {
    order: 3;
    margin: 28px 0 0;
}

.feature-item:nth-child(2) .feature-title {
    order: 1;
}

.feature-item:nth-child(2) .feature-desc {
    order: 2;
    margin-bottom: 28px;
}

@media (max-width: 1024px) {
    .features-grid {
        gap: 32px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-section .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }
    
    .feature-item {
        padding: 32px 24px;
        min-width: 100%;
        max-width: 100%;
    }
    
    .feature-image {
        height: 120px;
    }
    
    .feature-image img {
        width: 70px;
        height: 70px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }
}
:root {
    --purple: #6d28d9;
    --text: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.marketing-section {
    width: 100%;
    padding: 120px 0;
    background: var(--bg);
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.marketing-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin: 0 auto 24px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;
}

.marketing-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.marketing-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.2s;
}

.marketing-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.marketing-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.left-column {
    flex: 1;
    min-width: 320px;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s ease 0.4s;
}

.left-column.visible {
    opacity: 1;
    transform: translateX(0);
}

.left-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.3;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    align-items: center;
}

.benefit-item {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 140px;
}

.benefit-item:hover {
    border-color: var(--purple);
    background: rgba(109, 40, 217, 0.03);
}

.order-button {
    width: 100%;
    padding: 18px 32px;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

.order-button:hover {
    background: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.4);
}

.right-column {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s ease 0.6s;
}

.right-column.visible {
    opacity: 1;
    transform: translateX(0);
}

.right-column img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

@media (max-width: 1024px) {
    .marketing-content {
        gap: 40px;
    }
    
    .left-title {
        font-size: 28px;
    }
    
    .benefit-item {
        font-size: 14px;
        padding: 8px 14px;
        min-width: 110px;
    }
}

@media (max-width: 768px) {
    .marketing-section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .marketing-title {
        font-size: 30px;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    
    .marketing-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }
    
    .marketing-content {
        flex-direction: column;
        align-items: center;
    }
    
    .left-column,
    .right-column {
        width: 100%;
        text-align: center;
    }
    
    .left-title {
        font-size: 26px;
        text-align: center;
    }
    
    .benefits-row {
        justify-content: center;
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 14px;
        min-width: 100px;
    }

    .order-button {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .right-column {
        justify-content: center;
        margin-top: 40px;
    }
    
    .right-column img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .marketing-title {
        font-size: 26px;
    }
    
    .left-title {
        font-size: 24px;
    }
    
    .benefit-item {
        font-size: 13px;
        padding: 8px 12px;
        min-width: 90px;
    }
    
    .order-button {
        padding: 16px 24px;
        font-size: 17px;
    }
}
:root {
    --blue: #2563eb;
    --light-green: #d1f2eb;
    --audience-card-bg: rgba(255, 255, 255, 0.22);
    --audience-card-border: rgba(255, 255, 255, 0.35);
    --text-white: #ffffff;
    --shadow-dark: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.audience-section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 35%, var(--light-green) 100%);
    overflow: hidden;
}

.audience-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page .audience-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 80px 0;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text-white) !important;

}

.audience-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.audience-card {
    background: var(--audience-card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--audience-card-border);
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 12px 32px var(--shadow-dark);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.audience-card:nth-child(1) { transition-delay: 0.2s; }
.audience-card:nth-child(2) { transition-delay: 0.3s; }
.audience-card:nth-child(3) { transition-delay: 0.4s; }
.audience-card:nth-child(4) { transition-delay: 0.5s; }
.audience-card:nth-child(5) { transition-delay: 0.6s; }
.audience-card:nth-child(6) { transition-delay: 0.7s; }

.audience-grid.visible .audience-card {
    opacity: 1;
    transform: translateY(0);
}

.audience-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
}

.audience-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 100%;
    }
    
    .audience-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .audience-section {
        padding: 80px 0;
    }
    
    .audience-container {
        padding: 0 20px;
    }
    
    .audience-title {
        font-size: 28px;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .audience-card {
        padding: 28px 20px;
        max-width: 100%;
    }
    
    .audience-text {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .audience-title {
        font-size: 26px;
    }
    
    .audience-text {
        font-size: 16px;
    }
}
:root {
    --light-blue: #60a5fa;
    --text: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
    --number-bg: rgba(96, 165, 250, 0.12);
    --number-border: #60a5fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-section {
    width: 100%;
    padding: 120px 0;
    background: var(--bg);
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.page .services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin: 0 auto 20px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;

}

.services-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1240px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.services-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.service-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--number-bg);
    color: var(--light-blue);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--number-border);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.service-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    padding-top: 4px;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 40px;
    }
    
    .services-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .service-number {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .service-text {
        font-size: 17px;
    }
    
    .services-column {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-column {
        gap: 12px;
    }
    
    .service-item {
        padding: 18px;
    }
    
    .service-number {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .service-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 26px;
    }
    
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .service-text {
        font-size: 15px;
    }
    
    .services-column {
        gap: 10px;
    }
}
:root {
    --blue: #2563eb;
    --light-green: #d1f2eb;
    --process-card-bg: rgba(255, 255, 255, 0.92); 
    --process-card-border: rgba(255, 255, 255, 0.6);
    --text-dark: #0f172a;
    --process-number-color: rgba(37, 99, 235, 0.12);
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.process-section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 35%, var(--light-green) 100%);
    overflow: hidden;
}

.process-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page .process-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 auto 80px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: white !important;

}

.process-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.process-card {
    position: relative;
    background: var(--process-card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--process-card-border);
    border-radius: 24px;
    padding: 40px 32px 80px;
    box-shadow: 0 12px 32px var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.process-card:nth-child(1) { transition-delay: 0.2s; }
.process-card:nth-child(2) { transition-delay: 0.3s; }
.process-card:nth-child(3) { transition-delay: 0.4s; }
.process-card:nth-child(4) { transition-delay: 0.5s; }
.process-card:nth-child(5) { transition-delay: 0.6s; }
.process-card:nth-child(6) { transition-delay: 0.7s; }

.process-grid.visible .process-card {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.8);
}

.process-content {
    height: 100%;
}

.process-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.process-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    opacity: 0.95;
}

.process-number {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 144px;
    font-weight: 900;
    color: var(--process-number-color);
    line-height: 1;
    pointer-events: none;
    opacity: 1;
    user-select: none;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 100%;
    }
    
    .process-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .process-card {
        padding: 36px 28px 72px;
    }
    
    .process-number {
        font-size: 128px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-container {
        padding: 0 20px;
    }
    
    .process-title {
        font-size: 28px;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-card {
        padding: 32px 24px 68px;
    }
    
    .process-step-title {
        font-size: 20px;
    }
    
    .process-desc {
        font-size: 15px;
    }
    
    .process-number {
        font-size: 112px;
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 26px;
    }
    
    .process-number {
        font-size: 96px;
    }
}
:root {
    --text: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --purple: #6d28d9;
    --shadow: rgba(0, 0, 0, 0.06);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.reviews-section {
    width: 100%;
    padding: 120px 0;
    background: var(--bg);
    overflow: hidden;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.page .reviews-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin: 0 auto 20px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;


}
.reviews-title.visible {
    opacity: 1;
    transform: translateY(0);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
}
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 32px 20px; 
    box-shadow: 0 12px 32px var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    position: relative; 
    min-height: 280px; 
}
.review-card:nth-child(1) { transition-delay: 0.2s; }
.review-card:nth-child(2) { transition-delay: 0.3s; }
.review-card:nth-child(3) { transition-delay: 0.4s; }
.review-card:nth-child(4) { transition-delay: 0.5s; }
.review-card:nth-child(5) { transition-delay: 0.6s; }
.review-card:nth-child(6) { transition-delay: 0.7s; }
.reviews-grid.visible .review-card {
    opacity: 1;
    transform: translateY(0);
}
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-color: var(--purple);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.review-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    border: 2px solid var(--border);
}
.review-company {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}
.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 48px; 
    font-style: italic;
    flex-grow: 1; 
}
.review-stars {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 2px;
    position: absolute;
    bottom: 20px;
    left: 32px;
    right: 32px;
    text-align: left;
}
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .reviews-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    .review-card {
        padding: 28px 28px 20px;
        min-height: 260px;
    }
    .review-text {
        margin-bottom: 44px;
    }
    .review-stars {
        bottom: 18px;
        left: 28px;
        right: 28px;
    }
}
@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }
    .container {
        padding: 0 20px;
    }
    .reviews-title {
        font-size: 28px;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .review-card {
        padding: 24px 24px 20px;
        min-height: auto;
    }
    .review-logo img {
        width: 50px;
        height: 50px;
    }
    .review-company {
        font-size: 15px;
    }
    .review-text {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .review-stars {
        font-size: 18px;
        bottom: 16px;
        left: 24px;
        right: 24px;
    }
}
@media (max-width: 480px) {
    .reviews-title {
        font-size: 26px;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .review-logo img {
        width: 44px;
        height: 44px;
    }
    .review-stars {
        bottom: 14px;
        left: 20px;
    }
}
:root {
    --text: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --purple: #6d28d9;
    --shadow: rgba(0, 0, 0, 0.06);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.faq9-section {
    width: 100%;
    padding: 20px 0;
    background: var(--bg);
    overflow: hidden;
}

.faq9-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page .faq9-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin: 0 auto 80px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;

}

.faq9-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq9-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto 60px;
    width: 100%;
}

.faq9-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq9-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.faq9-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq9-item:hover {
    box-shadow: 0 16px 32px var(--shadow-hover);
    border-color: var(--purple);
}

.faq9-question {
    padding: 20px 24px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
    transition: var(--transition);
}

.faq9-question:hover {
    color: var(--purple);
}

.faq9-question.active {
    color: var(--purple);
    border-bottom: 1px solid var(--border);
}

.faq9-question.active .faq9-icon {
    transform: rotate(180deg);
}

.faq9-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--muted);
}

.faq9-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq9-answer.active {
    max-height: 200px;
    padding: 20px 24px;
}

.faq9-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.faq9-cta-btn {
    display: block;
    width: 100%;
    max-width: 1240px;
    padding: 18px 24px;
    background: var(--purple);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.faq9-cta-btn:hover {
    background: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(109, 40, 217, 0.4);
}

.faq9-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .faq9-grid {
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .faq9-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .faq9-question {
        font-size: 17px;
        padding: 18px 20px;
    }
    
    .faq9-answer.active {
        padding: 18px 20px;
    }

    .faq9-cta-btn {
        padding: 16px 20px;
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .faq9-section {
        padding: 80px 0;
    }
    
    .faq9-container {
        padding: 0 20px;
    }
    
    .faq9-title {
        font-size: 28px;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }
    
    .faq9-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .faq9-question {
        font-size: 16px;
        padding: 16px 18px;
    }
    
    .faq9-answer.active {
        padding: 16px 18px;
        max-height: 300px;
    }
    
    .faq9-answer p {
        font-size: 15px;
    }

    .faq9-cta-btn {
        padding: 15px 18px;
        font-size: 16px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .faq9-title {
        font-size: 26px;
    }
    
    .faq9-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .faq9-icon {
        margin-left: 0;
        align-self: flex-end;
    }

    .faq9-cta-btn {
        font-size: 15px;
        padding: 14px 16px;
    }
}


