@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-ultra-light: #e0e7ff;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --accent: #06b6d4;
    --success: #10b981;
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Kalameh', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, ol {
    list-style: none;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-4px);
}
.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.btn-light:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
    transform: translateX(-6px);
}
section {
    padding: 120px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-badge svg {
    width: 18px;
    height: 18px;
}
.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
}
.hero-slide.active .slide-bg img {
    transform: scale(1.1);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(99, 102, 241, 0.6) 50%, rgba(236, 72, 153, 0.5) 100%);
}
.slide-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}
.slide-inner {
    max-width: 850px;
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
}
.hero-slide.active .slide-badge {
    animation: slideUp 0.8s ease forwards 0.2s;
}
.slide-title {
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
}
.hero-slide.active .slide-title {
    animation: slideUp 0.8s ease forwards 0.4s;
}
.slide-title .line {
    display: block;
}
.slide-title .gradient-line {
    background: linear-gradient(90deg, #fff 0%, #a5b4fc 50%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.315));
}

.slide-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 620px;
    opacity: 0;
    transform: translateY(40px);
}
.hero-slide.active .slide-description {
    animation: slideUp 0.8s ease forwards 0.6s;
}
.slide-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
}
.hero-slide.active .slide-cta {
    animation: slideUp 0.8s ease forwards 0.8s;
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-stats {
    position: absolute;
    bottom: 140px;
    left: 60px;
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateX(-50px);
}
.hero-slide.active .slide-stats {
    animation: slideRight 1s ease forwards 1s;
}
@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    text-align: center;
    transition: var(--transition);
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}
.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: flex;
    gap: 12px;
    z-index: 20;
}
.slider-dot {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.slider-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}
.slider-dot.active::after {
    transform: scaleX(1);
    transform-origin: left;
    animation: progressBar 6s linear forwards;
}
@keyframes progressBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
.slider-arrows {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}
.slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #fff;
}
.slider-arrow svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}
.slider-arrow.prev:hover svg {
    transform: translateX(4px);
}
.slider-arrow.next:hover svg {
    transform: translateX(-4px);
}
.hero-explore-btn {
    position: absolute;
    bottom: 130px;
    right: 60px;
    z-index: 25;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.hero-explore-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    transition: var(--transition);
}
.hero-explore-btn:hover .hero-explore-bg {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}
.hero-explore-border {
    position: absolute;
    inset: -2px;
    border-radius: 62px;
    background: conic-gradient(from 0deg, #6366f1, #ec4899, #06b6d4, #10b981, #6366f1);
    z-index: -1;
    opacity: 0.6;
}
.hero-explore-btn {
    display: none; 
}

@media (min-width: 1024px) { 
    .hero-explore-btn {
        display: inline-flex;
    }
}
.hero-explore-btn:hover .hero-explore-border {
    opacity: 1;
    animation-duration: 2s;
}
.hero-explore-border::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 60px;
}
.hero-explore-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px 14px 20px;
}
.hero-explore-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}
.hero-explore-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}
.hero-explore-btn:hover .hero-explore-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}
.hero-explore-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.hero-explore-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.hero-explore-btn:hover .hero-explore-label {
    color: rgba(255, 255, 255, 0.9);
}
.hero-explore-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-explore-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 4px;
}
.hero-explore-arrow svg {
    width: 16px;
    height: 16px;
    color: #fff;
    transition: transform 0.3s ease;
}
.hero-explore-btn:hover .hero-explore-arrow {
    background: var(--gradient-primary);
    transform: scale(1.1);
}
.hero-explore-btn:hover .hero-explore-arrow svg {
    animation: arrowBounce 0.6s ease infinite;
}
@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}
.hero-explore-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 60px;
}
.hero-explore-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}
.hero-explore-btn:hover .hero-explore-particles span {
    animation: particleExplode 0.8s ease forwards;
}
.hero-explore-particles span:nth-child(1) {
    top: 50%;
    left: 20%;
    animation-delay: 0s;
}
.hero-explore-particles span:nth-child(2) {
    top: 30%;
    left: 50%;
    animation-delay: 0.1s;
}
.hero-explore-particles span:nth-child(3) {
    top: 70%;
    left: 60%;
    animation-delay: 0.2s;
}
.hero-explore-particles span:nth-child(4) {
    top: 40%;
    left: 80%;
    animation-delay: 0.3s;
}
@keyframes particleExplode {
    0% {
        opacity: 1;
        transform: scale(0) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1.5) translate(var(--tx, 20px), var(--ty, -20px));
    }
}
.hero-explore-particles span:nth-child(1) { --tx: -30px; --ty: -20px; }
.hero-explore-particles span:nth-child(2) { --tx: 10px; --ty: -35px; }
.hero-explore-particles span:nth-child(3) { --tx: 25px; --ty: 15px; }
.hero-explore-particles span:nth-child(4) { --tx: -15px; --ty: 25px; }
.features {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}
.feature-card:hover::before {
    width: 200px;
    height: 200px;
    opacity: 0.1;
}
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: var(--transition);
}
.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}
.feature-card:hover .feature-icon-wrapper::after {
    opacity: 0.5;
    filter: blur(25px);
}
.feature-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: #fff;
}
.feature-number {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 64px;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
    transition: var(--transition);
}
.feature-card:hover .feature-number {
    color: var(--primary-ultra-light);
}
.feature-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.feature-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.benefits {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.benefits-visual {
    position: relative;
}
.benefits-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
}
.benefits-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.benefits-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
}
.benefits-float-card {
    position: absolute;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatCard 4s ease-in-out infinite;
}
.benefits-float-card.card-1 {
    top: -30px;
    left: -30px;
}
.benefits-float-card.card-2 {
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.float-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.float-icon svg {
    width: 24px;
    height: 24px;
}
.float-text strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}
.float-text span {
    font-size: 13px;
    color: var(--text-muted);
}
.benefits-content h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}
.benefits-content h3 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.benefits-content > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.benefit-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateX(-10px);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-ultra-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.benefit-icon svg {
    width: 22px;
    height: 22px;
}
.benefit-item:hover .benefit-icon {
    background: var(--gradient-primary);
    color: #fff;
}
.benefit-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.benefit-text p {
    font-size: 14px;
    color: var(--text-muted);
}
.clients {
    background: var(--bg-primary);
}
.clients-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.client-box {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.client-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.client-box:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}
.client-box:hover::before {
    opacity: 0.08;
}
.client-box img {
    max-width: 130px;
    max-height: 130px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.client-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
.clients-content {
    order: 2;
}
.clients-content h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}
.clients-content h3 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.clients-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.9;
}
.steps {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}
.steps-wrapper {
    position: relative;
}
.steps-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1100px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}
.steps-path svg {
    width: 100%;
    height: 100%;
}
.path-line {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 3;
    stroke-dasharray: 10, 10;
}
.path-line-active {
    fill: none;
    stroke: url(#pathGradient);
    stroke-width: 4;
    stroke-dasharray: 1500;
    stroke-dashoffset: -1500;
    transition: stroke-dashoffset 2s ease;
}
.steps-wrapper:hover .path-line-active {
    stroke-dashoffset: 0;
}
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.step-card {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}
.step-card:nth-child(even) {
    margin-top: 60px;
}
.step-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    position: relative;
}
.step-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}
.step-card:hover .step-icon-bg {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.step-icon-inner {
    position: absolute;
    inset: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.step-card:hover .step-icon-inner {
    transform: scale(1.1);
}
.step-icon-inner svg {
    width: 36px;
    height: 36px;
    color: #fff;
}
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}
.step-arrow {
    position: absolute;
    top: 55px;
    left: -25px;
    color: var(--primary);
    opacity: 0.4;
    transition: var(--transition);
}
.step-arrow svg {
    width: 30px;
    height: 30px;
}
.step-card:hover .step-arrow {
    opacity: 1;
    animation: arrowMove 1s ease infinite;
}
@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}
.step-card:first-child .step-arrow {
    display: none;
}
.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.step-text {
    font-size: 14px;
    color: var(--text-muted);
}
.contact {
    background: var(--bg-primary);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 100%);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.contact-info {
    padding: 40px 0;
}
.contact-info h3 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.contact-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-ultra-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.contact-icon svg {
    width: 22px;
    height: 22px;
}
.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    color: #fff;
}
.contact-text span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.social-links {
    display: flex;
    gap: 14px;
}
.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-link svg {
    width: 22px;
    height: 22px;
}
.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--gradient-primary);
}
.form-header {
    margin-bottom: 35px;
}
.form-header h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-header p {
    font-size: 15px;
    color: var(--text-muted);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.form-group label .required {
    color: var(--secondary);
}
.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition);
}
.form-control::placeholder {
    color: var(--text-light);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}
.form-footer p {
    font-size: 13px;
    color: var(--text-muted);
}
.events {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}
.events-bg-decoration {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}
.event-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}
.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.event-card:hover .event-image img {
    transform: scale(1.1);
}
.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(236, 72, 153, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.event-card:hover .event-overlay {
    opacity: 1;
}
.event-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.5) rotate(-45deg);
    opacity: 0;
    transition: var(--transition);
}
.event-link svg {
    width: 24px;
    height: 24px;
}
.event-card:hover .event-link {
    transform: scale(1) rotate(0);
    opacity: 1;
}
.event-link:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.event-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.event-badge svg {
    width: 16px;
    height: 16px;
}
.event-badge.conference {
    color: var(--primary);
}
.event-badge.graduation {
    color: var(--accent);
}
.event-content {
    padding: 24px;
}
.event-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}
.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}
.event-meta svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}
.event-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.event-card:hover .event-title {
    color: var(--primary);
}
.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.event-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}
.event-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.event-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}
.event-btn:hover svg {
    transform: translateX(-5px);
}
.events-footer {
    text-align: center;
    padding-top: 20px;
}
.btn-lg {
    padding: 20px 50px;
    font-size: 17px;
}
.events-footer-text {
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-muted);
}
.events-footer-text strong {
    color: var(--primary);
    font-weight: 800;
}
.faq {
    background: var(--bg-primary);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    transition: var(--transition);
}
.faq-question:hover {
    background: var(--bg-secondary);
}
.faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-ultra-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.faq-icon svg {
    width: 20px;
    height: 20px;
}
.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    color: #fff;
}
.faq-text {
    flex: 1;
    font-family: Kalameh;
    font-size: 23px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
}
.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.faq-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
    background: var(--primary);
    color: #fff;
}
.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 24px 24px 84px;
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.9;
}
.pricing-preview {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.plan-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}
.plan-card:hover {
    transform: translateY(-10px);
}
.plan-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    transition: 0.6s ease;
    pointer-events: none;
}
.plan-card:hover .plan-shine {
    top: -50%;
    left: -50%;
}
.plan-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.plan-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}
.plan-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    min-height: 50px;
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.plan-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}
.plan-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}
.plan-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.plan-btn:hover svg {
    transform: translateX(-5px);
}
.plan-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.medal-icon {
    width: 75px;
    height: 75px;
    color: currentColor;
}
.medal-circle {
    transform-origin: 40px 32px;
    animation: medalPulse 3s ease-in-out infinite;
}
@keyframes medalPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}
.medal-inner {
    transform-origin: 40px 32px;
    animation: innerRotate 8s linear infinite;
}
@keyframes innerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.medal-star {
    transform-origin: 40px 32px;
    animation: starTwinkle 2s ease-in-out infinite;
}
@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.15) rotate(10deg); opacity: 0.8; }
}
.medal-glow {
    transform-origin: 40px 32px;
    animation: glowBreath 3s ease-in-out infinite;
}
@keyframes glowBreath {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.35; }
}
.ribbon-left {
    transform-origin: 32px 45px;
    animation: ribbonSwayLeft 4s ease-in-out infinite;
}
.ribbon-right {
    transform-origin: 48px 45px;
    animation: ribbonSwayRight 4s ease-in-out infinite;
}
@keyframes ribbonSwayLeft {
    0%, 100% { transform: rotate(0deg) skewX(0deg); }
    25% { transform: rotate(-3deg) skewX(-2deg); }
    75% { transform: rotate(2deg) skewX(1deg); }
}
@keyframes ribbonSwayRight {
    0%, 100% { transform: rotate(0deg) skewX(0deg); }
    25% { transform: rotate(3deg) skewX(2deg); }
    75% { transform: rotate(-2deg) skewX(-1deg); }
}
.sparkle {
    fill: currentColor;
    animation: sparkleTwinkle 2s ease-in-out infinite;
}
.sparkle-1 { animation-delay: 0s; }
.sparkle-2 { animation-delay: 0.5s; }
.sparkle-3 { animation-delay: 1s; }
.sparkle-4 { animation-delay: 1.5s; }
@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}
.medal-shine-spot {
    animation: shineMove 3s ease-in-out infinite;
}
@keyframes shineMove {
    0%, 100% { transform: rotate(-45deg) translate(0, 0); opacity: 0.4; }
    50% { transform: rotate(-45deg) translate(3px, 3px); opacity: 0.7; }
}
.plan-card:hover .medal-circle {
    animation-duration: 1.5s;
}
.plan-card:hover .medal-star {
    animation-duration: 1s;
}
.plan-card:hover .medal-glow {
    animation-duration: 1.5s;
}
.plan-card:hover .ribbon-left,
.plan-card:hover .ribbon-right {
    animation-duration: 2s;
}
.plan-card:hover .sparkle {
    animation-duration: 1s;
}
.plan-bronze {
    --bronze-1: #cd7f32;
    --bronze-2: #b87333;
    --bronze-3: #a0522d;
    --bronze-light: rgba(205, 127, 50, 0.1);
    --bronze-glow: rgba(205, 127, 50, 0.3);
}
.plan-bronze:hover {
    border-color: var(--bronze-1);
    box-shadow: 0 20px 40px var(--bronze-glow);
}
.plan-bronze .plan-badge {
    background: linear-gradient(135deg, var(--bronze-1) 0%, var(--bronze-2) 100%);
    color: #fff;
}
.plan-bronze .medal-icon {
    color: var(--bronze-1);
}
.plan-bronze .medal-glow {
    filter: drop-shadow(0 0 8px var(--bronze-glow));
}
.plan-bronze .plan-title {
    color: var(--bronze-2);
}
.plan-bronze .plan-features li svg {
    color: var(--bronze-1);
}
.plan-bronze .plan-btn {
    background: var(--bronze-light);
    color: var(--bronze-2);
}
.plan-bronze .plan-btn:hover {
    background: linear-gradient(135deg, var(--bronze-1) 0%, var(--bronze-2) 100%);
    color: #fff;
    box-shadow: 0 10px 30px var(--bronze-glow);
}
.plan-silver {
    --silver-1: #c0c0c0;
    --silver-2: #a8a8a8;
    --silver-3: #808080;
    --silver-light: rgba(192, 192, 192, 0.15);
    --silver-glow: rgba(192, 192, 192, 0.4);
}
.plan-silver:hover {
    border-color: var(--silver-2);
    box-shadow: 0 20px 40px var(--silver-glow);
}
.plan-silver .plan-badge {
    background: linear-gradient(135deg, var(--silver-1) 0%, var(--silver-2) 100%);
    color: #333;
}
.plan-silver .medal-icon {
    color: var(--silver-2);
}
.plan-silver .medal-glow {
    filter: drop-shadow(0 0 8px var(--silver-glow));
}
.plan-silver .plan-title {
    color: var(--silver-3);
}
.plan-silver .plan-features li svg {
    color: var(--silver-2);
}
.plan-silver .plan-btn {
    background: var(--silver-light);
    color: var(--silver-3);
}
.plan-silver .plan-btn:hover {
    background: linear-gradient(135deg, var(--silver-1) 0%, var(--silver-2) 100%);
    color: #333;
    box-shadow: 0 10px 30px var(--silver-glow);
}
.plan-gold {
    --gold-1: #ffd700;
    --gold-2: #ffb800;
    --gold-3: #b8860b;
    --gold-light: rgba(255, 215, 0, 0.1);
    --gold-glow: rgba(255, 215, 0, 0.35);
}
.plan-gold {
    border-color: var(--gold-2);
    transform: scale(1.02);
}
.plan-gold:hover {
    border-color: var(--gold-1);
    box-shadow: 0 25px 50px var(--gold-glow);
    transform: scale(1.02) translateY(-10px);
}
.plan-gold .plan-badge {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #333;
}
.plan-gold .medal-icon {
    color: var(--gold-2);
}
.plan-gold .medal-glow {
    filter: drop-shadow(0 0 12px var(--gold-glow));
}
.plan-gold .plan-title {
    color: var(--gold-3);
}
.plan-gold .plan-features li svg {
    color: var(--gold-2);
}
.plan-gold .plan-btn {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #333;
    box-shadow: 0 8px 25px var(--gold-glow);
}
.plan-gold .plan-btn:hover {
    box-shadow: 0 12px 35px var(--gold-glow);
    transform: translateY(-2px);
}
.plan-gold .medal-star {
    animation: starTwinkleGold 1.5s ease-in-out infinite;
}
@keyframes starTwinkleGold {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; filter: drop-shadow(0 0 3px var(--gold-1)); }
    50% { transform: scale(1.2) rotate(15deg); opacity: 0.9; filter: drop-shadow(0 0 8px var(--gold-1)); }
}
.plan-gold .sparkle {
    animation: sparkleGold 1.5s ease-in-out infinite;
}
@keyframes sparkleGold {
    0%, 100% { opacity: 0.5; transform: scale(1); filter: drop-shadow(0 0 2px var(--gold-1)); }
    50% { opacity: 1; transform: scale(2); filter: drop-shadow(0 0 5px var(--gold-1)); }
}
.plan-popular {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #333;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 15px var(--gold-glow);
    animation: pulseGold 2s ease-in-out infinite;
}
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 4px 15px var(--gold-glow); }
    50% { box-shadow: 0 4px 25px var(--gold-glow), 0 0 40px var(--gold-glow); }
}
.pricing-cta {
    text-align: center;
    padding-top: 20px;
}
.pricing-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.blog-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.section-tag::before {
    content: '📚';
    font-size: 14px;
}
.section-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: tagShine 3s ease-in-out infinite;
}
@keyframes tagShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}
.blog-card:hover::before {
    transform: scaleX(1);
}
.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin: 0;
}
.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
    transition: var(--transition);
}
.blog-card:hover .blog-image::after {
    background: linear-gradient(180deg, transparent 30%, rgba(99, 102, 241, 0.2) 100%);
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}
.blog-image::before {
    content: '۵ دقیقه مطالعه';
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.blog-card:hover .blog-image::before {
    opacity: 1;
    transform: translateY(0);
}
.blog-content {
    padding: 24px;
}
.blog-category {
    display: inline-block;
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    transition: var(--transition);
}
.blog-card:hover .blog-category {
    background: var(--gradient-primary);
    color: #fff;
}
.blog-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 10px;
}
.blog-title a {
    color: var(--text-primary);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card:hover .blog-title a {
    color: var(--primary);
}
.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}
.blog-content::after {
    content: 'ادامه مطلب ←';
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}
.blog-card:hover .blog-content::after {
    opacity: 1;
    transform: translateX(0);
}
.blog-cta {
    text-align: center;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-secondary span,
.btn-secondary {
    position: relative;
    z-index: 1;
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary:hover::before {
    opacity: 1;
}
.blog-card:nth-child(1) .blog-category { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.blog-card:nth-child(2) .blog-category { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.blog-card:nth-child(3) .blog-category { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.blog-card:nth-child(1):hover .blog-category { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.blog-card:nth-child(2):hover .blog-category { background: linear-gradient(135deg, #ec4899, #f472b6); }
.blog-card:nth-child(3):hover .blog-category { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.blog-card:nth-child(1)::before { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.blog-card:nth-child(2)::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.blog-card:nth-child(3)::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.blog-card:nth-child(1):hover { border-color: rgba(99, 102, 241, 0.3); }
.blog-card:nth-child(2):hover { border-color: rgba(236, 72, 153, 0.3); }
.blog-card:nth-child(3):hover { border-color: rgba(6, 182, 212, 0.3); }
.blog-card:nth-child(1):hover .blog-title a { color: #6366f1; }
.blog-card:nth-child(2):hover .blog-title a { color: #ec4899; }
.blog-card:nth-child(3):hover .blog-title a { color: #06b6d4; }
.blog-card:nth-child(1) .blog-content::after { color: #6366f1; }
.blog-card:nth-child(2) .blog-content::after { color: #ec4899; }
.blog-card:nth-child(3) .blog-content::after { color: #06b6d4; }
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb {
    background-color: #7C3AED;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-track { background: transparent; }
* {
    scrollbar-width: thin;
    scrollbar-color: #7C3AED transparent;
}
.h2 {
    color: #333;
}
.vineh-intro {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.vineh-intro::before,
.vineh-intro::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.vineh-intro::before {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.12);
    top: -150px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite;
}
.vineh-intro::after {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}
.vineh-intro__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.vineh-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.vineh-intro__badge svg {
    width: 16px;
    height: 16px;
}
.vineh-intro__title {
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.3;
    margin-bottom: 24px;
}
.vineh-intro__title-light {
    font-weight: 300;
    color: var(--text-muted);
}
.vineh-intro__title-bold {
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vineh-intro__text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 10px;
}
.vineh-intro__text strong {
    color: var(--text-primary);
}
.vineh-intro__text em {
    color: var(--primary);
    font-style: normal;
}
.vineh-intro__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}
.vineh-intro__highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}
.vineh-intro__highlights li:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}
.vineh-intro__highlights svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}
.vineh-intro__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--text-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vineh-intro__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.vineh-intro__btn span,
.vineh-intro__btn svg {
    position: relative;
    z-index: 1;
}
.vineh-intro__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.vineh-intro__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}
.vineh-intro__btn:hover::before {
    opacity: 1;
}
.vineh-intro__btn:hover svg {
    transform: translateX(-5px);
}
.vineh-intro__visual {
    position: relative;
}
.vineh-intro__image-wrapper {
    position: relative;
}
.vineh-intro__image-border {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: conic-gradient(from 0deg, #6366f1, #ec4899, #06b6d4, #6366f1);
    z-index: -1;
}
@keyframes borderSpin {
    to { transform: rotate(360deg); }
}
.vineh-intro__image-border::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-primary);
    border-radius: 22px;
}
.vineh-intro__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
}
.vineh-intro__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vineh-intro__visual:hover .vineh-intro__image img {
    transform: scale(1.08);
}
.vineh-intro__float {
    position: absolute;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}
.vineh-intro__float:hover {
    transform: scale(1.08);
}
.vineh-intro__float svg {
    width: 22px;
    height: 22px;
}
.vineh-intro__float span {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
}
.vineh-intro__float--1 {
    top: -15px;
    right: 20px;
    animation: float1 5s ease-in-out infinite;
}
.vineh-intro__float--1 svg { color: var(--secondary); }
.vineh-intro__float--2 {
    bottom: 80px;
    left: -30px;
    flex-direction: column;
    gap: 2px;
    animation: float2 5s ease-in-out infinite 0.5s;
}
.vineh-intro__float-value {
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.vineh-intro__float-label {
    font-size: 11px;
    color: var(--text-muted);
}
.vineh-intro__float--3 {
    bottom: 10px;
    right: -15px;
    animation: float3 5s ease-in-out infinite 1s;
}
.vineh-intro__float--3 svg { color: var(--accent); }
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}
.vineh-intro__visual::before,
.vineh-intro__visual::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.4;
    z-index: 0;
}
.vineh-intro__visual::before {
    top: -30px;
    left: -30px;
}
.vineh-intro__visual::after {
    bottom: -30px;
    right: -30px;
}
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .step-card:nth-child(even) {
        margin-top: 0;
    }
    .step-arrow {
        display: none;
    }
}
@media (max-width: 1024px) {
    .benefits-wrapper,
    .clients-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .clients-content {
        order: 1;
    }
    .clients-grid {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    .slide-stats {
        display: none;
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px;
        gap: 24px;
    }
    .plan-gold {
        transform: scale(1);
        order: -1;
    }
    .plan-gold:hover {
        transform: translateY(-10px);
    }
    .vineh-intro__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .vineh-intro__visual { order: -1; }
    .vineh-intro__highlights {
        justify-content: center;
    }
    .vineh-intro__float--2 { left: 10px; }
    .vineh-intro__float--3 { right: 10px; }
    .hero-explore-btn {
        bottom: 110px;
        right: 50%;
        transform: translateX(50%);
    }
}
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .hero {
        min-height: 600px;
    }
    .slide-content {
        padding: 100px 0 80px;
    }
    .slide-inner {
        text-align: center;
    }
    .slide-cta {
        justify-content: center;
    }
    .slider-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: 100px;
    }
    .slider-arrows {
        bottom: 30px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 30px 24px;
    }
    .btn {
        padding: 16px 32px;
        font-size: 15px;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .event-image {
        height: 200px;
    }
    .btn-lg {
        padding: 18px 40px;
        font-size: 16px;
    }
    .faq-question {
        padding: 20px;
        gap: 14px;
    }
    .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .faq-text {
        font-size: 15px;
    }
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 40px;
    }
    .blog-image {
        height: 180px;
    }
    .blog-content {
        padding: 20px;
    }
    .vineh-intro__image img { height: 280px; }
    .vineh-intro__float {
        padding: 10px 12px;
    }
    .vineh-intro__float svg { width: 18px; height: 18px; }
    .vineh-intro__float span { font-size: 12px; }
    .vineh-intro__float-value { font-size: 18px; }
    .vineh-intro__visual::before,
    .vineh-intro__visual::after { display: none; }
    .hero-explore-btn {
        bottom: 160px;
    }
    .hero-explore-content {
        padding: 12px 20px 12px 16px;
        gap: 12px;
    }
    .hero-explore-icon {
        width: 40px;
        height: 40px;
    }
    .hero-explore-icon svg {
        width: 18px;
        height: 18px;
    }
    .hero-explore-title {
        font-size: 14px;
    }
    .hero-explore-arrow {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .slider-arrows {
        gap: 10px;
    }
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    .clients-grid {
        gap: 16px;
    }
    .client-box {
        padding: 20px;
    }
    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .event-content {
        padding: 20px;
    }
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .plan-card {
        padding: 32px 24px;
    }
    .plan-icon {
        width: 80px;
        height: 80px;
    }
    .medal-icon {
        width: 65px;
        height: 65px;
    }
    .blog-title {
        font-size: 16px;
    }
    .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }
    .vineh-intro__highlights {
        flex-direction: column;
        align-items: center;
    }
    .vineh-intro__btn {
        width: 100%;
        justify-content: center;
    }
    .hero-explore-btn {
        bottom: 170px;
        right: 16px;
        left: 16px;
        transform: none;
    }
    .hero-explore-bg {
        border-radius: 16px;
    }
    .hero-explore-border {
        border-radius: 18px;
    }
    .hero-explore-border::before {
        border-radius: 16px;
    }
    .hero-explore-particles {
        border-radius: 16px;
    }
    .hero-explore-content {
        width: 100%;
        justify-content: center;
    }
}
.features-cta {
    text-align: center;
    margin-top: 60px;
}
.features-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.features-more-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.features-more-btn:hover .features-more-bg {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}
.features-more-glow {
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: -1;
}
.features-more-btn:hover .features-more-glow {
    opacity: 0.5;
}
.features-more-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
}
.features-more-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}
.features-more-btn:hover .features-more-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.features-more-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-ultra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.features-more-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: var(--transition);
}
.features-more-btn:hover .features-more-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}
.features-more-btn:hover .features-more-icon svg {
    color: #fff;
    animation: iconSlide 0.6s ease infinite;
}
@keyframes iconSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}
.features-more-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: var(--radius-full);
    transition: left 0.6s ease;
    pointer-events: none;
}
.features-more-btn:hover .features-more-shine {
    left: 100%;
}
.benefits-discover-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    isolation: isolate;
}
.discover-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border-radius: 60px;
    transition: var(--transition);
    animation: blobMorph 8s ease-in-out infinite;
}
.discover-blob-2 {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
    opacity: 0;
    animation: blobMorph2 8s ease-in-out infinite;
}
@keyframes blobMorph {
    0%, 100% { border-radius: 60px 40px 50px 45px; }
    25% { border-radius: 45px 60px 40px 55px; }
    50% { border-radius: 55px 45px 60px 40px; }
    75% { border-radius: 40px 55px 45px 60px; }
}
@keyframes blobMorph2 {
    0%, 100% { border-radius: 40px 55px 45px 60px; opacity: 0; }
    25% { border-radius: 55px 40px 60px 45px; opacity: 0.3; }
    50% { border-radius: 45px 60px 40px 55px; opacity: 0; }
    75% { border-radius: 60px 45px 55px 40px; opacity: 0.3; }
}
.benefits-discover-btn:hover .discover-blob {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
}
.benefits-discover-btn:hover .discover-blob-2 {
    opacity: 0.5;
}
.discover-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px 16px 22px;
}
.discover-icon-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.discover-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}
.benefits-discover-btn:hover .discover-icon-bg {
    transform: scale(1.2) rotate(90deg);
    background: rgba(255, 255, 255, 0.3);
}
.discover-icon {
    width: 24px;
    height: 24px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.benefits-discover-btn:hover .discover-icon {
    transform: scale(1.1);
    animation: iconPulse 1s ease infinite;
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}
.discover-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.discover-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
    transition: var(--transition);
}
.benefits-discover-btn:hover .discover-label {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
}
.discover-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}
.discover-arrow-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.discover-arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition);
}
.discover-arrow svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.discover-arrow-2 {
    opacity: 0;
    transform: scale(0.5);
}
.benefits-discover-btn:hover .discover-arrow {
    background: rgba(255, 255, 255, 0.25);
    animation: arrowSlide 0.8s ease infinite;
}
.benefits-discover-btn:hover .discover-arrow-2 {
    opacity: 1;
    transform: scale(1);
    animation: arrowSlide 0.8s ease infinite 0.4s;
}
@keyframes arrowSlide {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-15px); opacity: 0; }
}
.discover-ripple {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    pointer-events: none;
}
.benefits-discover-btn:hover .discover-ripple {
    animation: rippleEffect 1s ease-out;
}
@keyframes rippleEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}
.benefits-discover-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
    border-radius: 64px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}
.benefits-discover-btn:hover::before {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}
@media (max-width: 768px) {
    .benefits-discover-btn {
        margin-top: 30px;
    }
    .discover-content {
        padding: 14px 24px 14px 18px;
        gap: 12px;
    }
    .discover-icon-wrap {
        width: 44px;
        height: 44px;
    }
    .discover-icon {
        width: 20px;
        height: 20px;
    }
    .discover-title {
        font-size: 15px;
    }
    .discover-arrow-wrap {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 480px) {
    .discover-content {
        padding: 12px 20px 12px 14px;
    }
    .discover-label {
        display: none;
    }
}
h3.faq-text {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
h3.faq-text {
    all: unset;
    display: inline;
}
.feature-icon-wrapper img {
  width: 100%;        
  height: 100%;   
  object-fit: contain; 
  display: block;      
border-radius: var(--radius-lg);
}

.step-icon-inner img {
  width: 100%;        
  height: 100%;   
  object-fit: contain; 
  display: block;      
border-radius: var(--radius-lg);
}

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide.slide-out {
    opacity: 0;
    transform: scale(0.98);
    z-index: 1;
}

.hero-slide.slide-in {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slider-pause-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.6;
}

.slider-pause-btn:hover {
    background: rgba(255,255,255,0.25);
    opacity: 1;
    transform: scale(1.1);
}

.slider-pause-btn.paused {
    background: rgba(255,255,255,0.3);
    opacity: 1;
}