/* ========================================
   CSS Variables - Brand Colors
======================================== */
:root {
    /* Primary Brand Colors */
    --cyan-process: #14b8a6;
    --indigo-dye: #003952;
    --carrot-orange: #F49509;

    /* Extended Cyan Palette */
    --cyan-50: #e6f7f5;
    --cyan-100: #ccf1eb;
    --cyan-200: #99e3d8;
    --cyan-300: #66d5c4;
    --cyan-400: #33c7b1;
    --cyan-500: #14b8a6;
    --cyan-600: #0f766e;

    /* 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);
    --primary-glow: rgba(20, 184, 166, 0.3);
    --accent: var(--cyan-400);
    --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;
}

.container-narrow {
    max-width: 900px;
}

/* ========================================
   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 var(--primary-glow);
}

.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);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* ========================================
   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(--cyan-100);
    border-radius: 10px;
    color: var(--cyan-600);
    transition: var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-icon {
    background: var(--primary);
    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;
}

/* ========================================
   Solution Hero Section
======================================== */
.solution-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 100%);
    overflow: hidden;
}

.solution-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 Solution Hero */
.solution-hero .hero-network {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.6;
}

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

.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-node {
    fill: var(--cyan-process);
    opacity: 0;
    animation: nodeAppear 0.5s ease-out forwards;
}

@keyframes nodeAppear {
    to { opacity: 0.6; }
}

/* Grid pattern */
.solution-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;
}

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

.solution-hero-content {
    max-width: 560px;
}

.solution-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;
}

.solution-hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.solution-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;
}

.solution-hero h1 .highlight {
    color: var(--cyan-400);
}

.solution-hero-description {
    font-size: 18px;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.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: 20px;
}

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

.hero-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 239, 0.15);
    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);
}

/* ========================================
   Pain Points / Benefits Section
======================================== */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.pain-points-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pain-points-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.pain-list {
    list-style: none;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--slate-200);
}

.pain-list li:last-child {
    border-bottom: none;
}

.pain-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 8px;
    flex-shrink: 0;
}

.pain-icon svg {
    width: 18px;
    height: 18px;
    color: #ef4444;
}

.pain-list h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pain-list p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Solution visual */
.solution-visual {
    position: relative;
}

.solution-visual-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
}

.solution-visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-200);
}

.solution-visual-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-50);
    border-radius: 14px;
}

.solution-visual-icon svg {
    width: 28px;
    height: 28px;
    color: var(--cyan-process);
}

.solution-visual-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
}

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

.benefit-list li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.benefit-list li span {
    font-size: 15px;
    color: var(--text-dark);
}

/* ========================================
   Services Included Section
======================================== */
.services-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-include-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-base);
}

.service-include-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 174, 239, 0.3);
    transform: translateY(-4px);
}

.service-include-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.service-include-icon svg {
    width: 26px;
    height: 26px;
    color: var(--cyan-400);
}

.service-include-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.service-include-card p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-include-list {
    list-style: none;
}

.service-include-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-300);
    padding: 6px 0;
}

.service-include-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   Process Section
======================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--slate-200);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--cyan-process);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--cyan-process);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Pricing Section
======================================== */
.pricing-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.pricing-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.pricing-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--cyan-process);
    flex-shrink: 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--indigo-dye) 0%, var(--indigo-800) 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 174, 239, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

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

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan-400);
    margin-bottom: 16px;
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.pricing-card .price-note {
    font-size: 15px;
    color: var(--slate-400);
    margin-bottom: 24px;
}

.pricing-card .btn {
    width: 100%;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan-100), var(--cyan-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--cyan-600);
}

.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* ========================================
   Related Solutions Section
======================================== */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.related-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-50);
    border-radius: 12px;
    margin-bottom: 20px;
}

.related-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--cyan-process);
}

.related-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan-process);
}

.related-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.related-card:hover .related-card-link svg {
    transform: translateX(4px);
}

/* ========================================
   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) {
    .solution-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

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

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .related-grid {
        grid-template-columns: repeat(2, 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;
    }

    .solution-hero {
        padding: 140px 0 80px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 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) {
    .solution-hero-actions {
        flex-direction: column;
    }

    .solution-hero-actions .btn {
        width: 100%;
    }

    .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;
}





