/* Home Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Sans', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Ensure all text elements use Fira Sans */
* {
    font-family: 'Fira Sans', sans-serif;
}

/* Add radial gradient overlays for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--radial-blue);
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--radial-indigo);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Header and Footer styles moved to shared.css */

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 100px 0 60px 0; /* Account for fixed header */
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    position: relative;
}

.hero-title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
    width: 660px;
    height: 58px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    background: var(--blue-200);
    color: var(--blue-900);
    border: 2px solid var(--blue-300);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--blue-300);
    color: var(--blue-900);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    border-color: var(--blue-400);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.decorative-line {
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 100px;
    height: 2px;
    background: var(--accent-line);
    border-radius: 1px;
    transform: translateY(-50%);
}

/* Hero Video */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: var(--slate-800);
    border: 3px solid var(--accent-line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.video-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Shared Section Styles */
.section-white {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.section-blue {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--blue-200) 0%, var(--blue-300) 100%);
    position: relative;
    z-index: 2;
}

.section-dark-blue {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    z-index: 2;
}

/* Shared Container Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Shared Title Styles */
.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-blue {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

/* Understanding Life Section */
.understanding-section {
    /* Uses .section-white class */
}

.understanding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 3rem;
    padding: 1.2rem 2.5rem;
    background: var(--blue-200);
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    border: 2px solid var(--blue-300);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    min-height: 400px; /* Ensure consistent height for centering */
    position: relative;
}

.step-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Progressive emphasis from left to right */
.process-step:nth-child(1) .step-circle {
    width: 160px;
    height: 160px;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
    margin-bottom: 2rem;
    margin-top: 40px; /* Center the smallest circle */
}

.process-step:nth-child(2) .step-circle {
    width: 180px;
    height: 180px;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
    margin-bottom: 2rem;
    margin-top: 20px; /* Center the medium circle */
}

.process-step:nth-child(3) .step-circle {
    width: 200px;
    height: 200px;
    box-shadow: 0 20px 45px rgba(30, 58, 138, 0.4);
    border: 2px solid var(--blue-300);
    margin-bottom: 2rem;
    margin-top: 0; /* Largest circle, no top margin needed */
}

.process-step:nth-child(3) .step-circle::before {
    opacity: 0.8;
    filter: blur(15px);
}

.step-circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.step-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-400) 100%);
    z-index: -1;
    opacity: 0.6;
    filter: blur(10px);
}

.step-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.4);
}

/* Progressive hover effects */
.process-step:nth-child(1) .step-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3);
}

.process-step:nth-child(2) .step-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(30, 58, 138, 0.4);
}

.process-step:nth-child(3) .step-circle:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.5);
    border-color: var(--blue-200);
}

.step-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* Progressive text sizing */
.process-step:nth-child(1) .step-text {
    font-size: 1rem;
}

.process-step:nth-child(2) .step-text {
    font-size: 1.1rem;
}

.process-step:nth-child(3) .step-text {
    font-size: 1.3rem;
    font-weight: 800;
}

.step-description {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 1.5rem; /* Balanced spacing */
}

/* About Section */
.about-section {
    /* Uses .section-blue class */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    color: var(--text-primary);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Quote Section */
.quote-section {
    /* Uses .section-white class */
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-box {
    background: linear-gradient(90deg, var(--blue-200) 0%, var(--blue-300) 100%);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: var(--blue-100);
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.quote-text {
    font-size: 1.6rem;
    color: var(--blue-900);
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-family: 'Fira Sans', sans-serif;
    max-width: 800px;
}

.quote-author {
    font-size: 1.3rem;
    color: var(--blue-900);
    font-style: italic;
    font-weight: 600;
    display: block;
    margin-top: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
}

.quote-line-left,
.quote-line-right {
    position: absolute;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--blue-200) 0%, transparent 100%);
    width: 100px;
}

.quote-line-left {
    left: -120px;
}

.quote-line-right {
    right: -120px;
    background: linear-gradient(270deg, var(--blue-200) 0%, transparent 100%);
}

/* My Guiding Principles Section */
.guiding-principles-section {
    /* Uses .section-white class */
}

.guiding-principles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.guiding-principles-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 3rem;
    position: relative;
}

.guiding-principles-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--blue-300);
    border-radius: 1px;
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.principle-card {
    background: #ffffff;
    border: 2px solid var(--blue-300);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
    border-color: var(--blue-400);
}

/* Clarity Card - Left aligned */
.clarity-card {
    align-self: flex-start;
    margin-right: auto;
    margin-left: 0;
}

/* Authenticity Card - Right aligned */
.authenticity-card {
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    flex-direction: row-reverse;
}

/* Choice Card - Left aligned */
.choice-card {
    align-self: flex-start;
    margin-right: auto;
    margin-left: 0;
}

.principle-content {
    flex: 1;
    text-align: left;
}

.authenticity-card .principle-content {
    text-align: right;
}

.principle-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.principle-description {
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin: 0;
}

.principle-illustration {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.principle-card:hover .principle-illustration img {
    opacity: 1;
}

.line-to-authenticity {
    top: 50%;
    right: -60px;
    width: 80px;
    height: 2px;
    transform: translateY(-50%) rotate(15deg);
    border-radius: 1px;
}

.line-to-choice {
    bottom: -30px;
    left: -60px;
    width: 80px;
    height: 2px;
    transform: rotate(-15deg);
    border-radius: 1px;
}

/* Call to Action */
.principles-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.principles-cta .cta-button {
    background: linear-gradient(135deg, var(--blue-200) 0%, var(--blue-300) 100%);
    color: var(--blue-900);
    border: 2px solid var(--blue-300);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.principles-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.principles-cta .cta-button:hover::before {
    left: 100%;
}

.principles-cta .cta-button:hover {
    background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-400) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    border-color: var(--blue-400);
}

.principles-cta .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* From First Call to Real Change Section */
.process-section {
    /* Uses .section-blue class */
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    display: inline-block;
}

.process-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-300) 0%, var(--blue-400) 100%);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-100);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.process-card:hover .card-icon {
    background: var(--blue-200);
    transform: scale(1.1);
}

.icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin: 0;
}

/* Process CTA */
.process-cta {
    text-align: center;
}

.process-cta-button {
    background: var(--blue-200);
    color: var(--blue-900);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.process-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.process-cta-button:hover::before {
    left: 100%;
}

.process-cta-button:hover {
    background: white;
    color: var(--blue-900);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    border-color: white;
}

.process-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* What You'll Walk Away With Section */
.outcomes-section {
    /* Uses .section-white class */
}

.outcomes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.outcomes-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 3rem;
    background: var(--blue-200);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 2px solid var(--blue-300);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    display: inline-block;
}

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

.outcome-card {
    background: var(--blue-200);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-300) 0%, var(--blue-400) 100%);
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
}

.outcome-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-100);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.outcome-card:hover .outcome-icon {
    background: var(--blue-300);
    transform: scale(1.1);
}

.outcome-icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.outcome-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.outcome-card-description {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin: 0;
}

/* Outcomes CTA */
.outcomes-cta {
    text-align: center;
}

.outcomes-cta-button {
    background: var(--blue-200);
    color: var(--blue-900);
    border: 2px solid var(--blue-300);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.outcomes-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.outcomes-cta-button:hover::before {
    left: 100%;
}

.outcomes-cta-button:hover {
    background: var(--blue-300);
    color: var(--blue-900);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    border-color: var(--blue-400);
}

.outcomes-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Testimonials Section */
/* Testimonials styles moved to shared.css */

/* You're Meant to Thrive Section */
.thrive-section {
    /* Uses .section-white class */
}

.thrive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.thrive-content {
    position: relative;
}

.thrive-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.thrive-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-300) 0%, transparent 100%);
    border-radius: 2px;
}

.thrive-text {
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thrive-text:last-of-type {
    margin-bottom: 2.5rem;
}

.thrive-cta-button {
    background: var(--blue-200);
    color: var(--blue-900);
    border: 2px solid var(--blue-300);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.thrive-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.thrive-cta-button:hover::before {
    left: 100%;
}

.thrive-cta-button:hover {
    background: var(--blue-300);
    color: var(--blue-900);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    border-color: var(--blue-400);
}

.thrive-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.thrive-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.thrive-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(30, 58, 138, 0.15));
}

/* Footer */
/* Footer styles moved to shared.css */

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .video-placeholder {
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 48px;
        width: 100%;
        max-width: 600px;
        height: auto;
    }
    
    .decorative-line {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 1rem 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-circle {
        width: 150px;
        height: 150px;
        margin-top: 0; /* Reset margins for mobile */
    }
    
    .process-step:nth-child(1) .step-circle,
    .process-step:nth-child(2) .step-circle,
    .process-step:nth-child(3) .step-circle {
        margin-top: 0;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .image-frame {
        width: 250px;
        height: 250px;
    }
    
    .quote-section {
        padding: 4rem 0;
    }
    
    .quote-box {
        padding: 2rem 2.5rem;
        max-width: 90%;
    }
    
    .quote-text {
        font-size: 1.4rem;
        white-space: normal;
    }
    
    .quote-lines {
        display: none;
    }

    /* Testimonials responsive styles moved to shared.css */

    /* Thrive Section Tablet Styles */
    .thrive-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .thrive-title {
        font-size: 2.5rem;
    }

    .thrive-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
    }

    .thrive-image {
        max-width: 400px;
    }

    /* Footer responsive styles moved to shared.css */
}

@media (max-width: 768px) {
    /* Header responsive styles moved to shared.css */

    .hero-container {
        padding: 1rem;
        gap: 2rem;
    }
    
    .video-placeholder {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
    }
    
    .understanding-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .process-steps {
        gap: 2.5rem;
    }
    
    .step-circle {
        width: 120px;
        height: 120px;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .image-frame {
        width: 280px;
        height: 280px;
    }
    
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-box {
        padding: 1.5rem 2rem;
        max-width: 95%;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
        white-space: normal;
    }
    
    .quote-author {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    body::after {
        width: 250px;
        height: 250px;
        top: 10%;
        right: 5%;
    }
    
    /* Guiding Principles Mobile Styles */
    .guiding-principles-section {
        padding: 4rem 0;
    }
    
    .guiding-principles-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .principle-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        max-width: 100%;
        margin: 0;
    }
    
    .authenticity-card {
        flex-direction: column;
    }
    
    .principle-card .principle-illustration {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .principle-content {
        text-align: center;
    }
    
    .authenticity-card .principle-content {
        text-align: center;
    }
    
    .principle-title {
        font-size: 1.8rem;
    }
    
    .principle-description {
        font-size: 1rem;
    }
    
    .principle-illustration {
        width: 140px;
        height: 140px;
    }
    
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .principles-cta .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
    }
    
    /* Process Section Mobile Styles */
    .process-section {
        padding: 4rem 0;
    }
    
    .process-title {
        font-size: 2rem;
        padding: 1.2rem 2rem;
    }
    
    .process-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .icon-image {
        width: 45px;
        height: 45px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .process-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
    }
    
    /* Outcomes Section Mobile Styles */
    .outcomes-section {
        padding: 4rem 0;
    }
    
    .outcomes-title {
        font-size: 2rem;
        padding: 1.2rem 2rem;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .outcome-card {
        padding: 1.5rem 1rem;
    }
    
    .outcome-icon {
        width: 70px;
        height: 70px;
    }
    
    .outcome-icon-image {
        width: 45px;
        height: 45px;
    }
    
    .outcome-card-title {
        font-size: 1.3rem;
    }
    
    .outcome-card-description {
        font-size: 0.95rem;
    }
    
    .outcomes-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
    }

    /* Testimonials responsive styles moved to shared.css */

    /* Thrive Section Mobile Styles */
    .thrive-section {
        padding: 4rem 0;
    }

    .thrive-container {
        gap: 2.5rem;
    }

    .thrive-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .thrive-title::after {
        width: 70%;
    }

    .thrive-text {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .thrive-text:last-of-type {
        margin-bottom: 2rem;
    }

    .thrive-cta-button {
        width: 100%;
        max-width: 350px;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .thrive-image {
        max-width: 350px;
    }

    /* Footer Mobile Styles */
    /* Footer responsive styles moved to shared.css */
}

@media (max-width: 480px) {
    .navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 20px;
    }
    
    /* Guiding Principles Small Mobile Styles */
    .guiding-principles-section {
        padding: 3rem 0;
    }
    
    .guiding-principles-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }
    
    .principle-title {
        font-size: 1.6rem;
    }
    
    .principle-description {
        font-size: 0.9rem;
    }
    
    .principle-illustration {
        width: 120px;
        height: 120px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .principles-cta .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 20px;
    }
    
    /* Process Section Small Mobile Styles */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-title {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }
    
    .process-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-image {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .process-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 20px;
    }
    
    /* Outcomes Section Small Mobile Styles */
    .outcomes-section {
        padding: 3rem 0;
    }
    
    .outcomes-title {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .outcome-card {
        padding: 1.5rem 1rem;
    }
    
    .outcome-icon {
        width: 60px;
        height: 60px;
    }
    
    .outcome-icon-image {
        width: 40px;
        height: 40px;
    }
    
    .outcome-card-title {
        font-size: 1.2rem;
    }
    
    .outcome-card-description {
        font-size: 0.9rem;
    }
    
    .outcomes-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 20px;
    }

    /* Testimonials responsive styles moved to shared.css */

    /* Thrive Section Small Mobile Styles */
    .thrive-section {
        padding: 3rem 0;
    }

    .thrive-container {
        gap: 2rem;
    }

    .thrive-title {
        font-size: 1.8rem;
    }

    .thrive-title::after {
        width: 80%;
    }

    .thrive-text {
        font-size: 0.95rem;
    }

    .thrive-cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .thrive-image {
        max-width: 280px;
    }

    /* Footer responsive styles moved to shared.css */
}
