/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
    --navy: #0f172a;
    --slate: #1e293b;
    --light-slate: #334155;
    --gold: #f59e0b;
    --white: #f8fafc;
    --gray: #94a3b8;
    --green: #10b981;
    --font-primary: 'Inter', sans-serif;
}

/* --- BASE & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}
body {
    font-family: var(--font-primary);
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p {
    color: var(--gray);
    margin-bottom: 1rem;
}
a {
    color: var(--gold);
    text-decoration: none;
}
section {
    padding: 80px 0;
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-center { text-align: center; }
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn:hover {
    transform: translateY(-3px);
}
.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
}
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--light-slate);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    z-index: 1001;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Navigation for Desktop */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.main-nav a {
    color: var(--gray);
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 5px 0;
    position: relative;
}
.main-nav a:hover {
    color: var(--white);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active-link::after {
    width: 100%;
}
.main-nav a.active-link {
    color: var(--white);
}
/* Navigation CTA Button */
.nav-cta {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    margin-left: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
    }
    .main-nav.active {
        display: flex;
        transform: translateY(0);
    }
    .main-nav a {
        font-size: 1.5rem;
        color: var(--white);
    }
    .main-nav a::after {
        display: none;
    }
    .nav-cta {
        font-size: 1.2rem !important;
        padding: 12px 24px !important;
    }
    .nav-toggle {
        display: block;
    }
    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* --- HERO SECTIONS --- */
.hero {
    padding-top: 60px;
}
.hero-sub {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

/* --- ABOUT PAGE STYLES --- */
.about-story {
    background-color: var(--slate);
}
.story-section {
    margin-bottom: 3rem;
}
.highlight-box {
    background-color: var(--navy);
    padding: 30px;
    border-left: 4px solid var(--gold);
    margin: 3rem 0;
    border-radius: 8px;
}
.framework-list {
    list-style: none;
    margin: 2rem 0;
}
.framework-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

/* --- SERVICES PAGE STYLES --- */
.qualifying {
    background-color: var(--slate);
}
.qualifying-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.qualifying-box {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
}
.qualifying-box ul {
    list-style: none;
    margin-top: 1rem;
}
.qualifying-box li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.qualifying-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* New Services Section Styles */
.intro-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Audience Paths Styles */
.audience-paths {
    margin: 4rem 0;
    text-align: center;
}

.audience-paths h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.path-card {
    background-color: var(--slate);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-slate);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

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

.path-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.path-card p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.path-challenge {
    background-color: var(--navy);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    color: var(--gray);
    border-left: 3px solid var(--gold);
}

/* New Services Grid Styles */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background-color: var(--slate);
    border-radius: 12px;
    border: 1px solid var(--light-slate);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-header {
    background-color: var(--navy);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--light-slate);
}

.service-badge {
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-header h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--gray);
    font-size: 1rem;
}

.service-description {
    padding: 2rem;
    border-bottom: 1px solid var(--light-slate);
}

.service-description p {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.service-process {
    padding: 2rem;
    border-bottom: 1px solid var(--light-slate);
}

.service-process h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background-color: var(--gold);
    color: var(--navy);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--white);
    font-weight: 500;
}

.service-includes {
    padding: 2rem;
    border-bottom: 1px solid var(--light-slate);
}

.service-includes h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.includes-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--white);
}

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

.mission-connection {
    padding: 2rem;
    background-color: rgba(245, 158, 11, 0.1);
    border-bottom: 1px solid var(--light-slate);
}

.mission-connection p {
    color: var(--white);
    margin: 0;
    font-style: italic;
}

.service-card .btn {
    margin: 2rem;
    display: block;
    text-align: center;
}

/* Mission Footer Styles */
.services-mission-footer {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
    text-align: center;
}

.mission-reminder h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.mission-reminder p {
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mission-progress-mini {
    max-width: 400px;
    margin: 0 auto;
}

.progress-text {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.progress-bar-mini {
    width: 100%;
    height: 8px;
    background-color: var(--light-slate);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, #f7b731 100%);
    transition: width 0.8s ease;
}

/* Legacy styles for backward compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    margin-top: 3rem;
}
.service-card.popular {
    border: 2px solid var(--gold);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}
.popular-banner {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.service-tagline {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1rem;
}
.price span {
    font-size: 1rem;
    color: var(--gray);
}
.value-stack {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}
.value-stack li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    padding-left: 1.5rem;
    position: relative;
}
.value-stack li::before {
    content: '✓';
    color: var(--green);
    font-weight: 500;
    position: absolute;
    left: 0;
}
.price-comparison {
    margin: 1rem 0;
}
.original-price {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 1rem;
}
.current-price {
    color: var(--gold);
    font-weight: 500;
    font-size: 1.2rem;
}
.guarantee-box {
    background-color: var(--navy);
    border: 1px dashed var(--gold);
    padding: 15px;
    border-radius: 5px;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- CASE STUDIES STYLES --- */
.case-studies {
    background-color: var(--slate);
}
.case-study {
    background-color: var(--navy);
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.case-study:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.case-study-header h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.client-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
}

.client-info {
    color: var(--white);
    font-size: 1.1rem;
    padding: 0;
}

.client-info-card {
    background-color: var(--light-slate);
    padding: 1.5rem;
    border-radius: 8px;
}

.case-study-content {
    display: grid;
    gap: 2rem;
}
.before-section, .intervention-section, .breakthrough-section, .results-section {
    padding: 1.5rem;
    background-color: var(--slate);
    border-radius: 8px;
}
blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 1rem 0;
}
.results-list {
    list-style: none;
    margin: 1rem 0;
}
.results-list li {
    margin-bottom: 0.5rem;
    color: var(--white);
}
.final-quote {
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}
.case-studies-cta {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* --- CODEX STYLES --- */
.codex-articles {
    background-color: var(--slate);
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.article-card {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--light-slate);
    transition: transform 0.2s ease;
}
.article-card:hover {
    transform: translateY(-5px);
}
.article-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.reading-time {
    color: var(--gray);
}
.category {
    background-color: var(--gold);
    color: var(--navy);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 0.8rem;
}
.article-link {
    color: var(--gold);
    font-weight: 400;
    text-decoration: none;
}
.article-link:hover {
    text-decoration: underline;
}

.codex-newsletter {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 4rem;
}
.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}
.newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--light-slate);
    background-color: var(--slate);
    color: var(--white);
}
.newsletter-form input::placeholder {
    color: var(--gray);
}
.trust-badge {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.sample-article {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 10px;
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
}
.audit-section {
    background-color: var(--slate);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
}
.audit-section ul {
    margin-top: 1rem;
}
.cta-box {
    background-color: var(--gold);
    color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}
.content-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.content-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: var(--white);
    color: var(--navy);
}

/* --- CONTACT STYLES --- */
.contact {
    background-color: var(--slate);
}
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 769px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}
.contact-card {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.contact-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}
.contact-form-card {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--light-slate);
    background-color: var(--slate);
    color: var(--white);
    font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}
.contact-note {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 4px solid var(--gold);
}
.signature {
    margin-top: 2rem;
    font-style: italic;
}
.contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--navy);
    border-radius: 10px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--slate);
    padding: 40px 0;
    text-align: center;
}
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- SINGLE ARTICLE PAGE STYLES --- */
.codex-article-page {
    background-color: var(--slate);
    padding: 2rem;
}
.article-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-slate);
    margin-bottom: 2rem;
}
.hero-video {
    margin: 2rem 0;
    text-align: center;
    align-self: center;
}
.case-study-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.case-study-video {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}
.case-study-video:hover {
    transform: translateY(-3px);
}
.case-study-video video {
    width: 100%;
    height: auto;
    display: block;
}
.article-category {
    background-color: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.article-header h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.article-meta-info {
    margin-top: 1.5rem;
    color: var(--gray);
}
.article-body {
    max-width: 75ch;
    margin: 0 auto;
}
.article-body h2, .article-body h3, .article-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.article-body p, .article-body ul, .article-body ol {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
}
.article-body ul, .article-body ol {
    padding-left: 2rem;
}
.article-body a {
    text-decoration: underline;
}
.article-image {
    width: 100%;
    border-radius: 10px;
    margin: 2rem 0;
}
.article-body .cta-box {
    background-color: var(--navy);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

/* Process Steps Styling */
.process-step {
    background-color: var(--navy);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
    position: relative;
}
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--gold);
    color: var(--navy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.step-title {
    color: var(--gold);
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.step-content {
    margin-top: 1rem;
}

/* Results Highlight Styling */
.results-highlight {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid var(--gold);
}
.results-highlight h3 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.result-item {
    background-color: var(--slate);
    padding: 1.5rem;
    border-radius: 8px;
}
.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.result-text {
    color: var(--white);
    font-weight: 400;
}

/* Article CTA Section */
.article-cta {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}
.article-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- BASECAMP-INSPIRED PRICING STYLES --- */
.services-basecamp-style {
    background-color: var(--white);
    color: var(--navy);
    padding: 100px 0;
    font-family: var(--font-primary);
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pricing-subhead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.social-proof-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background-color: var(--gold);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.proof-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
}

.proof-text {
    font-size: 0.9rem;
    color: var(--navy);
}

/* Pricing Grid */
.pricing-grid-basecamp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* Pricing Cards */
.pricing-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid #e9ecef;
}

.pricing-card.pilot-card {
    border-color: var(--gold);
    background: #fffbf0;
}

/* Card Headers */
.card-header {
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-highlight {
    background-color: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-highlight.popular {
    background-color: var(--navy);
    color: var(--white);
}

.target-audience {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* Feature Lists */
.feature-list-clean {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-clean li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--navy);
    border-bottom: 1px solid #e9ecef;
}

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

.feature-list-clean strong {
    font-weight: 600;
}

/* Mission Impact */
.mission-impact-subtle {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 20px 0;
    border-left: 3px solid var(--gold);
}

/* Pilot Options */
.pilot-options-mini {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(15, 23, 42, 0.05);
    border-radius: 8px;
}

.pilot-tier {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Pricing Display */
.card-pricing {
    margin: 30px 0;
    text-align: center;
}

.price-display {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 5px;
}

.price-context {
    font-size: 0.9rem;
    color: #666;
}

/* Buttons */
.btn-basecamp {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-foundation, .btn-business {
    background-color: var(--navy);
    color: var(--white);
}

.btn-pilot {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-basecamp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Footer Message */
.pricing-footer-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-footer-message h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.pricing-footer-message p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-card.popular {
        transform: scale(1);
    }
    .qualifying-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Basecamp responsive */
    .pricing-grid-basecamp {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    section { padding: 60px 0; }

    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .audience-paths {
        margin: 3rem 0;
    }
    
    .audience-paths h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .path-card {
        padding: 1.5rem;
    }
    
    .path-icon {
        font-size: 2.5rem;
    }
    
    .path-card h4 {
        font-size: 1.2rem;
    }
    
    .services-grid-new {
        margin: 3rem 0;
        gap: 2rem;
    }
    
    .service-header {
        padding: 1.5rem;
    }
    
    .service-header .price {
        font-size: 2rem;
    }
    
    .service-description,
    .service-process,
    .service-includes,
    .mission-connection {
        padding: 1.5rem;
    }
    
    .process-steps {
        gap: 0.8rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .services-mission-footer {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .mission-reminder p {
        margin-bottom: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form,
    .content-form {
        flex-direction: column;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Basecamp mobile styles */
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .services-basecamp-style {
        padding: 60px 0;
    }
}
