/* ===========================
   Dark Theme Design System - V2
   =========================== */
:root {
    /* Green-Blue-Purple Color Palette */
    --primary-purple: #5e56f0;
    --primary-purple-dark: #4a42d9;
    --primary-purple-light: #7d77f5;
    --primary-blue: #3b82f6;
    --primary-green: #10b981;
    --accent-cyan: #06b6d4;
    --accent-teal: #14b8a6;
    
    /* Background Colors - Dark with Color Tints */
    --bg-dark: #0f1419;
    --bg-navy: #1a1f2e;
    --bg-card: #1e2533;
    --bg-card-hover: #252d3f;
    
    /* Gradient Backgrounds - Green-Blue-Purple */
    --gradient-hero: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #5e56f0 100%);
    --gradient-purple: linear-gradient(135deg, #5e56f0 0%, #4a42d9 100%);
    --gradient-blue: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --gradient-cta: linear-gradient(90deg, #4a42d9 0%, #5e56f0 100%);
    
    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    
    /* Border Colors */
    --border-default: #3d4558;
    --border-light: #4a5168;
    
    /* Shadows with Color Glow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
    --shadow-glow-purple: 0 0 30px rgba(94, 86, 240, 0.4);
    --shadow-glow-blue: 0 0 30px rgba(6, 182, 212, 0.4);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgb(255 255 255 / 96%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.navbar .nav-menu.active a,
.navbar.scrolled .nav-menu a {
    color: #222;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 36px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-purple);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================
   Hero Section - Dark Theme with Background
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.65;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 29, 41, 0.95) 0%, rgba(26, 29, 41, 0.6) 60%, rgba(26, 29, 41, 0.85) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 66, 217, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(94, 86, 240, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: var(--primary-green);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width:  100%;
}

.hero-stats-inline {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.stat-inline {
    text-align: center;
    position: relative;
    flex: 1;
}

.stat-inline:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.025em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3), 0 0 20px rgba(94, 86, 240, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4), 0 0 30px rgba(94, 86, 240, 0.3);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1.0625rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-green);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   Tech Stack Section
   =========================== */
.trust-section {
    padding: 6rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-section .section-header {
    margin-bottom: 4rem;
}

.trust-section .section-title {
    color: #1e293b;
}

.trust-section .section-description {
    color: #1e293b;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(94, 86, 240, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tech-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25), 0 0 15px rgba(94, 86, 240, 0.15);
}

.tech-item i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.tech-item span {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

/* ===========================
   Solution Section
   =========================== */
.solution-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(94, 86, 240, 0.1);
    color: var(--primary-purple);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(94, 86, 240, 0.25);
    box-shadow: 0 4px 12px rgba(94, 86, 240, 0.15);
    backdrop-filter: blur(10px);
}

/* Badge Color Variants */
.section-badge.badge-cyan-green {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.section-badge.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-section .section-title,
.pricing-section .section-description {
    color: #1e293b;
}

.pricing-section .section-description {
    color: #475569;
}

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

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.solution-card:hover {
    border-color: rgba(94, 86, 240, 0.5);
    box-shadow: 0 20px 40px rgba(94, 86, 240, 0.25);
    transform: translateY(-8px);
}

.solution-card.featured {
    border-color: rgba(94, 86, 240, 0.4);
    background: linear-gradient(135deg, rgba(94, 86, 240, 0.05) 0%, rgba(74, 66, 217, 0.05) 100%);
    box-shadow: 0 8px 24px rgba(94, 86, 240, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(94, 86, 240, 0.4);
    position: relative;
    overflow: hidden;
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.solution-icon i {
    font-size: 1.75rem;
    color: white;
}

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

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

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

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.solution-features i {
    color: var(--primary-purple);
    font-size: 1rem;
}

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

.solution-link:hover {
    color: var(--primary-green);
}

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

/* ===========================
   Platform Section
   =========================== */
.platform-section {
    padding: 6rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

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

.platform-section .section-title {
    color: #1e293b;
}

.platform-section .section-description {
    color: #475569;
}

.platform-section .section-badge {
    background: rgba(74, 66, 217, 0.1);
    color: var(--primary-purple);
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.platform-feature {
    display: flex;
    gap: 1.5rem;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(94, 86, 240, 0.35);
}

.feature-content h4 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #475569;
    line-height: 1.7;
}

/* ===========================
   Results Section
   =========================== */
.results-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(16, 185, 129, 0.05), rgba(94, 86, 240, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.result-card:hover {
    border-color: rgba(94, 86, 240, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(94, 86, 240, 0.25);
}

.result-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-purple);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(94, 86, 240, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover .result-icon {
    transform: scale(1.1) rotate(-5deg);
}

.result-icon i {
    font-size: 2rem;
    color: white;
}

.result-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.result-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.result-meta {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-badge {
    background: rgba(94, 86, 240, 0.15);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(94, 86, 240, 0.3);
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-header p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.step-duration {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

.adoption-benefits {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: #f8fafc;
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
}

.adoption-benefits h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item-inline {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item-inline i {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item-inline strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-item-inline p {
    color: #64748b;
    font-size: 0.875rem;
}

/* ===========================
   CTA Section - Purple Gradient
   =========================== */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--text-primary);
}

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

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a202c;
    background: white;
    transition: all 0.2s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: #94a3b8;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cta-form textarea {
    margin-bottom: 1rem;
    resize: vertical;
}

.cta-form button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.cta-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===========================
   Success Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease-out;
}

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

.modal-icon i {
    font-size: 2.5rem;
    color: white;
}

.modal-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

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

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-default);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-image-white {
    height: 28px;
    opacity: 0.95;
}

.footer-brand p {
    margin: 1rem 0;
    color: var(--text-tertiary);
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.footer-contact i {
    width: 20px;
}

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

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

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

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-default);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-purple);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-background {
        background-position: center center;
        opacity: 0.2;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .tech-stack {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.75rem;
    }
    
    .solution-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
