/* ==========================================================================
   MAKOSO TECHNOLOGIES - CORPORATE WEBSITE STYLES
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
    /* Colors - Dark/Navy Foundation */
    --clr-bg: #0A1128; /* Deep Navy */
    --clr-bg-alt: #111A3A; /* Slightly lighter navy for cards/sections */
    --clr-bg-light: #1A2652; /* Lighter navy for hover states/highlights */
    
    /* Text Colors */
    --clr-text: #E2E8F0; /* Soft White/Gray for body */
    --clr-heading: #FFFFFF; /* Pure white for headings */
    --clr-text-muted: #94A3B8; /* Muted gray for secondary text */
    
    /* Accent Colors */
    --clr-accent-primary: #0EA5E9; /* Vibrant Teal/Blue */
    --clr-accent-primary-hover: #0284C7;
    --clr-accent-secondary: #F59E0B; /* Warm Gold/Orange for contrast */
    --clr-accent-secondary-hover: #D97706;
    
    /* Semantic Colors */
    --clr-success: #10B981;
    --clr-danger: #EF4444;
    
    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 6rem 0;
    --container-max-width: 1200px;
    --container-padding: 0 1.5rem;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--clr-accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

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

/* --- UTILITY CLASSES --- */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.opacity-70 { opacity: 0.7; }
.text-sm { font-size: 0.875rem; }

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title span {
    color: var(--clr-accent-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.bg-dark { background-color: var(--clr-bg-alt); }
.bg-light { background-color: var(--clr-bg-light); }
.bg-gradient {
    background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--clr-accent-primary);
    border: 1px solid rgba(14, 165, 233, 0.3);
    margin-bottom: 1rem;
    text-align: center;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--clr-accent-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    background-color: var(--clr-accent-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background-color: var(--clr-bg-light);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--clr-text);
    color: var(--clr-bg);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-text-muted);
}

.btn-outline:hover {
    border-color: var(--clr-accent-primary);
    color: var(--clr-accent-primary);
}

/* --- HEADER & NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-mark {
    width: 40px;
    height: 40px;
    background-color: var(--clr-accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--clr-heading);
}

.logo-text small {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--clr-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-heading);
    transition: all var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.15);
}

.blob-2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.1);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 50px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--clr-bg-alt);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.flow-step.active {
    opacity: 1;
}

.flow-step.highlight {
    opacity: 1;
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.flow-step.active .flow-icon {
    background: var(--clr-accent-primary);
    box-shadow: var(--shadow-glow);
}

.flow-step.highlight .flow-icon {
    background: var(--clr-success);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.flow-step span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.flow-arrow {
    color: var(--clr-text-muted);
    font-size: 1.5rem;
}

/* --- SECTION GRID STYLES --- */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

/* --- ABOUT & APPROACH --- */
.mission-vision-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--clr-accent-primary);
}

.mv-item h3 {
    font-size: 1.25rem;
    color: var(--clr-accent-primary);
}

.mv-item p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

/* --- LIST STYLES --- */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    margin-top: 0.2rem;
}

.check-list.cross li::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23EF4444" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>') no-repeat center;
    background-size: 14px;
    background-color: rgba(239, 68, 68, 0.1);
}

.check-list.check li::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310B981" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center;
    background-size: 14px;
    background-color: rgba(16, 185, 129, 0.1);
}

.check-list.arrow li::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230EA5E9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>') no-repeat center;
    background-size: 14px;
}

.simple-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.simple-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--clr-text-muted);
}

.simple-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clr-accent-primary);
    font-size: 1.25rem;
    line-height: 1;
}

/* --- CARDS & GRIDS --- */
.problem-card {
    background: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: var(--clr-danger); box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--clr-bg);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
}

.value-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-bg-light);
    margin-bottom: 1rem;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.value-card:hover .value-icon {
    color: var(--clr-accent-primary);
    -webkit-text-stroke: 0;
}

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

.service-card {
    background: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--clr-bg-light);
}

.service-card.highlight {
    background: linear-gradient(180deg, var(--clr-bg-light) 0%, var(--clr-bg-alt) 100%);
    border-color: rgba(14, 165, 233, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--clr-bg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* --- WAKALA NAMI SECTION --- */
.wakala-logo-placeholder {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-accent-secondary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 2px solid var(--clr-accent-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
}

.wakala-logo-sm {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-accent-secondary);
    font-size: 1.1rem;
}

.comparison-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.comparison-card {
    flex: 1;
    background: var(--clr-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.comparison-card.old-way {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-card.new-way {
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.comparison-divider {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    background: var(--clr-bg-alt);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--clr-danger);
}

.status.good {
    background: rgba(16, 185, 129, 0.1);
    color: var(--clr-success);
}

/* Ecosystem Diagram */
.ecosystem-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-bg);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.eco-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.eco-node .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.eco-node span {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

.eco-node.platform {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
}

.platform-apps {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--clr-text);
}

.eco-flow {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--clr-accent-primary);
    font-weight: bold;
}

.flow-line {
    background: rgba(14, 165, 233, 0.1);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

/* Traction Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0) 100%);
    border-color: rgba(14, 165, 233, 0.3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card.highlight .stat-number {
    color: var(--clr-accent-primary);
}

.stat-label {
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-bg-light);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 30%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--clr-bg-alt);
    border: 4px solid var(--clr-text-muted);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.timeline-item.active .timeline-dot {
    border-color: var(--clr-accent-primary);
    background: white;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.timeline-content h4 {
    color: var(--clr-text-muted);
}

.timeline-item.active .timeline-content h4 {
    color: var(--clr-accent-primary);
}

/* --- TECHNOLOGY SECTION --- */
.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-item {
    background: var(--clr-bg-alt);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-item span {
    color: var(--clr-text-muted);
    margin-right: 0.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.phil-card {
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    border-top: 3px solid transparent;
    transition: all var(--transition-normal);
}

.phil-card:hover {
    border-top-color: var(--clr-accent-primary);
    background: var(--clr-bg-light);
}

.phil-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* --- SECURITY SECTION --- */
.compliance-card {
    background: var(--clr-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    border-left: 3px solid var(--clr-success);
}

/* --- IMPACT SECTION --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.impact-card {
    background: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
}

.impact-card h4 {
    color: var(--clr-accent-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* --- LEADERSHIP SECTION --- */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--clr-bg-alt);
    color: var(--clr-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.leader-title {
    display: block;
    color: var(--clr-accent-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.leader-degree {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.leader-exp {
    font-size: 0.95rem;
}

/* --- ROADMAP SECTION --- */
.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--clr-bg);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-col h3 {
    text-align: left;
    color: var(--clr-accent-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.vision-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--clr-heading);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- CONTACT SECTION --- */
.cta-box {
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-bg-light) 100%);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.social-btn {
    background: var(--clr-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--clr-accent-primary);
    border-color: var(--clr-accent-primary);
    color: white;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--clr-bg-alt);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.tagline {
    color: var(--clr-text-muted);
    font-style: italic;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--clr-text-muted);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* --- NEW SECTIONS (RESTRUCTURING) --- */

/* Company at a Glance */
.glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.glance-card {
    background: var(--clr-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}
.glance-card.highlight {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.3);
}
.glance-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.glance-value {
    font-size: 1.1rem;
    color: var(--clr-heading);
}
.text-accent {
    color: var(--clr-accent-primary);
}

/* Our Approach */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.process-step {
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    position: relative;
    border-top: 3px solid var(--clr-bg-light);
    transition: all var(--transition-normal);
}
.process-step:hover {
    border-top-color: var(--clr-accent-primary);
    transform: translateY(-5px);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

/* Problems We Solve */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.problem-item {
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--clr-danger);
}
.problem-item h4 {
    color: var(--clr-danger);
    margin-bottom: 0.5rem;
}

/* What We Build */
.build-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.build-card {
    background: var(--clr-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}
.build-card:hover {
    border-color: var(--clr-accent-primary);
    background: linear-gradient(135deg, var(--clr-bg) 0%, rgba(14, 165, 233, 0.05) 100%);
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.industry-card {
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* Flagship Product */
.product-flagship {
    background: var(--clr-bg-alt);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 100%;
    overflow: hidden;
}
.product-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.wakala-logo-placeholder {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-accent-secondary);
    letter-spacing: 2px;
    margin-bottom: 0;
    border: 2px solid var(--clr-accent-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    max-width: 100%;
}

/* Principles */
.principles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.principles-grid .phil-card {
    flex: 1 1 200px;
    max-width: 300px;
}

/* Why Makoso */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-card {
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
}

/* Journey Timeline */
.journey-timeline {
    border-left: 2px solid var(--clr-bg-light);
    padding-left: 2rem;
    margin-top: 2rem;
}
.j-step {
    position: relative;
    margin-bottom: 2.5rem;
}
.j-step:last-child {
    margin-bottom: 0;
}
.j-dot {
    position: absolute;
    left: -2.6rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    border: 3px solid var(--clr-text-muted);
}
.j-dot.highlight {
    border-color: var(--clr-accent-primary);
    background: white;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Vision Quote */
.vision-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--clr-accent-primary);
    border-left: 4px solid var(--clr-accent-primary);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* --- ANIMATIONS (Utility Classes for JS Observer) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-200 { transition-delay: 200ms; }
.delay-400 { transition-delay: 400ms; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in-up, .fade-in-left, .fade-in-right {
        opacity: 1;
        transform: none;
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .section-grid {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .glance-grid, 
    .build-grid, 
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps,
    .problems-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecosystem-diagram {
        flex-direction: column;
        gap: 2rem;
    }
    
    .eco-flow {
        flex-direction: row;
    }
    
    .flow-line.down { transform: rotate(-90deg); }
    .flow-line.up { transform: rotate(-90deg); }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--clr-bg-alt);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 0.5rem;
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: 100%;
    }
    
    /* Mobile Menu Toggle Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* Grids to Single Column */
    .hero-container,
    .section-grid,
    .mission-vision-box,
    .philosophy-grid,
    .impact-grid,
    .leadership-grid,
    .roadmap-grid,
    .contact-info,
    .footer-grid,
    .glance-grid,
    .process-steps,
    .problems-grid,
    .build-grid,
    .industries-grid,
    .principles-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .comparison-divider {
        margin: -1rem 0;
    }
    
    .timeline {
        flex-direction: column;
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 30px;
        top: 0;
        width: 2px;
        height: 100%;
        transform: none;
    }
    
    .timeline-item {
        width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .timeline-dot {
        margin: 0 1.5rem 0 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-box {
        padding: 2rem 1rem;
    }
    
    .product-flagship {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .flow-diagram {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}
