/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Material Symbols Configuration */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

body {
    background: #0A0A0A;
    color: #FFFFFF;
    font-family: 'Nunito Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #0A0A0A;
    padding: 100px 40px 0 40px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 30px;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: relative;
}

/* Scrolled state */
.header.scrolled .header-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(30px);
}

.header.scrolled .header-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50px;
    pointer-events: none;
}

.logo {
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 40px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #10B981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #10B981;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover svg {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white !important;
    color: #1a1a1a !important;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #f0f0f0 !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
}

.cta-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.menu-button {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: space-around;
    align-content: center;
    flex-wrap: wrap;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Header Responsive */
@media (max-width: 1200px) {
    .main-nav {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }
    
    .menu-button {
        display: flex;
    }
    
    .header {
        padding: 10px 15px;
    }
    
    .header-content {
        padding: 8px 15px;
        border-radius: 25px;
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 26px;
        font-weight: 700;
    }
    
    .cta-button span {
        display: none;
    }
    
    .cta-button {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 12px;
    }
    
    .menu-button {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .hamburger-icon {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .header {
        padding: 8px 12px;
    }
    
    .header-content {
        padding: 6px 12px;
        border-radius: 20px;
        min-height: 44px;
        gap: 12px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header.scrolled .header-content {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }
    
    .cta-button {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .menu-button {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .header {
        padding: 6px 10px;
    }
    
    .header-content {
        padding: 8px 20px;
        border-radius: 50px;
        min-height: 40px;
        gap: 8px;
    }
    
    .header-actions {
        gap: 6px;
    }
}

/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    font-size: 24px;
    font-weight: 800;
    color: #10B981;
    font-family: 'Inter', sans-serif;
}

.mobile-close-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav {
    flex: 1;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    color: white !important;
    border: none;
    border-radius: 16px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: white !important;
}

.mobile-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Animation */
.menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content Layout */
.main-content {
    display: flex;
    flex: 1;
    gap: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    align-items: flex-start;
}

/* Left Content - Main Section */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px 40px 40px;
    min-height: 669px;
    position: relative;
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.hero-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    color: #10B981;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-highlight {
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Nunito Sans", sans-serif;
    font-size: clamp(70px, 12vw, 110px);
    font-style: normal;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: white;
    font-size: clamp(40px, 8vw, 80px);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    word-wrap: break-word;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
  
}
.space{
    position: relative;
    top:-40px;
}

.hero-line {
    display: block;
}
.hero-line1 {
    display: block;
    top: 10px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 2vw, 20px);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.4;
}

/* Info Cards Section */
.info-cards-section {
    display: flex;
    gap: 40px;
    margin: 80px 0;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    flex: 1;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    color: #10B981;
}

.info-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.card-title {
    font-size: 24px;
    font-family: "Nunito Sans";
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #FFFFFF;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}

.card-tag {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.card-tag:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.card-description {
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

.info-card-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: #10B981;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.info-card-button:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.card-button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.info-card-button:hover .card-button-icon {
    transform: translateX(4px);
}

/* Google Partner Section */
.google-partner-section {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.partner-left {
    flex-shrink: 0;
}

.partner-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid #E5E7EB;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: #F3F4F6;
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: #4285F4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-title {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: #1F2937;
    text-align: center;
    margin: 0;
}

.partner-right {
    flex: 1;
}

.partner-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: #1F2937;
}

.partner-main {
    display: block;
    color: #374151;
    font-weight: 400;
}

.partner-highlight {
    display: block;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.partner-description {
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* Scroll Features Section */
.scroll-features-section {
    min-height: 100vh;
    position: relative;
    background: #0A0A0A;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.scroll-container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.scroll-left {
    flex: 1;
    padding: 200px 40px 220px 0;
}

.feature-block {
    min-height: 53vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 24px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
}

.feature-block > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    border: none;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.feature-block:hover .feature-icon {
    transform: scale(1.2);
}

.feature-block:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-icon .material-symbols-outlined {
    font-size: 80px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-block:hover .feature-icon .material-symbols-outlined {
    transform: scale(1.2);
}

.feature-block.active {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.feature-block.active .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-description {
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.feature-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-button svg {
    transition: transform 0.3s ease;
}

.feature-button:hover svg {
    transform: translateX(4px);
}

.scroll-right {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.sticky-content {
    
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: all 0.6s ease;
    transform: translateX(0);
    opacity: 1;
}

.sticky-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.3;
}

.sticky-content > * {
    position: relative;
    z-index: 1;
}

.sticky-title {
    font-size: 60px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-description {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sticky-button {
    background: linear-gradient(47deg,#15bcdf -5.73%,#0ddc7a 60.35%,#15bcdf 101.73%);
    color: black;
    width: 160px;
    height: 160px;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.sticky-button-icon {
    transition: transform 0.4s ease;
    z-index: 2;
}

.sticky-button-text {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.sticky-button:hover {
    background: white;
    color: #10B981;
}

.sticky-button:hover .sticky-button-icon {
    animation: speedIcon 0.8s ease infinite;
}

@keyframes speedIcon {
    0% { 
        transform: translateX(0); 
        opacity: 1; 
    }
    30% { 
        transform: translateX(80px); 
        opacity: 0.2; 
    }
    31% { 
        transform: translateX(-60px); 
        opacity: 0.1; 
    }
    100% { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 80px;
    background: #1a1a1a;
    color: white;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.solutions-header {
    margin-bottom: 80px;
}

.solutions-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #10B981;
}

.solutions-title {
    font-size: clamp(36px, 5vw, 64px);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: 800px;
    color: #FFFFFF;
}

.solutions-title em {
    font-style: normal;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 30px;
    align-items: start;
}

.solutions-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.solution-card.secondary {
    height: 300px;
    align-self: center;
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    overflow: hidden;
}

.card-front {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    transform: rotateY(0deg);
    transition: all 0.3s ease-out;
}

.solution-card:hover .card-front {
    background: linear-gradient(135deg, #3d3d3d, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateY(0deg) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.solution-card:hover .card-front .card-visual {
    transform: translateY(-5px);
}

.solution-card:hover .card-front .card-title {
    color: #10B981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.solution-card:hover .card-front .expand-icon {
    transform: rotate(45deg) scale(1.1);
    color: #10B981;
}

.solution-card:hover .card-front .card-icon-container {
    border-color: #10B981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

/* Mobile touch effects */
.solution-card.touch-active .card-front {
    background: linear-gradient(135deg, #3d3d3d, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateY(0deg) scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.solution-card.touch-active .card-front .card-visual {
    transform: translateY(-3px);
}

.solution-card.touch-active .card-front .card-title {
    color: #10B981;
}

.solution-card.touch-active .card-front .card-icon-container {
    border-color: #10B981;
    transform: scale(1.05);
}

.card-back {
    background: linear-gradient(135deg, #10B981, #059669);
    padding: 40px;
    transform: rotateY(-180deg);
    display: flex;
    align-items: center;
}

.solution-card.flipped .card-front {
    transform: rotateY(180deg);
}

.solution-card.flipped .card-back {
    transform: rotateY(0deg);
}

.card-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease-out;
}

.card-icon-container {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease-out;
}

.card-icon-container .card-icon {
    font-size: 40px;
    color: white;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.plus-icon {
    font-size: 24px;
    color: white;
    font-weight: 300;
}

.card-title {
    font-size: 42px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.1;
    transition: all 0.3s ease-out;
}

.expand-icon {
    align-self: flex-end;
    margin-top: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.solution-card:hover .expand-icon {
    opacity: 1;
    transform: translateX(5px);
}

/* Secondary Card (Center) */
.solution-card.secondary .card-front {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ready-circle {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    transition: all 0.4s ease;
}

.solution-card.secondary:hover .ready-circle {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.circle-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.circle-text {
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    color: white;
    letter-spacing: 1px;
}

/* Back Content */
.back-content {
    width: 100%;
}

.back-title {
    font-size: 28px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.back-description {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.back-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.back-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover,
.action-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ampersand {
    color: #13C8B9;
    font-size: clamp(24px, 3vw, 32px);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 10px;
}

/* Problems Section */
.problems-section {
    padding: 120px 0;
    position: relative;
}

.problems-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.problems-header {
    text-align: center;
    margin-bottom: 80px;
}

.problems-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    color: #8b5cf6;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.problems-title {
    font-size: 60px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.problems-title span {
    color: #8b5cf6;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

/* Enhanced Problem Cards Layout */
.problems-row {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.problem-col {
    flex: 1;
    max-width: 380px;
    min-width: 320px;
}

/* Problem Card - Core Structure */
.problem-card {
    perspective: 150rem;
    position: relative;
    height: 600px;
    cursor: pointer;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.problem-card__side {
    height: 600px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Front Side - Site Standard Colors */
.problem-card__side--front-1 {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card__side--front-2 {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card__side--front-3 {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back Side - Site Standard Colors */
.problem-card__side--back {
    transform: rotateY(180deg);
}

.problem-card__side--back-1 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.problem-card__side--back-2 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.problem-card__side--back-3 {
    background: linear-gradient(135deg, #10B981, #059669);
}

/* Hover Effects */
.problem-card:hover .problem-card__side--front-1,
.problem-card:hover .problem-card__side--front-2,
.problem-card:hover .problem-card__side--front-3,
.problem-card.flipped .problem-card__side--front-1,
.problem-card.flipped .problem-card__side--front-2,
.problem-card.flipped .problem-card__side--front-3 {
    transform: rotateY(-180deg);
    background: linear-gradient(135deg, #3d3d3d, #2a2a2a);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-card:hover .problem-card__side--back,
.problem-card.flipped .problem-card__side--back {
    transform: rotateY(0);
}

/* Card Title Section */
.problem-card__title {
    height: 200px;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.problem-card__icon {
    font-size: 50px !important;
    color: #ffffff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-card__icon {
    color: #10B981;
    transform: scale(1.1);
}

.problem-card__heading {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-card__heading {
    color: #10B981;
}

/* Card Details */
.problem-card__details {
    padding: 0 20px 20px;
}

.problem-card__details ul {
    list-style: none;
    width: 80%;
    margin: 0 auto;
    padding: 0;
}

.problem-card__details ul li {
    text-align: center;
    font-size: 20px;
    padding: 10px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Nunito Sans', sans-serif;
}

.problem-card__details ul li:last-child {
    border-bottom: none;
}

/* Back Side CTA */
.problem-card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.problem-card__solution-box {
    text-align: center;
    color: #ffffff;
    margin-bottom: 80px;
}

.problem-card__solution-label {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
    font-family: 'Nunito Sans', sans-serif;
}

.problem-card__solution-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Nunito Sans', sans-serif;
}

.problem-card__solution-description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Nunito Sans', sans-serif;
}

/* Button styling for the back of cards */
.btn {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
}

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

.btn:active, .btn:focus {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn.btn--white {
    background: #ffffff !important;
    color: #333333 !important;
    border: 2px solid #10B981 !important;
    font-weight: 600 !important;
}

.btn.btn--white:hover {
    background: #10B981 !important;
    color: #ffffff !important;
    border-color: #059669 !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}



/* Responsive Design */
@media (max-width: 768px) {
    .problems-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .problem-col {
        max-width: 300px;
    }

    .problem-card {
        height: 450px;
    }

    .problem-card__side {
        height: 450px;
    }

    .btn {
        padding: 12px 24px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }

    .btn.btn--white {
        min-width: 140px !important;
        background: #ffffff !important;
        color: #333333 !important;
        border: 2px solid #10B981 !important;
    }

    .btn.btn--white:hover {
        background: #10B981 !important;
        color: #ffffff !important;
    }

    .problems-title {
        font-size: 35px;
    }

    .problem-card__heading {
        font-size: 32px;
    }

    .problem-card__solution-title {
        font-size: 28px;
    }
}

/* Description Section */
.description-section {
    margin-top: auto;
    margin-bottom: 30px;
}

.description {
    color: white;
    font-size: clamp(18px, 2.2vw, 24px);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    word-wrap: break-word;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Experience Section */
.experience-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.experience-text {
    color: white;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.skill {
    padding: 6px 16px;
    border: 1px #D9D9D9 solid;
    border-radius: 100px;
    background: rgba(217, 217, 217, 0);
    display: inline-block;
}

.italic {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

.bold {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Reviews Section */
.reviews-section {
    flex-shrink: 0;
    width: 400px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.strategy-call-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.free-strategy-btn {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.free-strategy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #10B981);
}

.free-strategy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.reviews-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-count {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-subtitle {
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.chat-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Right Content - Sidebar */
.right-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

/* Cases Slider */
.cases_slider {
    width: 100%;
    margin-bottom: 20px;
}

.swiper_projects {
    width: 100%;
    height: 600px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    border: 1px #D9D9D9 solid;
    border-radius: 14px;
    
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.project_card_slider {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project_card_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.tabs_project {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
    position: relative;
        justify-content: space-evenly;

}

.tab_project {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab_project svg {
    width: 12px;
    height: 12px;
}

.main_info_projects {
    z-index: 2;
    position: relative;
    color: white;
    padding: 40px 20px 20px 20px;
}

.data_project {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.icon_data_wrapper {
    width: 16px;
    height: 16px;
}

.icon_data_wrapper svg {
    width: 100%;
    height: 100%;
}

.text_data {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
}

.name_project {
    font-size: 32px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.desc_project {
    margin-bottom: 20px;
}

.desc_project p {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

.table_info_project {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item_info_project {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item_info_project:last-child {
    border-bottom: none;
}

.name_item_project {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
}

.price_item_project {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: #13C8B9;
}

/* Case Study */
.case-study {
    border: 1px #D9D9D9 solid;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 669px;
    background: #111111;
    position: relative;
}

/* Case Study Image/Mockup */
.case-image {
    width: 100%;
    height: 180px;
    background: #333;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.mockup-container {
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: 11px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.mockup-header {
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 8px;
    color: #333;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mockup-text {
    font-size: 8px;
    color: #666;
}

.mockup-percentage {
    font-size: 16px;
    font-weight: bold;
    color: #e74c3c;
}

.mockup-description {
    font-size: 8px;
    color: #666;
}

.mockup-products {
    width: 80%;
    height: 20px;
    background: linear-gradient(90deg, #ddd 0%, #ccc 50%, #ddd 100%);
    border-radius: 4px;
    margin-top: 8px;
}

.case-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.case-title {
    color: white;
    font-size: 60px;
    font-family: 'Libre Baskerville', serif;
    
    
}

.case-brand {
    color: white;
    font-size: 32px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.case-description {
    color: white;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding: 20px;
    border: 1px #D9D9D9 solid;
    border-radius: 14px;
    background: #111111;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    color: white;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.metric-value {
    color: white;
    font-size: 24px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.period-note {
    color: white;
    font-size: 11px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: right;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        padding: 100px 30px 0 30px;
    }
    
    .main-content {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .info-cards-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}
@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .right-content {
        max-width: 100%;
        flex-direction: row;
        gap: 30px;
    }
    
    .case-study {
        flex: 1;
        min-height: auto;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .info-cards-section {
        padding: 0 40px;
        gap: 30px;
    }
    
    .info-card {
        padding: 35px 30px;
    }
    
    .info-card-button {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .google-partner-section {
        padding: 60px 40px;
    }
    
    .partner-content {
        gap: 50px;
    }
    
    .partner-heading {
        font-size: clamp(28px, 3.5vw, 40px);
    }
    
    .partner-description {
        font-size: 16px;
    }
    
    .scroll-features-section {
        padding: 0 40px;
    }
    
    .scroll-container {
        flex-direction: column;
    }
    
    .scroll-left {
        padding: 60px 0;
    }
    
    .scroll-right {
        position: relative;
        height: auto;
        padding: 10px 0;
    }
    
    .feature-block {
        min-height: 60vh;
        padding: 60px 30px;
        margin-bottom: 30px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .feature-icon .material-symbols-outlined {
        font-size: 70px;
    }
    
    .feature-button {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .sticky-content {
        position: relative;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .cta-button-container {
        width: 100%;
        max-width: 300px;
    }
    
    .main-content {
        gap: 20px;
    }
    
    .left-content {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .info-cards-section {
        flex-direction: column;
        gap: 25px;
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .info-card {
        padding: 30px 25px;
        max-width: none;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px auto;
    }
    
    .card-title {
        font-size: 40px;
        text-align: center;
    }
    
    .info-card-button {
        padding: 16px 24px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .card-tags {
        justify-content: center;
        gap: 8px;
    }
    
    .card-tag {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .card-description {
        text-align: center;
        font-size: 20px;
    }
    
    .google-partner-section {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .partner-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .partner-card {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 30px 25px;
    }
    
    .partner-heading {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .partner-description {
        font-size: 20px;
        text-align: center;
    }
    
    .scroll-features-section {
        padding: 60px 20px;
    }
    
    .scroll-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .scroll-left {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 20px;
        order: 2;
    }
    
    .scroll-right {
        order: 1;
        width: auto;
        position: relative;
    }
    
    .feature-block {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        border-radius: 20px;
        padding: 30px 25px;
        margin-bottom: 25px;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
        transform: translateY(0);
        opacity: 1;
        animation: none;
        min-height: auto;
        flex: none;
    }
    
    .feature-block:nth-child(2) {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    }
    
    .feature-block:nth-child(3) {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }
    
    .feature-icon .material-symbols-outlined,
    .feature-icon svg {
        font-size: 36px !important;
        width: 36px;
        height: 36px;
        color: white;
        fill: white;
    }
    
    .feature-title {
        font-size: 22px;
        text-align: center;
        color: white;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .feature-description {
        font-size: 14px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .feature-button {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 auto;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        cursor: pointer;
    }
    
    .feature-button:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .sticky-content {
        padding: 40px 30px;
        text-align: center;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .sticky-content:hover {
        transform: translateY(-8px);
        border-color: rgba(16, 185, 129, 0.3);
    }
    
    .solutions-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.3);
        padding: 8px 16px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .solutions-badge span {
        color: #10B981;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .sticky-title {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 700;
        color: white;
        line-height: 1.3;
    }
    
    .sticky-title .italic {
        font-style: italic;
        font-weight: 400;
        opacity: 0.9;
    }
    
    .sticky-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .sticky-button {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        border: none;
        border-radius: 16px;
        padding: 16px 24px;
        color: white;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 0 auto;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 200px;
    }
    
    .sticky-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    
    .sticky-button-icon {
        display: none; /* Hide large play icon on mobile */
    }
    
    .sticky-button-text {
        font-size: 16px;
        color: white;
        line-height: 1.3;
    }
    
    .sticky-description {
        font-size: 16px;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }
    
    .sticky-button {
        width: 140px;
        height: 140px;
        font-size: 14px;
        margin: 0 auto;
        background: linear-gradient(135deg, #10B981, #059669);
        border: none;
        border-radius: 50%;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    }
    
    .sticky-button:hover {
        transform: translateY(-5px) scale(1.05);
    }
    
    .sticky-button-text {
        font-size: 12px;
        font-weight: 600;
        text-align: center;
    }

@media (max-width: 480px) {
    .scroll-features-section {
        padding: 40px 0;
    }
    
    .feature-block {
        flex: 0 0 260px;
        min-height: 360px;
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon .material-symbols-outlined,
    .feature-icon svg {
        font-size: 30px !important;
        width: 30px;
        height: 30px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .feature-button {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .sticky-title {
        font-size: 40px;
    }
    
    .sticky-description {
        font-size: 20px;
    }
    
    .sticky-button {
        width: 120px;
        height: 120px;
        font-size: 11px;
    }
    
    .scroll-left {
    
        gap: 15px;
    }
}
    
    .right-content {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    
    .platform-tags {
        justify-content: center;
    }
    
    .experience-text {
        justify-content: center;
        text-align: center;
    }
    
    .experience-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .reviews-section {
        width: 100%;
        max-width: 400px;
    }
    
    .reviews-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-reviews-button {
        width: 100%;
        max-width: 200px;
    }
    
    .case-metrics {
        padding: 15px;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .ampersand {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .platform-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-tag {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
    
    .experience-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .skill {
        text-align: center;
    }
}

/* Cases Slider */
.cases_slider {
    width: 100%;
    margin-bottom: 20px;
}

.swiper_projects {
    width: 100%;
    height: 600px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.project_card_slider {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project_card_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.tabs_project {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
    position: relative;
}

.tab_project {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab_project svg {
    width: 12px;
    height: 12px;
}

.main_info_projects {
    z-index: 2;
    position: relative;
    color: white;
}

.data_project {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.icon_data_wrapper {
    width: 16px;
    height: 16px;
}

.icon_data_wrapper svg {
    width: 100%;
    height: 100%;
}

.text_data {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
}

.name_project {
    font-size: 32px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.desc_project {
    margin-bottom: 20px;
}

.desc_project p {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

.table_info_project {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item_info_project {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item_info_project:last-child {
    border-bottom: none;
}

.name_item_project {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
}

.price_item_project {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: #13C8B9;
}

/* Updated Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .right-content {
        width: 100%;
        max-width: 100%;
    }
    
    .swiper_projects {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-actions {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        gap: 15px;
    }
    
    .cta-button-container {
        width: 100%;
        max-width: 300px;
    }
    
    .main-content {
        gap: 20px;
    }
    
    .left-content {
        padding: 30px 20px;
        gap: 20px;
        margin-top: 100px;
    }
    
    .right-content {
        width: 100%;
    }
    
    .hero-title-container {
        align-items: center;
    }
    
    .hero-highlight {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
        font-size: clamp(60px, 15vw, 80px);
    }
    
    .hero-title {
        text-align: center;
        margin-top: 0;
        margin-left: 0;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .swiper_projects {
        height: 450px;
    }
    
    .project_card_slider {
        padding: 15px;
    }
    
    .name_project {
        font-size: 24px;
    }
    
    .experience-text {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .experience-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .skill {
        text-align: center;
    }
    
    .swiper_projects {
        height: 400px;
    }
    
    .tabs_project {
        gap: 5px;
    }
    
    .tab_project {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Instagram Stories Styles */
.stories-container {
    width: 400px;
    height: 720px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px #D9D9D9 solid;
}

/* Stories Progress Bar */
.stories-progress {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.progress-bar.active::after {
    animation: progress 4s linear forwards;
}

.progress-bar.completed::after {
    width: 100%;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Stories Navigation */
.stories-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 5;
}

.nav-area {
    flex: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-area:hover {
    background: rgba(255, 255, 255, 0.05);
}

.prev-area {
    border-radius: 20px 0 0 20px;
}

.next-area {
    border-radius: 0 20px 20px 0;
}

/* Story Styles */
.story {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.story.active {
    opacity: 1;
    transform: scale(1);
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.story-content {
    position: relative;
    z-index: 2;
    padding: 50px 20px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

/* Story Header */
.story-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.story-tag {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

.story-tag svg {
    width: 12px;
    height: 12px;
}

.story-date {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    transform: translateY(30px);
    opacity: 0;
}

.story-date svg {
    width: 16px;
    height: 16px;
}

/* Story Info */
.story-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-title {
    font-size: 32px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    transform: translateY(30px);
    opacity: 0;
}

.story-description {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
    transform: translateY(30px);
    opacity: 0;
}

.story-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.metric-item:hover {
    border-bottom-color: #13C8B9;
    transform: translateX(5px);
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    opacity: 0.8;
}

.metric-value {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: #13C8B9;
}

.metric-value.highlight {
    background: linear-gradient(45deg, #13C8B9, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    position: relative;
}

.metric-value.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #13C8B9, #00ff88);
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

/* Mobile adjustments for stories */
@media (max-width: 768px) {
    .stories-container {
        width: 100%;
       min-height: 700px;

    }
    
    .story-content {
        padding: 40px 15px 20px;
    }
    
    .story-title {
        font-size: 24px;
    }
    
    .story-tags {
        gap: 5px;
    }
    
    .story-tag {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Story Animation Classes */
.story.active .story-tag,
.story.active .story-date,
.story.active .story-title,
.story.active .story-description,
.story.active .metric-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.story.active .story-tag:nth-child(1) { transition-delay: 0.1s; }
.story.active .story-tag:nth-child(2) { transition-delay: 0.2s; }
.story.active .story-tag:nth-child(3) { transition-delay: 0.3s; }
.story.active .story-date { transition-delay: 0.4s; }
.story.active .story-title { transition-delay: 0.5s; }
.story.active .story-description { transition-delay: 0.6s; }
.story.active .metric-item:nth-child(1) { transition-delay: 0.7s; }
.story.active .metric-item:nth-child(2) { transition-delay: 0.8s; }
.story.active .metric-item:nth-child(3) { transition-delay: 0.9s; }

/* Stories Container Hover Effects */
.stories-container:hover .progress-bar.active::after {
    animation-play-state: paused;
}

/* Story Indicator for touch devices */
@media (max-width: 768px) {
    .nav-area::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(5px);
    }
    
    .prev-area::after {
        left: 10px;
    }
    
    .next-area::after {
        right: 10px;
    }
    
    .nav-area:active::after {
        opacity: 1;
    }
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: 100px 60px;
    background: #fafafa;
    position: relative;
    border-radius: 20px;
    border: solid 1px #e0e0e0;
    overflow: hidden;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.process-badge span {
    color: #10B981;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.process-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    max-width: 800px;
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
}

.process-title span {
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.week-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #666;
}

.week-number {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.week-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.week-icon {
    margin-left: auto;
    opacity: 0.6;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.week-icon svg {
    transition: all 0.3s ease;
}

.process-phase {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.process-timeline {
    margin: 30px 0;
    height: 80px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.timeline-icon .material-symbols-outlined {
    font-size: 35px;
    color: white;
    transition: all 0.3s ease;
}

.timeline-dots {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover Effects */
.process-card:hover .timeline-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.process-card:hover .timeline-icon .material-symbols-outlined {
    transform: scale(1.1);
    color: #ffffff;
}

.process-card:hover .timeline-dot {
    background: #8b5cf6;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.process-card:hover .timeline-dot::before {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.5);
}

/* Individual timeline dot hover */
.timeline-dot:hover {
    background: #059669 !important;
    transform: scale(1.5) !important;
}

.timeline-dot:hover::before {
    background: rgba(5, 150, 105, 0.4) !important;
    transform: scale(2) !important;
}

/* Week Icon Hover Effects */
.process-card:hover .week-icon {
    transform: scale(1.1);
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.process-card:hover .week-icon svg {
    stroke: #10B981;
    transform: rotate(5deg);
}

/* Timeline Icon Pulse Animation */
.timeline-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.process-card:hover .timeline-icon::before {
    opacity: 1;
    transform: scale(1);
}

/* Pulsing animation for timeline dots */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.timeline-dot {
    animation: pulse 2s infinite;
}

.timeline-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.timeline-icon {
    animation: breathe 3s ease-in-out infinite;
}

/* Smooth color transition for week numbers */
.week-number {
    transition: color 0.3s ease;
}

.process-card:hover .week-number {
    color: #10B981;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Process Responsive */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-section {
        padding: 80px 40px;
    }
    
    .process-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-title {
        font-size: 35px;
    }
    
    .process-phase {
        font-size: 28px;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .timeline-arc {
        width: 100px;
        height: 50px;
    }
}

/* ========== STATISTICS SECTION ========== */
.statistics-section {
    background: #0a0a0a;
    position: relative;
    padding: 100px 60px;
    overflow: hidden;
}

.statistics-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Decorative Purple Shapes */
.statistics-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.purple-shape {
    position: absolute;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #9333EA 100%);
    border-radius: 50px;
    opacity: 0.8;
}

.purple-shape.shape-1 {
    width: 300px;
    height: 80px;
    top: 10%;
    right: -50px;
    transform: rotate(-20deg);
    border-radius: 40px;
}

.purple-shape.shape-2 {
    width: 200px;
    height: 60px;
    top: 40%;
    right: 20%;
    transform: rotate(15deg);
    border-radius: 30px;
    opacity: 0.6;
}

.purple-shape.shape-3 {
    width: 250px;
    height: 70px;
    bottom: 20%;
    right: 10%;
    transform: rotate(-30deg);
    border-radius: 35px;
    opacity: 0.7;
}

/* Statistics Content */
.statistics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 3;
}

.statistics-left {
    color: white;
}

.statistics-title {
    font-size: 80px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin: 10 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-green {
   background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

.statistics-subtitle {
    font-size: 18px;
    color: #888;
    margin: 0;
    font-weight: 400;
}

.statistics-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: right;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number.green {
    color: #10B981;
}

.stat-label {
    font-size: 16px;
    color: white;
    font-weight: 400;
}

/* Pillars Section */
.pillars-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid #333;
    position: relative;
    z-index: 3;
}

.pillar-item {
    text-align: left;
}

.pillar-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.pillar-title.purple {
    color: #A855F7;
}

.pillar-title.white {
    color: white;
}

.pillar-description {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Statistics Responsive */
@media (max-width: 1200px) {
    .statistics-section {
        padding: 80px 40px;
    }
    
    .statistics-content {
        gap: 60px;
        margin-bottom: 100px;
    }
    
    .statistics-title {
        font-size: 56px;
    }
    
    .stat-number {
        font-size: 64px;
    }
    
    .pillars-section {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .statistics-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .pillars-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pillar-item {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 20px;
    }
    
    .statistics-title {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .pillar-title {
        font-size: 24px;
    }
    
    .purple-shape.shape-1 {
        width: 200px;
        height: 50px;
        right: -30px;
    }
    
    .purple-shape.shape-2 {
        width: 150px;
        height: 40px;
    }
    
    .purple-shape.shape-3 {
        width: 180px;
        height: 45px;
    }
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    padding: 100px 60px;
    margin: 50px 0px;
    background: #fafafa;
    position: relative;
    border-radius: 20px;
    border: solid 1px #e0e0e0;
    overflow: hidden;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.portfolio-badge span {
    color: #10B981;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.portfolio-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    max-width: 800px;
    font-family: 'Nunito Sans', sans-serif;
}

.portfolio-title em {
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.portfolio-card {
    background: white;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.portfolio-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.case-header {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-count {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.case-icon {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    color: #000;
}

.portfolio-card:hover .case-icon {
    opacity: 1;
}

.case-visual {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin: 20px 20px;
    border-radius: 15px;
}

.case-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.case-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .case-background img {
    transform: scale(1.05);
}

.case-background.featured-bg {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.case-title {
    color: white;
    
    font-weight: 700;
    margin: 0;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
    
}

.portfolio-card.featured .case-title {
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.case-label {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Portfolio Responsive */
@media (max-width: 1400px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .portfolio-grid .portfolio-card:nth-child(5) {
        grid-column: 2 / 4;
    }
}

@media (max-width: 1200px) {
    .portfolio-section {
        padding: 80px 40px;
    }
    
    .portfolio-title {
        font-size: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .portfolio-grid .portfolio-card:nth-child(4),
    .portfolio-grid .portfolio-card:nth-child(5) {
        grid-column: auto;
    }
    
    .portfolio-grid .portfolio-card:nth-child(5) {
        grid-column: 2 / 3;
    }
}

@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid .portfolio-card:nth-child(5) {
        grid-column: 1 / -1;
    }
    
    .case-visual {
        height: 180px;
    }
    
    .case-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 20px;
    }
    
    .portfolio-container {
        overflow: hidden;
    }
    
    .portfolio-grid {
        display: flex;
        gap: 20px;
        margin-top: 40px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 20px 20px 20px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
    }
    
    .portfolio-grid::-webkit-scrollbar {
        display: none; /* WebKit */
    }
    
    .portfolio-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: center;
        height: 400px;
    }
    
    .portfolio-grid .portfolio-card:nth-child(5) {
        grid-column: auto;
    }
    
    .portfolio-title {
        font-size: 35px;
    }
    
    .case-visual {
        height: 160px;
    }
    
    .case-title {
        font-size: 24px;
    }
    
    .portfolio-card.featured {
        transform: none;
    }
    
    .portfolio-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    position: relative;
    border-radius: 20px;
    margin: 20px 0px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.services-badge span {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.services-title em {
    color: #fff;
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.service-card {
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.dark {
    background: #2a2a2a;
    border: 1px solid #404040;
}

.service-card.light {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.service-header {
    margin-bottom: 30px;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card.dark .price-tag {
    background: #10B981;
    color: white;
}

.service-card.light .price-tag.free {
    background: #2a2a2a;
    color: white;
}

.service-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px 0;
}

.service-card.dark .service-title {
    color: white;
}

.service-card.light .service-title {
    color: #2a2a2a;
}

.service-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-feature-icon {
    flex-shrink: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.service-card.dark .service-feature-icon {
    color: #10B981;
}

.service-card.light .service-feature-icon {
    color: #2a2a2a;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.service-card.dark .feature-text {
    color: #e0e0e0;
}

.service-card.light .feature-text {
    color: #666;
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.service-card.dark .service-button {
    background: white;
    color: #2a2a2a;
}

.service-card.dark .service-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.service-button.light-button {
    background: #2a2a2a;
    color: white;
}

.service-button.light-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.button-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-button.light-button .button-icon {
    background: #10B981;
}

/* Services Responsive */
@media (max-width: 1200px) {
    .services-section {
        padding: 80px 40px;
    }
    
    .services-title {
        font-size: 40px;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-title {
        font-size: 36px;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .service-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-title {
        font-size: 35px;
    }
    
    .service-title {
        font-size: 35px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-text {
        font-size: 20px;
    }
    
    .service-button {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 60px;
    position: relative;
}

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

.faq-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.faq-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-title {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.profile-title .highlight {
    color: white;
    font-weight: 600;
}

.ask-question-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #333;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.ask-question-btn:hover {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.faq-right {
    text-align: right;
}

.faq-title {
    font-size: 120px;
    font-weight: 700;
    color: white;
    margin: 0;
    font-style: italic;
    line-height: 0.8;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-bottom-color: #444;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    padding-left: 10px;
}

.question-text {
    font-size: 24px;
    color: white;
    margin: 0;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.question-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.question-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.faq-item.active .question-toggle {
    background: #10B981;
}

.faq-item.active .question-toggle:hover {
    background: #0D9668;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.toggle-icon {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 0 30px 0;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
    padding-right: 70px;
}

/* FAQ Responsive */
@media (max-width: 1200px) {
    .faq-section {
        padding: 80px 40px;
    }
    
    .faq-header {
        gap: 60px;
    }
    
    .faq-title {
        font-size: 100px;
    }
    
    .question-text {
        font-size: 22px;
    }
}

@media (max-width: 968px) {
    .faq-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .faq-left {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .faq-right {
        text-align: center;
    }
    
    .faq-title {
        font-size: 80px;
    }
    
    .question-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .faq-title {
        font-size: 60px;
    }
    
    .question-text {
        font-size: 20px;
    }
    
    .faq-question {
        padding: 25px 0;
    }
    
    .faq-answer p {
        padding-right: 20px;
        font-size: 14px;
    }
    
    .question-toggle {
        width: 40px;
        height: 40px;
    }
    
    .toggle-icon {
        font-size: 20px;
    }
}

/* ========== FOOTER SECTION ========== */
.footer-section {
    margin-top: 60px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #3B82F6 100%);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    opacity: 0.3;
}

.footer-cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge .material-symbols-outlined {
    font-size: 18px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight-green {
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.cta-primary-btn {
    background: white;
    color: #10B981;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 40px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    transition: all 0.3s ease;
    position: relative;
}

.footer-logo p {
    color: #888;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 20px;
}

.contact-item .material-symbols-outlined {
    font-size: 18px;
    color: #10B981;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
}

.column-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.footer-link:hover {
    color: #10B981;
    padding-left: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ccc;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    background: transparent;
}

.social-link:hover {
    background: #10B981;
    border-color: #10B981;
    color: white;
    transform: translateY(-2px);
}

.social-link .material-symbols-outlined {
    font-size: 22px;
    transition: color 0.3s ease;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #888;
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.legal-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #10B981;
}

.separator {
    color: #666;
    font-size: 12px;
}

.made-with {
    color: #888;
    font-size: 14px;
}



.footer-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 0.9;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.highlight-green {
    color: #059669;
    text-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-email svg {
    flex-shrink: 0;
}

.footer-center {
    display: flex;
    flex-direction: column;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.menu-link:hover {
    color: #059669;
    padding-left: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: #059669;
    padding-left: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.social-text {
    font-size: 16px;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-section {
        padding: 60px 40px 30px;
    }
    
    .footer-content {
        gap: 60px;
    }
    
    .footer-title {
        font-size: 56px;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 48px;
        text-align: left;
    }
    
    .contact-email {
        margin: 0 auto;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 20px 25px;
    }
    
    .footer-title {
        font-size: 36px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        gap: 20px;
    }
    
    .contact-email {
        font-size: 20px;
    }
    
    .solutions-grid-two {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .problems-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .problem-col {
        width: 100%;
        max-width: 350px;
        min-width: 280px;
    }
    
    .problem-card {
        height: 400px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-perspective: 100rem;
        perspective: 100rem;
    }
    
    .problem-card__side {
        height: 400px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    
    .problem-card__title {
        height: 150px;
        padding: 30px 15px 15px;
    }
    
    .problem-card__icon {
        font-size: 40px !important;
        margin-bottom: 15px;
    }
    
    .problem-card__heading {
        font-size: 32px;
    }
    
    .problem-card__details {
        padding: 0 15px 15px;
    }
    
    .problem-card__details ul li {
        font-size: 14px;
        padding: 8px;
    }
    /* Mobile styles continue here... */
    
    /* Ensure flip works on mobile */
    .problem-card.flipped .problem-card__side--front-1,
    .problem-card.flipped .problem-card__side--front-2,
    .problem-card.flipped .problem-card__side--front-3 {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
    
    .problem-card.flipped .problem-card__side--back {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@media (max-width: 480px) {
    .problems-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .problems-container {
        padding: 0 15px;
    }
    
    .problem-col {
        max-width: 100%;
        min-width: 260px;
    }
    
    .problem-card {
        height: 380px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-perspective: 100rem;
        perspective: 100rem;
    }
    
    .problem-card__side {
        height: 380px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    
    .problem-card__title {
        height: 140px;
        padding: 25px 10px 10px;
    }
    
    .problem-card__icon {
        font-size: 36px !important;
        margin-bottom: 12px;
    }
    
    .problem-card__heading {
        font-size: 28px;
    }
    
    .problem-card__details ul li {
        font-size: 13px;
        padding: 6px;
    }
    
    .problem-card__solution-title {
        font-size: 20px;
    }
    
    .problem-card__solution-description {
        font-size: 13px;
    }
}

/* Portfolio mobile carousel navigation */
.portfolio-navigation {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.portfolio-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.portfolio-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.portfolio-dots {
    display: flex;
    gap: 0.5rem;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .portfolio-navigation {
        display: flex;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(16,185,129,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(16,185,129,0.08)"/><circle cx="80" cy="70" r="1" fill="rgba(16,185,129,0.06)"/></svg>');
    opacity: 0.3;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    color: #10B981;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.testimonials-title .italic {
    font-style: italic;
    color: #10B981;
}

/* Initial hidden state for scroll animation */
.testimonials-header {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 20px;
}

.testimonials-carousel-wrapper::before {
    content: '👆 Clique e arraste para navegar';
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    opacity: 1;
    animation: showDragHint 5s ease-in-out infinite;
}

@keyframes showDragHint {
    0%, 90% { opacity: 0.3; }
    5%, 85% { opacity: 1; }
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    animation: infiniteScroll 40s linear infinite;
    will-change: transform;
    width: calc(200% + 30px);
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonials-carousel *,
.testimonial-card *,
.testimonial-image *,
.testimonial-content * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 400px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.author-details {
    flex: 1;
}

.author-name {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-badge {
        font-size: 16px;
        padding: 6px 16px;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .testimonial-content {
        padding: 20px;
        gap: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-carousel-wrapper::before {
        content: '👆 Deslize para navegar';
        right: 20px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .testimonials-carousel {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
}

/* Feedback Section (existing) */
.feedback-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.feedback-container {
    max-width: 1400px;
    margin: 0 auto;
}

.feedback-header {
    text-align: center;
    margin-bottom: 80px;
}

.feedback-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    color: #10B981;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.feedback-title {
    font-size: 60px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.feedback-title span {
    color: #10B981;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

/* Feedback Carousel */
.feedback-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feedback-carousel {
    display: flex;
    gap: 30px;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.feedback-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.feedback-banner {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.feedback-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feedback-card:hover .feedback-banner img {
    transform: scale(1.1);
}

.feedback-content {
    padding: 30px 25px;
}

.feedback-text {
    color: white;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Nunito Sans', sans-serif;
}

.author-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Carousel Navigation */
.feedback-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.feedback-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feedback-nav-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.feedback-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.feedback-dots {
    display: flex;
    gap: 10px;
}

.feedback-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-dot.active {
    background: #10B981;
    transform: scale(1.2);
}

/* Feedback Mobile Responsive */
@media (min-width: 769px) {
    .feedback-carousel {
        width: 200% !important;
        transform: translateX(0) !important;
        overflow: hidden !important;
        scroll-snap-type: none !important;
    }
    
    .feedback-card {
        flex: 0 0 calc(16.66666% - 25px) !important;
        min-width: calc(16.66666% - 25px) !important;
        scroll-snap-align: none !important;
    }
    
    .feedback-navigation {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 20px;
    }
    
    .feedback-title {
        font-size: 35px;
    }
    
    .feedback-carousel-container {
        padding: 0 10px;
    }
    
    .feedback-carousel {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px;
        width: auto !important;
        transform: none !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 20px;
    }
    
    .feedback-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .feedback-card {
        min-width: 280px !important;
        flex: 0 0 280px !important;
        scroll-snap-align: center !important;
    }
    
    .feedback-navigation {
        display: none !important;
    }
    
    .feedback-text {
        font-size: 18px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-position {
        font-size: 16px;
    }
}

/* Client Feedback Section */
.client-feedback-section {
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.client-feedback-container {
    max-width: 1400px;
    margin: 0 auto;
}

.client-feedback-header {
    text-align: center;
    margin-bottom: 80px;
}

.client-feedback-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.client-feedback-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.client-feedback-title .italic {
    font-style: italic;
    color: #10B981;
}

.client-feedback-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feedback-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.client-feedback-card {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
}

.client-feedback-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.feedback-card-image {
    height: 240px;
    overflow: hidden;
}

.feedback-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-feedback-card:hover .feedback-card-image img {
    transform: scale(1.05);
}

.feedback-card-content {
    padding: 30px;
}

.feedback-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 25px 0;
    font-style: italic;
}

.feedback-card-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feedback-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.feedback-author-details {
    flex: 1;
}

.feedback-author-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.feedback-author-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .client-feedback-section {
        padding: 80px 20px;
    }

    .client-feedback-header {
        margin-bottom: 50px;
    }

    .client-feedback-title {
        font-size: 32px;
    }

    .client-feedback-grid {
        gap: 20px;
    }

    .feedback-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .client-feedback-card {
        max-width: 100%;
        width: 100%;
    }

    .feedback-card-image {
        height: 200px;
    }

    .feedback-card-content {
        padding: 20px;
    }

    .feedback-card-text {
        font-size: 14px;
    }

    .feedback-author-name {
        font-size: 15px;
    }

    .feedback-author-role {
        font-size: 13px;
    }

    .feedback-author-avatar {
        width: 45px;
        height: 45px;
    }
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 100px 60px;
    background: #fafafa;
    position: relative;
    border-radius: 20px;
    border: solid 1px #e0e0e0;
    margin: 50px 0;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.services-badge span {
    color: #10B981;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    max-width: 800px;
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
}

.services-title span {
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #666;
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
}

.service-header-icon {
    margin-left: auto;
    color: #10B981;
}

.service-phase {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: 'Nunito Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-phase .material-symbols-outlined {
    color: #10B981;
    font-size: 32px;
}

.service-timeline {
    margin-bottom: 30px;
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.service-content {
    flex: 1;
}

.service-features {
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.feature-number {
    width: 24px;
    height: 24px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 120px 60px;
    margin: 60px 0;
    background-color: #fafafa;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
}

.service-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.service-badge .material-symbols-outlined {
    font-size: 16px;
}

.service-phase {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.service-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.timeline-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.step-items {
    flex: 1;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 8px 0;
}

.step-item:last-child {
    margin-bottom: 0;
}

.feature-number {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.service-button {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-button:hover {
    background: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.button-icon {
    transition: transform 0.3s ease;
}

.service-button:hover .button-icon {
    transform: translateX(4px);
}

/* Services CTA Bottom */
.services-cta {
    text-align: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px;
    margin-top: 60px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.cta-description {
    font-size: 18px;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary-btn, .cta-secondary-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-primary-btn {
    background: #25d366;
    color: white;
}

.cta-primary-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.cta-secondary-btn {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-secondary-btn:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-section {
        padding: 80px 40px;
    }
    
    .services-title {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-phase {
        font-size: 24px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
        margin: 30px 0;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-grid {
        gap: 25px;
        margin-top: 60px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-phase {
        font-size: 22px;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .feature-item {
        margin-bottom: 12px;
        padding: 6px 0;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .feature-number {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .service-button {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .services-cta {
        padding: 35px 20px;
        margin-top: 40px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 15px;
        margin: 20px 0;
    }
    
    .services-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-phase {
        font-size: 20px;
    }
    
    .services-cta {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-cta {
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-cta {
        padding: 50px 30px;
        margin-bottom: 60px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-cta {
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .footer-logo h3 {
        font-size: 28px;
    }
    
    .footer-logo p {
        font-size: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        padding: 30px 15px;
    }
    
    .cta-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .footer-links {
        padding: 30px 0;
        gap: 30px;
    }
    
    .column-title {
        font-size: 16px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .social-link .material-symbols-outlined {
        font-size: 20px;
    }
}

/* Ensure all button links have proper styling */
a.cta-button,
a.mobile-cta-button,
a.free-strategy-btn,
a.info-card-button,
a.feature-button,
a.sticky-button,
a.service-button,
a.ask-question-btn,
a.btn.btn--white {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}