/* ==================== */
/* CSS RESET & BASE     */
/* ==================== */

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

:root {
    /* Color Palette */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

/* ==================== */
/* UTILITY CLASSES      */
/* ==================== */

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* ==================== */
/* HEADER & NAVIGATION  */
/* ==================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.logo-sub a {
    color: var(--primary-color);
    font-weight: 600;
}

.logo-sub a:hover {
    text-decoration: underline;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.nav-menu .cta-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 0.375rem;
}

.nav-menu .cta-btn:hover {
    background-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition-base);
}

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

.hero,
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    margin-top: 70px;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subhead {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 800px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #93c5fd;
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stat {
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-note {
    font-size: 1rem;
    color: #cbd5e1;
    font-style: italic;
}

/* ==================== */
/* HERO BACKGROUND IMAGE */
/* ==================== */

.hero-with-bg {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 138, 0.82) 100%);
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
}

/* ==================== */
/* SECTION IMAGES        */
/* ==================== */

.section-image {
    margin: 2rem 0 2.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

/* Solution two-column layout */
.solution-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.solution-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.solution-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Coaching two-column layout */
.coaching-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coaching-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coaching-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Background image sections */
.incubator-with-bg,
.cta-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.incubator-with-bg .section-bg-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.88) 100%);
}

.cta-with-bg .section-bg-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(30, 58, 138, 0.85) 100%);
}

/* ==================== */
/* PROBLEM SECTION      */
/* ==================== */

.problem-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.insight-box {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.insight-box h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.insight-large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.insight-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.insight-list li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.insight-conclusion {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* ==================== */
/* SOLUTION SECTION     */
/* ==================== */

.solution-section {
    padding: var(--section-padding);
    background-color: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.solution-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hard-rule {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.hard-rule h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hard-rule-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hard-rule-subtext {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition-base);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
}

.feature h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

/* ==================== */
/* HOW IT WORKS         */
/* ==================== */

.how-it-works-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.timeline-content {
    width: 45%;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-dark);
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

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

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.benefit-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ==================== */
/* STATS SECTION        */
/* ==================== */

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* ==================== */
/* CONTACT SECTION      */
/* ==================== */

.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-options {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-options h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-options ul {
    list-style: none;
}

.contact-options li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-options li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-base);
}

.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(37, 99, 235, 0.1);
}

.contact-form button {
    width: 100%;
    border: none;
}

/* ==================== */
/* SERVICES SECTION     */
/* ==================== */

.services-section {
    padding: var(--section-padding);
    background-color: white;
}

.services-philosophy {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
    border-left: 4px solid var(--accent-color);
}

.philosophy-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-tier-incubator {
    border-top-color: var(--accent-color);
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.service-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0;
}

.service-duration {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-features strong {
    color: var(--secondary-color);
}

.service-outcome {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-outcome strong {
    color: var(--secondary-color);
}

.service-ideal-for {
    padding: 0.75rem 1rem;
    background-color: #f0f9ff;
    border-left: 3px solid var(--primary-color);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    color: var(--text-dark);
}

.service-ideal-for strong {
    color: var(--secondary-color);
}

.service-options {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}

.service-options li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-options li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-options strong {
    color: var(--secondary-color);
}

/* Service Tier Sections */
.service-tier-section {
    margin-bottom: 4rem;
}

.tier-heading {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.tier-services-grid {
    display: grid;
    gap: 2rem;
}

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

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

.service-header h4 {
    color: var(--secondary-color);
    font-size: 1.375rem;
    margin: 0;
}

/* Responsive adjustments for tiered grids */
@media (max-width: 1024px) {
    .tier-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .tier-grid-3,
    .tier-grid-2 {
        grid-template-columns: 1fr;
    }

    .tier-heading {
        font-size: 1.5rem;
    }
}

.service-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition-base);
    text-align: center;
}

.service-cta:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.services-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.services-cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.services-cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== */
/* FAQ SECTION          */
/* ==================== */

.faq-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

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

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-color);
    font-style: italic;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: white;
    font-weight: 600;
}

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

.footer-link-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.footer-link-cta:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

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

@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 100px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.25rem;
    }

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

    .solution-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coaching-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-image img {
        height: 220px;
    }

    .solution-image-wrap img {
        min-height: 240px;
    }

    .coaching-image-wrap img {
        min-height: 240px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-value {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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

/* ==================== */
/* PAGE HERO (inner)    */
/* ==================== */

.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    margin-top: 70px;
}

.page-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.page-hero .hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 750px;
}

.page-hero .page-description {
    color: #cbd5e1;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* ==================== */
/* CONTENT SECTIONS     */
/* ==================== */

.page-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.page-section:nth-child(even) {
    background-color: var(--bg-light);
}

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

.content-block + .content-block {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.content-block h2 {
    color: var(--secondary-color);
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.content-block h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}

.content-block p {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.chain-list {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}

.chain-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.chain-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.content-list {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
}

.content-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.content-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.content-list.check li::before {
    content: '✓';
    color: var(--success-color);
}

.content-list.numbered {
    counter-reset: item;
}

.content-list.numbered li::before {
    content: counter(item);
    counter-increment: item;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    top: 0.2rem;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==================== */
/* HIGHLIGHT BOX        */
/* ==================== */

.highlight-box {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box .content-list li {
    color: #e2e8f0;
}

.highlight-box .content-list li::before {
    color: #93c5fd;
}

.warning-box {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.success-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* ==================== */
/* CTA SECTION (inner)  */
/* ==================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-section .hero-cta {
    margin-bottom: 0;
}

/* ==================== */
/* SERVICES HUB         */
/* ==================== */

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

.service-hub-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: var(--transition-base);
    border-top: 3px solid var(--primary-color);
}

.service-hub-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-hub-card h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
}

.service-hub-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-hub-card a.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-hub-card a.service-link:hover {
    text-decoration: underline;
}

/* ==================== */
/* METRIC GRID (proof)  */
/* ==================== */

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

.metric-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.metric-card .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.metric-card .metric-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ==================== */
/* PERSON PAGE          */
/* ==================== */

.person-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    margin-top: 70px;
}

.person-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.person-photo-wrap {
    position: relative;
}

.person-photo {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.person-info h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}

.person-title {
    font-size: 1.25rem;
    color: #93c5fd;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.person-intro {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.75;
}

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

.person-section .content-block {
    max-width: 800px;
}

@media (max-width: 768px) {
    .person-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .person-photo-wrap {
        max-width: 240px;
        margin: 0 auto;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

/* ==================== */
/* INCUBATOR HUB        */
/* ==================== */

.incubator-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.principle-card h3 {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.principle-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.incubator-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.path-card {
    background-color: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
}

.path-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .incubator-paths {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* FAQ ITEMS (inline)   */
/* ==================== */

.faq-inline {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-inline .faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-inline .faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-inline .faq-question {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* ==================== */
/* NAV ACTIVE STATE     */
/* ==================== */

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== */
/* CASE STUDY BLOCKS    */
/* ==================== */

.case-study-block {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.case-study-block h3 {
    color: var(--secondary-color);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.case-study-block .situation {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ==================== */
/* EXPERIENCE TIMELINE  */
/* (reused from founder)*/
/* ==================== */

.experience-block {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.experience-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.experience-years {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 120px;
    font-family: var(--font-heading);
}

.experience-org h3 {
    font-size: 1.375rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.experience-tagline {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* ==================== */
/* ANIMATIONS           */
/* ==================== */

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.stat-number {
    animation: pulse 2s ease-in-out infinite;
}

/* ==================== */
/* CONTACT PAGE LAYOUT  */
/* ==================== */

.page-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 720px;
    margin-top: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info-column h2,
.contact-info-column h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-column h3 {
    font-size: 1.1rem;
    margin-top: 2rem;
}

.contact-form-column h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.numbered-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.numbered-list li {
    margin-bottom: 0.6rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.bullet-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.direct-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.direct-contact p {
    margin-bottom: 0.4rem;
}

.direct-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.direct-contact a:hover {
    text-decoration: underline;
}

/* HubSpot form frame */
.hs-form-frame {
    min-height: 300px;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==================== */
/* GLOBAL VISUAL POLISH */
/* ==================== */

/* Accent bar above H2 headings in content blocks — makes sections feel anchored */
.content-block h2::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

/* bg-light sections get a subtle top border so the section break is visible */
.page-section.bg-light,
.page-section--alt {
    border-top: 1px solid #d4def0;
    border-bottom: 1px solid #d4def0;
}

/* Belief tiles grid */
.belief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.belief-tile {
    background: white;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .belief-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .belief-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* TEAM CARDS           */
/* ==================== */

.team-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
    border-top: 1px solid #d4def0;
    border-bottom: 1px solid #d4def0;
}

.team-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-section-header h2 {
    color: var(--secondary-color);
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.team-section-header h2::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 0 auto 0.75rem;
}

.team-section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.team-card-photo {
    width: 100%;
    height: auto;
    display: block;
}

.team-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.team-card-role {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.team-card-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.team-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.team-card-highlights li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.55;
}

.team-card-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
}

.team-card-cta {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--primary-color);
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    transition: color 0.2s;
}

.team-card-cta:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

}

/* --- LinkedIn Embed --- */
.linkedin-embed {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0;
}

.linkedin-embed iframe {
    max-width: 100%;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

/* --- Data Tables --- */
.table-responsive {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #fff;
}

thead {
    background: var(--primary-color, #1a365d);
    color: #fff;
}

thead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

tbody td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #e8ecf0;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background: #f8fafb;
}

tfoot td {
    padding: 0.75rem 1rem;
    background: #f0f4f8;
    font-weight: 600;
    border-top: 2px solid var(--primary-color, #1a365d);
}

@media (max-width: 600px) {
    thead th, tbody td, tfoot td {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
    }
}

