/* Main CSS file for Lead Generation Landing */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables - Фирменная цветовая палитра */
:root {
    /* Основные цвета */
    --primary-color: #10b77d;
    --primary-hover: #0ea86f;
    --primary-light: #e8f9f1;
    --secondary-color: #202a34;
    --text-color: #8c90a9;
    --white: #fff;
    --light-gray: #f8f9fa;
    --border-color: #eaeaea;

    /* Тени */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-primary: rgba(16, 183, 125, 0.15);
    --shadow-primary-hover: rgba(16, 183, 125, 0.25);

    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #10b77d, #0ea86f);
    --gradient-secondary: linear-gradient(135deg, #202a34, #2a3441);

    /* Переходы */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Interactive Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.particle-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.particle-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.particle-red {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.8) 0%, rgba(239, 68, 68, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.particle-purple {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.8) 0%, rgba(147, 51, 234, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.4);
}

.particle-orange {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.8) 0%, rgba(249, 115, 22, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.particle-cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, rgba(6, 182, 212, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Particle animations */
@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

@keyframes particle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

@keyframes particle-drift {
    0% {
        transform: translateX(0px) translateY(0px);
    }

    25% {
        transform: translateX(20px) translateY(-10px);
    }

    50% {
        transform: translateX(10px) translateY(-20px);
    }

    75% {
        transform: translateX(-10px) translateY(-15px);
    }

    100% {
        transform: translateX(0px) translateY(0px);
    }
}

.particle-float {
    animation: particle-float 6s ease-in-out infinite;
}

.particle-pulse {
    animation: particle-pulse 4s ease-in-out infinite;
}

.particle-drift {
    animation: particle-drift 8s ease-in-out infinite;
}

/* Mouse interaction effects */
.particle-hover {
    transform: scale(1.5);
    opacity: 1;
    transition: all 0.2s ease;
}

.particle-magnetic {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-secondary);
    color: var(--white);
    overflow-x: hidden;
}

.font-display {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Gradient text effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced button styles */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--shadow-primary-hover);
}

.btn-enhanced:active {
    transform: translateY(-1px);
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease-in-out;
}

.btn-enhanced:hover::before {
    left: 100%;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Background patterns */
.parallax-bg {
    background: var(--gradient-secondary);
}

.hero-bg {
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation styles */
.nav-glass {
    background: rgba(15, 27, 36, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Mobile header hide on scroll */
@media (max-width: 768px) {
    .nav-glass.hidden-mobile {
        transform: translateY(-100%);
    }

    /* Force mobile header alignment */
    .nav-glass .flex.items-center.justify-between {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
    }

    .nav-glass .md\\:hidden {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .nav-glass .flex.items-center.space-x-3 {
        flex-shrink: 0 !important;
    }

    /* Force hide desktop nav on mobile */
    .nav-glass .hidden.md\\:flex {
        display: none !important;
    }
}

/* Hero section styles */
.hero-bg {
    background: linear-gradient(135deg, #0f1b24 0%, #1a2a3a 50%, #0f1b24 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(16, 183, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 183, 125, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section backgrounds */
.section-bg-light {
    background: rgba(32, 42, 52, 0.5);
}

.section-bg-dark {
    background: rgba(16, 183, 125, 0.05);
}

/* Button variants */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color)) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-primary-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    background: var(--white) !important;
    color: var(--dark) !important;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Card styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.show {
    transform: translateY(0);
}

/* Background Elements Z-Index */

/* Responsive design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-title .gradient-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-glass {
        padding: 1rem 0;
    }

    /* Hero Section */
    .hero-bg {
        padding: 4rem 0 2rem 0;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-title .gradient-text {
        font-size: 2rem;
    }

    /* Grid adjustments */
    .grid.lg\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid.md\\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid.lg\\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Buttons */
    .btn-enhanced {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }

    /* Text sizes */
    .text-4xl {
        font-size: 2rem;
    }

    .text-5xl {
        font-size: 2.5rem;
    }

    .text-6xl {
        font-size: 3rem;
    }

    /* Spacing */
    .py-20 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .mb-16 {
        margin-bottom: 1.5rem;
    }

    /* Footer mobile */
    .flex.flex-col.md\\:flex-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Popup mobile */
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-title .gradient-text {
        font-size: 2.5rem;
        line-height: 1.1;
        display: inline-block;
        padding-bottom: 0.15em;
    }

    .text-4xl {
        font-size: 1.75rem;
    }

    .text-5xl {
        font-size: 2rem;
    }

    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-20 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .card {
        padding: 1rem;
    }

    .btn-enhanced {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    /* Hero section extra small screens */
    .hero-bg {
        padding: 3rem 0 1.5rem 0;
    }
}

/* Utility classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.border-gradient-primary {
    border: 2px solid transparent;
    background: var(--gradient-secondary) padding-box,
        var(--gradient-primary) border-box;
}

/* Soon label for social icons */
.social-icon {
    position: relative;
}

.soon-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.social-icon:hover .soon-label {
    opacity: 1;
    visibility: visible;
}

/* Hero title improvements */
.hero-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-title .gradient-text {
    text-shadow: 0 4px 8px rgba(16, 183, 125, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    line-height: 1.2;
    display: inline-block;
    padding-bottom: 0.1em;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background: white;
    padding: 0;
    max-width: 800px;
    width: 90%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .popup-content {
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    font-weight: bold;
    color: #10b77d;
    cursor: pointer;
    transition: transform 0.2s ease, text-shadow 0.3s ease;
    z-index: 10000;
}

.popup-close:hover {
    transform: scale(1.1);
    text-shadow: 0 0 8px rgba(16, 183, 125, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 183, 125, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px rgba(16, 183, 125, 0.5));
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 183, 125, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
}

.back-to-top:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Enhanced Interactive Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 183, 125, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(16, 183, 125, 0.6);
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

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

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Interactive Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.glow-element {
    animation: glow 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes button-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-button-shimmer {
    background: linear-gradient(90deg, #10b77d, #0ea86f, #10b77d);
    background-size: 200% 100%;
    animation: button-shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.animate-button-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer-sweep 2s ease-in-out infinite;
}

@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.animate-button-shimmer-pulse {
    background: linear-gradient(90deg, #10b77d, #0ea86f, #10b77d);
    background-size: 200% 100%;
    animation: button-shimmer 3s ease-in-out infinite, pulse-glow 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.animate-button-shimmer-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer-sweep 2s ease-in-out infinite;
}

/* Scrollbar hide for mobile charts */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.rotate-slow {
    animation: rotate-slow 20s linear infinite;
}

.pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Enhanced Card Hover Effects */
.enhanced-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 183, 125, 0.1), transparent);
    transition: left 0.6s;
}

.enhanced-card:hover::before {
    left: 100%;
}

.enhanced-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 183, 125, 0.2);
}

/* Interactive Background Particles */

/* Hero Video Styling */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    /* Fallback background */
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
    /* Remove any default borders */
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
    /* Remove any default borders */
}

/* Video overlay for better contrast */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 183, 125, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 1rem;
    pointer-events: none;
    z-index: 1;
}

/* Hero Stats Container */
.stats-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.stats-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 183, 125, 0.1) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 1rem;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-container:hover::before {
    opacity: 1;
}

/* Mobile responsive - hide br tags on small screens */
@media (max-width: 768px) {
    .hero-title br {
        display: none;
    }

    .hero-description br {
        display: none;
    }

    .hero-description {
        text-align: left;
        line-height: 1.6;
    }
}

/* Problem cards equal height */
.problem-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.problem-card .pr-16 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-card h3 {
    margin-bottom: 1rem;
}

.problem-card p {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

/* Grid container for equal height cards */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Solution Block - Elegant Design */
.solution-container {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.solution-content {
    padding: 3rem 2rem;
    text-align: center;
}

.solution-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: #10b77d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 183, 125, 0.3);
}

.solution-icon i {
    color: white;
    font-size: 1.5rem;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b77d;
    margin: 0;
}

.solution-body {
    max-width: 800px;
    margin: 0 auto;
}

.solution-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 500;
}

.highlight {
    color: #10b77d;
    font-weight: 700;
}

.solution-description {
    margin-top: 2rem;
}

.solution-text {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.accent-green {
    color: #10b77d;
    font-weight: 600;
}

.solution-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 183, 125, 0.1);
    border: 2px solid rgba(16, 183, 125, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: rgba(16, 183, 125, 0.2);
    border-color: rgba(16, 183, 125, 0.5);
    transform: translateY(-2px);
}

.step-icon i {
    color: #10b77d;
    font-size: 1.25rem;
}

.step-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.step-arrow {
    color: white;
    font-size: 1.25rem;
    margin: 0 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-content {
        padding: 2rem 1.5rem;
    }

    .solution-title {
        font-size: 2rem;
    }

    .solution-subtitle {
        font-size: 1.25rem;
    }

    .solution-steps {
        gap: 1rem;
    }

    .step {
        min-width: 100px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .solution-steps {
        flex-direction: column;
    }
}

/* Solution Block Mobile Styles */
.solution-mobile {
    padding: 2rem 1.5rem;
    text-align: center;
}

.solution-icon-mobile {
    width: 60px;
    height: 60px;
    background: #10b77d;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(16, 183, 125, 0.3);
}

.solution-icon-mobile i {
    color: white;
    font-size: 1.5rem;
}

.solution-title-mobile {
    font-size: 1.75rem;
    font-weight: 800;
    color: #10b77d;
    margin: 0 0 1.5rem 0;
}

.solution-subtitle-mobile {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.solution-text-mobile {
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-steps-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
}

.step-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
    background: rgba(16, 183, 125, 0.05);
    border: 1px solid rgba(16, 183, 125, 0.2);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-mobile:hover {
    background: rgba(16, 183, 125, 0.1);
    border-color: rgba(16, 183, 125, 0.4);
    transform: translateX(5px);
}

.step-mobile:nth-child(1) {
    animation: slideInLeft 0.6s ease-out;
}

.step-mobile:nth-child(2) {
    animation: slideInLeft 0.8s ease-out;
}

.step-mobile:nth-child(3) {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-icon-mobile {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b77d, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 183, 125, 0.3);
    position: relative;
}

.step-icon-mobile::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b77d, #34d399);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step-icon-mobile i {
    color: white;
    font-size: 1rem;
}

.step-text-mobile {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    flex: 1;
}

.step-number-mobile {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #10b77d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 183, 125, 0.4);
}

/* Clients Section - Beautiful Design */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b77d, #34d399);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 183, 125, 0.2);
    border-color: rgba(16, 183, 125, 0.3);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 183, 125, 0.1), rgba(52, 211, 153, 0.1));
    border: 2px solid rgba(16, 183, 125, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    background: linear-gradient(135deg, rgba(16, 183, 125, 0.2), rgba(52, 211, 153, 0.2));
    border-color: rgba(16, 183, 125, 0.5);
    transform: scale(1.1);
}

.client-icon i {
    font-size: 2rem;
    color: #10b77d;
    transition: all 0.3s ease;
}

.client-card:hover .client-icon i {
    color: #34d399;
    transform: scale(1.1);
}

.client-content {
    text-align: center;
}

.client-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.client-card:hover .client-title {
    color: white;
}

.client-description {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.client-card:hover .client-description {
    color: white;
}

/* CTA Container */
.cta-container {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b77d, #34d399);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(16, 183, 125, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.cta-text {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #10b77d;
    margin: 0 0 1rem 0;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: white;
    margin: 0;
    line-height: 1.6;
}

/* Advantages Section - Equal Height Cards */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advantage-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card .glass-effect {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card .glass-effect>div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card .glass-effect h3 {
    height: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

/* Process Section - Equal Height Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-card .glass-effect {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.process-card .glass-effect h3 {
    height: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.process-card .glass-effect p {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* FAQ Accordion - Beautiful Design */
.faq-accordion {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(16, 183, 125, 0.2);
}

.faq-header {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b77d, #34d399);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-header:hover::before {
    transform: scaleX(1);
}

.faq-header:hover {
    background: rgba(16, 183, 125, 0.08);
}

.faq-item.active .faq-header {
    background: rgba(16, 183, 125, 0.1);
    border-bottom: 1px solid rgba(16, 183, 125, 0.2);
}

.faq-item.active .faq-header::before {
    transform: scaleX(1);
}

.faq-header h3 {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-header:hover h3 {
    color: white;
}

.faq-icon {
    color: #10b77d;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-content {
    max-height: 600px;
}

.faq-content p {
    color: white;
    line-height: 1.7;
    margin: 0;
    padding: 1.5rem 2rem 2rem;
    font-size: 1rem;
}

.faq-item.active .faq-content p {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Clients */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .client-card {
        padding: 1.5rem;
    }

    .client-icon {
        width: 60px;
        height: 60px;
    }

    .client-icon i {
        font-size: 1.5rem;
    }

    .client-title {
        font-size: 1.125rem;
    }

    .cta-container {
        padding: 2rem 1.5rem;
    }

    .cta-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .cta-icon i {
        font-size: 2rem;
    }

    .cta-text {
        text-align: center;
        max-width: none;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    /* Problems Grid Mobile */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-icon {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    .problem-icon i {
        font-size: 1rem;
    }

    .problem-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .problem-card p {
        font-size: 0.9rem;
    }

    /* Solution Block Mobile */
    .solution-content {
        padding: 2rem 1.5rem;
    }

    .solution-title {
        font-size: 2rem;
    }

    .solution-subtitle {
        font-size: 1.125rem;
    }

    .solution-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step {
        min-width: auto;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    /* Advantages Grid Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .advantage-card .glass-effect {
        padding: 1.5rem;
        text-align: center;
    }

    .advantage-card .glass-effect>div:first-child {
        margin: 0 auto;
    }

    .advantage-card .glass-effect h3 {
        height: auto;
        min-height: 3rem;
        font-size: 1.25rem;
    }

    /* Process Grid Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card .glass-effect {
        padding: 1.5rem;
    }

    .process-card .glass-effect h3 {
        height: auto;
        min-height: 3rem;
        font-size: 1.125rem;
    }

    /* FAQ Mobile */
    .faq-header {
        padding: 1rem 1.5rem;
    }

    .faq-header h3 {
        font-size: 1rem;
    }

    .faq-content p {
        padding: 1rem 1.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1rem;
        width: 20px;
        height: 20px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Problems Grid Tablet */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .problem-card {
        padding: 1.75rem;
    }

    .problem-icon {
        width: 48px;
        height: 48px;
    }

    .problem-icon i {
        font-size: 1.25rem;
    }

    .problem-card h3 {
        font-size: 1.75rem;
    }

    /* Solution Block Tablet */
    .solution-content {
        padding: 2.5rem 2rem;
    }

    .solution-title {
        font-size: 2.25rem;
    }

    .solution-subtitle {
        font-size: 1.25rem;
    }

    .solution-steps {
        gap: 1.25rem;
    }

    .step-icon {
        width: 52px;
        height: 52px;
    }

    /* Advantages Grid Tablet */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .advantage-card .glass-effect {
        padding: 2rem;
    }

    .advantage-card .glass-effect h3 {
        height: 3.5rem;
        font-size: 1.5rem;
    }

    /* Process Grid Tablet */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-card .glass-effect {
        padding: 2rem;
    }

    .process-card .glass-effect h3 {
        height: 3.5rem;
        font-size: 1.25rem;
    }

    /* FAQ Tablet */
    .faq-header {
        padding: 1.25rem 2rem;
    }

    .faq-header h3 {
        font-size: 1.25rem;
    }

    .faq-content p {
        padding: 1.25rem 2rem 2rem;
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.125rem;
        width: 22px;
        height: 22px;
    }
}