/* PrepMeisters - Main Stylesheet */
/* Version: 2.0 - Multi-page SEO Optimized */

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

:root {
    --navy: #1e3a5f;
    --navy-dark: #152a47;
    --navy-light: #2d5a7f;
    --teal: #0d9488;
    --teal-dark: #0a7a70;
    --teal-light: #14b8a6;
    --teal-subtle: rgba(13, 148, 136, 0.05);
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-cream: #f5f7fa;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease-out forwards; }

/* Navigation */
nav {
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}
.logo svg { height: 48px; width: auto; }
.logo-text {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
}
.logo-text .prep { color: var(--navy); }
.logo-text .meisters { color: var(--teal); }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}
.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--teal);
    background-color: rgba(13,148,136,0.1);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(30,58,95,0.88) 0%, rgba(21,42,71,0.78) 50%, rgba(13,148,136,0.12) 100%);
}
.hero-content {
    max-width: 950px;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem,5vw,3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
}
.hero h1 .line2 { display: block; white-space: nowrap; }
.hero-tagline {
    font-size: clamp(1.05rem,2vw,1.25rem);
    margin-bottom: 1rem;
    opacity: 0.92;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.hero-stats {
    font-size: clamp(1rem,1.8vw,1.15rem);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--teal-light);
}

/* Page Header (for non-home pages) */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: var(--white);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13,148,136,0.4);
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.5);
}

/* Container and Sections */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}
.section-white { background-color: var(--white); }
.section-light { background-color: var(--bg-light); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem,4vw,2.5rem);
    margin-bottom: 1rem;
    color: var(--navy);
    text-align: center;
    font-weight: 700;
}
.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 280px;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.feature-card:hover::before { opacity: 0.12; }
.feature-card.card-expertise::before { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=800&q=80'); }
.feature-card.card-visibility::before { background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=800&q=80'); }
.feature-card.card-pricing::before { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=800&q=80'); }
.feature-card.card-speed::before { background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=800&q=80'); }
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card-content { position: relative; z-index: 1; }
.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--navy);
    font-weight: 700;
}
.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Cards */
.process-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 300px;
}
.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.process-card:hover::before { opacity: 0.15; }
.process-card.card-ship::before { background-image: url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?auto=format&fit=crop&w=800&q=80'); }
.process-card.card-prep::before { background-image: url('https://images.unsplash.com/photo-1590247813693-5541d1c609fd?auto=format&fit=crop&w=800&q=80'); }
.process-card.card-fulfill::before { background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=800&q=80'); }
.process-card.card-track::before { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=800&q=80'); }
.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.process-card:hover::after { transform: scaleX(1); }
.process-card-content { position: relative; z-index: 1; }
.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.process-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.process-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.process-icon svg { width: 24px; height: 24px; }
.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
    font-weight: 700;
}
.process-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Location Cards */
.location-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}
.location-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
}
.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.location-card:hover::before { opacity: 0.12; }
.location-card.card-network::before { background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=800&q=80'); }
.location-card.card-ports::before { background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=800&q=80'); }
.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.location-card:hover::after { transform: scaleX(1); }
.location-card-content { position: relative; z-index: 1; }
.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.location-card .feature-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    flex-shrink: 0;
}
.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--navy);
    font-weight: 700;
}
.location-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, var(--teal), transparent);
    opacity: 0.1;
    transform: rotate(-15deg);
}
.cta-section-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.cta-lines p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.cta-section .cta-button { margin-top: 2rem; }

/* Services Grid */
.services-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.service-card:hover::before { opacity: 0.1; }
.service-card:nth-child(1)::before { background-image: url('https://images.unsplash.com/photo-1590247813693-5541d1c609fd?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(2)::before { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(3)::before { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(4)::before { background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(5)::before { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(6)::before { background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=800&q=80'); }
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-content { position: relative; z-index: 1; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
    border-left: 4px solid var(--teal);
    padding-left: 1rem;
}
.service-card ul {
    list-style: none;
    color: var(--text-medium);
}
.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}
.service-card ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

/* Pricing Tables */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.pricing-table-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    flex: 0 1 450px;
    max-width: 500px;
}
.pricing-table-container h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.pricing-table th, .pricing-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.pricing-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--navy);
    font-family: var(--font-display);
}
.pricing-table th small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-light);
}
.pricing-table tbody tr:hover { background-color: var(--bg-light); }
.pricing-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}
.pricing-highlight {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 2px solid var(--teal);
}
.pricing-features-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.pricing-feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.pricing-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.pricing-feature-card .feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pricing-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.pricing-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0;
}
.pricing-feature-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}
.founder-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid var(--teal);
}
.founder-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}
.founder-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.2s ease;
}
.linkedin-link:hover { color: var(--teal-dark); }
.principles-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.principle-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.principle-card .feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.principle-card .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.principle-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0;
}
.principle-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-category {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2.5rem 0 1.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--teal);
    font-weight: 700;
}
.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}
.faq-question:hover { background-color: var(--bg-light); }
.faq-toggle {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 400;
    transition: background 0.2s ease;
}
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
    display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}
.faq-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}
.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}
.contact-info a {
    color: var(--teal);
    text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    transition: all 0.2s ease;
}
.social-links a:hover {
    background: var(--teal);
    transform: translateY(-2px);
}
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13,148,136,0.3);
}
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.4);
}

/* Blog Coming Soon */
.blog-coming-soon {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}
.blog-coming-soon .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
}
.blog-coming-soon .icon svg {
    width: 40px;
    height: 40px;
}
.blog-coming-soon h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.blog-coming-soon p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.blog-topics {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}
.blog-topics h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 1rem;
}
.blog-topics ul {
    list-style: none;
}
.blog-topics li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}
.blog-topics li::before {
    content: "â†’";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 0;
}
.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 700;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo svg { height: 48px; width: auto; }
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}
.footer-logo-text .prep { color: var(--white); }
.footer-logo-text .meisters { color: var(--teal-light); }
.footer-tagline {
    line-height: 1.7;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-section a:hover { color: var(--teal-light); }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; }
    .pricing-features-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 0.75rem 1rem; width: 100%; }
    .mobile-menu-toggle { display: block; }
    .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .hero h1 .line2 { white-space: normal; }
    .page-header { padding: 7rem 1.5rem 3rem; }
    .container { padding: 3rem 1.5rem; }
    .features-grid, .services-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-logo { justify-content: center; }
}
@media (max-width: 480px) {
    .nav-container { padding: 0.75rem 1rem; }
    .logo svg { height: 36px; }
    .logo-text { font-size: 1.25rem; }
    .hero h1 { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
    .contact-form, .contact-info { padding: 1.5rem; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.hidden { display: none !important; }

/* Additional styles for multi-page site */

/* Blog Coming Soon - Enhanced Styles */
.coming-soon-icon {
    margin-bottom: 1.5rem;
}

.coming-soon-icon svg {
    color: var(--teal);
}

.blog-coming-soon h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.blog-coming-soon > p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.blog-coming-soon h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

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

.blog-topic {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.blog-topic svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
    margin-bottom: 1rem;
}

.blog-topic h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.blog-topic p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 1.4rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-contact {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-contact p {
    margin-bottom: 0;
}

.privacy-consent {
    background: var(--navy);
    color: white !important;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Services Grid - for services page */
.services-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--teal);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* Principles Grid - for about page */
.principles-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.principle-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
}

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

.principle-card .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-card .feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.principle-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0;
}

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

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Founder Card */
.founder-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--navy);
}

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

.founder-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.founder-card p:last-of-type {
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.linkedin-link:hover {
    color: var(--teal);
}

.linkedin-link svg {
    fill: currentColor;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    color: var(--navy);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--teal);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 300;
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.faq-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info h2 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-info h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item a {
    color: var(--navy);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--teal);
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

/* Hidden class for honeypot */
.hidden {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-topics {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* V2.1 Updates */

/* Change 10: FAQ Toggle as teal circle */
.faq-toggle {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    background: var(--teal) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    transition: background 0.2s ease !important;
}
.faq-item.active .faq-toggle {
    background: var(--navy) !important;
}

/* Change 12: Lighter privacy consent box */
.privacy-consent {
    background: var(--bg-light) !important;
    color: var(--text-medium) !important;
    border: 1px solid var(--border-color) !important;
}

/* Change 5: Pricing table container - handled in main rule */

/* Change 9: Pricing features grid centering */
.pricing-features-grid {
    justify-content: center;
}



/* ========================================
   V2.1 FIXES
   ======================================== */

/* Fix 1: FAQ toggle - teal circle with +/- */
.faq-toggle {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    background: var(--teal) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    padding: 1px 0 0 0 !important;
    transform: none !important;
    transition: background 0.2s ease !important;
}
.faq-item.active .faq-toggle {
    background: var(--navy) !important;
    transform: none !important;
    padding: 0 0 2px 0 !important;
}

/* Fix 2: Services page - single checkmark only */
.service-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.service-card ul li {
    padding: 0.4rem 0 !important;
    padding-left: 1.5rem !important;
    position: relative !important;
}
.service-card ul li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.4rem !important;
    color: var(--teal) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
}

/* Fix 3: Center odd-number cards - ONLY for specific grids, NOT features-grid */
.pricing-features-grid,
.principles-grid,
.location-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.5rem !important;
}
.pricing-feature-card,
.principle-card {
    flex: 0 1 320px !important;
    max-width: 380px !important;
}
.location-card {
    flex: 0 1 340px !important;
    max-width: 400px !important;
}

/* Fix 4: Pricing tables - removed, handled in main pricing-container rule */

/* Fix 5: Features grid - restore original grid layout for How It Works */
.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    justify-content: center !important;
}
.feature-card {
    flex: none !important;
    max-width: none !important;
    width: auto !important;
}

/* Fix 3: Contact page - teal background only on form */
.contact-section {
    background: var(--white) !important;
    border: none !important;
}
.contact-form {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.03) 0%, rgba(13, 148, 136, 0.06) 100%) !important;
    border: 1px solid rgba(13, 148, 136, 0.15) !important;
}

/* About page section styling */
.about-section {
    background: var(--white) !important;
    border: none !important;
}
.founder-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.03) 0%, rgba(13, 148, 136, 0.06) 100%) !important;
    border: 1px solid rgba(13, 148, 136, 0.15) !important;
    border-left: 4px solid var(--teal) !important;
}
.principle-card .feature-icon,
.principles-grid .feature-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
    color: var(--white) !important;
}

/* Lighter CTA section */
.cta-section.cta-light {
    background: var(--bg-light) !important;
}
.cta-section.cta-light h2 {
    color: var(--navy) !important;
}
.cta-section.cta-light p,
.cta-section.cta-light .cta-lines p {
    color: var(--text-medium) !important;
}

/* ============================================
   FOUNDER'S PROMO BANNER (Hero Section)
   Remove this section when promo ends
   ============================================ */
.promo-banner-hero {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--teal);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.promo-banner-hero .promo-badge {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.promo-banner-hero h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.promo-banner-hero p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.promo-banner-hero .promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.promo-banner-hero .promo-cta:hover {
    background: var(--teal-dark);
}

@media (max-width: 768px) {
    .promo-banner-hero {
        margin: 1.5rem 1rem 0;
        padding: 1rem;
    }
    
    .promo-banner-hero h3 {
        font-size: 1.15rem;
    }
    
    .promo-banner-hero p {
        font-size: 0.85rem;
    }
}
/* END FOUNDER'S PROMO BANNER */

/* ========================================
   BLOG STYLES - V2.4
   ======================================== */

/* Top Utility Bar */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar-item:hover {
    color: var(--teal-light);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
}

/* Adjust nav and page content when utility bar is present */
.top-bar ~ nav {
    top: 36px;
}

.top-bar ~ nav ~ main .page-header {
    padding-top: 10rem;
}

.top-bar ~ nav ~ main .blog-post-header {
    margin-top: 36px;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-left {
        font-size: 0.8rem;
    }
    
    .top-bar-right {
        gap: 1rem;
    }
    
    .top-bar ~ nav {
        top: 56px;
    }
    
    .top-bar ~ nav ~ main .page-header {
        padding-top: 12rem;
    }
    
    .top-bar ~ nav ~ main .blog-post-header {
        margin-top: 56px;
    }
}

/* Blog Listing Page Styles */
.blog-tag-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.blog-tag-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-tag-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.blog-tag-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.blog-card-date,
.blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--text-medium);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.cta-button-outline:hover {
    background: var(--teal);
    color: var(--white);
}

/* Blog Post Page Styles - Title BELOW image */
.blog-post-header {
    position: relative;
}

.blog-post-image-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-featured-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: contain;
}

.blog-post-header-content {
    background: var(--white);
    padding: 2rem;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.blog-post-tag {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 1rem;
}

.blog-post-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-post-meta svg {
    color: var(--teal);
}

/* Blog Post Content */
.blog-post-content {
    padding: 2rem 0 3rem;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-post-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    font-style: italic;
}

.blog-post-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
}

.blog-post-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

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

.blog-post-content strong {
    color: var(--text-dark);
}

.blog-post-content em {
    font-style: italic;
}

/* Blog Post Callout Box */
.blog-post-callout {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(13, 148, 136, 0.1) 100%);
    border-left: 4px solid var(--teal);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.blog-post-callout strong {
    color: var(--teal-dark);
}

/* Blog Post Images - Side by Side at 25% */
.blog-post-image-row {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.blog-post-figure {
    flex: 0 0 25%;
    max-width: 25%;
}

.blog-post-figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.blog-post-figure figcaption {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 600px) {
    .blog-post-image-row {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-post-figure {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

/* Blog Post CTA */
.blog-post-cta {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-post-cta h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.blog-post-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Blog Post Author Bio - NO LinkedIn link */
.blog-post-author-bio {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.author-bio-content h4 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.author-bio-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Blog Post Share - Smaller icons */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.blog-post-share > span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.blog-post-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: var(--white);
    transition: all 0.2s ease;
}

.share-button svg {
    width: 16px;
    height: 16px;
}

.share-linkedin {
    background: #0077b5;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #000000;
}

.share-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Blog CTA in listing page */
.blog-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Responsive adjustments for blog post header */
@media (max-width: 768px) {
    .blog-post-header-content {
        padding: 1.5rem;
    }
    
    .blog-post-meta {
        gap: 1rem;
    }
    
    .container-narrow {
        padding: 0 1.5rem;
    }
}

/* ========================================
   INTAKE SUBMISSION THANK YOU PAGE STYLES
   ======================================== */

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    color: var(--teal);
    stroke-width: 2;
}

.thank-you-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.next-steps {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.next-steps h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.thank-you-cta {
    margin-top: 2.5rem;
}

.thank-you-cta > p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.cta-button-secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-reminder {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-reminder p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

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

/* Responsive adjustments for thank-you page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 1rem 0;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .step-item {
        gap: 1rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
