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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d1810;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #5d4037;
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(135deg, #00B4D8 0%, #0096C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
}

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

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

.btn-outline {
    background: transparent;
    color: #2d1810;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #FF8A00;
    color: #FF8A00;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 32px rgba(255, 138, 0, 0.15),
        0 0 0 1px rgba(0, 180, 216, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 138, 0, 0.3), 
        rgba(255, 179, 102, 0.3), 
        rgba(255, 138, 0, 0.3)
    );
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}

.navbar:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 138, 0, 0.3);
    box-shadow: 
        0 12px 40px rgba(255, 138, 0, 0.2),
        0 0 0 1px rgba(0, 180, 216, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

/* Logo */
.nav-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(139, 92, 246, 0.1)
    );
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.nav-link:hover {
    color: #1f2937;
    background: rgba(255, 138, 0, 0.1);
}

.nav-link.active {
    color: #FF8A00;
    font-weight: 600;
}



/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 138, 0, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 138, 0, 0.2), 
        rgba(255, 179, 102, 0.2), 
        rgba(255, 138, 0, 0.2)
    );
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: toggleGlow 4s ease infinite;
}

.nav-toggle:hover::before {
    opacity: 1;
}

@keyframes toggleGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-toggle:hover {
    background: rgba(255, 138, 0, 0.1);
    border: 1px solid rgba(255, 138, 0, 0.3);
    transform: scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 138, 0, 0.2),
        0 0 0 1px rgba(0, 180, 216, 0.1);
}

.bar {
    width: 24px;
    height: 2.5px;
    background: #FF8A00;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.nav-toggle:hover .bar {
    background: #FF6B00;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #FF8A00;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #FF8A00;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 138, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 102, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Flow Items */
.automation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.15);
    border: 2px solid rgba(255, 138, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flow-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.flow-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 138, 0, 0.25);
}

.flow-item:hover::before {
    opacity: 1;
}

.flow-item i, .flow-item span {
    position: relative;
    z-index: 1;
}

.flow-item i {
    font-size: 2rem;
    color: #FF8A00;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.flow-item:hover i {
    transform: scale(1.1);
    color: #FF6B00;
}

.flow-item span {
    font-weight: 600;
    color: #2d1810;
    font-size: 0.9rem;
    text-align: center;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #FF8A00;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0.6;
}

/* Cyclic Animation Styles */
.flow-arrow.flowing {
    animation: arrowFlow 0.8s ease-in-out;
    opacity: 1;
}

@keyframes arrowFlow {
    0% {
        transform: translateX(-10px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(5px) scale(1.2);
        opacity: 1;
        color: #FF6B00;
        text-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
}

/* Flow Item Active States */
.flow-item.active {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 138, 0, 0.4);
    border: 3px solid rgba(255, 138, 0, 0.6);
}

.flow-item.active::before {
    opacity: 1;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
}

.flow-item.responding {
    border: 3px solid rgba(0, 180, 216, 0.6);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

.flow-item.responding::before {
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    opacity: 1;
}

.flow-item.responding i {
    color: #00B4D8;
    animation: iconPulse 0.8s ease-in-out 3;
}

.flow-item.processing {
    border: 3px solid rgba(255, 138, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 138, 0, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

.flow-item.processing::before {
    background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
    opacity: 1;
}

.flow-item.processing i {
    color: #FF8A00;
    animation: iconPulse 0.8s ease-in-out 3;
}

.flow-item.notifying {
    border: 3px solid rgba(34, 197, 94, 0.6);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

.flow-item.notifying::before {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    opacity: 1;
}

.flow-item.notifying i {
    color: #22c55e;
    animation: iconPulse 0.8s ease-in-out 3;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
        text-shadow: 0 0 15px currentColor;
    }
}

/* Continuous flow feeling */
.automation-flow {
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(255, 138, 0, 0.03) 0%, transparent 70%);
    border-radius: 100px;
}

.automation-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.3), transparent);
    transform: translateY(-50%);
    animation: continuousFlow 6s linear infinite;
    z-index: 0;
    border-radius: 50px;
}

.automation-flow::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 138, 0, 0.05) 0%, rgba(0, 180, 216, 0.02) 50%, transparent 70%);
    border-radius: 120px;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes continuousFlow {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-100%);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(100%);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 138, 0, 0.02) 0%, transparent 70%),
        radial-gradient(circle at 70% 80%, rgba(255, 179, 102, 0.02) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 1.5rem;
    color: #2d1810;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5d4037;
    line-height: 1.7;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.automation-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Duplicate removed - using circular design above */

.flow-item i {
    font-size: 2rem;
    color: #FF8A00;
}

.flow-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #FF8A00;
    font-weight: bold;
}

/* Product Overview */
.product-overview {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2d1810;
}

.feature-card p {
    color: #5d4037;
}

/* AI Assistance Section */
.ai-assistance {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.ai-header h2 {
    margin-bottom: 1rem;
}

/* Supported Platforms - Slider Animation */
.supported-platforms-full-width {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 138, 0, 0.15);
    border-bottom: 1px solid rgba(255, 138, 0, 0.15);
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.platforms-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 140px;
    margin-bottom: 2rem;
    
    /* Enhanced browser compatibility for fade edges */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    
    /* Browser compatibility check */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Fallback fade edges for browsers that don't support mask */
.platforms-slider-container::before,
.platforms-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
}

.platforms-slider-container::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(248, 250, 252, 1) 0%,
        rgba(248, 250, 252, 0.8) 50%,
        rgba(248, 250, 252, 0) 100%
    );
}

.platforms-slider-container::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(248, 250, 252, 1) 0%,
        rgba(248, 250, 252, 0.8) 50%,
        rgba(248, 250, 252, 0) 100%
    );
}

.platforms-slider {
    display: flex;
    align-items: center;
    gap: 4rem;
    height: 100%;
    
    /* Enhanced animation with better browser support */
    animation: slideLogos 20s linear infinite;
    -webkit-animation: slideLogos 20s linear infinite;
    -moz-animation: slideLogos 20s linear infinite;
    -o-animation: slideLogos 20s linear infinite;
    
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    
    /* Ensure sufficient width for smooth animation */
    min-width: calc(200% + 8rem);
}

/* Force animation to start immediately */
.platforms-slider.animation-ready {
    animation-play-state: running !important;
    -webkit-animation-play-state: running !important;
}

/* Fallback static display if animations fail */
.platforms-slider.fallback {
    animation: none !important;
    -webkit-animation: none !important;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
}

/* Debug mode for production troubleshooting */
.platforms-slider.debug {
    border: 2px solid red;
    background: rgba(255, 0, 0, 0.1);
}

.platforms-slider.debug .platform-slide {
    border: 1px solid blue;
    background: rgba(0, 0, 255, 0.1);
}

.platform-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 140px;
    height: 120px;
    flex-shrink: 0;
    padding: 1rem;
    border-radius: 16px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 138, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.1);
}

.platform-slide:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 138, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 138, 0, 0.3);
}

/* Slider Animation Keyframes with vendor prefixes */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@-webkit-keyframes slideLogos {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-moz-keyframes slideLogos {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-o-keyframes slideLogos {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.platform-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.platform-carousel-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.platform-carousel-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.platform-carousel-item.animate-in {
    animation: platformSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.platform-carousel-item.animate-out {
    animation: platformSlideOut 0.5s ease-in forwards;
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    transform: scale(1);
}

.platform-icon:hover {
    transform: scale(1.1);
}

.platform-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.platform-icon:hover i {
    transform: scale(1.1);
}

.supported-platforms-full-width .platforms-tagline {
    text-align: center;
    color: #5d4037;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Platform-specific brand colors */
.website-icon {
    background: linear-gradient(135deg, #FF8A00 0%, #FFB366 100%);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.instagram-icon {
    background: linear-gradient(135deg, #e4405f 0%, #833ab4 50%, #f77737 100%);
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
}

.messenger-icon {
    background: linear-gradient(135deg, #00b2ff 0%, #006aff 100%);
}

.twitter-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d1810;
    text-align: center;
}

.platforms-tagline {
    text-align: center;
    color: #5d4037;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

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

.ai-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ai-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ai-feature i {
    font-size: 1.5rem;
    color: #FF8A00;
    margin-top: 0.2rem;
    min-width: 24px;
}

.ai-feature h4 {
    margin-bottom: 0.5rem;
    color: #2d1810;
}

.ai-feature p {
    color: #5d4037;
    margin: 0;
}

.demo-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-interface {
    width: 100%;
}

.chat-header {
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    margin-left: auto;
    animation: pulse 2s infinite;
}

.chat-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.user-message {
    background: #e5edff;
    margin-left: auto;
    text-align: right;
}

.ai-message {
    background: #f1f5f9;
    margin-right: auto;
}

.typing-indicator {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF8A00;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

/* Consulting Section */
.consulting {
    padding: 80px 0;
    background: white;
}

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

.consulting-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #FF8A00;
}

.service-item h3 {
    color: #2d1810;
    margin-bottom: 0.5rem;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a2c17;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin: 0;
    color: #2d1810;
}

.testimonial-author span {
    color: #FF8A00;
    font-size: 0.9rem;
}

.case-study-preview {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 12px;
}

.case-study-preview h4 {
    color: #2d1810;
    margin-bottom: 0.5rem;
}

.case-study-link {
    color: #FF8A00;
    text-decoration: none;
    font-weight: 500;
}

.case-study-link:hover {
    text-decoration: underline;
}

/* Dynamic Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9ff;
}

/* Package Selection - Top Layout */
.package-selector-top {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.package-selector-top h3 {
    margin-bottom: 2rem;
    color: #2d1810;
    font-size: 1.5rem;
}

.package-options-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-configurator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.package-option {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-option:hover {
    border-color: #FF8A00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.1);
}

.package-option.active {
    border-color: #FF8A00;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.05) 0%, rgba(255, 179, 102, 0.05) 100%);
    box-shadow: 0 5px 20px rgba(255, 138, 0, 0.15);
}

.package-option.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF8A00, #FFB366);
    border-radius: 18px;
    z-index: -1;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.package-icon i {
    font-size: 1.8rem;
    color: white;
}

.package-option h4 {
    margin-bottom: 0.5rem;
    color: #2d1810;
    font-size: 1.3rem;
}

.package-option p {
    color: #5d4037;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-base {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.base-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FF8A00;
}

.base-details {
    font-size: 0.85rem;
    color: #5d4037;
}

/* Pricing Sliders - Full Width */
.pricing-sliders-full-width {
    margin-bottom: 3rem;
}

.pricing-sliders {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.slider-section {
    margin-bottom: 3rem;
}

.slider-section:last-child {
    margin-bottom: 0;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slider-header h4 {
    color: #2d1810;
    font-size: 1.3rem;
    margin: 0;
}

.slider-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.slider-value span:first-child {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF8A00;
}

.value-suffix {
    color: #5d4037;
    font-size: 0.9rem;
}

/* Custom Range Slider */
.slider-container {
    position: relative;
    margin-bottom: 1rem;
}

.pricing-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.pricing-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(255, 138, 0, 0.3);
}

.pricing-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(255, 138, 0, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #5d4037;
}

.bonus-credits {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.7), rgba(0, 150, 199, 0.7));
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.bonus-credits i {
    font-size: 1rem;
}

/* Channels Selector */
.channels-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.channel-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.channel-option:hover {
    border-color: #FF8A00;
    transform: translateY(-2px);
}

.channel-option.active {
    border-color: #FF8A00;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
}

.channel-option i {
    font-size: 1.5rem;
    color: #FF8A00;
}

.channel-option span {
    font-size: 0.85rem;
    color: #2d1810;
    font-weight: 500;
}

/* Pricing Summary - Full Width */
.pricing-summary-full-width {
    margin-top: 2rem;
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.summary-header h3 {
    margin-bottom: 0.5rem;
    color: #2d1810;
}

.selected-package {
    color: #FF8A00;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.item-label {
    color: #5d4037;
}

.item-value {
    color: #2d1810;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.2rem;
}

.total-label {
    color: #2d1810;
    font-weight: 600;
}

.total-price {
    color: #FF8A00;
    font-weight: bold;
    font-size: 2rem;
}

.summary-includes {
    margin-bottom: 2rem;
}

.summary-includes h4 {
    margin-bottom: 1rem;
    color: #2d1810;
}

.summary-includes ul {
    list-style: none;
    padding: 0;
}

.summary-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #5d4037;
}

.summary-includes i {
    color: #00B4D8;
    font-size: 0.9rem;
}

.summary-includes .fa-percent {
    color: #FF8A00;
    font-weight: bold;
}

/* Bonus Credits Feature Styling */
#bonus-credits-feature {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 150, 199, 0.1) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0;
    animation: bonusGlow 2s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

#bonus-credits-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
    animation: bonusShine 3s ease-in-out infinite;
}

@keyframes bonusGlow {
    0% {
        box-shadow: 0 2px 8px rgba(0, 180, 216, 0.3);
    }
    100% {
        box-shadow: 0 4px 16px rgba(0, 180, 216, 0.5);
    }
}

@keyframes bonusShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

#bonus-credits-feature i {
    color: #00B4D8;
    font-size: 1.1rem;
    animation: giftBounce 2s ease-in-out infinite;
    margin-right: 0.5rem;
    position: relative;
    z-index: 1;
}

@keyframes giftBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.1);
    }
}

#bonus-credits-feature span {
    color: #00B4D8;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 180, 216, 0.3);
    position: relative;
    z-index: 1;
}

#bonus-credits-amount {
    color: #00B4D8 !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    text-shadow: 0 2px 4px rgba(0, 180, 216, 0.4) !important;
    animation: bonusNumberPulse 2s ease-in-out infinite;
}

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

/* Discount Breakdown Styling */
.discount-breakdown {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 150, 199, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 216, 0.15);
    animation: discountSlideIn 0.5s ease-out;
}

@keyframes discountSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discount-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
    margin: 0.75rem 0;
}

.subtotal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.subtotal-label {
    color: #5d4037;
    font-weight: 500;
}

.subtotal-value {
    color: #2d1810;
    font-weight: 600;
    font-size: 1.1rem;
}

.discount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.discount-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00B4D8;
    font-weight: 600;
    font-size: 0.95rem;
}

.discount-label i {
    color: #00B4D8;
    font-size: 1rem;
}

.discount-value {
    color: #00B4D8;
    font-weight: bold;
    font-size: 1.2rem;
    animation: discountPulse 2s ease-in-out infinite;
}

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

.savings-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 138, 0, 0.2);
    text-align: center;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.savings-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: savingsShine 3s ease-in-out infinite;
}

@keyframes savingsShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.savings-highlight i {
    color: #FF8A00;
    font-size: 1.5rem;
    animation: savingsBounce 2s ease-in-out infinite;
}

@keyframes savingsBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.savings-highlight span {
    color: #2d1810;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
    position: relative;
}

#savings-amount {
    color: #FF8A00;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255, 138, 0, 0.3);
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Centralized CTA Section */
.pricing-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto 2rem;
    max-width: 500px;
    text-align: center;
}

.pricing-cta-centered {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-cta-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pricing-cta-centered:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 138, 0, 0.4);
}

.pricing-cta-centered:hover::before {
    left: 100%;
}

/* Service Configuration Summary */
.service-config-summary {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(255, 138, 0, 0.05) 100%);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.service-config-summary h3 {
    color: #2d1810;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-config-summary h3 i {
    color: #00B4D8;
}

.config-details {
    display: grid;
    gap: 0.75rem;
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

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

.config-label {
    color: #5d4037;
    font-weight: 500;
}

.config-value {
    color: #2d1810;
    font-weight: 600;
}

.config-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.config-channel-tag {
    background: linear-gradient(135deg, #00B4D8 0%, #0096C7 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.config-price-highlight {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 138, 0, 0.2);
}

.config-price-total {
    color: #FF8A00;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.config-price-note {
    color: #5d4037;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    color: #5d4037;
    font-size: 0.85rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9ff;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: #FF8A00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    height: 600px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scrollTestimonials 20s linear infinite;
}

.testimonial-column[data-column="2"] {
    animation-duration: 25s;
    animation-delay: -2s;
}

.testimonial-column[data-column="3"] {
    animation-duration: 18s;
    animation-delay: -4s;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    min-height: 200px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content p {
    color: #4a2c17;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #2d1810;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #FF8A00;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
}

.stat h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #5d4037;
    font-weight: 500;
}

.partner-logos {
    text-align: center;
}

.partner-logos h4 {
    margin-bottom: 2rem;
    color: #2d1810;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 1rem 2rem;
    background: #f8f9ff;
    border-radius: 8px;
    color: #FF8A00;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Main CTA */
.main-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.8) 15%, rgba(255, 107, 0, 0.8) 50%);
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.typewriter-container {
    margin: 2rem 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.2;
}

.typewriter-words {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.word {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
}

.word.highlight-word,
.highlight-word {
    background: linear-gradient(135deg, #00B4D8 0%, #0096C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: rgba(255, 255, 255, 0.9);
    margin-left: 0.1em;
    animation: cursorBlink 1s infinite;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-cta .btn-primary {
    background: white;
    color: #FF8A00;
}

.main-cta .btn-primary:hover {
    background: #f8f9ff;
}

.main-cta .btn-outline {
    border-color: white;
    color: white;
}

.main-cta .btn-outline:hover {
    background: white;
    color: #FF8A00;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #8d6e63;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF8A00;
    transform: translateY(-2px);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8d6e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF8A00;
}

.newsletter-signup {
    display: flex;
    margin-top: 1rem;
}

.newsletter-signup input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    background: #333;
    color: white;
}

.newsletter-signup input::placeholder {
    color: #8d6e63;
}

.newsletter-signup button {
    padding: 12px 16px;
    border: none;
    border-radius: 0 6px 6px 0;
    background: #FF8A00;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-signup button:hover {
    background: #4f46e5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #8d6e63;
    margin: 0;
}

.version-info {
    background: linear-gradient(135deg, #00B4D8 0%, #FF8A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

/* Service request modal needs more width for configuration summary */
#service-request-modal .modal-content {
    max-width: 650px;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #a1887f;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2d1810;
}

.demo-form,
.consultation-form,
.service-request-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea,
.consultation-form input,
.consultation-form select,
.consultation-form textarea,
.service-request-form input,
.service-request-form select,
.service-request-form textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus,
.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus,
.service-request-form input:focus,
.service-request-form select:focus,
.service-request-form textarea:focus {
    outline: none;
    border-color: #FF8A00;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes wordAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes typewriter {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes platformSlideIn {
    0% {
        transform: translateY(20%) scale(0.8);
        opacity: 0;
        filter: blur(8px);
    }
    50% {
        transform: translateY(-5%) scale(1.02);
        opacity: 0.8;
        filter: blur(2px);
    }
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes platformSlideOut {
    0% {
        transform: translateY(0%) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        transform: translateY(-20%) scale(0.8);
        opacity: 0;
        filter: blur(6px);
    }
}

@keyframes platformFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.02);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.98);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .typewriter-text {
        font-size: 2rem;
    }
    
    .typewriter-container {
        min-height: 80px;
    }

    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 16px;
    }

    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(25px);
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        padding: 2rem 1rem;
        gap: 0.5rem;
        transform: translateX(-120%);
    }

    .nav-menu.active {
        left: 10px;
        transform: translateX(0);
    }

    .nav-link {
        padding: 1rem 2rem;
        margin: 0;
        border-radius: 15px;
        justify-content: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
        box-shadow: 
            0 8px 25px rgba(99, 102, 241, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .nav-link span {
        font-size: 1.1rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0 0 0;
        padding: 2rem 1rem 0 1rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 15px;
    }

    .nav-btn-outline {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-btn-primary {
        background: linear-gradient(135deg, 
            rgba(255, 138, 0, 0.9) 0%, 
            rgba(255, 107, 0, 0.9) 100%
        );
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .automation-flow {
        flex-direction: column;
        gap: 0.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-arrow.flowing {
        animation: arrowFlowMobile 0.8s ease-in-out;
    }

    @keyframes arrowFlowMobile {
        0% {
            transform: rotate(90deg) translateY(-10px) scale(1);
            opacity: 0.6;
        }
        50% {
            transform: rotate(90deg) translateY(5px) scale(1.2);
            opacity: 1;
            text-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
        }
        100% {
            transform: rotate(90deg) translateY(0) scale(1);
            opacity: 0.8;
        }
    }

    .automation-flow {
        border-radius: 80px;
        padding: 1.5rem;
    }

    .automation-flow::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(255, 138, 0, 0.3), transparent);
        transform: translateX(-50%);
        animation: continuousFlowMobile 6s linear infinite;
        border-radius: 50px;
    }

    .automation-flow::after {
        border-radius: 100px;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    @keyframes continuousFlowMobile {
        0% {
            opacity: 0;
            transform: translateX(-50%) translateY(-100%);
        }
        20% {
            opacity: 1;
        }
        80% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: translateX(-50%) translateY(100%);
        }
    }

    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-options-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .pricing-sliders {
        padding: 1.5rem;
    }

    .channels-selector {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .channel-option {
        padding: 0.75rem;
    }

    .channel-option i {
        font-size: 1.3rem;
    }

    .channel-option span {
        font-size: 0.8rem;
    }

    .summary-card {
        padding: 1.5rem;
    }

    .platforms-slider-container {
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .platforms-slider {
        gap: 3rem;
    }

    .platform-slide {
        min-width: 120px;
        height: 100px;
        padding: 0.8rem;
    }

    .supported-platforms-full-width {
        padding: 2rem 0;
    }

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

    .platform-icon i {
        font-size: 1.8rem;
    }

    .platform-name {
        font-size: 0.8rem;
    }

    .supported-platforms-full-width .platforms-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .consulting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logos-container {
        gap: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    #service-request-modal .modal-content {
        max-width: 95%;
    }
    
    .service-config-summary {
        padding: 1rem;
    }
    
    .config-channels {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        height: 500px;
    }

    .testimonial-column[data-column="3"] {
        display: none;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        height: 400px;
    }

    .testimonial-column[data-column="2"],
    .testimonial-column[data-column="3"] {
        display: none;
    }

    .testimonial-card {
        padding: 1.5rem;
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .typewriter-text {
        font-size: 1.5rem;
    }
    
    .typewriter-container {
        min-height: 60px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .feature-card,
    .step {
        padding: 1.5rem;
    }

    .automation-flow {
        padding: 1.5rem;
    }

    .flow-item {
        width: 90px;
        height: 90px;
        gap: 0.25rem;
    }

    .flow-item i {
        font-size: 1.4rem;
    }

    .flow-item span {
        font-size: 0.7rem;
        text-align: center;
        line-height: 1.1;
    }

    .platforms-slider-container {
        height: 100px;
        margin-bottom: 1rem;
    }

    .platforms-slider {
        gap: 2.5rem;
        animation: slideLogos 15s linear infinite;
        -webkit-animation: slideLogos 15s linear infinite;
        min-width: calc(200% + 5rem);
    }

    .platform-slide {
        min-width: 100px;
        height: 80px;
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
    }

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

    .platform-name {
        font-size: 0.75rem;
    }

    /* Discount Breakdown Mobile Styles */
    .discount-breakdown {
        padding: 0.75rem;
    }

    .savings-highlight {
        padding: 0.75rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .savings-highlight i {
        font-size: 1.2rem;
    }

    .savings-highlight span {
        font-size: 0.9rem;
    }

    #savings-amount {
        font-size: 1.1rem;
    }

    /* Bonus Credits Mobile Styles */
    #bonus-credits-feature {
        padding: 0.5rem;
        margin: 0.25rem 0;
    }

    #bonus-credits-feature i {
        font-size: 1rem;
    }

    #bonus-credits-feature span {
        font-size: 1rem;
    }

    #bonus-credits-amount {
        font-size: 1.1rem !important;
    }

    .supported-platforms-full-width {
        padding: 1.5rem 0;
    }

    .supported-platforms-full-width .platforms-tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .package-options-horizontal {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .channels-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .channel-option {
        padding: 0.5rem;
    }

    .channel-option i {
        font-size: 1.2rem;
    }

    .channel-option span {
        font-size: 0.75rem;
    }

    .slider-value span:first-child {
        font-size: 1.5rem;
    }

    .total-price {
        font-size: 1.5rem;
    }
}

