/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 158, 200, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card:hover::before {
    opacity: 0.15;
    animation: rotate 4s linear infinite;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00e4b8, #3b9ec8, #7419e1, #00e4b8);
    background-size: 300% 300%;
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
    animation: gradient-rotate 4s ease infinite;
}

.testimonial-card:hover::after {
    opacity: 0.6;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 228, 184, 0.3);
    box-shadow: 0 20px 60px rgba(0, 228, 184, 0.3);
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    position: relative;
    z-index: 1;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(135deg, #00e4b8 0%, #3b9ec8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
}

/* Gradients uniques par client */
[data-client="jellysmack"] .client-name {
    background: linear-gradient(135deg, #00e4b8 0%, #3b9ec8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-client="transfert"] .client-name {
    background: linear-gradient(135deg, #3b9ec8 0%, #7419e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-client="fangame"] .client-name {
    background: linear-gradient(135deg, #7419e1 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-client="facteur"] .client-name {
    background: linear-gradient(135deg, #00e4b8 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Effets hover par client */
[data-client="jellysmack"]:hover .client-name {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 228, 184, 0.8));
}

[data-client="transfert"]:hover .client-name {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(59, 158, 200, 0.8));
}

[data-client="fangame"]:hover .client-name {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(116, 25, 225, 0.8));
}

[data-client="facteur"]:hover .client-name {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.8));
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonials-stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.testimonials-stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 228, 184, 0.3);
    box-shadow: var(--shadow-glow);
}

.testimonials-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.testimonials-stat-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ========================================
   LOGO CLOUD
   ======================================== */

.logo-cloud {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-cloud-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-cloud-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.logo-cloud-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: logoScroll 30s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    opacity: 1;
    filter: grayscale(0%);
    transition: all var(--transition-base);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 228, 184, 0.3);
    box-shadow: var(--shadow-glow);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 16px;
    color: var(--color-primary);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-suffix {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ========================================
   SLOGAN SECTION
   ======================================== */

.slogan-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.slogan-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 228, 184, 0.05), transparent),
        radial-gradient(circle at 20% 30%, rgba(59, 158, 200, 0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(116, 25, 225, 0.08), transparent 40%);
    animation: breathe 8s ease-in-out infinite;
    z-index: 0;
}

.slogan-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(0, 228, 184, 0.03) 0%, transparent 30%, transparent 70%, rgba(116, 25, 225, 0.03) 100%);
    animation: shimmer 10s ease-in-out infinite alternate;
}

.slogan-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    margin: -400px 0 0 -400px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(0, 228, 184, 0.05) 0deg,
        transparent 60deg,
        transparent 120deg,
        rgba(59, 158, 200, 0.05) 180deg,
        transparent 240deg,
        transparent 300deg,
        rgba(116, 25, 225, 0.05) 360deg
    );
    animation: rotate-slow 20s linear infinite;
    filter: blur(40px);
}

.slogan-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr auto 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    background: rgba(26, 26, 36, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 228, 184, 0.15);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.slogan-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #00e4b8, #3b9ec8, #7419e1, #00e4b8);
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
    animation: gradient-flow 8s ease infinite;
    filter: blur(8px);
}

.slogan-left {
    padding: 1rem 0;
}

.slogan-breathe {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-text);
}

.slogan-breathe .gradient-text {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slogan-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.slogan-arrow svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
    animation: pulse-arrow 2s ease-in-out infinite;
}

.slogan-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 228, 184, 0.2);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.benefit-card:nth-child(2) .benefit-icon {
    animation-delay: 1s;
}

.benefit-card:nth-child(3) .benefit-icon {
    animation-delay: 2s;
}

.benefit-card:nth-child(4) .benefit-icon {
    animation-delay: 3s;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: var(--color-primary);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background: rgba(255, 255, 255, 0.01);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

.feature-mockup {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-mockup::before {
    opacity: 0.1;
    animation: rotate 4s linear infinite;
}

.feature-mockup img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0.8;
}

.feature-content {
    max-width: 500px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 14px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition-base);
}

.feature-link:hover {
    gap: 0.75rem;
}

.feature-link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 228, 184, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-image-container {
    position: relative;
    max-width: 400px;
    margin: 0;
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(0, 228, 184, 0.3);
    box-shadow: 0 8px 32px rgba(0, 228, 184, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all var(--transition-base);
}

.about-image-container:hover .about-image img {
    filter: grayscale(80%) contrast(1.05);
}

.about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(10, 10, 15, 0.92);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 228, 184, 0.3);
    backdrop-filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 10;
    border: 1px solid rgba(0, 228, 184, 0.5);
}

.about-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.about-badge span {
    color: #ffffff;
}

.experience-badge {
    bottom: 2rem;
    right: 2rem;
}

.name-badge {
    top: 2rem;
    left: 2rem;
}

.name-badge svg {
    color: #7419e1;
}

.about-info {
    max-width: 600px;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.highlight-item:hover {
    transform: translateX(8px);
    border-color: rgba(0, 228, 184, 0.3);
    box-shadow: var(--shadow-glow);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 12px;
    color: var(--color-primary);
}

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

.highlight-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.highlight-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 500px;
}

.skill-badge {
    padding: 0.625rem 1.25rem;
    background: rgba(0, 228, 184, 0.1);
    border: 1px solid rgba(0, 228, 184, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.skill-badge:hover {
    background: rgba(0, 228, 184, 0.2);
    border-color: rgba(0, 228, 184, 0.5);
    transform: translateY(-2px);
}

.about-cta {
    display: flex;
    gap: 1rem;
}

.about-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-cta svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FLOW SECTION
   ======================================== */

.flow-section {
    background: var(--color-bg-light);
}

.flow-diagram-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
    position: relative;
}

.flow-step {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all var(--transition-base);
}

.flow-step:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 228, 184, 0.4);
    box-shadow: var(--shadow-glow);
}

.flow-step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0, 228, 184, 0.4);
}

.flow-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 16px;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
}

.flow-step-icon svg {
    width: 32px;
    height: 32px;
}

.flow-step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.flow-step-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
}

.flow-connector {
    display: none;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: rgba(255, 255, 255, 0.01);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(0, 228, 184, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: var(--color-bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.contact-detail-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 228, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 500;
}

.form-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-success);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-error);
}

/* ========================================
   USE CASES SECTION
   ======================================== */

.use-cases-section {
    background: var(--color-bg);
    position: relative;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.use-case-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.use-case-card:hover {
    border-color: rgba(0, 228, 184, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 228, 184, 0.2);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.use-case-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.use-case-problem {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.problem-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.use-case-problem p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.use-case-solution {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.solution-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-primary);
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.use-case-solution p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.use-case-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 228, 184, 0.1);
    border: 1px solid rgba(0, 228, 184, 0.3);
    border-radius: 6px;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 500;
}

.use-case-result {
    position: relative;
    z-index: 1;
}

.result-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.use-case-result p {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.use-cases-cta {
    text-align: center;
    padding: 3rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.use-cases-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0.5;
    pointer-events: none;
}

.use-cases-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.use-cases-cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 1.5rem;
    }
    
    .use-cases-cta {
        padding: 2rem 1.5rem;
    }
    
    .use-cases-cta-text {
        font-size: 1.25rem;
    }
}

/* ========================================
   LEGAL SECTION
   ======================================== */

.legal-section {
    background: rgba(255, 255, 255, 0.01);
    padding: var(--section-padding) 0;
    margin-top: calc(var(--section-padding) * 0.8);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 3rem 0 1.5rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition-base);
}

.legal-card:hover {
    border-color: rgba(0, 228, 184, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 228, 184, 0.2);
}

.legal-info-grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1rem 2rem;
    font-size: 1rem;
}

.legal-info-grid .label {
    font-weight: 600;
    color: var(--color-text);
    min-width: 140px;
}

.legal-info-grid .value {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.legal-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.legal-accent {
    color: var(--color-text);
    font-weight: 600;
}

.legal-section a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.legal-section a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .feature-card {
        gap: 3rem;
    }
    
    .flow-diagram-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card.reverse {
        direction: ltr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        max-width: 300px;
    }
    
    .about-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .about-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .experience-badge {
        bottom: 1rem;
        right: 1rem;
    }
    
    .name-badge {
        top: 1rem;
        left: 1rem;
    }
    
    .flow-diagram-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: static;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .testimonials-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .slogan-section {
        padding: 6rem 0;
    }
    
    .slogan-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .slogan-arrow {
        order: 2;
    }
    
    .slogan-benefits {
        order: 3;
    }
    
    .slogan-breathe {
        font-size: clamp(2rem, 4vw, 3.5rem);
        text-align: center;
    }
    
    .slogan-arrow svg {
        animation: pulse-arrow-rotated 2s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .slogan-section {
        padding: 4rem 0;
    }
    
    .slogan-content {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .slogan-arrow svg {
        width: 80px;
        height: 80px;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefit-card h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-logo {
        min-height: 100px;
    }
    
    .testimonial-logo img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .logo-track {
        gap: 2rem;
    }
    
    .logo-item img {
        height: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    .about-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .about-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .experience-badge {
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .name-badge {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .slogan-section {
        padding: 3rem 0;
    }
    
    .slogan-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .slogan-breathe {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .slogan-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slogan-arrow svg {
        width: 60px;
        height: 60px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-skills {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
