/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #131320;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --accent-orange: #ff6b35;
    --accent-purple: #b065f8;
    --accent-blue: #4da6ff;
    --neon-orange: rgba(255, 107, 53, 0.3);
    --neon-purple: rgba(176, 101, 248, 0.3);
    --neon-blue: rgba(77, 166, 255, 0.3);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0d0d14 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(176, 101, 248, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Hero Text */
.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: var(--accent-orange);
    color: #0a0a0f;
    box-shadow: 0 4px 20px var(--neon-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--neon-orange), 0 0 20px var(--neon-orange);
}

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

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background: var(--accent-purple);
    color: #0a0a0f;
    box-shadow: 0 4px 20px var(--neon-purple);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--neon-purple), 0 0 20px var(--neon-purple);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

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

/* Hero Visual / Dashboard */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard {
    width: 100%;
    max-width: 550px;
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 40px var(--neon-purple),
                0 0 20px var(--neon-blue);
    overflow: hidden;
    position: relative;
}

.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(77, 166, 255, 0.1), transparent 50%);
    pointer-events: none;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.icon-box::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
}

.icon-code::before {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M16 18l6-6-6-6M8 6l-6 6 6 6"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M16 18l6-6-6-6M8 6l-6 6 6 6"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.icon-brain::before {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-orange) 100%);
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.96-3.08 3 3 0 0 1-.34-5.58 2.5 2.5 0 0 1 1.32-4.24 2.5 2.5 0 0 1 1.98-3A2.5 2.5 0 0 1 9.5 2Z"/><path d="M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 14.5 2Z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.96-3.08 3 3 0 0 1-.34-5.58 2.5 2.5 0 0 1 1.32-4.24 2.5 2.5 0 0 1 1.98-3A2.5 2.5 0 0 1 9.5 2Z"/><path d="M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 14.5 2Z"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.icon-lightning::before {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-blue) 100%);
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.header-item:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--neon-blue);
}

.label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Dashboard Content */
.dashboard-content {
    padding: 32px;
}

.code-block {
    background: #0f0f16;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.code-line {
    color: var(--text-primary);
}

.code-keyword { color: var(--accent-purple); }
.code-variable { color: var(--accent-blue); }
.code-function { color: var(--accent-orange); }
.code-string { color: #7ec699; }
.code-property { color: #e0c080; }

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Dashboard Footer */
.dashboard-footer {
    padding: 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-green, #27c985);
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--accent-green); }
    50% { opacity: 0.7; box-shadow: 0 0 5px var(--accent-green); }
}

.status-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.status-text::before {
    content: '●';
    margin-right: 8px;
    color: var(--accent-green);
    font-size: 0.75rem;
}

/* Services */
.services {
    padding: 80px 0 90px;
    background: radial-gradient(circle at 8% 20%, rgba(176, 101, 248, 0.08), transparent 28%),
                radial-gradient(circle at 92% 70%, rgba(77, 166, 255, 0.07), transparent 30%),
                var(--bg-primary);
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.28), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(19, 19, 32, 0.92), rgba(10, 10, 15, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 166, 255, 0.38);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 0 0 32px rgba(77, 166, 255, 0.12);
}

.service-card-mvp { border-top-color: rgba(255, 107, 53, 0.8); }
.service-card-ai { border-top-color: rgba(176, 101, 248, 0.8); }
.service-card-ui { border-top-color: rgba(77, 166, 255, 0.8); }
.service-card-integrations { border-top-color: rgba(255, 107, 53, 0.65); }

.service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.03), 0 0 22px rgba(176, 101, 248, 0.08);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-result {
    margin-top: auto;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
}

/* Work Process */
.work-process {
    padding: 80px 0 90px;
    background: radial-gradient(circle at 12% 30%, rgba(255, 107, 53, 0.08), transparent 28%),
                radial-gradient(circle at 82% 14%, rgba(176, 101, 248, 0.08), transparent 30%),
                var(--bg-primary);
    position: relative;
}

.work-process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176, 101, 248, 0.28), transparent);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), #ff5fb8, var(--accent-orange));
    box-shadow: 0 0 12px rgba(176, 101, 248, 0.5);
    opacity: 0.85;
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 52px 24px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(19, 19, 32, 0.92), rgba(10, 10, 15, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 101, 248, 0.42);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 0 0 32px rgba(176, 101, 248, 0.12);
}

.process-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #151626;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 16px rgba(77, 166, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.process-step:nth-child(2) .process-number { border-color: var(--accent-purple); box-shadow: 0 0 16px rgba(176, 101, 248, 0.55); }
.process-step:nth-child(3) .process-number { border-color: #ff5fb8; box-shadow: 0 0 16px rgba(255, 95, 184, 0.48); }
.process-step:nth-child(4) .process-number { border-color: var(--accent-orange); box-shadow: 0 0 16px rgba(255, 107, 53, 0.5); }

.process-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.process-icon-discovery { color: var(--accent-blue); text-shadow: 0 0 18px rgba(77, 166, 255, 0.7); }
.process-icon-ai { color: #ff6fae; text-shadow: 0 0 18px rgba(255, 111, 174, 0.68); }
.process-icon-test { color: var(--accent-purple); text-shadow: 0 0 18px rgba(176, 101, 248, 0.72); }
.process-icon-launch { color: var(--accent-orange); text-shadow: 0 0 18px rgba(255, 107, 53, 0.7); }

.process-icon-ai {
    font-size: 1.25rem;
}

.process-content h3 {
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0 100px;
    background: radial-gradient(circle at 15% 0%, rgba(77, 166, 255, 0.08), transparent 30%),
                radial-gradient(circle at 90% 10%, rgba(255, 107, 53, 0.08), transparent 28%),
                var(--bg-primary);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 18px var(--accent-blue);
}

.section-title {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.projects-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.projects-link:hover {
    color: var(--text-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(19, 19, 32, 0.92), rgba(10, 10, 15, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 101, 248, 0.42);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 35px rgba(176, 101, 248, 0.14);
}

.project-card-study { border-top-color: rgba(77, 166, 255, 0.75); }
.project-card-analytics { border-top-color: rgba(176, 101, 248, 0.8); }
.project-card-launch { border-top-color: rgba(255, 107, 53, 0.8); }

.project-preview {
    min-height: 190px;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf4ff 0%, #f7f8ff 54%, #cfe4ff 100%);
    color: #0d1020;
}

.project-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 25%, rgba(77, 166, 255, 0.22), transparent 34%);
    pointer-events: none;
}

.preview-topbar,
.study-preview-content,
.launch-layout {
    position: relative;
    z-index: 1;
}

.preview-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.preview-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(10, 10, 15, 0.78);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
}

.preview-logo {
    font-size: 0.78rem;
    font-weight: 800;
}

.preview-title {
    max-width: 220px;
    font-size: 1.3rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 10px;
}

.preview-text {
    max-width: 190px;
    font-size: 0.78rem;
    line-height: 1.45;
    opacity: 0.72;
    margin-bottom: 18px;
}

.preview-button {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    font-size: 0.72rem;
    font-weight: 700;
}

.study-preview-content,
.launch-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.chart-card {
    width: 128px;
    min-height: 126px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 16px 40px rgba(77, 166, 255, 0.2);
}

.chart-card span {
    display: block;
    color: #6c7290;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.chart-card strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.chart-line {
    height: 46px;
    border-bottom: 2px solid rgba(77, 166, 255, 0.25);
    background: linear-gradient(140deg, transparent 35%, rgba(77, 166, 255, 0.45) 36%, transparent 39%, transparent 54%, rgba(176, 101, 248, 0.5) 56%, transparent 59%);
}

.dark-preview {
    color: #ffffff;
    background: radial-gradient(circle at 72% 50%, rgba(176, 101, 248, 0.34), transparent 28%),
                linear-gradient(135deg, #0b0d18 0%, #11172a 100%);
}

.dark-preview::after {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.18;
}

.analytics-wave {
    position: absolute;
    inset: 76px 18px 26px;
    z-index: 1;
}

.analytics-wave span {
    position: absolute;
    left: 8%;
    right: 2%;
    top: 44%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), var(--accent-orange), transparent);
    transform: rotate(-12deg);
    box-shadow: 0 0 24px rgba(176, 101, 248, 0.75);
}

.analytics-wave span:nth-child(2) {
    top: 58%;
    opacity: 0.75;
    transform: rotate(9deg);
}

.analytics-wave span:nth-child(3) {
    top: 35%;
    opacity: 0.5;
    transform: rotate(-22deg);
}

.launch-preview {
    color: #ffffff;
    background: radial-gradient(circle at 88% 24%, rgba(255, 107, 53, 0.28), transparent 34%),
                linear-gradient(135deg, #17122a 0%, #071224 100%);
}

.launch-preview::after {
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.12), transparent);
}

.mini-dashboard {
    width: 130px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(9, 10, 20, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-dashboard span {
    display: block;
    height: 24px;
    margin-bottom: 10px;
    border-radius: 7px;
    background: linear-gradient(90deg, rgba(77, 166, 255, 0.3), rgba(176, 101, 248, 0.42));
}

.mini-dashboard span:last-child {
    margin-bottom: 0;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.4), rgba(176, 101, 248, 0.45));
}

.project-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.project-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.project-tags span {
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .dashboard {
        max-width: 450px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

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

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

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .dashboard {
        max-width: 100%;
    }
    
    .dashboard-header {
        padding: 20px 24px;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
    }
    
    .dashboard-content {
        padding: 24px;
    }
    
    .code-block {
        padding: 16px;
        font-size: 0.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-card {
        padding: 16px;
    }
    
    .dashboard-footer {
        padding: 20px 24px;
    }

    .featured-projects {
        padding: 64px 0 76px;
    }

    .services {
        padding: 64px 0 72px;
    }

    .work-process {
        padding: 64px 0 72px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .project-preview {
        min-height: 210px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-left: 24px;
    }

    .process-timeline::before {
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--accent-orange), var(--accent-purple), var(--accent-blue));
    }

    .process-step::before {
        content: '';
        position: absolute;
        top: 32px;
        left: -31px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent-blue);
        box-shadow: 0 0 18px var(--accent-blue);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .header-item {
        gap: 8px;
    }
    
    .icon-box {
        width: 36px;
        height: 36px;
    }
    
    .label {
        font-size: 0.75rem;
    }

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

    .project-card {
        padding: 14px;
        border-radius: 16px;
    }

    .service-card {
        padding: 20px;
        border-radius: 16px;
    }

    .process-step {
        padding: 52px 20px 20px;
        border-radius: 16px;
    }

    .process-number {
        width: 28px;
        height: 28px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .project-preview {
        padding: 18px;
        min-height: 230px;
    }

    .study-preview-content,
    .launch-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .chart-card,
    .mini-dashboard {
        width: 100%;
    }
}

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

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Glitch Effect for Title */
.hero-title {
    position: relative;
}

.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-title::before {
    color: var(--accent-orange);
    z-index: -1;
}

.hero-title::after {
    color: var(--accent-purple);
    z-index: -2;
}

.hero-title:hover::before {
    animation: glitch-1 0.3s infinite linear alternate-reverse;
}

.hero-title:hover::after {
    animation: glitch-2 0.3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 80% 0); transform: translate(-2px, 1px); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 1px); }
    100% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -1px); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(10% 0 60% 0); transform: translate(2px, -1px); }
    20% { clip-path: inset(30% 0 20% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(70% 0 30% 0); transform: translate(2px, 1px); }
    60% { clip-path: inset(20% 0 70% 0); transform: translate(-2px, -2px); }
    80% { clip-path: inset(50% 0 40% 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(80% 0 10% 0); transform: translate(-2px, 1px); }
}
