/* The Muir Practice - Stylesheet */
/* Primary Color: #39607a */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39607a;
}

.tagline {
    font-size: 0.75rem;
    color: #666;
    margin-top: 2px;
}

.tagline-keywords {
    font-size: 0.7rem;
    color: #39607a;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav a:hover {
    color: #39607a;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7fa 0%, #e5f1f5 100%);
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hero-text {
    max-width: 560px;
}

.eyebrow {
    font-size: 0.95rem;
    color: #39607a;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c5a6e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-body {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #39607a;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
    border: unset;
}

.btn-primary:hover {
    background: #5a9bb5;
}

.btn-secondary {
    background: #fff;
    color: #39607a;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #39607a;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #39607a;
    color: #fff;
}

.testimonial-quote {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #39607a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-quote p {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    margin-bottom: 10px;
}

.testimonial-quote cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #39607a 0%, #39607a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    padding: 10px;
    margin-top: 55px;
    position: relative;
}

.hero-image-placeholder video {
    position: relative;
    min-height: 300px;
}

.stat-badge {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 10px;
    bottom: -110px;
}

.stat-badge strong {
    color: #39607a;
    font-size: 1.5rem;
    display: block;
}

.stat-badge span {
    font-size: 0.85rem;
    color: #666;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-light {
    background: #fff;
}

.section-alt {
    background: #f8fbfc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c5a6e;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Early Matters Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #e5f1f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #39607a;
}

.benefit-text h3 {
    font-size: 1.1rem;
    color: #2c5a6e;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #666;
}

.text-center {
    text-align: center;
}

/* What to Expect Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #39607a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #2c5a6e;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.stars {
    color: #f5a623;
    margin-bottom: 10px;
}

/* Our Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #39607a;
}

.approach-card h3 {
    font-size: 1.2rem;
    color: #2c5a6e;
    margin-bottom: 12px;
}

.approach-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-image {
    height: 210px;
    background: linear-gradient(135deg, #39607a 0%, #39607a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.15rem;
    color: #2c5a6e;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c5a6e;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #39607a 0%, #39607a 100%);
    border-radius: 20px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.about-image-placeholder img {
    width: 100%;
    object-fit: cover;
    height: 190px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: #fff;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 0.625rem solid #39607a;
    transition: all ease .4s;
}

.team-content {
    padding: 1.25rem;
    flex: 1;
    z-index: 20;
    gap: 1.0625rem;
}

.team-avatar {
    width: 100%;
    height: 250px;
    background: #e5f1f5;
    color: #39607a;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.625rem;
    color: #2c5a6e;
}

.team-card p.role {
    font-size: 16px;
}

.team-card p {
    font-size: 1.125rem;
    line-height: 1.27777778;
    letter-spacing: -0.00063rem;
    margin: 1.25rem 0;
}

.team-card p.card__read {
    font-size: 0.9375rem;
    line-height: 1.06666667;
    letter-spacing: 0.01563rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.insight-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-image {
    height: 220px;
    background: linear-gradient(135deg, #39607a 0%, #39607a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.insight-content {
    padding: 25px;
}

.insight-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.insight-content h3 {
    font-size: 1.1rem;
    color: #2c5a6e;
    margin-bottom: 10px;
}

.insight-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #39607a;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: unset;
    border: unset;
}

.read-more:hover {
    text-decoration: underline;
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, #39607a 0%, #39607a 100%);
    color: #fff;
}

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

.quiz-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.quiz-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-white {
    background: #fff;
    color: #39607a;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-white:hover {
    background: #f0f7fa;
    transform: translateY(-2px);
}

/* Closing Section */
.closing-section {
    background: #f8fbfc;
    text-align: center;
}

.closing-content h2 {
    font-size: 2.2rem;
    color: #2c5a6e;
    margin-bottom: 15px;
}

.closing-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.closing-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Footer */
/*.footer {
    background: #2c5a6e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}*/


/* CUSTOM */
section.section.insert-code, section.components, section.wrapper {
    margin: 0;
    padding: 0;
}

section.section.navigation.teams-grid {
    margin: 0;
}

section.section-alt.show-more-my-team {
    background: unset;
    padding: 0 0 80px;
}

section.banner, section.banner-strip {
    display: none;
}

section.section-post-pic.banner.banner--large.banner--img {
    display: flex !important;
}

section.custom-banner.banner-strip.bg--purple {
    display: block !important;
}

section.section.insert-code a {
    text-decoration: none !important;
}

secion.simple-steps-to-get-started {
    background: #f8fbfc !important;
}

section.free-assessment-quizes .section__header,
section.simple-steps-to-get-started .section__header  {
    margin-bottom: 30px;
}

section.simple-steps-to-get-started div.grid {
    grid-template-columns: repeat(4, 1fr);
}

section.free-assessment-quizes div.grid .card {
    padding-top: 0;
    padding-bottom: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-placeholder {
        height: auto;
    }

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

    .services-grid,
    .approach-grid,
    .testimonials-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-image-placeholder {
        margin-top: 0;
    }
    .stat-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
    }
    section.simple-steps-to-get-started div.grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 50px 0;
    }

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

    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .steps-container,
    .services-grid,
    .approach-grid,
    .testimonials-grid,
    .insights-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons,
    .closing-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    section.simple-steps-to-get-started div.grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .hero-image-placeholder video {
        position: relative;
        top: 0;
        height: auto !important;
        min-height: auto !important;
        object-fit: unset !important;
    }
}
