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

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary-color: #f97316;
    --accent-color: #14b8a6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --bg-dark: #1e293b;
    --border-color: #cbd5e1;
    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    --gradient-2: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-3: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.18);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 100%;
    padding: 0 2.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--primary-color);
    font-weight: 700;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 110px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(14, 165, 233, 0.2));
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.4));
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 0 var(--primary-dark);
    position: relative;
    top: 0;
}

.btn-primary:hover {
    top: 2px;
    box-shadow: 0 2px 0 var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 0 var(--border-color);
    position: relative;
    top: 0;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    top: 2px;
    box-shadow: 0 2px 0 var(--primary-dark);
}

.btn-primary-small {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4), 0 4px 0 #c2410c;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    position: relative;
    overflow: hidden;
}

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

.hero-cta .btn-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6), 0 2px 0 #c2410c;
    transform: translateY(-2px);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 0 rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3), 0 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(5px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(20, 184, 166, 0.2) 50%, rgba(249, 115, 22, 0.2) 100%);
    z-index: 1;
    animation: gradientShift 10s ease infinite;
    background-size: 100% 100%, 200% 200%;
}

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

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 80%; top: 30%; animation-delay: 2s; animation-duration: 18s; width: 12px; height: 12px; }
.particle:nth-child(3) { left: 20%; top: 70%; animation-delay: 4s; animation-duration: 15s; width: 6px; height: 6px; }
.particle:nth-child(4) { left: 70%; top: 60%; animation-delay: 1s; animation-duration: 20s; width: 10px; height: 10px; }
.particle:nth-child(5) { left: 50%; top: 40%; animation-delay: 3s; animation-duration: 14s; }
.particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 5s; animation-duration: 16s; width: 14px; height: 14px; }

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out, pulseBadge 3s ease-in-out infinite 0.8s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 4px 30px rgba(255, 255, 255, 0.3); }
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 0 40px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 1),
        0 0 80px rgba(14, 165, 233, 0.4);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.2s both;
    -webkit-font-smoothing: antialiased;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 25%, #7dd3fc 50%, #38bdf8 75%, #0ea5e9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
    filter: 
        drop-shadow(0 0 25px rgba(125, 211, 252, 0.9))
        drop-shadow(0 0 10px rgba(14, 165, 233, 0.8))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9))
        drop-shadow(0 2px 3px rgba(0, 0, 0, 1));
    font-weight: 900;
    text-shadow: 0 0 30px rgba(125, 211, 252, 0.5);
}

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

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    right: 0;
    height: 0.3em;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(20, 184, 166, 0.3) 100%);
    z-index: -1;
    transform: skewY(-1deg);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.75rem;
    line-height: 1.6;
    text-shadow: 
        0 0 30px rgba(0, 0, 0, 0.8),
        0 2px 15px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 1);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
    -webkit-font-smoothing: antialiased;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.03) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.solution-card {
    background: white;
    padding: 0;
    border-radius: 1.5rem;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.solution-card > *:not(.solution-image) {
    padding: 0 2.5rem;
}

.solution-card .solution-icon {
    padding: 0 2.5rem;
    margin-top: 1.5rem;
}

.solution-card h3,
.solution-card > p,
.solution-features,
.solution-link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.solution-card .solution-link {
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
    transition: height 0.4s ease;
    z-index: 0;
}

.solution-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.solution-card:hover::before {
    height: 100%;
}

.solution-card.featured {
    border-left: 6px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(251, 146, 60, 0.03) 100%);
}

.solution-card > * {
    position: relative;
    z-index: 1;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

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

.solution-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.solution-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.solution-link:hover {
    gap: 0.5rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
    position: relative;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-white) 100%);
}

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

.benefit-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-color);
    position: relative;
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--secondary-color);
}

.benefit-stat {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 rgba(14, 165, 233, 0.1);
}

.benefit-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: white;
    position: relative;
}

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

.industry-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: white;
    transition: all 0.3s ease;
    border: 3px solid var(--border-color);
    position: relative;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 1.5rem;
    padding: 3px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.industry-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Demo Section */
.demo {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, var(--bg-light) 100%);
}

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

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.demo-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.demo-features {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-features li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.demo-visual {
    position: relative;
}

.demo-placeholder {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    height: 450px;
}

.demo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 165, 233, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-placeholder:hover .demo-overlay {
    opacity: 1;
}

.demo-overlay p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
}

.demo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.play-button {
    width: 90px;
    height: 90px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 0 rgba(255, 255, 255, 0.3);
}

.play-button:active {
    transform: scale(1.05);
    box-shadow: 0 4px 0 rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.02) 0%, transparent 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.author-location {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-stats span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fef3c7 100%);
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.logo-item svg {
    max-width: 100%;
    height: auto;
}

.logo-item:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--text-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 25%, rgba(14, 165, 233, 0.1) 25%, rgba(14, 165, 233, 0.1) 50%, transparent 50%, transparent 75%, rgba(14, 165, 233, 0.1) 75%, rgba(14, 165, 233, 0.1));
    background-size: 40px 40px;
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

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

.step p {
    opacity: 0.9;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
}

.cta-form form {
    display: grid;
    gap: 1rem;
}

.cta-form input,
.cta-form select {
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.cta-form button {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--primary-color);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.footer-section h3 span {
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

    .demo-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 8rem 0 6rem;
        min-height: 70vh;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .solutions-grid,
    .benefits-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content,
.solution-card,
.benefit-card,
.industry-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.solution-card:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.solution-card:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

.stat {
    animation: scaleIn 0.6s ease-out;
}

.stat:nth-child(1) {
    animation-delay: 0.1s;
}

.stat:nth-child(2) {
    animation-delay: 0.2s;
}

.stat:nth-child(3) {
    animation-delay: 0.3s;
}

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