/* ===================================
   RESET & BASE
   =================================== */

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

:root {
    /* White/Light backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-elevated: #FFFFFF;

    /* Blues */
    --blue-primary: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-light: #3B82F6;
    --blue-lighter: #60A5FA;
    --blue-pale: #93C5FD;

    /* Grays */
    --gray-100: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Semantic */
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-tertiary: #6B7280;

    /* Effects */
    --glow-blue: 0 0 20px rgba(37, 99, 235, 0.15);
    --glow-blue-strong: 0 0 30px rgba(37, 99, 235, 0.3);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;
}

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

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

.section {
    padding: var(--section-padding);
    position: relative;
}

/* Additional floating tech decorations throughout page */
.container {
    position: relative;
}

.capabilities .container::before,
.why-us .container::before,
.lifecycle .container::after,
.cloud-api .container::before,
.growth .container::after,
.cases .container::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.capabilities .container::before {
    content: 'API';
    position: absolute;
    top: 50%;
    right: 5%;
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.1);
    z-index: 0;
    pointer-events: none;
    animation: float 35s ease-in-out infinite;
}

.why-us .container::before {
    content: '▲';
    position: absolute;
    bottom: 10%;
    right: 8%;
    font-size: 48px;
    color: rgba(16, 185, 129, 0.30);
    z-index: 0;
    pointer-events: none;
    animation: float 35s ease-in-out infinite;
}

.lifecycle .container::after {
    content: '📋→🎯';
    position: absolute;
    bottom: 15%;
    left: 10%;
    font-size: 32px;
    opacity: 0.30;
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 30s ease-in-out infinite;
}

.cloud-api .container::before {
    content: 'function()';
    position: absolute;
    top: 50%;
    right: 6%;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    color: rgba(139, 92, 246, 0.28);
    z-index: 0;
    pointer-events: none;
    animation: float 38s ease-in-out infinite;
}

.growth .container::after {
    content: '📈';
    position: absolute;
    top: 30%;
    right: 5%;
    font-size: 56px;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
    animation: float 32s ease-in-out infinite;
}

.cases .container::after {
    content: '📊';
    position: absolute;
    top: 40%;
    left: 6%;
    font-size: 52px;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 34s ease-in-out infinite;
}

/* Additional thematic decorations */
.capabilities-grid::before {
    content: '=> λ';
    position: absolute;
    top: 20%;
    left: 3%;
    font-family: 'Courier New', monospace;
    font-size: 36px;
    font-weight: bold;
    color: rgba(16, 185, 129, 0.25);
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 28s ease-in-out infinite;
}

.capabilities-grid::after {
    content: '📧 engage';
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
    animation: float 32s ease-in-out infinite;
}

.lifecycle-timeline::after {
    content: '✓ sprint';
    position: absolute;
    right: 5%;
    top: 30%;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(59, 130, 246, 0.25);
    z-index: -1;
    pointer-events: none;
    animation: float 32s ease-in-out infinite;
}

.growth-layout::before {
    content: '↗ +40%';
    position: absolute;
    top: 10%;
    right: 3%;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.28);
    z-index: 0;
    pointer-events: none;
    animation: float 26s ease-in-out infinite;
}

.cloud-features::before {
    content: 'git push';
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.25);
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 35s ease-in-out infinite;
}

.reasons-grid::before {
    content: '🎯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.cases-grid::before {
    content: 'research';
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: rgba(139, 92, 246, 0.25);
    z-index: 0;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

.architecture-diagram::before {
    content: '< API />';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.28);
    z-index: 1;
    pointer-events: none;
}

.contact-form::before {
    content: '💬';
    position: absolute;
    top: -40px;
    right: 20px;
    font-size: 72px;
    opacity: 0.20;
    z-index: 0;
    pointer-events: none;
}

.contact-form::after {
    content: '→ follow-up';
    position: absolute;
    bottom: -30px;
    left: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(16, 185, 129, 0.28);
    z-index: 0;
    pointer-events: none;
}

/* Product & coding specific decorations */
.hero-visual::before {
    content: 'async';
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    color: rgba(139, 92, 246, 0.28);
    z-index: 0;
    pointer-events: none;
    animation: float 28s ease-in-out infinite;
}

.hero-visual::after {
    content: '[ ]';
    position: absolute;
    top: 15%;
    left: 10%;
    font-family: 'Courier New', monospace;
    font-size: 40px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.25);
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 25s ease-in-out infinite;
}

.section-header::before {
    content: '●●●';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: rgba(59, 130, 246, 0.15);
    letter-spacing: 8px;
    z-index: 0;
    pointer-events: none;
}

.cta-content::before {
    content: 'launch.now()';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    color: rgba(16, 185, 129, 0.25);
    z-index: 0;
    pointer-events: none;
}

.pipeline-card::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: rgba(59, 130, 246, 0.2);
    pointer-events: none;
}

.node-diagram::after {
    content: 'sync';
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.30);
    pointer-events: none;
}

/* Market research & analytics decorations */
.growth-narrative::before {
    content: 'analytics.track()';
    position: absolute;
    top: -25px;
    left: 0;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    color: rgba(16, 185, 129, 0.28);
    z-index: 0;
    pointer-events: none;
}

.growth-cards::before {
    content: '↗ ROI';
    position: absolute;
    top: -30px;
    right: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(245, 158, 11, 0.28);
    z-index: 0;
    pointer-events: none;
}

.growth-narrative::after {
    content: '♻ retention';
    position: absolute;
    bottom: 10px;
    right: 5%;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(139, 92, 246, 0.28);
    z-index: 0;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

.growth-cards::after {
    content: 'LTV+';
    position: absolute;
    bottom: -25px;
    left: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(236, 72, 153, 0.28);
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 28s ease-in-out infinite;
}

.case-card:nth-child(1)::after {
    content: 'MVP';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(59, 130, 246, 0.28);
    pointer-events: none;
}

.case-card:nth-child(2)::after {
    content: 'SCALE';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(16, 185, 129, 0.28);
    pointer-events: none;
}

.case-card:nth-child(3)::after {
    content: 'GROWTH';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(245, 158, 11, 0.28);
    pointer-events: none;
}

.contact-info::before {
    content: '🔍 discover';
    position: absolute;
    top: -35px;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.lifecycle-panel::before {
    content: 'agile';
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(59, 130, 246, 0.28);
    z-index: 0;
    pointer-events: none;
}

.lifecycle-panel::after {
    content: '🔄 iterate';
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   HEADER & NAV
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.brand-link:hover {
    color: var(--blue-primary);
}

.logo {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand-link:hover .logo {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.nav-link-cta {
    background: var(--blue-primary);
    color: white;
}

.nav-link-cta:hover {
    background: var(--blue-dark);
    box-shadow: var(--glow-blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===================================
   HERO
   =================================== */

.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

/* Tech code symbols floating */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    background:
        linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.15) 50%, transparent 100%),
        conic-gradient(from 45deg, rgba(37, 99, 235, 0.2), rgba(147, 197, 253, 0.2), rgba(59, 130, 246, 0.2));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite, rotate 20s linear infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes codeFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
    50% { transform: translateY(-30px) rotate(2deg); opacity: 0.08; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 30px) rotate(45deg); }
    66% { transform: translate(20px, -20px) rotate(-30deg); }
}

.hero-bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Additional tech vector decorations in hero */
.hero-bg-graphic::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: conic-gradient(from 0deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.15), rgba(96, 165, 250, 0.2));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatReverse 18s ease-in-out infinite;
}

/* Coding symbols - brackets and tags */
.hero .container::before {
    content: '<code/>';
    position: absolute;
    top: 60%;
    right: 8%;
    font-family: 'Courier New', monospace;
    font-size: 32px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.12);
    z-index: 0;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.hero .container::after {
    content: '{ }';
    position: absolute;
    top: 25%;
    right: 5%;
    font-family: 'Courier New', monospace;
    font-size: 48px;
    font-weight: bold;
    color: rgba(16, 185, 129, 0.1);
    z-index: 0;
    pointer-events: none;
    animation: floatReverse 30s ease-in-out infinite;
}

.hero-bg-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(37, 99, 235, 0.03) 2px, rgba(37, 99, 235, 0.03) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(37, 99, 235, 0.03) 2px, rgba(37, 99, 235, 0.03) 3px);
    background-size: 60px 60px;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.hero-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-lighter);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-lighter);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.btn-secondary-alt {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--gray-600);
}

.btn-secondary-alt:hover {
    background: white;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.btn-full {
    width: 100%;
}

.btn-glow:hover {
    box-shadow: var(--glow-blue-strong);
}

.hero-metrics {
    display: flex;
    gap: 24px;
}

.metric-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-lighter);
}

.metric-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.pipeline-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.pipeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pipeline-title {
    font-weight: 600;
    font-size: 14px;
}

.pipeline-status {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-radius: 6px;
}

.pipeline-stages {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.stage-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue-primary);
    box-shadow: var(--glow-blue);
}

.node-diagram {
    position: relative;
    height: 200px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.node-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    border: 2px solid var(--blue-primary);
    box-shadow: var(--glow-blue);
}

.node-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.node-1 { top: 10%; left: 10%; }
.node-2 { top: 10%; right: 10%; }
.node-3 { bottom: 10%; right: 10%; }
.node-4 { bottom: 10%; left: 10%; }
.node-5 { top: 45%; left: 45%; }

.node-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: var(--blue-primary);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 4 4;
}

.segment-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pill {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-lighter);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===================================
   SECTION HEADERS
   =================================== */

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

.section-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue-lighter);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

/* ===================================
   CAPABILITIES
   =================================== */

.capabilities {
    background: var(--bg-secondary);
    position: relative;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 100px;
    height: 100px;
    background:
        radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%),
        conic-gradient(from 45deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    pointer-events: none;
    animation: rotate 25s linear infinite;
}

.capabilities::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    top: 60%;
    right: 8%;
    background:
        linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(59, 130, 246, 0.2)),
        radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    pointer-events: none;
    animation: floatReverse 22s ease-in-out infinite;
}

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

.capability-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.capability-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px var(--blue-primary), 0 12px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.02) 100%);
}

.capability-card:hover .card-icon {
    color: var(--blue-primary);
    transform: scale(1.1);
}

.card-icon {
    color: var(--blue-primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.card-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.card-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue-lighter);
}

/* ===================================
   WHY US
   =================================== */

.why-us {
    background: white;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 90px;
    height: 90px;
    background:
        conic-gradient(from 90deg, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.25), rgba(245, 158, 11, 0.25), rgba(16, 185, 129, 0.25));
    clip-path: circle(40% at 50% 50%);
    pointer-events: none;
    animation: rotate 30s linear infinite;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.why-us::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    bottom: 15%;
    left: 5%;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2)),
        radial-gradient(ellipse, rgba(236, 72, 153, 0.18) 0%, transparent 70%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
    animation: float 28s ease-in-out infinite;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.reason-card {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.reason-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.03) 100%);
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px var(--blue-primary), 0 12px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
}

.reason-card:hover .reason-number {
    color: var(--blue-primary);
}

.reason-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 16px;
    transition: color 0.3s;
}

.reason-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.reason-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s;
}

/* ===================================
   LIFECYCLE
   =================================== */

.lifecycle {
    background: var(--bg-secondary);
    position: relative;
}

.lifecycle::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 12%;
    width: 95px;
    height: 95px;
    background:
        conic-gradient(from 180deg, rgba(245, 158, 11, 0.25), rgba(239, 68, 68, 0.2), rgba(59, 130, 246, 0.25), rgba(16, 185, 129, 0.2));
    border-radius: 50%;
    pointer-events: none;
    animation: rotate 35s linear infinite reverse;
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.25);
}

.lifecycle-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.lifecycle-timeline {
    position: relative;
}

.lifecycle-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-primary), var(--blue-dark));
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.timeline-item {
    position: relative;
    padding-left: 48px;
    margin-bottom: 48px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue-primary);
    border: 3px solid var(--bg-secondary);
    box-shadow: var(--shadow-md);
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.lifecycle-panel {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.panel-content {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.panel-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.panel-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.panel-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-primary);
}

.panel-metric-label {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ===================================
   CLOUD & API
   =================================== */

.cloud-api {
    background: white;
    position: relative;
}

.cloud-api::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 8%;
    width: 85px;
    height: 85px;
    background:
        linear-gradient(45deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.2)),
        conic-gradient(from 0deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.25), rgba(236, 72, 153, 0.2));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
    animation: floatReverse 20s ease-in-out infinite;
}

.cloud-api::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background:
        radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%),
        conic-gradient(from 45deg, rgba(239, 68, 68, 0.18), rgba(245, 158, 11, 0.2), rgba(16, 185, 129, 0.18));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    pointer-events: none;
    animation: rotate 28s linear infinite;
}

.architecture-diagram {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.arch-layer {
    display: flex;
    align-items: center;
    gap: 24px;
}

.arch-label {
    min-width: 140px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arch-nodes {
    display: flex;
    gap: 16px;
    flex: 1;
}

.arch-node {
    flex: 1;
    padding: 12px 20px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-primary);
    box-shadow: var(--shadow-sm);
}

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

.cloud-feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.cloud-feature-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px var(--blue-primary), 0 12px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.02) 100%);
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.feature-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.feature-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.feature-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-lighter);
}

/* ===================================
   GROWTH
   =================================== */

.growth {
    background: var(--bg-secondary);
    position: relative;
}

.growth::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 7%;
    width: 105px;
    height: 105px;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.2)),
        conic-gradient(from 90deg, rgba(236, 72, 153, 0.2), rgba(16, 185, 129, 0.25), rgba(139, 92, 246, 0.2));
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    pointer-events: none;
    animation: rotate 32s linear infinite;
}

.growth::after {
    content: '';
    position: absolute;
    width: 95px;
    height: 95px;
    bottom: 20%;
    right: 10%;
    background:
        radial-gradient(ellipse, rgba(59, 130, 246, 0.2) 0%, transparent 70%),
        linear-gradient(45deg, rgba(245, 158, 11, 0.25), rgba(239, 68, 68, 0.2));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
    animation: floatReverse 24s ease-in-out infinite;
}

.growth-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
}

.narrative-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.narrative-list {
    list-style: none;
    margin-bottom: 32px;
}

.narrative-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
}

.narrative-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--blue-lighter);
    font-size: 18px;
}

.narrative-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

.growth-metrics-inline {
    display: flex;
    gap: 32px;
}

.growth-metric-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.growth-metric-chip .metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-primary);
}

.growth-metric-chip .metric-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.growth-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.growth-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.growth-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px var(--blue-primary), 0 12px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.02) 100%);
}

.growth-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.growth-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s;
}

/* ===================================
   CASE STUDIES
   =================================== */

.cases {
    background: white;
    position: relative;
}

.cases::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 90px;
    height: 90px;
    background:
        conic-gradient(from 45deg, rgba(139, 92, 246, 0.25), rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.25), rgba(236, 72, 153, 0.2));
    clip-path: circle(45% at 50% 50%);
    pointer-events: none;
    animation: rotate 26s linear infinite reverse;
    box-shadow: 0 0 45px rgba(139, 92, 246, 0.3);
}

.cases::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 10%;
    width: 110px;
    height: 110px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(239, 68, 68, 0.2)),
        radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

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

.case-card {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.case-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.03) 100%);
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px var(--blue-primary), 0 12px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
}

.case-label {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-lighter);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.case-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.case-section {
    margin-bottom: 20px;
}

.case-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.case-section-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s;
}

.case-section-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===================================
   CTA BAND
   =================================== */

.cta-band {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-band::after {
    content: '';
    position: absolute;
    width: 115px;
    height: 115px;
    top: 15%;
    right: 10%;
    background:
        conic-gradient(from 180deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.25), rgba(236, 72, 153, 0.25), rgba(245, 158, 11, 0.3));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    pointer-events: none;
    animation: rotate 22s linear infinite;
    box-shadow: 0 0 55px rgba(16, 185, 129, 0.4);
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 8%;
    background:
        linear-gradient(45deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.25)),
        radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    pointer-events: none;
    animation: floatReverse 26s ease-in-out infinite;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(96, 165, 250, 0.05) 100%);
    pointer-events: none;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===================================
   CONTACT
   =================================== */

.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 12%;
    width: 85px;
    height: 85px;
    background:
        conic-gradient(from 270deg, rgba(59, 130, 246, 0.25), rgba(16, 185, 129, 0.25), rgba(245, 158, 11, 0.2), rgba(59, 130, 246, 0.25));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
    animation: rotate 34s linear infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 95px;
    height: 95px;
    background:
        linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(139, 92, 246, 0.2)),
        radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
    clip-path: circle(42% at 50% 50%);
    pointer-events: none;
    animation: floatReverse 28s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-detail-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
    padding: 80px 0 32px;
    color: var(--gray-300);
}

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

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    display: block;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: var(--blue-lighter);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
    box-shadow: var(--glow-blue);
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-legal {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--gray-300);
}

/* ===================================
   GO TO TOP BUTTON
   =================================== */

.go-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--blue-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: var(--blue-dark);
    box-shadow: var(--glow-blue-strong);
    transform: translateY(-4px);
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .lifecycle-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lifecycle-panel {
        position: static;
    }

    .cloud-features {
        grid-template-columns: 1fr;
    }

    .growth-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .arch-layer {
        flex-direction: column;
        align-items: flex-start;
    }

    .arch-nodes {
        flex-direction: column;
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
    }
}
