/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    /* Mimaroo Labs Brand Colors */
    --primary-color: #073B56;
    --primary-dark: #052838;
    --primary-light: #0a5073;
    --secondary-color: #073B56;
    --accent-color: #0a5073;
    --accent-hover: #052838;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #F8F9F7;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Typography - Mimaroo Labs Brand */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    transition: all var(--transition-normal);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo-image:hover {
    transform: scale(1.02);
}

/* Legacy logo styles - kept for reference */
.logo-icon {
    flex-shrink: 0;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
}

.nav-menu {
    display: flex !important;
    list-style: none;
    gap: 48px;
    align-items: center;
    margin: 0;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu li {
    display: list-item !important;
    visibility: visible !important;
}

.nav-link {
    text-decoration: none;
    color: #374151 !important;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
    display: inline-block !important;
    padding: 0 10px !important;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: 180px 0 60px;
    background: linear-gradient(135deg, #F8F9F7 0%, #e8eae8 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(7, 59, 86, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(7, 59, 86, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Smaller hero buttons */
.hero-cta .btn {
    padding: 8px 16px;
    font-size: 13px;
    gap: 6px;
    width: 220px;
    display: inline-flex;
    justify-content: center;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Trusted By Section
   =================================== */
.trusted-by {
    background: var(--white);
    padding: 32px 0 40px;
    border-bottom: 1px solid var(--gray-200);
}

.trusted-by-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.logo-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logo-scroll {
    display: flex;
    gap: 64px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.7;
    transition: all var(--transition-normal);
    filter: grayscale(100%);
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-scroll-container:hover .logo-scroll {
    animation-play-state: paused;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
}

/* ===================================
   Challenges Section
   =================================== */
.challenges {
    background: var(--white);
}

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

.challenge-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px;
    transition: all var(--transition-normal);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.challenge-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.challenge-icon i {
    font-size: 28px;
    color: var(--white);
}

.challenge-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.challenge-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.challenge-symptoms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.symptom {
    display: inline-block;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
    border: 1px solid var(--gray-300);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured .service-description {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

.service-card.featured .service-features i {
    color: var(--accent-color);
}

.service-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.service-header h3 {
    flex: 1;
    min-width: 200px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin: 0;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.service-features i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===================================
   Approach Section
   =================================== */
.approach {
    background: var(--white);
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 48px auto 0;
}

.approach-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.approach-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.approach-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    z-index: 2;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.step-content {
    flex: 1;
    width: 100%;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.step-deliverable {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--gray-200);
    width: 100%;
}

.step-deliverable i {
    font-size: 14px;
    flex-shrink: 0;
}

/* ===================================
   Results Section
   =================================== */
.results {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.result-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.result-metric {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.metric-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 600;
}

.result-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 600;
}

/* ===================================
   Expertise Section
   =================================== */
.expertise {
    background: var(--white);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.lead-text {
    font-size: 20px;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.expertise-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.expertise-list i {
    color: var(--success);
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.expertise-list strong {
    display: block;
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.expertise-list span {
    display: block;
    color: var(--gray-600);
    line-height: 1.6;
}

.expertise-note {
    background: var(--gray-50);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    border-radius: 8px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
}

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

.expertise-stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform var(--transition-normal);
}

.expertise-stat-card:hover {
    transform: translateX(8px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
}

.stat-info {
    flex: 1;
}

.expertise-stat-card .stat-number {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 4px;
}

.expertise-stat-card .stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #073B56 0%, #052838 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--gray-50);
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: var(--white);
    font-size: 18px;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color var(--transition-fast);
}

.detail-content a:hover {
    color: var(--primary-color);
}

.contact-assurance {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
}

.assurance-item i {
    color: var(--success);
    font-size: 16px;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--gray-800);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

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

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 64px 0 32px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ===================================
   New Sections - Homepage Updates
   =================================== */

/* Trust Bar Section */
.trust-bar {
    padding: 48px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 24px;
}

.trust-bar-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    list-style: none;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-bar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.4;
    white-space: nowrap;
}

.trust-bar-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Animated Metrics Section */
.animated-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.animated-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.metric-card-animated {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.metric-card-animated:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.metric-icon-large i {
    font-size: 36px;
    color: var(--white);
}

.metric-value-animated {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-display);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.metric-label-animated {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.metric-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Hero Credibility Line */
.hero-credibility {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.5;
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.section-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-intro {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
    font-weight: 500;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin-bottom: 48px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    font-size: 17px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

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

.problem-list li i {
    color: var(--error);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.problem-conclusion {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
}

/* Outcome Section */
.outcome-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.outcome-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.outcome-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-icon i {
    font-size: 28px;
    color: var(--white);
}

.outcome-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
    line-height: 1.4;
}

.outcome-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Differentiation Section */
.differentiation-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.differentiation-content {
    max-width: 900px;
    margin: 48px auto 0;
}

.differentiation-intro {
    margin-bottom: 48px;
}

.differentiation-intro p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.differentiation-pillars {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.differentiation-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 17px;
    color: var(--gray-700);
}

.differentiation-pillars li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.differentiation-understanding {
    margin-top: 48px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
}

.differentiation-understanding h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.understanding-list {
    list-style: none;
    padding: 0;
}

.understanding-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
}

.understanding-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.understanding-list li strong {
    color: var(--gray-800);
}

/* Service Duration Badge */
.service-duration {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.service-card:not(.featured) .service-duration {
    background: var(--primary-color);
    color: var(--white);
}

.service-outcome {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.service-card.featured .service-outcome {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

/* Reveal Section */
.reveal-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.reveal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reveal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.reveal-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.reveal-points {
    margin-top: 32px;
}

.reveal-points p {
    font-size: 17px;
    margin-bottom: 16px;
}

.reveal-highlight {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Social Proof Section */
.social-proof {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px 32px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    opacity: 0.1;
}

.quote-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.7;
    margin: 24px 0;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
    margin-top: auto;
}

.author-role {
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
}

/* Results Case Studies (rename from results) */
.results-case-studies {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Page Hero (for subpages) */
.page-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-background {
    display: none;
}

/* ===================================
   PE Value Creation Page Styles
   =================================== */

/* PE Reality Section */
.pe-reality {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reality-content {
    max-width: 900px;
    margin: 48px auto 0;
}

.reality-intro {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
    font-weight: 500;
}

.reality-list {
    list-style: none;
    padding: 0;
    margin-bottom: 48px;
}

.reality-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 17px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

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

.reality-list li i {
    color: var(--warning);
    font-size: 20px;
    flex-shrink: 0;
}

.reality-conclusion {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 24px;
    text-align: center;
}

.reality-fix {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

/* Value Levers Section */
.value-levers {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.levers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.lever-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.lever-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lever-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.lever-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
    line-height: 1.4;
}

.lever-details {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.lever-details li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.lever-outcome {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* What We Do PE Section */
.what-we-do-pe {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.what-we-do-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.intro-text {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.work-areas {
    list-style: none;
    padding: 0;
    margin-bottom: 48px;
}

.work-areas li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    font-size: 17px;
    color: var(--gray-700);
}

.work-areas li i {
    color: var(--success);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.clarification {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
}

.clarification p {
    font-size: 18px;
    margin-bottom: 12px;
}

.clarification p:last-child {
    font-size: 16px;
    color: var(--gray-700);
}

/* Engagement Models Section */
.engagement-models {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.model-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.model-card.featured {
    border: 2px solid var(--primary-color);
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.model-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.model-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.3;
}

.model-description {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.6;
}

.model-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.model-outputs {
    list-style: none;
    padding: 0;
}

.model-outputs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.model-outputs li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.model-outcome {
    font-size: 16px;
    color: var(--gray-700);
    margin-top: 16px;
}

/* Success Metrics Section */
.success-metrics {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.metrics-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.metrics-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.metrics-list {
    list-style: none;
    padding: 0;
}

.metrics-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 17px;
    color: var(--gray-700);
}

.metrics-list li i {
    color: var(--success);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================
   Propositions Page Styles
   =================================== */

/* Prop Problem Section */
.prop-problem {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Design Principles Section */
.design-principles {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.principle-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.principle-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.4;
}

.principle-intro {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

.principle-details {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.principle-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.principle-details li i {
    color: var(--success);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.principle-benefit {
    font-size: 15px;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
}

/* Proposition Portfolio Section */
.proposition-portfolio {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.proposition-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.proposition-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.prop-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.proposition-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
    line-height: 1.3;
}

.prop-details p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.6;
}

.prop-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}

.prop-benefit i {
    color: var(--warning);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.prop-benefit span {
    font-size: 15px;
    color: var(--gray-700);
}

/* What You Get Section */
.what-you-get {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.includes-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.includes-intro {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    font-size: 17px;
    color: var(--gray-700);
}

.includes-list li i {
    color: var(--success);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Why Works Section */
.why-works {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.works-content {
    max-width: 900px;
    margin: 48px auto 0;
}

.works-intro {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 16px;
    color: var(--gray-800);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

/* ===================================
   Profile Page Styles
   =================================== */

/* Profile Hero */
.profile-hero-content {
    display: flex;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

.profile-image-container {
    flex-shrink: 0;
    flex-basis: auto;
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    display: block;
}

.profile-hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.profile-name {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.profile-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.profile-tagline {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.5;
}

.profile-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.profile-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Profile Summary */
.profile-summary {
    padding: var(--section-padding) 0;
    background: var(--white);
    clear: both;
    overflow: hidden;
}

.summary-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 20px;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.6;
}

.summary-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Why Mimaroo Section */
.why-mimaroo {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #F8F9F7 0%, #e8eae8 100%);
    position: relative;
    overflow: hidden;
}

.why-mimaroo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(7, 59, 86, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(7, 59, 86, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.why-mimaroo .container {
    position: relative;
    z-index: 1;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    margin-bottom: 48px;
    text-align: center;
}

.story-intro .lead-text {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}

.story-body {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
}

.story-body p {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-body p:last-child {
    margin-bottom: 0;
}

.story-highlight {
    background: var(--gray-50);
    padding: 24px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 32px 0 !important;
}

.story-highlight strong {
    color: var(--primary-color);
    font-size: 20px;
}

/* Key Skills */
.key-skills {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.skill-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.skill-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon i {
    font-size: 28px;
    color: var(--white);
}

.skill-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.skill-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Career Timeline */
.career-highlights {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 48px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 48px;
}

.timeline-marker {
    position: absolute;
    left: 8px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-content {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.timeline-content .role {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.timeline-content .period {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 16px;
}

.timeline-content .description {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-content .achievements {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.timeline-content .achievements li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.timeline-content .achievements li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Industries & Expertise */
.industries-expertise {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.expertise-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.expertise-column h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

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

.expertise-list li i {
    color: var(--success);
    font-size: 18px;
}

/* Education */
.education {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.education-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.education-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.education-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.education-icon i {
    font-size: 28px;
    color: var(--white);
}

.education-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.education-details p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   Responsive Design
   =================================== */
/* Ensure nav menu is visible on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        background-color: transparent !important;
        width: auto !important;
        text-align: left !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 48px !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        grid-column: span 1;
    }
    
    .levers-grid,
    .models-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-bar-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 24px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0 24px;
    }
    
    .nav-menu li a {
        padding: 16px 0;
        display: block;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 220px;
        justify-content: center;
    }
    
    .services-grid,
    .results-grid,
    .testimonials-grid,
    .outcome-grid,
    .principles-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .approach-step:not(:last-child)::after {
        display: none;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .reveal-title {
        font-size: 24px;
    }
    
    .trust-bar-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .trust-bar-list {
        gap: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .trust-bar-list li {
        font-size: 15px;
        width: 100%;
        white-space: normal;
    }
    
    /* Profile Page Responsive */
    .page-hero {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .profile-hero-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 32px;
    }
    
    .profile-title {
        font-size: 18px;
    }
    
    .profile-tagline {
        font-size: 16px;
    }
    
    .profile-contact-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .profile-link {
        width: 100%;
        max-width: 280px;
    }
    
    /* Why Mimaroo Responsive */
    .story-intro .lead-text {
        font-size: 20px;
    }
    
    .story-body {
        padding: 32px 24px;
    }
    
    .story-body p {
        font-size: 16px;
    }
    
    .story-highlight {
        padding: 20px 24px;
        margin: 24px 0 !important;
    }
    
    .story-highlight strong {
        font-size: 18px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .timeline::before {
        left: 12px;
    }
    
    .timeline-item {
        padding-left: 48px;
    }
    
    .timeline-marker {
        left: 4px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        padding: 24px 20px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content .role {
        font-size: 16px;
    }
    
    /* Animated Metrics Responsive */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-value-animated {
        font-size: 42px;
    }
    
    .metric-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .metric-icon-large i {
        font-size: 28px;
    }
    
    /* Education Section Responsive */
    .education-item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .education-icon {
        margin: 0 auto 16px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 32px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 16px 0;
    }
    
    .hero {
        padding: 140px 0 50px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-credibility {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .trusted-by {
        padding: 32px 0;
    }
    
    .trusted-by-label {
        font-size: 12px;
        margin-bottom: 24px;
    }
    
    .logo-scroll {
        gap: 40px;
    }
    
    .logo-item {
        height: 45px;
    }
    
    .logo-item img {
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 220px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .challenges-grid,
    .services-grid,
    .results-grid,
    .approach-timeline {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        padding: 24px 20px;
    }
    
    .approach-step::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
