/*
 * Techcov Services - Dark Futuristic Design System
 * Theme of 4 - Clean, modern, tech-forward
 */

/* ============================================
   GOOGLE FONTS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - Dark Theme
   ============================================ */

:root {
    /* Backgrounds */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --bg-card: #16161e;

    /* Accents (from logo gradient - Brand Foundation) */
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-magenta: #A855F7;
    --accent-coral: #F472B6;

    /* Pillar colors (Brand Foundation - Four Service Pillars) */
    --pillar-infrastructure: #3B82F6;
    --pillar-resilience: #8B5CF6;
    --pillar-hybrid: #A855F7;
    --pillar-ai: #F472B6;

    /* Legacy pillar mappings for compatibility */
    --pillar-data: #3B82F6;
    --pillar-protection: #8B5CF6;
    --pillar-cloud: #A855F7;
    --accent-cyan: #3B82F6;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a1a1b5;
    --text-muted: #6b6b80;

    /* Brand gradient (Brand Foundation) */
    --gradient-brand: linear-gradient(135deg, #3B82F6, #8B5CF6, #A855F7, #F472B6);
    --gradient-text: linear-gradient(90deg, #3B82F6, #8B5CF6);

    /* Legacy color mappings for compatibility */
    --color-accent: #3B82F6;
    --color-accent-hover: #60A5FA;
    --color-gray-900: #ffffff;
    --color-gray-800: #e5e5e5;
    --color-gray-700: #d1d1d1;
    --color-gray-600: #a1a1b5;
    --color-gray-500: #8b8b9e;
    --color-gray-400: #6b6b80;
    --color-gray-300: #4a4a5a;
    --color-gray-200: #2d2d3a;
    --color-gray-100: #1a1a24;
    --color-white: #ffffff;
    --color-black: #0a0a0f;

    /* Typography */
    --font-display: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;

    /* Layout */
    --container-max: 980px;
    --container-wide: 1200px;
    --section-padding: 120px;
    --transition-base: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Glow effects (Brand Foundation colors) */
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    --glow-magenta: 0 0 20px rgba(168, 85, 247, 0.3);
    --glow-coral: 0 0 20px rgba(244, 114, 182, 0.3);
    --glow-cyan: 0 0 20px rgba(59, 130, 246, 0.3);
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--accent-purple);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPOGRAPHY - Futuristic Style
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

/* Hero headlines - massive and bold */
.headline {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.headline-xl {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.headline .light {
    font-weight: 400;
    color: var(--text-secondary);
}

/* Section titles */
.section-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
}

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

/* Section labels */
.section-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

/* Subheadlines */
.subheadline {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Lead/intro text */
.lead {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-secondary);
}

.lead-large {
    font-size: 24px;
    line-height: 1.4;
}

/* Body copy */
.body-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   LAYOUT
   ============================================ */

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

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

.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-darker {
    background: var(--bg-primary);
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

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

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

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

/* ============================================
   NAVIGATION - Dark Translucent
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 64px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    text-decoration: none;
    border: none;
    display: flex;
    align-items: center;
}

.nav-logo:hover {
    text-decoration: none;
    border: none;
}

.nav-logo img,
.nav-logo svg {
    height: 36px;
    width: auto;
    border: none;
    display: block;
}

/* SVG Logo Text Color for Dark Theme */
.nav-logo .logo-text {
    fill: var(--text-primary);
}

.footer-brand .logo-text {
    fill: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-brand) !important;
    color: var(--text-primary) !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all var(--transition-base) !important;
    box-shadow: var(--glow-cyan);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   HERO SECTION - Dark with Grid
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 22px 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Grid background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Gradient orbs */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .headline {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero .lead {
    max-width: 650px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: 160px 22px 80px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.page-header .headline {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header .lead {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   BUTTONS - Gradient with Glow
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--text-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    color: var(--text-primary);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-cyan);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--bg-primary);
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-arrow {
    color: var(--accent-cyan);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition-base);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================
   CARDS - Dark Theme with Glow
   ============================================ */

.card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
}

.card-elevated {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.card-elevated:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), var(--glow-cyan);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-cyan);
    stroke-width: 1.5;
    fill: none;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* ============================================
   PILLAR CARDS - Theme of 4
   ============================================ */

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

.pillar-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pillar-color, var(--accent-cyan));
    opacity: 0.8;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(var(--pillar-rgb, 0, 212, 255), 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.pillar-card:hover {
    border-color: rgba(var(--pillar-rgb, 0, 212, 255), 0.3);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(var(--pillar-rgb, 0, 212, 255), 0.15);
}

/* Pillar-specific colors */
.pillar-card.data-management {
    --pillar-color: var(--pillar-data);
    --pillar-rgb: 0, 212, 255;
}

.pillar-card.data-protection {
    --pillar-color: var(--pillar-protection);
    --pillar-rgb: 139, 92, 246;
}

.pillar-card.cloud {
    --pillar-color: var(--pillar-cloud);
    --pillar-rgb: 77, 124, 255;
}

.pillar-card.ai {
    --pillar-color: var(--pillar-ai);
    --pillar-rgb: 217, 70, 239;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--pillar-color, var(--accent-cyan));
    stroke-width: 1.5;
    fill: none;
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.pillar-card .lead {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pillar-vendors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.pillar-vendor-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   STATS / METRICS - Gradient Text
   ============================================ */

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   METRICS BAR
   ============================================ */

.metrics-bar {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.metric-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ============================================
   CASE STUDIES - Dark Theme
   ============================================ */

.case-study {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-header {
    padding: 40px 40px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Pillar-specific case study tags */
.case-study-tag.data-management {
    background: rgba(0, 212, 255, 0.15);
    color: var(--pillar-data);
}

.case-study-tag.data-protection {
    background: rgba(139, 92, 246, 0.15);
    color: var(--pillar-protection);
}

.case-study-tag.cloud {
    background: rgba(77, 124, 255, 0.15);
    color: var(--pillar-cloud);
}

.case-study-tag.ai {
    background: rgba(217, 70, 239, 0.15);
    color: var(--pillar-ai);
}

.case-study h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
}

.case-study-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.case-study-section {
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-section:last-child {
    border-right: none;
}

.case-study-section h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.case-study-section ul {
    list-style: none;
}

.case-study-section li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.metric-highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ============================================
   VALUE PROPOSITION CARDS
   ============================================ */

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-prop-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.value-prop-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
}

.value-prop-card:hover::before {
    transform: scaleX(1);
}

.value-prop-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.value-prop-card:hover .value-prop-icon {
    background: var(--gradient-brand);
    box-shadow: var(--glow-cyan);
}

.value-prop-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--transition-base);
}

.value-prop-card:hover .value-prop-icon svg {
    stroke: white;
}

.value-prop-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-prop-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   TECHNOLOGY PARTNERS
   ============================================ */

.tech-partners-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-partners-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

.tech-partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px 50px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.partner-logo-item:hover {
    opacity: 1;
    transform: scale(1.15);
}

.partner-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

/* Logo-specific size adjustments for uniformity */
.partner-logo[alt="Nutanix"] {
    height: 24px;
}

.partner-logo[alt="Verge.io"] {
    height: 28px;
}

.partner-logo[alt="Cohesity"] {
    height: 28px;
}

.partner-logo[alt="Proxmox"] {
    height: 38px;
}

.partner-logo[alt="xFusion"] {
    height: 34px;
}

.partner-logo[alt="Kaytus"] {
    height: 36px;
}

.partner-logo[alt="H3C"] {
    height: 20px;
}

.partner-type {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   CONTACT FORM - Dark Theme
   ============================================ */

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

.contact-info h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-info .lead {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-cyan);
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.contact-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1b5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-cyan);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FAQ - Dark Theme
   ============================================ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 28px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   NEWSLETTER - Dark Theme
   ============================================ */

.newsletter {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
}

.newsletter h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

/* ============================================
   FOOTER - Dark Theme
   ============================================ */

.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* ============================================
   SERVICE TILES - Dark Theme
   ============================================ */

.service-tile {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
    opacity: 0.8;
}

a.service-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), var(--glow-cyan);
    text-decoration: none;
}

a.service-tile .link-arrow {
    margin-top: 20px;
    display: inline-flex;
}

.service-tile h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
}

.service-tile .lead {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-tile h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-tile ul {
    list-style: none;
}

.service-tile li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-tile li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* ============================================
   TECH TAGS
   ============================================ */

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   QUOTE BLOCK
   ============================================ */

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.quote-block blockquote {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) > * {
    direction: ltr;
}

.process-step h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.process-step .lead {
    margin-bottom: 24px;
}

.process-visual {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.process-visual img {
    width: 100%;
}

/* ============================================
   SOLUTION BADGE
   ============================================ */

.solution-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

/* ============================================
   CHALLENGE GRID
   ============================================ */

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

.challenge-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.challenge-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.challenge-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   CASE STUDY MINI
   ============================================ */

.case-study-mini {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 36px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.case-study-mini h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.case-study-mini p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.case-study-metrics {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.case-metric {
    text-align: center;
}

.case-metric-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* Glow animation for accents */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    }
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background: linear-gradient(90deg, #3B82F6, #8b5cf6, #A855F7, #3B82F6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* Float animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@media (max-width: 1068px) {
    :root {
        --section-padding: 80px;
    }

    .headline {
        font-size: 44px;
    }

    .headline-xl {
        font-size: 56px;
    }

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

    .pillar-grid {
        gap: 20px;
    }

    .process-step {
        gap: 50px;
    }

    .stats-row {
        gap: 50px;
    }

    .stat-value {
        font-size: 44px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

@media (max-width: 834px) {
    .nav {
        height: 56px;
    }

    .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        pointer-events: none;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 16px;
    }

    .nav-links a {
        display: block;
        padding: 16px;
        font-size: 18px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-mobile-toggle.active svg {
        transform: rotate(90deg);
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step:nth-child(even) {
        direction: ltr;
    }

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .case-study-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .case-study-section:last-child {
        border-bottom: none;
    }

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

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

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

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

    .case-study-metrics {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 60px;
    }

    .headline {
        font-size: 32px;
    }

    .headline-xl {
        font-size: 40px;
    }

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

    .lead {
        font-size: 17px;
    }

    .subheadline {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: 40px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

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

    .pillar-card,
    .service-tile {
        padding: 28px;
    }

    .contact-form {
        padding: 28px;
    }

    .stat-value,
    .metric-value {
        font-size: 36px;
    }

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

    .page-header {
        padding: 120px 22px 60px;
    }

    .tech-partners-grid {
        gap: 30px;
    }
}

/* ============================================
   SECTION-SPECIFIC DARK OVERRIDES
   ============================================ */

.section-gray {
    background: var(--bg-secondary);
}

/* Ensure text remains visible on dark backgrounds */
.section-dark h2,
.section-dark h3,
.section-dark .section-title {
    color: var(--text-primary);
}

.section-dark .lead,
.section-dark p {
    color: var(--text-secondary);
}

/* ============================================
   ADDITIONAL SECONDARY PAGE STYLES
   ============================================ */

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

/* Section alternate background */
.section-alt {
    background: var(--bg-secondary);
}

/* Page subheadline */
.page-header .subheadline {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CTA Buttons container */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SOLUTIONS PAGE STYLES
   ============================================ */

/* Pillar cards for solutions overview */
.pillar-card[data-pillar="data"]::before { background: var(--pillar-data); }
.pillar-card[data-pillar="protection"]::before { background: var(--pillar-protection); }
.pillar-card[data-pillar="cloud"]::before { background: var(--pillar-cloud); }
.pillar-card[data-pillar="ai"]::before { background: var(--pillar-ai); }

.pillar-card[data-pillar="data"] .pillar-icon svg { stroke: var(--pillar-data); }
.pillar-card[data-pillar="protection"] .pillar-icon svg { stroke: var(--pillar-protection); }
.pillar-card[data-pillar="cloud"] .pillar-icon svg { stroke: var(--pillar-cloud); }
.pillar-card[data-pillar="ai"] .pillar-icon svg { stroke: var(--pillar-ai); }

.vendor-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Solution header */
.solution-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 60px;
}

.solution-header[data-pillar="data"] .solution-icon { background: rgba(0, 212, 255, 0.1); }
.solution-header[data-pillar="data"] .solution-icon svg { stroke: var(--pillar-data); }
.solution-header[data-pillar="protection"] .solution-icon { background: rgba(139, 92, 246, 0.1); }
.solution-header[data-pillar="protection"] .solution-icon svg { stroke: var(--pillar-protection); }
.solution-header[data-pillar="cloud"] .solution-icon { background: rgba(77, 124, 255, 0.1); }
.solution-header[data-pillar="cloud"] .solution-icon svg { stroke: var(--pillar-cloud); }
.solution-header[data-pillar="ai"] .solution-icon { background: rgba(217, 70, 239, 0.1); }
.solution-header[data-pillar="ai"] .solution-icon svg { stroke: var(--pillar-ai); }

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke-width: 1.5;
}

.pillar-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    display: block;
}

.solution-header h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.solution-header .lead {
    font-size: 18px;
    max-width: 600px;
}

/* Solution content */
.solution-content {
    max-width: 1000px;
}

.solution-overview {
    margin-bottom: 50px;
}

.solution-overview h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* Capabilities grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.capability-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.capability-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Case study highlight */
.case-study-highlight {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.case-study-highlight[data-pillar="data"]::before { background: var(--pillar-data); }
.case-study-highlight[data-pillar="protection"]::before { background: var(--pillar-protection); }
.case-study-highlight[data-pillar="cloud"]::before { background: var(--pillar-cloud); }
.case-study-highlight[data-pillar="ai"]::before { background: var(--pillar-ai); }

.case-study-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.case-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    display: block;
}

.case-study-highlight h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-study-highlight p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.case-metrics {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.case-metrics .case-metric {
    text-align: left;
}

.case-metrics .metric-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.case-metrics .metric-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   WHY TECHCOV PAGE STYLES
   ============================================ */

/* Differentiator grid */
.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.differentiator-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.differentiator-card[data-pillar="data"]::before { background: var(--pillar-data); }
.differentiator-card[data-pillar="protection"]::before { background: var(--pillar-protection); }
.differentiator-card[data-pillar="cloud"]::before { background: var(--pillar-cloud); }
.differentiator-card[data-pillar="ai"]::before { background: var(--pillar-ai); }

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.diff-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 20px;
    right: 30px;
}

.diff-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diff-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.differentiator-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.diff-tagline {
    font-size: 16px;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 16px;
}

.differentiator-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.diff-points {
    list-style: none;
}

.diff-points li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0 8px 24px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.diff-points li:first-child {
    border-top: none;
}

.diff-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Contrast grid (What We're Not) */
.contrast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contrast-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contrast-card.negative {
    border-left: 3px solid var(--accent-purple);
}

.contrast-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contrast-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process timeline */
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    padding: 0;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:last-child .step-line {
    display: none;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, transparent 100%);
    margin-top: 16px;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.trust-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Quote caption */
.quote-caption {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    display: block;
}

/* Content split */
.content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
}

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

.content-text .highlight-text {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-cyan);
}

.content-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.visual-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.visual-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.visual-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Philosophy grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.philosophy-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.philosophy-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.philosophy-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.philosophy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-initials {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.team-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.team-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Markets grid */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.market-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.market-flag {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.market-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.market-type {
    font-size: 14px;
    color: var(--accent-cyan);
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.market-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.market-details {
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.market-details span {
    display: block;
    margin-bottom: 4px;
}

/* ============================================
   RESULTS PAGE STYLES
   ============================================ */

/* Case study full */
.case-study-full {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.case-study-full[data-pillar="data"]::before { background: var(--pillar-data); }
.case-study-full[data-pillar="protection"]::before { background: var(--pillar-protection); }
.case-study-full[data-pillar="cloud"]::before { background: var(--pillar-cloud); }
.case-study-full[data-pillar="ai"]::before { background: var(--pillar-ai); }

.case-study-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.case-study-full .case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0;
    border-bottom: none;
}

.case-pillar-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.case-pillar-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.case-study-full[data-pillar="data"] .case-pillar-badge svg { stroke: var(--pillar-data); }
.case-study-full[data-pillar="protection"] .case-pillar-badge svg { stroke: var(--pillar-protection); }
.case-study-full[data-pillar="cloud"] .case-pillar-badge svg { stroke: var(--pillar-cloud); }
.case-study-full[data-pillar="ai"] .case-pillar-badge svg { stroke: var(--pillar-ai); }

.case-pillar-badge span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.case-industry {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.case-study-full h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.case-section h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.case-section ul {
    list-style: none;
}

.case-section li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.results-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-metric {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

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

.metric-track-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.metric-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.metric-track-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.metric-track-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact info */
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-details {
    margin-top: 40px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

.contact-form-container {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Expect grid */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expect-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.expect-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.expect-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.expect-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.expect-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile menu */
.mobile-menu {
    display: none;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    height: 28px;
    margin-bottom: 16px;
}

/* ============================================
   SECONDARY PAGE RESPONSIVE
   ============================================ */

@media (max-width: 1068px) {
    .capabilities-grid,
    .differentiator-grid,
    .trust-grid,
    .features-grid,
    .stats-grid,
    .metrics-track-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .content-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .solution-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .solution-header .lead {
        max-width: none;
    }
}

@media (max-width: 834px) {
    .capabilities-grid,
    .differentiator-grid,
    .contrast-grid,
    .trust-grid,
    .features-grid,
    .stats-grid,
    .philosophy-grid,
    .team-grid,
    .markets-grid,
    .metrics-track-grid,
    .expect-grid {
        grid-template-columns: 1fr;
    }

    .case-study-grid,
    .case-study-full .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-study-full .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .case-metrics {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .case-study-full {
        padding: 28px;
    }

    .case-study-full h3 {
        font-size: 22px;
    }

    .differentiator-card {
        padding: 28px;
    }

    .diff-number {
        font-size: 32px;
    }

    .contact-form-container {
        padding: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
