/* CSS Variables - ODA Design System */
:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;

    /* Secondary Colors */
    --secondary-teal: #0891b2;
    --secondary-orange: #ea580c;
    --accent-green: #059669;

    /* Neutral Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --bg: #ffffff;
    --panel: #f9fafb;
    --border: #e5e7eb;
    --border-light: #f3f4f6;

    /* Typography */
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', Monaco, Inconsolata, 'Roboto Mono', Consolas, 'Courier New', monospace;

    /* Layout */
    --header-height: 90px;

    /* Spacing - Tightened */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3.5rem;
    --space-4xl: 4.5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-system);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg);
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: 3.5rem; 
    margin-bottom: var(--space-lg);
}

h2 { 
    font-size: 2.5rem; 
    margin-bottom: var(--space-lg);
}

h3 { 
    font-size: 1.875rem; 
    margin-bottom: var(--space-md);
}

h4 { 
    font-size: 1.5rem; 
    margin-bottom: var(--space-md);
}

h5 { 
    font-size: 1.25rem; 
    margin-bottom: var(--space-sm);
}

h6 { 
    font-size: 1.125rem; 
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.text-large {
    font-size: 1.375rem;
    line-height: 1.6;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.125rem;
    line-height: 1.5;
    min-height: 48px;
    gap: var(--space-sm);
    font-family: var(--font-system);
}

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

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

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.25rem;
    min-height: 56px;
}

.btn-small {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    min-height: 36px;
}

/* Header Styles */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-xs) 0;
    line-height: 1.2;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-sm);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Default padding for pages without hero sections */
main:not(#about-page main):not(#services-page main):not(#contact-page main) {
    padding-top: var(--header-height);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1f3d 0%, #1e3a5f 50%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 var(--space-lg);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: var(--panel);
    text-align: center;
}

.page-header h1 {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: var(--space-3xl) 0;
}

.section.alt {
    background: linear-gradient(135deg, var(--panel) 0%, #f1f5f9 100%);
}

.section.blue-pattern {
    background: linear-gradient(135deg, #0d1f3d 0%, #1e3a5f 50%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section.blue-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px), radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: 1;
}

.section.blue-pattern .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Cards */
.card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

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

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

/* Service Cards */
.service-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    text-align: left;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-system);
    transition: border-color 0.2s ease;
    background: white;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.error-message {
    color: var(--secondary-orange);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: none;
}

.form-success {
    text-align: center;
    padding: var(--space-2xl);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    color: var(--accent-green);
}

.form-success h3 {
    color: var(--accent-green);
    margin-bottom: var(--space-md);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d1f3d 0%, #1e3a5f 50%, #2563eb 100%);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    align-items: start;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--space-lg);
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: var(--space-lg);
}

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

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: var(--space-lg) 0;
        gap: var(--space-lg);
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }

    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        transition: 0.3s;
        border-radius: 2px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    h1 { 
        font-size: 2.5rem; 
    }

    h2 { 
        font-size: 2rem; 
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .grid {
        gap: var(--space-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    h1 { 
        font-size: 2rem; 
    }

    h2 { 
        font-size: 1.75rem; 
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-container {
        padding: var(--space-md);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Home-only hero alignment */
#home-hero {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#home-hero .container {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#home-hero h1,
#home-hero p {
    text-align: left;
}

#home-hero .hero-buttons,
#home-hero div[style*="display: flex"] {
    justify-content: flex-start;
}

@media (max-width: 640px) {
    #home-hero .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Header */
.navbar{position:sticky;top:0;background:rgba(255,255,255,.96);backdrop-filter:blur(6px) saturate(120%);border-bottom:1px solid rgba(0,0,0,.06);z-index:1000}
.nav-container{max-width:1200px;margin:0 auto;padding:10px 24px;display:flex;align-items:center;justify-content:space-between}
.nav-logo img{height:56px;width:auto;display:block}
.nav-menu{display:flex;gap:20px;align-items:center}
.nav-link{font-weight:600;color:var(--primary-dark,#0f172a);padding:8px 6px}
.nav-link:hover,.nav-link:focus{color:var(--primary-blue,#2563eb);outline:none}
.nav-link.active{color:var(--primary-blue,#2563eb);border-bottom:2px solid var(--primary-blue,#2563eb)}
.nav-link:focus-visible{outline:2px solid #93c5fd;outline-offset:2px;border-radius:4px}

/* Global container gutters */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
@media (max-width:640px){.container{padding:0 16px}}

/* Home hero only */
#home-hero{min-height:47vh;position:relative;overflow:hidden;background:linear-gradient(135deg,#0d1f3d 0%,#1e3a5f 50%,#2563eb 100%)}
#home-hero .hero-pattern{position:absolute;inset:0;opacity:.12;background-image:radial-gradient(circle at 25% 25%,white 2px,transparent 2px),radial-gradient(circle at 75% 75%,white 2px,transparent 2px);background-size:60px 60px}
#home-hero .hero-inner{position:relative;z-index:1;display:flex;align-items:center;min-height:47vh;padding:clamp(32px,7vh,64px) 24px 32px}
#home-hero .hero-copy{max-width:800px;color:#fff;text-align:left}
#home-hero h1{font-size:clamp(40px,6vw,64px);line-height:1.1;font-weight:800;margin:0 0 20px;letter-spacing:-.01em;color:#fff}
#home-hero .grad{background:linear-gradient(90deg,#60a5fa,#34d399);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
#home-hero p{font-size:clamp(18px,2vw,20px);color:#dbeafe;line-height:1.6;margin:0 0 28px}
#home-hero .cta-row{display:flex;gap:16px;flex-wrap:wrap}
.btn.btn-primary.btn-large{background:linear-gradient(90deg,#2563eb,#1d4ed8);border:none;box-shadow:0 10px 30px rgba(37,99,235,.3)}
.btn.btn-secondary.btn-large{background:transparent;border:2px solid #93c5fd;color:#e2e8f0}
.btn:focus-visible{outline:3px solid #93c5fd;outline-offset:2px}

@media (max-width:640px){
  #home-hero .hero-pattern{opacity:.16}
  #home-hero{background:linear-gradient(135deg,#0d1f3d 0%,#1b3355 55%,#1d4ed8 100%)}
}

/* Deliverables Cards Hover Effects */
.deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Approach Cards Hover Effects */
#about-page .approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Principles grid responsive */
@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* ===== Page-specific fixes for About, Services, Contact ===== */

/* Position hero sections directly under navbar without gap */
#about-page #about-hero,
#services-page #services-hero,
#contact-page #contact-hero {
    margin-top: 0;
    padding-top: var(--header-height);
}

/* Ensure no conflicting margins or padding */
#about-page,
#services-page,
#contact-page {
    margin: 0;
}

#about-page main,
#services-page main,
#contact-page main {
    margin: 0;
    padding-top: 0;
}


#about-page #about-hero { position: relative; }
#about-page #about-hero .hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .22); /* tone down hero bg for legibility, colors unchanged */
}

/* Section header */
#about-page .section-head { text-align: center; margin: var(--space-2xl, 32px) auto var(--space-2xl, 32px); max-width: 800px; }
#about-page .section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 8px; }
#about-page .section-head .lead { color: var(--text-secondary, #475569); }

/* 2-col grid for Principles + What you get */
#about-page .about-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl, 48px);
}
@media (max-width: 900px){ #about-page .about-grid-2 { grid-template-columns: 1fr; } }

/* Enhanced Card Styling */
#about-page .principles-card,
#about-page .deliverables-card {
  background: white;
  border-radius: 20px;
  padding: var(--space-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

#about-page .principles-card::before,
#about-page .deliverables-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
}

#about-page .card-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

#about-page .icon-container {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#about-page .principles-icon {
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
}

#about-page .deliverables-icon {
  background: linear-gradient(135deg, var(--secondary-teal), #0891b2);
}

#about-page .card-header h2 {
  margin: 0;
  font-size: 1.875rem;
  color: var(--text-primary);
}

/* Principles List */
#about-page .principles-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

#about-page .principle-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

#about-page .principle-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
  border-color: var(--primary-blue);
}

#about-page .principle-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

#about-page .principle-content {
  line-height: 1.6;
  color: var(--text-primary);
}

/* Deliverables List */
#about-page .deliverables-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

#about-page .deliverable-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 12px;
  border: 1px solid #bae6fd;
  transition: all 0.3s ease;
}

#about-page .deliverable-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.15);
}

#about-page .deliverable-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-teal), #0891b2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

#about-page .deliverable-content {
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
}

/* Process Flow */
#about-page .process-flow {
  margin: var(--space-3xl) 0;
}

#about-page .process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  max-width: 800px;
  margin: 0 auto;
}

#about-page .timeline-line {
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-teal), var(--accent-green));
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 1;
}

#about-page .process-step {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

#about-page .process-step:nth-child(even) {
  flex-direction: row-reverse;
}

#about-page .step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

#about-page .step-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
}

#about-page .step-badge.primary {
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
}

#about-page .step-badge.green {
  background: linear-gradient(135deg, var(--accent-green), #15803d);
}

#about-page .step-badge.red {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

#about-page .step-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
}

#about-page .step-content {
  flex: 1;
  background: white;
  padding: var(--space-xl);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

#about-page .step-content h3 {
  margin: 0 0 var(--space-md) 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

#about-page .step-content p {
  margin: 0 0 var(--space-lg) 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

#about-page .step-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

#about-page .feature-tag {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: var(--secondary-teal);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #bae6fd;
}

/* Process Stats */
#about-page .process-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

#about-page .stat-item {
  text-align: center;
}

#about-page .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

#about-page .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #about-page .timeline-line {
    left: 30px;
  }

  #about-page .process-step {
    flex-direction: row !important;
    padding-left: var(--space-xl);
  }

  #about-page .process-step:nth-child(even) {
    flex-direction: row !important;
  }

  #about-page .step-visual {
    position: absolute;
    left: 0;
  }

  #about-page .step-content {
    margin-left: 80px;
  }

  #about-page .process-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  #about-page .principles-card,
  #about-page .deliverables-card {
    padding: var(--space-xl);
  }

  #about-page .card-header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}

    }
}