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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #999999;
    --accent-orange: #FF6B35;
    --accent-pink: #FF1493;
    --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 50%, #FF1493 100%);
    --accent-gradient-hover: linear-gradient(135deg, #FF8E53 0%, #FF6B35 50%, #FF1493 100%);
    --border-color: #2a2a2a;
    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.btn-secondary-nav {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-secondary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.waveform-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0.5;
    animation: waveform 3s ease-in-out infinite;
}

.hero-water {
    position: absolute;
    inset: 0;
    z-index: 0;
}
@keyframes waveform {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.2);
    }
}

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

.hero-logo {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-headline .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 53, 0.2));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-subheadline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Cursor Sparks overlay */
.cursor-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.spark-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.9) 0%, rgba(255, 107, 53, 0.2) 60%, transparent 70%);
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.6), 0 0 24px rgba(255, 20, 147, 0.4);
    mix-blend-mode: screen;
    opacity: 0.9;
    animation: sparkFloat var(--float-duration, 6s) ease-in-out infinite;
    transform: translate3d(0,0,0);
}

.spark-dot.alt {
    background: radial-gradient(circle, rgba(255, 20, 147, 0.9) 0%, rgba(255, 20, 147, 0.2) 60%, transparent 70%);
}

@keyframes sparkFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translate3d(0, -8px, 0) scale(1.15);
        opacity: 1;
    }
}

.parallax-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.18;
    transform: translate3d(0,0,0) scale(1);
    transition: transform 0.2s ease-out;
}

.parallax-shape.s1 {
    width: 260px;
    height: 260px;
    background: var(--accent-gradient);
    left: 12%;
    top: 28%;
}

.parallax-shape.s2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.6), rgba(255, 20, 147, 0.1));
    left: 72%;
    top: 22%;
}

.parallax-shape.s3 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
    left: 40%;
    top: 68%;
}
/* Product Showcase */
.product-showcase {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.product-copy {
    flex: 1;
    min-width: 260px;
}

.product-copy h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-lead {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-bullets {
    list-style: none;
    padding-left: 0;
}

.product-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.product-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange);
}

.product-image-wrapper {
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    margin-left: auto;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
    transition: transform 0.25s ease;

    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.hero .btn-primary {
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 18px 36px;
    border-radius: 10px;
    background-size: 200% 200%;
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
    border: 1px solid rgba(255, 107, 53, 0.45);
    letter-spacing: 0.2px;
}

.hero .btn-primary::after {
    content: "→";
    display: inline-block;
    margin-left: 10px;
    transform: translateX(0);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.9;
}

.hero .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-22deg);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.45);
    background: var(--accent-gradient-hover);
}

.hero .btn-primary:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.hero .btn-primary:hover::before {
    transform: translateX(280%) skewX(-22deg);
    opacity: 1;
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Customers Section */
.customers {
    background: var(--bg-primary);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.customer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.customer-logo:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.logo-placeholder {
    width: 100%;
    max-width: 200px;
    height: 100px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.customer-logo:hover .logo-placeholder {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.logo-text {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 0 16px;
}

/* Replace logo-placeholder with actual logo image when available */
.customer-logo img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.25s ease, filter 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* What is VoxSetu */
.what-is {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.what-is-content {
    margin: 0 auto;
    text-align: center;
}

.what-is .section-header {
    margin-bottom: 16px;
}

.what-is::before {
    content: "";
    position: absolute;
    inset: 0;
    display: none;
    mix-blend-mode: screen;
    opacity: 0.6;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.what-is.cursor-active::before {
    opacity: 0.8;
}

.what-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.what-sparks .spark-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.9) 0%, rgba(255, 107, 53, 0.2) 60%, transparent 70%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 18px rgba(255, 20, 147, 0.35);
    mix-blend-mode: screen;
    opacity: 0.9;
    animation: sparkFloat var(--float-duration, 6s) ease-in-out infinite;
    transform: translate3d(0,0,0);
}

.what-sparks .spark-dot.alt {
    background: radial-gradient(circle, rgba(255, 20, 147, 0.9) 0%, rgba(255, 20, 147, 0.2) 60%, transparent 70%);
}

.lead-text {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    white-space: pre-line;
}

.what-is-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
    border-color: var(--accent-orange);
}

.feature-item:hover .feature-icon {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.25);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Capabilities */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.capability-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.capability-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.capability-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.capability-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Use Cases */
.use-cases {
    background: var(--bg-secondary);
}

.use-cases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.use-case-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex: 1 1 300px;
    max-width: 400px;
}

.use-case-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-orange);
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.industry-tile {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.industry-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange);
    background: var(--bg-tertiary);
}

.industry-tile h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.industry-tile p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Why VoxSetu */
.why-voxsetu {
    background: var(--bg-secondary);
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.why-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    flex: 1 1 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.why-number {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    margin-bottom: 16px;
    transition: all 0.4s ease;
    display: inline-block;
    opacity: 0.7;
}

.why-item:hover .why-number {
    -webkit-text-stroke: 0px transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.35));
}

.why-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* How It Works */
.how-it-works {
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    color: var(--text-primary);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
    margin-top: 32px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
    }
}

/* Language & Global */
.language-global {
    background: var(--bg-secondary);
}

.language-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.language-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.language-features {
    list-style: none;
}

.language-features li {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

.language-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    z-index: 10;
    transition: none;
}

.globe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.video-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0;
    pointer-events: none;
    display: none;
}

.video-container:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.video-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    letter-spacing: 0.4px;
}

.video-control {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-primary);
    border: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.video-control:hover {
    background: rgba(10, 10, 10, 0.75);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 100%;
    }
    .video-container {
        width: 100%;
        height: 400px;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .language-content {
        grid-template-columns: 1fr;
    }
    .video-container {
        height: 300px;
    }
}







/* Security & Trust */
.security-trust {
    background: var(--bg-primary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.security-item {
    text-align: center;
    padding: 32px;
}

.security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Final CTA */
.final-cta {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.final-cta .btn-primary {
    position: relative;
    overflow: hidden;
    padding: 20px 44px;
    border-radius: 12px;
    background-size: 200% 200%;
    box-shadow: 0 14px 36px rgba(255, 107, 53, 0.4);
    border: 1px solid rgba(255, 107, 53, 0.5);
    letter-spacing: 0.3px;
}

.final-cta .btn-primary::after {
    content: "→";
    display: inline-block;
    margin-left: 12px;
    transform: translateX(0);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.9;
}

.final-cta .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-22deg);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 48px rgba(255, 107, 53, 0.48);
    background: var(--accent-gradient-hover);
}

.final-cta .btn-primary:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.final-cta .btn-primary:hover::before {
    transform: translateX(280%) skewX(-22deg);
    opacity: 1;
}

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

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.cta-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.cta-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.cta-divider span {
    padding: 0 16px;
    color: var(--text-tertiary);
    position: relative;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.footer-company {
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 14px;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .capabilities-grid,
    .use-cases-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .logo-placeholder {
        height: 80px;
    }
    
    .logo-text {
        font-size: 14px;
    }
}
