@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 {
    --color-primary: #5c1df4;
    --color-primary-light: #8b3ff9;
    --color-primary-lighter: #d360f5;
    --color-text-dark: #2d2d2d;
    --color-text-light: #666666;
    --color-bg-light: #f5f5f5;
    --color-bg-lighter: #fafafa;
    --color-white: #ffffff;
    --header-height: 80px;
    --section-padding: 100px;
    --transition-smooth: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-size-base: 18px;
    --font-size-small: 16px;
    --font-size-large: 22px;
    --font-size-xlarge: 26px;
    --line-height-base: 1.8;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Kalameh', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: var(--color-text-dark);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    width: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 850px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15vh;
}

.semi-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.semi-circle-left {
    bottom: 0;
    left: -30%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-lighter) 100%);
    animation: pulseLeft 8s ease-in-out infinite;
}

.semi-circle-right {
    top: 0;
    right: -30%;
    background: linear-gradient(225deg, var(--color-primary-lighter) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    animation: pulseRight 8s ease-in-out infinite;
}

@keyframes pulseLeft {
    0%, 100% {
        transform: scale(1) translateX(0);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1) translateX(20px);
        opacity: 0.25;
    }
}

@keyframes pulseRight {
    0%, 100% {
        transform: scale(1) translateX(0);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1) translateX(-20px);
        opacity: 0.25;
    }
}

.animated-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0.25;
}

.animated-lines .line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary-light) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--color-primary-light);
    animation: moveLine linear infinite;
    will-change: transform;
}

.animated-lines .line:nth-child(1) { top: 10%; width: 300px; animation-duration: 8s; }
.animated-lines .line:nth-child(2) { top: 25%; width: 250px; animation-duration: 12s; animation-delay: 2s; }
.animated-lines .line:nth-child(3) { top: 40%; width: 400px; animation-duration: 10s; animation-delay: 4s; }
.animated-lines .line:nth-child(4) { top: 55%; width: 200px; animation-duration: 15s; animation-delay: 1s; }
.animated-lines .line:nth-child(5) { top: 70%; width: 350px; animation-duration: 9s; animation-delay: 3s; }
.animated-lines .line:nth-child(6) { top: 85%; width: 280px; animation-duration: 11s; animation-delay: 5s; }

@keyframes moveLine {
    0% { transform: translateX(-100%) scaleX(0); }
    50% { transform: translateX(0) scaleX(1); }
    100% { transform: translateX(100%) scaleX(0); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary-light);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 10px var(--color-primary-lighter);
    will-change: transform;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 30px;
}

.promo-badge {
    display: inline-block;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.2s;
}

.badge-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 14px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.badge-content:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(92, 29, 244, 0.2);
}

.badge-content span {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.hero-title {
    font-size: clamp(50px, 5vw, 90px);
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1.2;
    color: var(--color-text-dark);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.title-word {
    display: inline-block;
    margin: 0 8px;
    position: relative;
    animation: textFloat 3s ease-in-out infinite;
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.4s; }
.title-word:nth-child(4) { animation-delay: 0.6s; }
.title-word:nth-child(5) { animation-delay: 0.8s; }
.title-word:nth-child(6) { animation-delay: 1s; }

@keyframes textFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title-highlight {
    color: var(--color-primary);
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--color-primary-lighter) 0%, var(--color-primary) 100%);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: clamp(19px, 2.5vw, 24px);
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-description p {
    margin-bottom: 15px;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.glass-button {
    position: relative;
    padding: 18px 45px;
    font-size: 19px;
    font-weight: 700;
    font-family: 'Kalameh', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.glass-button.primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(92, 29, 244, 0.3);
}

.glass-button.secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    color: var(--color-text-dark);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.glass-button:hover {
    transform: translateY(-4px) scale(1.03);
}

.glass-button.primary:hover {
    box-shadow: 0 15px 45px rgba(92, 29, 244, 0.5);
}

.glass-button.secondary:hover {
    box-shadow: 0 12px 35px rgba(92, 29, 244, 0.15);
}

.hero-images {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 300px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.85) translateX(100%);
    transition: opacity 1s var(--transition-smooth), transform 1s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 5;
}

.slider-item.prev {
    opacity: 0;
    transform: scale(0.85) translateX(-100%);
}

.slider-item img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(92, 29, 244, 0.25));
}

.event-management-section {
    padding: var(--section-padding) 30px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.management-header {
    text-align: center;
    margin-bottom: 70px;
}

.management-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.management-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 3px;
}

.management-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: var(--color-text-light);
    margin-top: 30px;
    line-height: 1.7;
}

.management-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 35px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-family: 'Kalameh', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 29, 244, 0.2);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(92, 29, 244, 0.4);
}

.tab-icon {
    font-size: 22px;
}

.management-content {
    position: relative;
    min-height: 550px;
}

.content-panel {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.content-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.panel-layout.reverse {
    direction: ltr;
}

.panel-layout.reverse .panel-text {
    direction: rtl;
}

.panel-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.panel-image:hover {
    transform: scale(1.02);
}

.panel-image img {
    width: 100%;
    height: auto;
    display: block;
}

.text-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(92, 29, 244, 0.2);
}

.box-icon {
    font-size: 36px;
    margin-bottom: 25px;
    display: inline-block;
}

.box-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 18px;
}

.box-description {
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.box-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 17px;
    color: var(--color-text-dark);
    line-height: 1.7;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-5px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.interaction-section {
    padding: var(--section-padding) 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f2 100%);
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    top: 10%;
    left: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--color-primary-lighter) 0%, var(--color-primary-light) 100%);
    bottom: 10%;
    right: -200px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--color-primary-light) 0%, var(--color-primary-lighter) 100%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.interaction-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 29, 244, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(92, 29, 244, 0.1);
}

.interaction-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interaction-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.interaction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.interaction-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 35px 28px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: box-shadow 0.3s ease;
    will-change: transform;
}

.interaction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.interaction-card:hover {
    box-shadow: 0 25px 60px rgba(92, 29, 244, 0.25);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 29, 244, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.interaction-card:hover .card-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-icon-wrapper {
    margin-bottom: 25px;
        display: flex;
    justify-content: center;
    align-items: center; 
}

.card-icon {
    font-size: 56px;
    display: inline-block;
}

.card-heading {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.card-text {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.mini-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(92, 29, 244, 0.08);
    border: 1px solid rgba(92, 29, 244, 0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.interaction-card:hover .mini-tag {
    background: rgba(92, 29, 244, 0.15);
    transform: translateY(-2px);
}

.card-stats-row {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 600;
}

.interaction-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-text {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Kalameh', sans-serif;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.3);
    transition: all 0.4s var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 29, 244, 0.5);
}

.cta-button .arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.branding-section {
    padding: var(--section-padding) 20px;
    background: linear-gradient(135deg, #f0f0f2 0%, #fafafa 100%);
}

.branding-header {
    text-align: center;
    margin-bottom: 60px;
}

.branding-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.branding-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-lighter) 0%, var(--color-primary) 100%);
    border-radius: 2px;
}

.branding-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-light);
    margin-top: 25px;
}

.branding-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.brand-tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-family: 'Kalameh', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-tab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 96, 245, 0.2);
}

.brand-tab-button.active {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-lighter) 100%);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(211, 96, 245, 0.4);
}

.brand-tab-icon {
    font-size: 20px;
}

.branding-content {
    position: relative;
    min-height: 500px;
}

.brand-content-panel {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.brand-content-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.brand-panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-panel-layout.reverse {
    direction: ltr;
}

.brand-panel-layout.reverse .brand-panel-text {
    direction: rtl;
}

.brand-panel-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.brand-panel-image:hover {
    transform: scale(1.02);
}

.brand-panel-image img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-text-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.brand-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(211, 96, 245, 0.2);
}

.brand-box-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.brand-box-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.brand-box-description {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.brand-box-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-dark);
    line-height: 1.6;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-5px);
}

.brand-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-lighter) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.vineh-section {
    padding: var(--section-padding) 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(5px);
    animation: float 20s infinite ease-in-out;
}

.bubble1 { width: 200px; height: 200px; left: 10%; top: 20%; }
.bubble2 { width: 300px; height: 300px; right: 15%; top: 60%; animation-delay: 5s; }
.bubble3 { width: 150px; height: 150px; left: 70%; top: 10%; animation-delay: 10s; }
.bubble4 { width: 250px; height: 250px; left: 40%; bottom: 10%; animation-delay: 15s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(-30px, -20px) rotate(270deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.brand-logo {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.cards-container {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.card {
    position: relative;
    flex: 1;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card:hover {
    flex: 2.5;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
}

.cards-container:has(.card:hover) .card:not(:hover) {
    flex: 0.7;
    filter: brightness(0.7);
    transform: scale(0.95);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.card:hover .card-bg {
    transform: scale(1.1);
}

.card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.card:hover .card-video {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.4s ease;
}

.play-icon::after {
    content: '▶';
    font-size: 24px;
    color: var(--color-primary);
    margin-left: 5px;
}

.card:hover .play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-content {
    transform: translateY(-20px);
}

.card-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.card-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.card-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.card:hover .card-stats {
    opacity: 1;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.9rem;
}

.loading-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(147, 51, 234, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    z-index: 10;
}

.card.loading .loading-ring {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.clients-section {
    padding: var(--section-padding) 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f2 100%);
    position: relative;
    overflow: hidden;
}

.clients-bg-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.orbit-circle {
    position: absolute;
    border: 2px solid rgba(92, 29, 244, 0.1);
    border-radius: 50%;
    animation: rotateOrbit 30s linear infinite;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
}

.orbit-2 {
    width: 600px;
    height: 600px;
    bottom: -15%;
    right: -15%;
    animation-duration: 40s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-duration: 35s;
}

@keyframes rotateOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.clients-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.clients-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 29, 244, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(92, 29, 244, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.clients-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.clients-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-lighter) 100%);
    border-radius: 10px;
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% { width: 100px; }
    50% { width: 140px; }
}

.clients-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 25px auto 0;
}

.clients-carousel-wrapper {
    position: relative;
    z-index: 10;
    perspective: 2000px;
}

.clients-carousel {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: scrollClients 60s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.client-card {
    flex-shrink: 0;
    width: 280px;
    height: 320px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.05) 0%, rgba(211, 96, 245, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.client-card:hover::before {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(92, 29, 244, 0.3);
}

.client-glow-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 24px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -2;
}

.client-card:hover .client-glow-ring {
    opacity: 0.6;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.client-logo-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

.client-card:hover .client-logo-wrapper {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.3);
}

.client-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.client-card:hover .client-logo-wrapper::before {
    opacity: 1;
}

.client-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.4s ease;
    border-radius: 40%;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
}

.client-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.client-card:hover .client-name {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-industry {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.client-stats {
    display: flex;
    gap: 15px;
    margin-top: auto;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.client-stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.clients-grid-section {
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card-grid {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s var(--transition-smooth);
    will-change: transform;
}

.client-card-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(92, 29, 244, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.client-card-grid:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.client-card-grid:hover {
    transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(92, 29, 244, 0.25);
}

.grid-logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.client-card-grid:hover .grid-logo-wrapper {
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 12px 35px rgba(92, 29, 244, 0.3);
}

.grid-logo-wrapper img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.client-card-grid:hover .grid-logo-wrapper img {
    filter: grayscale(0%);
}

.grid-client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.grid-client-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.clients-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.clients-cta-text {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 25px;
}

.clients-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Kalameh', sans-serif;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.35);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.clients-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.clients-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.clients-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 29, 244, 0.5);
}

.clients-cta-button .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.clients-cta-button:hover .icon {
    transform: translateX(5px);
}

.clients-toggle-wrapper {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.clients-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-family: 'Kalameh', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.35);
    z-index: 1;
}

.clients-toggle-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-lighter) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.clients-toggle-btn:hover::before {
    opacity: 1;
}

.clients-toggle-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.clients-toggle-btn:hover::after {
    width: 300px;
    height: 300px;
}

.clients-toggle-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 29, 244, 0.5);
}

.clients-toggle-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 16px;
}

.clients-toggle-btn:hover .toggle-icon {
    transform: rotate(180deg) scale(1.2);
    background: rgba(255, 255, 255, 0.3);
}

.toggle-icon.collapsed {
    transform: rotate(0deg);
}

.toggle-icon.expanded {
    transform: rotate(180deg);
}

.clients-toggle-btn:hover .toggle-icon.collapsed {
    transform: rotate(180deg) scale(1.2);
}

.clients-toggle-btn:hover .toggle-icon.expanded {
    transform: rotate(360deg) scale(1.2);
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.toggle-text {
    position: relative;
    z-index: 2;
}

.clients-toggle-btn .btn-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.clients-toggle-btn:hover .btn-shimmer {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.loading-dots {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.clients-toggle-btn.loading .loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.clients-toggle-btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
}

.faq-section {
    padding: var(--section-padding) 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f2 100%);
    position: relative;
    overflow: hidden;
}

.faq-bg-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.faq-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatGradient 20s ease-in-out infinite;
}

.faq-gradient-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    top: -10%;
    left: -15%;
}

.faq-gradient-2 {
    width: 700px;
    height: 700px;
    background: linear-gradient(225deg, var(--color-primary-lighter), var(--color-primary-light));
    bottom: -20%;
    right: -20%;
    animation-delay: 10s;
}

@keyframes floatGradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

.faq-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(92, 29, 244, 0.03) 0px, transparent 1px, transparent 40px, rgba(92, 29, 244, 0.03) 41px),
        repeating-linear-gradient(90deg, rgba(92, 29, 244, 0.03) 0px, transparent 1px, transparent 40px, rgba(92, 29, 244, 0.03) 41px);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.faq-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(92, 29, 244, 0.2);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(92, 29, 244, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.faq-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-wrapper {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 10;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    padding: 18px 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-search-box:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(92, 29, 244, 0.2);
    border-color: var(--color-primary-lighter);
}

.search-icon {
    font-size: 1.5rem;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-search-box:focus-within .search-icon {
    transform: scale(1.2) rotate(10deg);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Kalameh', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
    padding: 0 15px;
}

.search-input::placeholder {
    color: var(--color-text-light);
}

.search-clear {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(92, 29, 244, 0.1);
    color: var(--color-primary);
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-clear.active {
    display: flex;
}

.search-clear:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    font-family: 'Kalameh', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    opacity: 1;
}

.category-btn:hover,
.category-btn.active {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(92, 29, 244, 0.3);
    color: white;
    border-color: var(--color-primary);
}

.cat-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.category-btn:hover .cat-icon {
    transform: scale(1.2) rotate(10deg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.hidden {
    display: none;
}

.faq-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 50px rgba(92, 29, 244, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: 'Kalameh', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.05), rgba(211, 96, 245, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(92, 29, 244, 0.2);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    transform: rotate(45deg);
}

.icon-plus {
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.faq-item.active .icon-plus {
    color: white;
}

.question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.question-badge {
    padding: 6px 16px;
    background: rgba(92, 29, 244, 0.1);
    border: 1px solid rgba(92, 29, 244, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .question-badge {
    background: rgba(92, 29, 244, 0.2);
    border-color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.answer-content {
    padding: 0 30px 30px 90px;
    position: relative;
}

.answer-content::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary-lighter), transparent);
    border-radius: 2px;
}

.answer-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

.faq-cta {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary-lighter));
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Kalameh', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.cta-btn:hover::before {
    transform: translateX(0);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.35);
}

.cta-btn.secondary {
    background: rgba(92, 29, 244, 0.1);
    color: var(--color-primary);
    border: 2px solid var(--color-primary-lighter);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.cta-btn.primary:hover {
    box-shadow: 0 20px 50px rgba(92, 29, 244, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(92, 29, 244, 0.15);
    border-color: var(--color-primary);
}

.btn-arrow,
.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-btn:hover .btn-icon {
    transform: scale(1.2) rotateZ(10deg);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.interaction-card[data-aos] {
    opacity: 0;
    transform: translateY(30px);
}

.interaction-card[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--transition-smooth);
}

.interaction-card[data-delay="0"].aos-animate { transition-delay: 0s; }
.interaction-card[data-delay="100"].aos-animate { transition-delay: 0.1s; }
.interaction-card[data-delay="200"].aos-animate { transition-delay: 0.2s; }
.interaction-card[data-delay="300"].aos-animate { transition-delay: 0.3s; }
.card-icon img {
  width: 100px;
  height: 100%;
  object-fit: contain;
}