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

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

:root {
    /* Color Palette */
    --bg-primary: #0B0F1A;
    --bg-secondary: #0F172A;
    --bg-card: rgba(15, 23, 42, 0.6);
    --accent-blue: #00D4FF;
    --accent-purple: #7C3AED;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;

    /* Effects */
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-left: 1px solid rgba(0, 212, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00E5FF, #8B5CF6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) var(--bg-secondary);
}

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

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 16px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 15, 30, 0.85);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(0, 212, 255, 0.25);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.logo-highlight {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -4px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: var(--transition);
}

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

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


/* Navbar CTA Button */
.nav-cta-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 6px;
    color: var(--text-primary) !important;
    text-decoration: none;
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.navbar.scrolled .nav-cta-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-cta-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

.page-header {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1425 50%, #0a0f1e 100%);
}

/* Futuristic Grid Background */
.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;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

/* Animated Geometric Accents */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#networkCanvas {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.service-differentiator {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 500;
    margin-bottom: 24px;
    animation: heroFadeSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    word-spacing: 0.05em;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroFadeSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-title .highlight {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-trust {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    animation: heroFadeSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}

@keyframes heroFadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   TRUST FOUNDATIONS SECTION
   ========================================== */

.trust-foundations {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.trust-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.framework-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 28px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-subheading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 16px;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================
   SERVICES GRID
   ========================================== */

.services-grid {
    position: relative;
    padding: var(--section-padding);
    background: var(--bg-secondary);
    overflow: hidden;
}

/* Subtle Grid Pattern for Sections */
.services-grid::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: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

/* Corner Accent Glow */
.services-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

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

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: var(--transition);
}

/* Futuristic Corner Accent */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    border-right: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 0 16px 0 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--glow-blue), 0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-8px);
}

.btn-executive-cta:hover::before {
    opacity: 1;
}

/* Trust Icons Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-icon-grid {
        gap: 8px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(var(--glow-blue));
}

.service-title {
    font-family: var(--font-subheading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================
   GOVERNANCE FRAMEWORK SECTION
   ========================================== */

.governance-framework-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

/* Interactive Step Line */
.framework-steps {
    position: relative;
    margin: 80px 0 60px;
    padding: 0 60px;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(0, 212, 255, 0.1) 0%,
            rgba(0, 212, 255, 0.4) 50%,
            rgba(0, 212, 255, 0.1) 100%);
    z-index: 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    position: relative;
}

.step:hover {
    opacity: 1;
}

.step:hover~.step {
    opacity: 0.4;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-blue);
    opacity: 0.15;
    margin-bottom: 8px;
    transition: all 0.4s ease;
    line-height: 1;
}

.step:hover .step-number {
    opacity: 0.4;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.step-title {
    font-family: var(--font-subheading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.step:hover .step-title {
    color: var(--accent-blue);
}

.step-dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 212, 255, 0.3);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    margin-top: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
}

.step:hover .step-dot {
    background: var(--accent-blue);
    box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.2),
        0 0 20px rgba(0, 212, 255, 0.6);
    transform: scale(1.3);
}

/* Description Panel */
.step-description-panel {
    min-height: 120px;
    margin-top: 60px;
    position: relative;
}

.description-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.description-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 32px 48px;
    background: rgba(0, 212, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}


/* Comparison Section */
.comparison-section {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.comparison-column {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.comparison-column.traditional {
    border-color: rgba(255, 255, 255, 0.1);
}

.comparison-column.dataaegyx {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.03);
}

.column-header {
    font-family: var(--font-subheading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 28px;
}

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

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-column.dataaegyx .comparison-list li::before {
    background: var(--accent-blue);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   SECTOR EXPERIENCE & REGULATORY ALIGNMENT
   ========================================== */

.sector-experience-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

/* Subsection Headers */
.subsection-header {
    margin-top: 64px;
    margin-bottom: 32px;
    text-align: center;
}

.subsection-header.secondary {
    margin-top: 80px;
}

.subsection-title {
    font-family: var(--font-subheading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

/* Primary Sector Grid */
.primary-sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* Familiarity Sector Grid */
.familiarity-sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Sector Blocks - Base */
.sector-block {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary Sector Blocks - Prominent */
.sector-block.primary {
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 48px 40px;
}

.sector-block.primary:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}

/* Familiarity Sector Blocks - Secondary */
.sector-block.familiarity {
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 32px;
    opacity: 0.85;
}

.sector-block.familiarity:hover {
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.08);
    transform: translateY(-2px);
    opacity: 1;
}

/* Sector Icons */
.sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.sector-block.primary .sector-icon {
    width: 72px;
    height: 72px;
    opacity: 0.9;
}

.sector-block.familiarity .sector-icon {
    width: 56px;
    height: 56px;
    opacity: 0.6;
}

.sector-block:hover .sector-icon {
    opacity: 1;
    transform: scale(1.05);
}

.sector-icon svg {
    width: 100%;
    height: 100%;
}

/* Sector Titles */
.sector-title {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.sector-block.primary .sector-title {
    font-size: 24px;
}

.sector-block.familiarity .sector-title {
    font-size: 20px;
}

/* Sector Descriptions */
.sector-description {
    line-height: 1.7;
    color: var(--text-secondary);
}

.sector-block.primary .sector-description {
    font-size: 15px;
}

.sector-block.familiarity .sector-description {
    font-size: 14px;
}

/* ==========================================
   EXECUTIVE CTA SECTION
   ========================================== */

.executive-cta-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0f1e 0%, #080c18 100%);
    overflow: hidden;
}

/* Minimal Grid Background */
.executive-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.btn-executive-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-family: var(--font-subheading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle Glow Effect */
.btn-executive-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-executive-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2),
        0 8px 24px rgba(0, 212, 255, 0.15);
}

.btn-executive-cta:hover::before {
    opacity: 1;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(16, 24, 45, 0.9) 0%, rgba(13, 20, 38, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.enterprise-badge span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}


/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%2300D4FF" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.footer {
    background: var(--bg-secondary);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 200px;
    height: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-subheading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }

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

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

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

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 12px 20px;
        border-radius: 12px;
    }

    .nav-links {
        display: none;
    }

    /* Executive CTA Mobile Styles */
    .executive-cta-section {
        padding: 80px 0;
    }

    .cta-headline {
        font-size: 36px;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .cta-subtext {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .btn-executive-cta {
        width: 100%;
        max-width: 100%;
        padding: 16px 32px;
        font-size: 15px;
    }

    .cta-trust-line {
        font-size: 12px;
        padding: 0 24px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta-btn {
        display: block;
        font-size: 13px;
        padding: 8px 16px;
    }

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

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

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

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

    .framework-steps {
        padding: 0 20px;
    }

    .step-line {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        gap: 32px;
    }

    .step {
        opacity: 1;
        width: 100%;
    }

    .step-number {
        font-size: 48px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-dot {
        display: none;
    }

    .description-content p {
        padding: 24px 32px;
        font-size: 15px;
    }

    .subsection-header {
        margin-top: 48px;
        margin-bottom: 24px;
    }

    .subsection-header.secondary {
        margin-top: 64px;
    }

    .subsection-title {
        font-size: 16px;
    }

    .primary-sector-grid,
    .familiarity-sector-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sector-block.primary {
        padding: 36px 28px;
    }

    .sector-block.familiarity {
        padding: 32px 24px;
    }

    .sector-block.primary .sector-title {
        font-size: 22px;
    }

    .sector-block.familiarity .sector-title {
        font-size: 18px;
    }

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

    .comparison-divider {
        display: none;
    }

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

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

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

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

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

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

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