/* Modern Design System */
:root {
    /* Modern Color Palette */
    --primary: #0F172A;
    --secondary: #1E293B;
    --accent: #F97316;
    --accent-light: #FB923C;
    --accent-dark: #EA580C;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border: #E2E8F0;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

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

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 400;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--space-lg);
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    color: rgb(8, 54, 107);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    background-image: url('../images/stock/hero-leadership.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
}

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

.hero-logo {
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.6s ease;
}

.hero-logo-img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    background: white;
    padding: 10px;
}

.hero-title {
    color: white;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.credential-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.credential-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.icon {
    font-style: normal;
}

.hero-quote {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--space-xl);
    font-family: 'Playfair Display', Georgia, serif;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
}

/* Mindseye Section */
.mindseye-section {
    margin-bottom: var(--space-3xl);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.mission-statement {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
    border: 1px solid var(--border);
}

.mission-statement h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-statement p {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.mindseye-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.mindseye-text p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.value-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.value-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Our Approach Section */
.approach-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-light);
}

.approach-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.approach-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Founder Section */
.founder {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.founder-image {
    position: relative;
}

.personal-note {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--accent);
    text-align: center;
}

.personal-note p {
    font-size: 1.125rem;
    color: var(--accent-dark);
    margin: 0;
    font-style: italic;
}

.credentials-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.credential-simple {
    padding: var(--space-md);
    border-left: 3px solid var(--accent-light);
    background: rgba(248, 250, 252, 0.5);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.credential-simple h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.credential-simple p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.fun-facts-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.fun-fact-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.fun-fact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.fun-fact-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.fun-fact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.fun-fact-item.special {
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
    border: 2px solid var(--accent);
}

.fun-fact-item.special h4 {
    color: var(--accent-dark);
}

.fun-fact-item.special:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.subtitle {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.achievement-highlight {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--accent);
    text-align: center;
}

.achievement-highlight strong {
    color: var(--accent);
    font-size: 2rem;
    display: block;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.credential-item {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: var(--border);
}

.credential-item.award-badge {
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
    border: 2px solid var(--accent);
    grid-column: span 2;
}

.about-image {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.1;
}

/* Certifications */
.certifications-section {
    margin-top: var(--space-3xl);
}

.section-subtitle {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.cert-item {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-secondary);
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
    color: var(--text-primary);
}

.cert-item.award {
    grid-column: span 2;
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
    color: var(--accent-dark);
    font-weight: 700;
}

/* Image Break Section */
.image-break {
    height: 400px;
    background-image: url('../images/stock/team-coaching.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}

.image-break-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.image-break-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.image-break-content p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}


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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

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

.service-features li {
    padding: var(--space-sm) 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.services-cta .btn {
    font-size: 1rem;
    padding: var(--space-sm) var(--space-lg);
}

/* Testimonials */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.3s ease;
}

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

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Approach Section */
.approach {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.approach-item {
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

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

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

.approach-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card.primary {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 1px solid var(--accent-light);
}

.contact-card.primary:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
}

.contact-card.primary .contact-icon {
    background: rgba(255, 255, 255, 0.8);
}

.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.contact-note {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer p {
    margin-bottom: var(--space-sm);
}

.fun-fact {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: inline-block;
}

.fun-fact p {
    margin: 0;
    font-style: italic;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mindseye-content,
    .about-content,
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    
    .approach-cards {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .credentials,
    .values-grid,
    .fun-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .credential-item.award-badge,
    .cert-item.award {
        grid-column: span 1;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}