/* CareerSherpa Brand Tokens and Global Styles */
:root {
    --primary-blue: #004c97;
    --accent-green: #6ba539;
    --alt-green: #004c97;
    --original-green: #6ba539;
    --link-red: #c3251d;
    --deep-navy: #023165;
    --light-gray: #eee;
    --divider: #ddd;
    --white: #ffffff;
    --text-dark: #333;
    --text-darker: #222;
    --page-backdrop: #418bee;
    
    --max-width: 1200px;
    --content-width: 960px;
    --section-padding: 64px;
    --section-padding-mobile: 40px;
    --card-padding: 32px;
    --gutter: 32px;
    --gutter-mobile: 20px;
}

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--gutter-mobile);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

h3 {
    font-size: 24px;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

a {
    color: var(--link-red);
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-dark);
    text-decoration: none;
}

/* Buttons */
.cta-button {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: none;
    background: var(--accent-green);
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.08em;
    font-size: 18px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-button:hover {
    background: var(--alt-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    text-decoration: none;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 76, 151, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:focus:hover {
    box-shadow: 0 0 0 3px rgba(0, 76, 151, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.secondary-cta {
    color: var(--primary-blue);
    text-decoration: underline;
    background: none;
    padding: 0;
    margin-left: 24px;
}

.secondary-cta:hover {
    color: var(--text-dark);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo h1 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--link-red);
    text-decoration: underline;
}

.header-cta {
    font-size: 14px;
    padding: 12px 24px;
}

.main-nav .header-cta {
    color: var(--white) !important;
}

.main-nav .header-cta:hover {
    color: var(--white) !important;
    text-decoration: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 4px 0;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
    background: var(--white);
    border-top: 4px solid var(--primary-blue);
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.hero-headline {
    font-size: 42px;
    color: var(--deep-navy);
    margin-bottom: 24px;
    line-height: 1.3;
    text-transform: none;
}

.hero-subheadline {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 300;
}

.social-proof {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.follower-count, .experience-count {
    text-align: center;
}

.count-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
}

.count-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
}

/* Profile Mockup */
.profile-mockup {
    background: var(--white);
    border: 1px solid var(--divider);
    padding: 24px;
}

.mockup-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.tab-button {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 8px 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.profile-preview {
    display: none;
    padding: 24px;
    background: #f8f8f8;
}

.profile-preview.active {
    display: block;
}

.profile-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--divider);
    border-radius: 50%;
}

.profile-avatar.enhanced {
    background: var(--primary-blue);
}

.placeholder-line {
    height: 12px;
    background: var(--divider);
    margin: 8px 0;
}

.placeholder-line.short {
    width: 150px;
}

.placeholder-line.long {
    width: 250px;
}

.placeholder-line.bold {
    height: 16px;
    background: var(--deep-navy);
}

.placeholder-line.highlight {
    background: var(--original-green);
}

.placeholder-line.muted {
    opacity: 0.5;
}

.profile-stats {
    text-align: center;
    padding: 16px;
    background: var(--white);
}

.stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.stat-number.low {
    color: var(--link-red);
}

.stat-number.high {
    color: var(--original-green);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Trust Bar */
.trust-bar {
    background: var(--light-gray);
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-navy);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--deep-navy);
    opacity: 0.6;
    font-size: 18px;
    text-transform: uppercase;
}

/* Quantified Benefits Section */
.quantified-benefits {
    padding: var(--section-padding) 0 48px 0;
    background: var(--white);
}

.benefits-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.metric-card {
    background: var(--white);
    border: 1px solid var(--divider);
    padding: var(--card-padding);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--original-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(107, 165, 57, 0.1);
}

.metric-icon {
    margin-bottom: 24px;
}

.metric-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--original-green);
    margin-bottom: 16px;
    display: block;
}

.metric-card h3 {
    font-size: 18px;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.metric-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.benefits-guarantee {
    text-align: center;
    padding: 24px;
    background: var(--light-gray);
    border-left: 4px solid var(--original-green);
}

.benefits-guarantee p {
    font-size: 18px;
    margin: 0;
}

.benefits-guarantee strong {
    color: var(--primary-blue);
}

/* Guarantee Section */
.guarantee-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
    border-top: 4px solid var(--original-green);
    border-bottom: 4px solid var(--original-green);
}

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

.guarantee-icon {
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-section h2 {
    color: var(--deep-navy);
    margin-bottom: 24px;
    font-size: 32px;
}

.guarantee-promise {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-darker);
    line-height: 1.5;
    margin-bottom: 16px;
}

.guarantee-subtext {
    font-size: 18px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .guarantee-section h2 {
        font-size: 26px;
    }

    .guarantee-promise {
        font-size: 18px;
    }

    .guarantee-subtext {
        font-size: 16px;
    }
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 300;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--divider);
    padding: var(--card-padding);
    text-align: center;
    transition: border-color 0.3s ease;
}

.problem-card:hover {
    border-color: var(--link-red);
}

.problem-icon {
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.5;
}

.target-audience {
    background: var(--light-gray);
    padding: 32px;
    text-align: center;
}

.target-audience h3 {
    color: var(--primary-blue);
    margin-bottom: 16px;
}

/* Value Proposition */
.value-proposition {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--divider);
    padding: var(--card-padding);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.card-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

/* About & Credentials Section */
.about-credentials-section {
    padding: 48px 0 var(--section-padding) 0;
    background: var(--white);
}

.coach-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 48px;
    margin-bottom: 48px;
}

.coach-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.coach-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.coach-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.coach-story {
    margin-bottom: 0;
}

.coach-story p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.credential-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 8px;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
}

.credential-icon {
    margin: 0 auto 16px;
    width: 48px;
    height: 48px;
}

.credential-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 16px;
}

.credential-card h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.credential-card p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 0;
}

.industries-served {
    text-align: center;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 8px;
}

.industries-served h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.industries-served p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .coach-profile {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .coach-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .coach-content h3 {
        font-size: 22px;
    }
    
    .coach-intro {
        font-size: 16px;
    }
    
    .credential-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .coach-content h3 {
        font-size: 20px;
    }
    
    .coach-profile {
        margin-bottom: 32px;
    }
    
    .credential-number {
        font-size: 36px;
    }
    
    .credential-card {
        padding: 24px 16px;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.client-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.client-industry {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.results-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 24px;
}

.stat-before .stat-number {
    color: var(--link-red);
    font-size: 28px;
    font-weight: 700;
}

.stat-after .stat-number {
    color: var(--original-green);
    font-size: 28px;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 4px;
}

.stat-arrow {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: bold;
}

.stat-description {
    position: absolute;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 8px;
    width: 100%;
}

.results-stats {
    position: relative;
    padding-bottom: 32px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    border-left: 4px solid var(--original-green);
    padding-left: 20px;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .results-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-arrow {
        transform: rotate(90deg);
    }
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.main-benefit {
    text-align: center;
    margin-bottom: 48px;
}

.benefit-number {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--original-green);
    line-height: 1;
}

.main-benefit h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 16px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: var(--content-width);
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 20px 24px;
    border: 1px solid var(--divider);
}

.benefit-check {
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto 48px;
}

.process-step {
    text-align: center;
    flex: 1;
    padding: 0 16px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-blue);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-connector {
    width: 60px;
    height: 1px;
    background: var(--divider);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--divider);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.timeline-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
}

/* Social Proof Section */
.social-proof-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.credential-card {
    text-align: center;
    padding: 32px;
    border: 1px solid var(--divider);
    background: var(--white);
}

.credential-icon {
    margin-bottom: 16px;
}

.credential-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.industries-served {
    text-align: center;
    padding: 32px;
    background: var(--light-gray);
}

.industries-served h3 {
    color: var(--primary-blue);
    margin-bottom: 16px;
}

/* Bonuses Section */
.bonuses-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    padding: var(--card-padding);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 76, 151, 0.15);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--original-green);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    letter-spacing: 0.05em;
}

.bonus-icon {
    margin: 24px auto 16px;
}

.bonus-card h3 {
    font-size: 20px;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0;
}

.bonuses-value {
    text-align: center;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.value-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-darker);
    margin: 0;
}

.strike-price {
    text-decoration: line-through;
    color: var(--link-red);
    margin-right: 8px;
}

.free-text {
    color: var(--original-green);
    font-weight: 700;
    font-size: 22px;
}

.bonuses-cta {
    text-align: center;
    margin-top: 32px;
}

.bonuses-cta .cta-button {
    font-size: 18px;
    padding: 20px 40px;
}

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

    .bonus-card h3 {
        font-size: 18px;
    }

    .value-text {
        font-size: 18px;
    }

    .free-text {
        font-size: 20px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--divider);
    border-top: 4px solid var(--primary-blue);
    padding: 48px;
    text-align: center;
}

.price-tag {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.currency {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: var(--primary-blue);
}

.price {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-blue);
}

.period {
    font-size: 16px;
    color: var(--text-dark);
}

.pricing-card h3 {
    color: var(--deep-navy);
    margin-bottom: 32px;
}

.package-features {
    text-align: left;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.feature-item:last-child {
    border-bottom: none;
}

.payment-note {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.pricing-cta {
    width: 100%;
    padding: 20px;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-accordion {
    max-width: var(--content-width);
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--divider);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--divider);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    color: var(--deep-navy);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--link-red);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-darker);
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: var(--section-padding) 0;
    background: var(--primary-blue);
    text-align: center;
}

.urgency-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.urgency-content p {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.urgency-cta {
    font-size: 18px;
    padding: 20px 40px;
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.lead-magnet-content h2 {
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.lead-magnet-content p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.lead-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.lead-form input {
    flex: 1;
    padding: 16px;
    font-size: 16px;
    border: 1px solid var(--divider);
    font-family: 'Roboto Condensed', sans-serif;
}

.lead-form input:focus {
    outline: none;
    border-color: #999;
}

.lead-form button {
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--divider);
}

.footer-content {
    padding: 48px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-brand h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.footer-credentials p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.footer-contact p {
    margin-bottom: 16px;
}

.footer-cta {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-cta:hover {
    color: var(--accent-green);
    text-decoration: none;
}

.footer-bottom {
    background: var(--primary-blue);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 14px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav a {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--original-green);
}

.mobile-cta {
    background: var(--accent-green);
    padding: 20px 40px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: none;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    background: var(--alt-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    text-decoration: none;
}

.mobile-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 76, 151, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.count-animation {
    animation: countUp 0.8s ease-out;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 32px;
    }
    
    .step-connector {
        display: none;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-headline {
        font-size: 34px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .secondary-cta {
        margin-left: 0;
    }
    
    .trust-logos {
        gap: 24px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lead-form {
        flex-direction: column;
    }
    
    .lead-form button {
        width: 100%;
    }
    
    .benefit-number {
        font-size: 56px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 42px;
    }
    
    .count-number {
        font-size: 28px;
    }
    
    .social-proof {
        gap: 24px;
    }
    
    .faq-question {
        font-size: 16px;
    }
}