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

:root {
    --primary: #1FB8E8;
    --primary-dark: #0D9DD1;
    --primary-light: #4DC9F0;
    --secondary: #7B3FE4;
    --secondary-dark: #6428C7;
    --accent: #003DA5;
    --dark: #0A1128;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-lockup {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo-lockup:hover {
    opacity: 0.8;
}

.logo-wordmark {
    display: none;
}

.logo-img {
    height: 56px;
    width: auto;
}

.logo-tagline {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.3px;
    margin-top: -4px;
    padding-left: 2px;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

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

.nav-menu a:not(.btn-nav):hover {
    color: var(--gray-900);
}

.nav-menu a:not(.btn-nav):hover:after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 600;
}

.btn-nav:after {
    display: none;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(31, 184, 232, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 900;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1128 0%, #1A2847 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--gray-700) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-700) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0;
    text-align: left;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(31, 184, 232, 0.15);
    border: 1px solid rgba(31, 184, 232, 0.4);
    border-radius: 100px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

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

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

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    color: #dce3f5;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(31, 184, 232, 0.2);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 184, 232, 0.3);
}

.btn-primary-solid {
    padding: 18px 34px;
    font-size: 17px;
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(31, 184, 232, 0.1);
}

.btn-secondary-text {
    border: none;
    padding-left: 4px;
    padding-right: 4px;
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #e5e9f2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-700);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.visual-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 18px rgba(31, 184, 232, 0.8);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.visual-tile {
    padding: 14px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.12) 100%);
    color: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.visual-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--gray-100);
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    margin-top: 12px;
    font-size: 13px;
}

/* Value Proposition */
.value-prop {
    padding: 72px 0;
    background: var(--gray-50);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 184, 232, 0.1);
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 15px;
}

/* Trust Indicators Bar */
.trust-bar {
    padding: 48px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 240px;
    max-width: 340px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 184, 232, 0.1);
    border-radius: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.trust-text {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.5;
}

.trust-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    background: var(--gray-200);
}

/* Services Section */
.services {
    padding: 96px 0;
    background: var(--white);
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(31, 184, 232, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--primary);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:nth-child(1) { border-top-color: #1FB8E8; }
.service-card:nth-child(2) { border-top-color: #6C5CE7; }
.service-card:nth-child(3) { border-top-color: #00B894; }
.service-card:nth-child(4) { border-top-color: #E17055; }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-100);
    opacity: 0.15;
    line-height: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card:nth-child(1) .service-icon { background: rgba(31, 184, 232, 0.1); color: #1FB8E8; }
.service-card:nth-child(2) .service-icon { background: rgba(108, 92, 231, 0.1); color: #6C5CE7; }
.service-card:nth-child(3) .service-icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
.service-card:nth-child(4) .service-icon { background: rgba(225, 112, 85, 0.1); color: #E17055; }

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
    color: var(--gray-600);
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
    display: grid;
    gap: 6px;
    flex: 1;
}

.service-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-700);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}

.service-card:nth-child(1) .service-list li:before { color: #1FB8E8; }
.service-card:nth-child(2) .service-list li:before { color: #6C5CE7; }
.service-card:nth-child(3) .service-list li:before { color: #00B894; }
.service-card:nth-child(4) .service-list li:before { color: #E17055; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-card:nth-child(1) .service-link { color: #1FB8E8; }
.service-card:nth-child(2) .service-link { color: #6C5CE7; }
.service-card:nth-child(3) .service-link { color: #00B894; }
.service-card:nth-child(4) .service-link { color: #E17055; }

.service-link:hover {
    gap: 12px;
}

/* Accelerators Section */
.accelerators {
    padding: 88px 0;
    background: var(--gray-50);
}

.accelerators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.accelerator-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.accelerator-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.accelerator-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.accelerator-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
}

.accelerator-tag {
    padding: 4px 12px;
    background: rgba(31, 184, 232, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.accelerator-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.accelerator-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.accelerator-features span {
    padding: 6px 14px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Expertise Section */
.expertise {
    padding: 88px 0;
    background: var(--white);
}

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

.expertise-capability {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.expertise-capability:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.capability-icon {
    width: 44px;
    height: 44px;
    background: rgba(31, 184, 232, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.capability-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
}

.capability-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.capability-tools {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tool-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.tool-cloud {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: #FF9900;
    padding: 3px 8px;
    border-radius: 4px;
    min-width: 72px;
    text-align: center;
    flex-shrink: 0;
}

.tool-cloud.azure {
    background: #0078D4;
}

.tool-cloud.gcp {
    background: #4285F4;
}

.tool-cloud.neutral {
    background: var(--gray-600);
}

.tool-names {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.expertise-footer {
    margin-top: 32px;
    text-align: center;
}

.expertise-bi {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
}

.expertise-bi-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.expertise-bi-tools {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.expertise-more {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray-600);
}

.expertise-more a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.expertise-more a:hover {
    text-decoration: underline;
}

/* Approach Section */
.approach {
    padding: 88px 0;
    background: var(--gray-50);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    align-items: stretch;
}

.approach-step {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    text-align: left;
    position: relative;
    transition: all 0.3s;
}

.approach-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 184, 232, 0.12);
}

.approach-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -32px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    transform: translateY(-50%);
}

.approach-step:last-child::after {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(31, 184, 232, 0.25);
}

.approach-step h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
    line-height: 1.3;
}

.approach-step p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 15px;
}

.approach-arrow {
    display: none;
}

.approach-principles {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
}

.approach-principles h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 32px;
    text-align: center;
}

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

.principle-item {
    display: flex;
    gap: 16px;
}

.principle-icon {
    width: 32px;
    height: 32px;
    background: rgba(31, 184, 232, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.principle-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.principle-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1A2847 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 22px;
    color: var(--gray-300);
    margin-bottom: 60px;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.cta-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.cta-option h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-option > p {
    color: var(--gray-300);
    margin-bottom: 24px;
    font-size: 15px;
    flex: 1;
}

.cta-option .btn-primary,
.cta-option .btn-secondary {
    width: 100%;
    justify-content: center;
}

.contact-info {
    margin-top: 48px;
    font-size: 18px;
}

.contact-info a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

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

.footer-logo {
    height: 56px;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 32px 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

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

    .approach-step::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .trust-content {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .trust-stat {
        max-width: none;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
