/* ========================================
   CSS Variables - Brand Colors
======================================== */
:root {
    /* Primary Brand Colors */
    --cyan-process: #00AEEF;
    --indigo-dye: #003952;
    --carrot-orange: #F49509;

    /* Extended Cyan Palette */
    --cyan-50: #e6f7fd;
    --cyan-100: #ccf0fc;
    --cyan-200: #99e1f9;
    --cyan-300: #66d2f5;
    --cyan-400: #33c3f2;
    --cyan-500: #00AEEF;
    --cyan-600: #008bbf;

    /* Extended Indigo Palette */
    --indigo-500: #005a7a;
    --indigo-600: #004a66;
    --indigo-700: #003952;
    --indigo-800: #002d42;
    --indigo-900: #001f2e;

    /* Neutral Colors */
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Semantic Colors */
    --primary: var(--cyan-process);
    --primary-dark: var(--cyan-600);
    --accent: var(--carrot-orange);
    --solution-managed: #14b8a6;
    --solution-cyber: #AF062A;
    --solution-ai: #84cc16;
    --solution-cloud: #3b82f6;
    --solution-assessments: #f59e0b;
    --solution-projects: #6366f1;
    --text-dark: var(--slate-800);
    --text-light: var(--slate-500);
    --text-muted: var(--slate-400);

    /* Typography */
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
}

.btn-secondary {
    background: var(--slate-100);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--slate-200);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--slate-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--cyan-50);
}

.nav-link.active {
    color: var(--primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-trigger svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    padding: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--cyan-50);
}

.dropdown-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 10px;
    color: var(--cyan-600);
    transition: var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-icon {
    background: var(--cyan-process);
    color: white;
}

.dropdown-item-icon svg {
    width: 20px;
    height: 20px;
}

.dropdown-item-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.dropdown-item-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition-base);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--slate-50);
    color: var(--primary);
}

.mobile-nav-dropdown {
    display: none;
    padding-left: 16px;
}

.mobile-nav-dropdown.active {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-dropdown a {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-light);
    border-radius: 8px;
}

.mobile-nav-dropdown a:hover {
    background: var(--slate-50);
    color: var(--primary);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   Page Hero Section
======================================== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Network Mesh for Page Hero */
.page-hero .hero-network {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.6;
}

.page-hero .hero-network svg {
    width: 100%;
    height: 100%;
}

/* Network connection lines */
.network-line {
    stroke: var(--cyan-400);
    stroke-width: 0.5;
    opacity: 0.2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-out forwards;
}

.network-line:nth-child(1) { animation-delay: 0s; }
.network-line:nth-child(2) { animation-delay: 0.1s; }
.network-line:nth-child(3) { animation-delay: 0.2s; }
.network-line:nth-child(4) { animation-delay: 0.3s; }
.network-line:nth-child(5) { animation-delay: 0.4s; }
.network-line:nth-child(6) { animation-delay: 0.5s; }
.network-line:nth-child(7) { animation-delay: 0.6s; }
.network-line:nth-child(8) { animation-delay: 0.7s; }
.network-line:nth-child(9) { animation-delay: 0.8s; }
.network-line:nth-child(10) { animation-delay: 0.9s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Network nodes */
.network-node {
    fill: var(--cyan-process);
    opacity: 0;
    animation: nodeAppear 0.5s ease-out forwards;
}

@keyframes nodeAppear {
    to {
        opacity: 0.6;
    }
}

/* Grid pattern overlay */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cyan-400);
    margin-bottom: 24px;
}

.page-hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--carrot-orange);
    border-radius: 50%;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero h1 .highlight {
    color: var(--cyan-400);
}

.page-hero-description {
    font-size: 18px;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px;
}

.hero-stats-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.hero-stat-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-stat-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 239, 0.18);
    border-radius: 12px;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cyan-400);
}

.hero-stat-content h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.hero-stat-content p {
    font-size: 14px;
    color: var(--slate-400);
}

/* ========================================
   Section Styles
======================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 100%);
    color: white;
}

.section-light {
    background: var(--slate-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cyan-50);
    color: var(--cyan-600);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-dark .section-label {
    background: rgba(0, 174, 239, 0.1);
    color: var(--cyan-400);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-dark .section-title {
    color: white;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.section-dark .section-description {
    color: var(--slate-300);
}

/* ========================================
   Approach Section
======================================== */
.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.approach-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-quote {
    position: relative;
    padding: 24px 32px;
    background: var(--cyan-50);
    border-left: 4px solid var(--cyan-process);
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
}

.approach-quote p {
    font-size: 17px;
    font-style: italic;
    color: var(--indigo-dye);
    margin: 0;
    line-height: 1.6;
}

.approach-visual {
    position: relative;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--slate-200);
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan-process);
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ========================================
   Core Values Section
======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--indigo-700);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-base);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyan-600);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--cyan-400);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ========================================
   Timeline Section
======================================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--slate-200);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 36px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: white;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--cyan-process);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cyan-100);
    z-index: 1;
}

.timeline-date {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cyan-50);
    color: var(--cyan-600);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Teams Section
======================================== */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.team-card:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.team-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-50);
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--cyan-process);
}

.team-card-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.team-card-tag.reactive {
    background: #fef3c7;
    color: #d97706;
}

.team-card-tag.proactive {
    background: #d1fae5;
    color: #059669;
}

.team-card-tag.support {
    background: #e0e7ff;
    color: #4f46e5;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Professional IT Section
======================================== */
.section-subheader {
    text-align: center;
    max-width: 680px;
    margin: 48px auto 24px;
}

.section-subheader h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subheader p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Team Members Section
======================================== */
.members-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.member-card {
    text-align: center;
}

.member-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cyan-100), var(--cyan-200));
    border-radius: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--cyan-600);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Partners Section
======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}

.partners-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin: 0 0 36px;
    padding: 0;
    font-size: 15px;
    color: var(--text-light);
}

.partners-list li {
    position: relative;
    padding-left: 16px;
}

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

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    height: 100px;
    transition: var(--transition-base);
}

.partner-logo:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.partner-logo img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: var(--slate-300);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--indigo-900);
    color: var(--slate-400);
}

.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--indigo-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(160px, 1fr));
    gap: 48px;
}

.footer-brand {
    max-width: 280px;
    min-width: 0;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--indigo-800);
    border-radius: 10px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--cyan-600);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--cyan-400);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--cyan-process);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 15px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--slate-500);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--cyan-400);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1024px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats-card {
        max-width: 520px;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .members-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .nav-main,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .page-hero {
        padding: 140px 0 80px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .teams-grid {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 1;
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }
}



/* Solution dropdown colors */
.dropdown-item.managed .dropdown-item-icon {
    background: rgba(20, 184, 166, 0.18);
}

.dropdown-item.managed .dropdown-item-icon svg {
    color: var(--solution-managed);
}

.dropdown-item.managed:hover .dropdown-item-icon {
    background: var(--solution-managed);
}

.dropdown-item.managed:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.cyber .dropdown-item-icon {
    background: rgba(175, 6, 42, 0.18);
}

.dropdown-item.cyber .dropdown-item-icon svg {
    color: var(--solution-cyber);
}

.dropdown-item.cyber:hover .dropdown-item-icon {
    background: var(--solution-cyber);
}

.dropdown-item.cyber:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.ai .dropdown-item-icon {
    background: rgba(132, 204, 22, 0.18);
}

.dropdown-item.ai .dropdown-item-icon svg {
    color: var(--solution-ai);
}

.dropdown-item.ai:hover .dropdown-item-icon {
    background: var(--solution-ai);
}

.dropdown-item.ai:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.cloud .dropdown-item-icon {
    background: rgba(59, 130, 246, 0.18);
}

.dropdown-item.cloud .dropdown-item-icon svg {
    color: var(--solution-cloud);
}

.dropdown-item.cloud:hover .dropdown-item-icon {
    background: var(--solution-cloud);
}

.dropdown-item.cloud:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.assessments .dropdown-item-icon {
    background: rgba(245, 158, 11, 0.18);
}

.dropdown-item.assessments .dropdown-item-icon svg {
    color: var(--solution-assessments);
}

.dropdown-item.assessments:hover .dropdown-item-icon {
    background: var(--solution-assessments);
}

.dropdown-item.assessments:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.projects .dropdown-item-icon {
    background: rgba(99, 102, 241, 0.18);
}

.dropdown-item.projects .dropdown-item-icon svg {
    color: var(--solution-projects);
}

.dropdown-item.projects:hover .dropdown-item-icon {
    background: var(--solution-projects);
}

.dropdown-item.projects:hover .dropdown-item-icon svg {
    color: white;
}






/* Blog */
.blog-hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.2), transparent 50%),
        #0f172a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-hero-network {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
}

.blog-hero-network svg {
    width: 100%;
    height: 100%;
}

.blog-hero-network .network-lines line {
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 1;
    stroke-dasharray: 6 10;
    animation: blog-network-dash 12s linear infinite;
}

.blog-hero-network .network-nodes circle {
    fill: rgba(255, 255, 255, 0.7);
    animation: blog-network-pulse 4s ease-in-out infinite;
}

@keyframes blog-network-dash {
    to {
        stroke-dashoffset: -80;
    }
}

@keyframes blog-network-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

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

.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin-bottom: 32px;
}

.blog-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-hero-actions .btn {
    min-width: 180px;
}

.blog-grid-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.blog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.blog-section-note {
    color: var(--text-light);
    max-width: 520px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.blog-card-media {
    height: 180px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.65), rgba(30, 64, 175, 0.85));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 60%);
    mix-blend-mode: screen;
}

.blog-card-media .blog-card-category {
    position: relative;
    z-index: 1;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.blog-card-link span {
    font-size: 14px;
    letter-spacing: 0.02em;
}

.blog-card.disabled {
    opacity: 0.6;
}

.blog-card.disabled .blog-card-link {
    pointer-events: none;
    color: var(--text-light);
}

.blog-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    padding: 32px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 32px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.blog-featured-media {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    padding: 32px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.blog-featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.blog-featured-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.blog-featured-body p {
    color: var(--text-light);
    line-height: 1.7;
}

.blog-featured-body .btn {
    align-self: flex-start;
}

/* Article */
.blog-article {
    padding: 120px 0 80px;
    background: #ffffff;
}

.blog-article-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: left;
}

.blog-article-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.blog-article-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.blog-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.blog-article-back:hover {
    color: var(--text-dark);
}

.blog-article-meta {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-article-featured {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-article-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article-content {
    max-width: 760px;
    margin: 0 auto;
    color: #1f2937;
    line-height: 1.8;
    font-size: 17px;
}

.blog-article-content > *:first-child {
    margin-top: 0;
}

.blog-article-content > *:last-child {
    margin-bottom: 0;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol,
.blog-article-content blockquote,
.blog-article-content pre,
.blog-article-content figure,
.blog-article-content hr,
.blog-article-content table,
.blog-article-content .kg-card,
.blog-article-content .kg-html-card {
    margin: 0 0 24px;
}

.blog-article-content p {
    white-space: normal;
}

.blog-article-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4,
.blog-article-content h5,
.blog-article-content h6 {
    color: var(--text-dark);
    line-height: 1.25;
}

.blog-article-footer {
    max-width: 760px;
    margin: 32px auto 0;
}

.blog-article-content h2 {
    font-size: 24px;
    margin: 36px 0 16px;
    color: var(--text-dark);
}

.blog-article-content h3 {
    font-size: 20px;
    margin: 28px 0 12px;
    color: var(--text-dark);
}

.blog-article-content ul {
    padding-left: 20px;
    margin: 16px 0 24px;
}

.blog-article-content ol {
    padding-left: 20px;
    margin: 16px 0 24px;
}

.blog-article-content li {
    margin-bottom: 10px;
}

.blog-article-content blockquote {
    padding: 18px 24px;
    border-left: 4px solid var(--primary);
    background: var(--slate-50);
    border-radius: 0 14px 14px 0;
    color: var(--text-dark);
}

.blog-article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.blog-article-content figcaption {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.blog-article-content pre {
    padding: 20px 24px;
    overflow-x: auto;
    border-radius: 16px;
    background: var(--slate-900);
    color: var(--slate-50);
}

.blog-article-content code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.92em;
}

.blog-article-content :not(pre) > code {
    padding: 0.14em 0.38em;
    border-radius: 6px;
    background: var(--slate-100);
    color: var(--indigo-dye);
}

.blog-article-content iframe,
.blog-article-content video {
    display: block;
    max-width: 100%;
    width: 100%;
    border: 0;
}

.blog-article-content .kg-embed-card,
.blog-article-content .kg-video-card,
.blog-article-content .kg-image-card,
.blog-article-content .kg-gallery-card,
.blog-article-content .kg-bookmark-card,
.blog-article-content .kg-callout-card {
    width: 100%;
}

.blog-article-content .kg-embed-card iframe,
.blog-article-content iframe[src*="youtube.com"],
.blog-article-content iframe[src*="youtube-nocookie.com"],
.blog-article-content iframe[src*="player.vimeo.com"] {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}

.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.blog-article-content th,
.blog-article-content td {
    padding: 12px 14px;
    border: 1px solid var(--slate-200);
    text-align: left;
}

.blog-article-content th {
    background: var(--slate-50);
}

.blog-article-callout {
    margin: 32px 0;
    padding: 20px 24px;
    background: #f1f5f9;
    border-left: 4px solid #0ea5e9;
    border-radius: 12px;
    font-weight: 500;
}

.related-articles {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.related-articles .blog-grid {
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }

    .blog-hero-title {
        font-size: 36px;
    }

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

    .blog-featured {
        grid-column: span 1;
    }

    .blog-article-title {
        font-size: 32px;
    }

    .blog-article-content .kg-embed-card iframe,
    .blog-article-content iframe[src*="youtube.com"],
    .blog-article-content iframe[src*="youtube-nocookie.com"],
    .blog-article-content iframe[src*="player.vimeo.com"] {
        min-height: 220px;
    }
}

.blog-featured-media,
.blog-card-media {
    background-size: cover;
    background-position: center;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 80px;
    flex-wrap: wrap;
}
