/* ============================================
   GLOBAL STYLES - Modern Premium Design (Dark Theme)
   ============================================ */

:root {
    --primary-color: #f1f5f9;
    --secondary-color: #e2e8f0;
    --accent-color: #0ea5e9;
    --accent-light: #06b6d4;
    --accent-secondary: #f59e0b;
    --text-dark: #f1f5f9;
    --text-light: #cbd5e1;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --border-color: #334155;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

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

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
    max-width: 140px;
    white-space: nowrap;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-plus {
    color: var(--accent-secondary) !important;
    -webkit-text-fill-color: var(--accent-secondary) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 1;
    overflow: hidden;
    text-overflow: clip;
    font-family: 'Segoe UI', sans-serif;
    animation: rainbowPulse 3s ease-in-out infinite;
}

@keyframes rainbowPulse {
    0% {
        color: var(--accent-color);
        text-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
    }
    25% {
        color: var(--accent-light);
        text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
    }
    50% {
        color: #06b6d4;
        text-shadow: 0 0 16px rgba(139, 92, 246, 0.8);
    }
    75% {
        color: var(--accent-secondary);
        text-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
    }
    100% {
        color: var(--accent-color);
        text-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
    }
}

.logo-icon {
    font-size: 2rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* ============================================
   HAMBURGER MENU - Mobile Navigation
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu State */
.nav-menu.active {
    display: flex !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    filter: drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.3));
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 100%;
    font-weight: 500;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--bg-white);
    border: 2px solid var(--accent-secondary);
    padding: 1.4rem 3rem;
    border-radius: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

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

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.6), 0 0 20px rgba(245, 158, 11, 0.4);
    border-color: var(--accent-light);
}

/* ============================================
   TRUST SIGNALS / STATS SECTION
   ============================================ */

.trust-signals {
    background: transparent;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    width: 100%;
}

.stats-grid {
    display: flex;
    gap: 6rem;
    width: fit-content;
    animation: marqueeScroll 40s linear infinite;
    padding: 0;
}

.stat-item {
    text-align: center;
    padding: 0.8rem 2rem;
    flex-shrink: 0;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

.stat-icon {
    font-size: 1.6rem;
    display: inline-block;
    flex-shrink: 0;
}

.stat-item p {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.image-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border: 2px dashed #94a3b8;
    position: relative;
    overflow: hidden;
}

.image-placeholder span {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-xl);
}

.hero-placeholder span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.service-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
}

.industry-placeholder {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

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

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.3));
}

.section-header p {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 100%;
    width: 100%;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-light);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.step {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.step:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--bg-white);
    transform: scale(1.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step:hover .step-number {
    opacity: 1;
    -webkit-text-fill-color: var(--bg-white);
}

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step:hover h3 {
    color: var(--bg-white);
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500;
}

.step:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 100%;
    width: 100%;
}

.advantage-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.advantage-card:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--bg-white);
    transform: scale(1.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.advantage-card:hover h3 {
    color: var(--bg-white);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500;
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   LIFECYCLE MANAGEMENT SECTION
   ============================================ */

.lifecycle-management {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.lifecycle-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.9;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 100%;
    width: 100%;
    margin-bottom: 4rem;
}

.lifecycle-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.lifecycle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.lifecycle-card:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--bg-white);
    transform: scale(1.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

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

.lifecycle-step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.lifecycle-card:hover .lifecycle-step-number {
    opacity: 1;
    -webkit-text-fill-color: var(--bg-white);
}

.lifecycle-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.lifecycle-card:hover h3 {
    color: var(--bg-white);
}

.lifecycle-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500;
}

.lifecycle-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.lifecycle-benefit {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 3rem;
    border-radius: 1rem;
    border: 2px solid var(--accent-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: subtlePulse 4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.3);
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.3);
        border-color: var(--accent-color);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(14, 165, 233, 0.15);
        border-color: var(--accent-light);
    }
}

.lifecycle-benefit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 8s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.lifecycle-benefit h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.lifecycle-benefit p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
    width: 100%;
}

.industry-item {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 250px;
    justify-content: center;
}

.industry-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.industry-logo {
    font-size: 4rem;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.industry-item:hover .industry-logo {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
}

.industry-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.industry-item:hover .industry-icon {
    transform: scale(1.2);
}

.industry-item p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.industry-item p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    background: var(--bg-white);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 1rem 0;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card.visible {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.review-card:nth-child(1).visible {
    animation-delay: 0s;
}

.review-card:nth-child(2).visible {
    animation-delay: 0.2s;
}

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

@keyframes slideRightContinuous {
    0%, 100% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(20px);
    }
}

.review-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.review-stars {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.review-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: normal;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-name {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 0.95rem;
}

.review-role {
    display: none;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: var(--bg-white);
    color: var(--primary);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.3));
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary);
}

.cta-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

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

.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 5rem 2rem 2rem;
    margin-top: 8rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-color);
}

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

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

.footer-column a {
    color: var(--text-light);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    display: flex;
    gap: 2rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-right a {
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
}
    padding: 1.5rem 0;
}

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

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }

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

    .hero-content h1 {
        font-size: 2rem;
        white-space: normal;
    }

    .hero-content p {
        text-align: center;
    }

    .cta-button {
        margin: 0 auto;
        display: block;
    }

    .hero-visual {
        height: 300px;
    }

    .box-1 {
        width: 150px;
        height: 150px;
    }

    .box-2 {
        width: 120px;
        height: 120px;
    }

    .box-3 {
        width: 90px;
        height: 90px;
    }

    /* HAMBURGER MENU: Hide regular menu, show hamburger icon */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        gap: 0;
        list-style: none;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .nav-menu.active {
        max-height: 650px;
        padding: 1rem 2rem;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1rem;
        display: block;
        color: var(--text-dark);
    }

    .nav-link::after {
        display: none;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .services {
        padding: 2rem 1rem; /* Reduced from 4rem to 2rem for mobile */
    }

    .how-it-works {
        padding: 2rem 1rem; /* Reduced from 4rem to 2rem for mobile */
    }

    .why-us {
        padding: 2rem 1rem; /* Reduced from 4rem to 2rem for mobile */
    }

    .industries {
        padding: 2rem 1rem; /* Reduced from 4rem to 2rem for mobile */
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .advantage-card:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        list-style: none;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 350px;
        padding: 1rem 2rem;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 0.95rem;
        display: block;
    }

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

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 auto;
        display: block;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }

.advantages-grid .advantage-card:nth-child(1) { transition-delay: 0.1s; }
.advantages-grid .advantage-card:nth-child(2) { transition-delay: 0.2s; }
.advantages-grid .advantage-card:nth-child(3) { transition-delay: 0.3s; }
.advantages-grid .advantage-card:nth-child(4) { transition-delay: 0.4s; }
.advantages-grid .advantage-card:nth-child(5) { transition-delay: 0.5s; }
.advantages-grid .advantage-card:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* Mobile responsive form */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem; /* Reduce padding on mobile */
    }
    
    .contact-form {
        padding: 1.5rem; /* Reduce form padding on mobile */
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem; /* Even smaller padding for tiny screens */
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-status {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    color: #10b981;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25d366 0%, #1fa85c 100%);
    color: white;
    border-radius: 50%;
    border: 3px solid #128c7e;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #1fa85c 0%, #128c7e 100%);
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Mobile: Smaller WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
        font-size: 20px;
    }
}

.whatsapp-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    fill: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.form-status.error {
    color: #ef4444;
}

