:root {
    /* Theme Color Palette */
    --color-primary: #6B4EFF;
    --color-primary-glow: rgba(107, 78, 255, 0.4);
    --color-secondary: #3B82F6;
    --color-secondary-glow: rgba(59, 130, 246, 0.4);
    --color-dark: #0B0D17;
    --color-dark-card: rgba(26, 29, 46, 0.65);
    --color-text-main: #F9FAFB;
    --color-text-muted: #9CA3AF;
    --color-border: rgba(255, 255, 255, 0.08);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spaces & Radius */
    --radius-lg: 16px;
    --radius-2xl: 24px;
    --space-container: 1200px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(107, 78, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--space-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-main);
}

p {
    color: var(--color-text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-secondary);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

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

.section-tag, .tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-description, .section-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

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

/* Cards Grid */
.card, .showcase-item, .why-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card:hover, .showcase-item:hover, .why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 78, 255, 0.3);
    box-shadow: 0 12px 30px rgba(107, 78, 255, 0.1);
}

/* Showcase Grid - FIX FOR INDUSTRIES WE SERVE */
.showcase-grid, .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.showcase-item, .card {
    width: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.showcase-icon, .card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.showcase-item h3, .card-title, .card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.showcase-item p, .card-desc, .card p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Why Website Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.why-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--color-text-muted);
    font-size: 15px;
    margin: 0;
}

/* Form Section */
.form-section {
    background: radial-gradient(circle at top, rgba(107, 78, 255, 0.08) 0%, transparent 70%);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 48px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: white;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(107, 78, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-wrapper .btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    padding: 14px;
}

.about-text p,
.about-text .lead {
    color: #FFFFFF !important;
}

/* Footer */
footer {
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    text-align: center;
    background: rgba(11, 13, 23, 0.9);
}

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

footer a {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-grid, .card-grid, .why-grid {
        grid-template-columns: 1fr;
    }

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

    .form-wrapper {
        padding: 32px 24px;
    }
}
