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

:root {
    /* Colors */
    --primary: 222 47% 11%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96%;
    --secondary-foreground: 222 47% 11%;
    --accent: 199 89% 48%;
    --accent-foreground: 210 40% 98%;
    --background: 0 0% 100%;
    --foreground: 222 47% 11%;
    --muted: 210 40% 96%;
    --muted-foreground: 215 16% 47%;
    --border: 214 32% 91%;
    --card: 0 0% 100%;
    --card-foreground: 222 47% 11%;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(199, 89%, 48%), hsl(189, 94%, 43%));
    --gradient-blue: linear-gradient(135deg, #3b82f6, #06b6d4, #14b8a6);
    --gradient-purple: linear-gradient(135deg, #a855f7, #ec4899, #f43f5e);
    --gradient-orange: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
    --gradient-green: linear-gradient(135deg, #10b981, #059669, #14b8a6);
    --gradient-pink: linear-gradient(135deg, #ec4899, #f43f5e, #ec4899);
    --gradient-indigo: linear-gradient(135deg, #6366f1, #8b5cf6, #6366f1);
    --gradient-red: linear-gradient(135deg, #ef4444, #f97316);
    --gradient-gray: linear-gradient(135deg, #64748b, #475569);
    --gradient-sky: linear-gradient(135deg, #0ea5e9, #3b82f6);
    --gradient-yellow: linear-gradient(135deg, #eab308, #f59e0b);
    --gradient-amber: linear-gradient(135deg, #f59e0b, #f97316);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(var(--accent));
}

.btn-light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(var(--border));
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

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

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

.logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    transition: transform 0.3s ease;
}

.logo-icon i {
    color: white;
    font-size: 1.25rem;
}

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

.logo-text {
    font-size: 1.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

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

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.mobile-menu-btn {
    display: block;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(6, 182, 212, 0.1);
}

.mobile-menu {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: hsl(var(--accent));
}

.hidden {
    display: none !important;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    animation: fadeIn 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-badge i {
    color: hsl(var(--accent));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    animation: slideUp 0.8s ease 0.3s both;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: slideUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: slideUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.3);
}

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

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

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background: linear-gradient(to bottom, hsl(var(--secondary)), hsl(var(--background)));
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.bg-blur-1 {
    top: 0;
    left: 25%;
    background: rgba(6, 182, 212, 0.1);
}

.bg-blur-2 {
    bottom: 0;
    right: 25%;
    background: rgba(168, 85, 247, 0.1);
}

.bg-float {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.bg-float-1 {
    top: 25%;
    left: 0;
    background: rgba(6, 182, 212, 0.05);
}

.bg-float-2 {
    bottom: 25%;
    right: 0;
    background: rgba(168, 85, 247, 0.05);
    animation-delay: 1.5s;
}

.bg-float-3 {
    top: 33%;
    right: 0;
    background: rgba(168, 85, 247, 0.05);
}

.bg-float-4 {
    bottom: 33%;
    left: 0;
    background: rgba(6, 182, 212, 0.05);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.industry-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle, rgba(6, 182, 212, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 0.8s ease;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge i {
    color: hsl(var(--accent));
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease both;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .shimmer {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

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

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

.gradient-blue { background: var(--gradient-blue); }
.gradient-purple { background: var(--gradient-purple); }
.gradient-orange { background: var(--gradient-orange); }
.gradient-green { background: var(--gradient-green); }
.gradient-pink { background: var(--gradient-pink); }
.gradient-indigo { background: var(--gradient-indigo); }
.gradient-red { background: var(--gradient-red); }
.gradient-gray { background: var(--gradient-gray); }
.gradient-sky { background: var(--gradient-sky); }
.gradient-yellow { background: var(--gradient-yellow); }
.gradient-amber { background: var(--gradient-amber); }

.feature-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-desc {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-image {
    width: 100%;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    animation: scaleIn 0.6s ease both;
}

.solution-card:hover {
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
    transform: translateY(-5px);
}

.solution-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.solution-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card:hover .solution-bg {
    opacity: 0.05;
}

.solution-content {
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.solution-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    margin-top: -3.5rem;
}

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

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

.solution-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-desc {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
}

.solution-btn {
    background: transparent;
    border: none;
    color: hsl(var(--foreground));
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.solution-btn:hover {
    color: hsl(var(--accent));
}

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

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

.solution-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.industry-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease both;
    text-decoration: none;
    color: inherit;
    display: block;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.industry-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card:hover .industry-bg {
    opacity: 0.1;
}

.industry-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

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

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

.industry-name {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-desc {
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.industry-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(var(--accent));
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.industry-card:hover .industry-link {
    opacity: 1;
    transform: translateY(0);
}

.industry-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-line {
    transform: scaleX(1);
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

.case-study-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease both;
}

.case-study-card:hover {
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

.case-study-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.case-study-card:hover .case-study-bg {
    opacity: 0.05;
}

.case-study-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.case-study-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-section {
    margin-bottom: 1.25rem;
}

.case-study-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(var(--accent));
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-text {
    color: hsl(var(--foreground));
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-study-results {
    list-style: none;
}

.case-study-results li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
    font-size: 0.95rem;
}

.case-study-results i {
    color: hsl(var(--accent));
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.case-study-btn {
    background: transparent;
    border: none;
    color: hsl(var(--foreground));
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.case-study-btn:hover {
    color: hsl(var(--accent));
}

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

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

.case-study-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-line {
    transform: scaleX(1);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info .section-title {
    text-align: left;
    font-size: 2.5rem;
}

.contact-info .section-badge {
    margin-bottom: 1rem;
}

.contact-desc {
    color: hsl(var(--muted-foreground));
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.contact-text p {
    color: hsl(var(--muted-foreground));
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-text a {
    color: hsl(var(--accent));
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, hsl(222, 47%, 11%), hsl(215, 28%, 17%));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.15), transparent 50%),
                      radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.15), transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    color: white;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 5rem 0 2rem;
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.footer .logo-icon i {
    font-size: 1.125rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: hsl(var(--accent));
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--accent));
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: hsl(var(--accent));
    width: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: hsl(var(--accent));
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

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

    .section {
        padding: 4rem 0;
    }

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

    .hero-stats {
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

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

    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* Industry Page Styles */
.industry-hero {
    padding: 10rem 0 6rem;
    position: relative;
    background: linear-gradient(135deg, hsl(222, 47%, 11%), hsl(215, 28%, 17%));
    color: white;
    text-align: center;
}

.industry-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.2), transparent 50%);
}

.industry-hero-content {
    position: relative;
    z-index: 10;
}

.industry-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.industry-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
}

.industry-content {
    padding: 5rem 0;
}

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

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.content-list i {
    color: hsl(var(--accent));
    margin-top: 0.25rem;
}

.content-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}