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

/* Reasonable navbar clearance */
main {
    margin-top: 90px; /* Appropriate clearance for navbar */
}

/* Ensure key layout elements are straight and properly aligned */
.hero,
.coach-section,
.testimonial-section,
.journey-section,
.benefits-section,
.pricing-section,
.faq-section,
.container,
.nav-container,
.hero-container {
    transform: none !important; /* Ensure main sections are straight */
}

/* Reset body padding */
body {
    padding-top: 0;
}

.hero {
    padding-top: 2rem; /* Minimal hero padding */
}

/* Reset hero headline spacing */
.hero-headline {
    margin-top: 0;
    padding-top: 0;
}

/* Global Consistent Spacing */
section {
    padding: 2rem 0 !important;
    scroll-margin-top: 100px; /* Ensure proper spacing when navigating to sections */
}

.hero,
.coach-section,
.testimonial-section,
.journey-section,
.benefits-section,
.pricing-section,
.inquiry-section,
.trust-section,
.faq-section,
.final-cta,
.quick-action-section {
    padding: 2rem 0 !important;
}

/* Consistent heading spacing */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75rem !important;
}

.section-title {
    margin-bottom: 0.75rem !important;
}

.section-subtitle {
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
    padding-top: 0.25rem !important;
}

/* Consistent paragraph and content spacing */
p {
    margin-bottom: 1rem !important;
    padding-top: 0.25rem;
}

/* Consistent list spacing */
ul, ol {
    margin-bottom: 1rem !important;
    padding-top: 0.25rem;
}

/* Small padding above all text elements */
h1, h2, h3, h4, h5, h6 {
    padding-top: 0.25rem;
}

li {
    padding-top: 0.125rem;
}

blockquote {
    padding-top: 0.25rem;
}

span {
    padding-top: 0.125rem;
}

/* Consistent card spacing */
.pricing-card,
.testimonial-card,
.benefits-category,
.faq-item {
    padding: 1.5rem !important;
}

/* Consistent gap spacing */
.pricing-grid,
.benefits-categories {
    gap: 1.5rem !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility improvements */
*:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
}

/* Enhanced focus states for interactive elements */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(30, 122, 107, 0.2);
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-to-main:focus {
    top: 6px;
}

/* Better text contrast */
p, span, li {
    color: var(--text-medium);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

/* Color Variables - Updated Technical Specifications */
:root {
    /* Primary Brand Colors - WCAG AA+ Compliant */
    --primary-teal: #1e7a6b;           /* Contrast: 5.8:1 on white */
    --primary-teal-light: #2A9D8F;     /* Contrast: 4.5:1 on white */
    --accent-gold: #B8860B;            /* Enhanced: 7.1:1 contrast on white */
    --neutral-gray: #374151;           /* Enhanced: 8.2:1 contrast on white */
    
    /* Background Colors */
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --off-white: #FEFEFE;
    
    /* Status Colors - Accessible */
    --success-green: #059669;          /* 4.7:1 contrast */
    --warning-yellow: #D97706;         /* Enhanced: 5.2:1 contrast */
    --danger-red: #DC2626;             /* 4.5:1 contrast */
    
    /* Text Colors - WCAG AAA Compliant */
    --text-dark: #1a202c;             /* 15.8:1 contrast on white */
    --text-medium: #374151;           /* 8.2:1 contrast on white */
    --text-light: #6B7280;            /* 4.8:1 contrast on white */
    --text-muted: #9CA3AF;            /* 3.2:1 contrast on white */
    
    /* Border and Shadow Colors */
    --border-light: rgba(30, 122, 107, 0.12);
    --border-medium: rgba(30, 122, 107, 0.24);
    --shadow: rgba(42, 157, 143, 0.1);
    --shadow-dark: rgba(26, 32, 44, 0.15);
    
    /* Focus States - High Contrast */
    --focus-ring: #3B82F6;
    --focus-ring-shadow: rgba(59, 130, 246, 0.5);
}

/* Accessibility & Focus States - WCAG AA+ */
*:focus {
    outline: 2px solid var(--focus-ring) !important;
    outline-offset: 2px !important;
}

/* Enhanced focus for interactive elements */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--focus-ring) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px var(--focus-ring-shadow) !important;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 6px;
}

/* Typography Hierarchy - Technical Specifications */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3; /* Enhanced readability */
    margin-bottom: 1rem;
    color: var(--text-dark); /* Ensure consistent dark text */
}

h1 { font-size: 32pt; font-weight: 700; } /* H1 Headers: 32pt Montserrat Bold */
h2 { font-size: 24pt; font-weight: 700; } /* H2 Headers: 24pt Montserrat Bold */
h3 { font-size: 20pt; font-weight: 600; } /* H3 Headers: 20pt Montserrat Semi-Bold */
h4 { font-size: 18pt; font-weight: 600; } /* H4 Headers: 18pt Montserrat Semi-Bold */

/* Body text - Enhanced accessibility */
p, li, span {
    color: var(--text-medium);
    line-height: 1.6; /* Enhanced readability */
}

/* G.R.A.Y. Method™ Styling */
.method-step h3 {
    letter-spacing: 2px;
    position: relative;
}

/* Trademark symbol styling */
sup {
    font-size: 0.7em;
    vertical-align: super;
}

/* Prevent line breaks for brand name */
.nowrap {
    white-space: nowrap;
}

/* Prevent G.R.A.Y. Method™ from wrapping */
.nowrap {
    white-space: nowrap;
}

/* Section Dividers */
section {
    border-bottom: 1px solid rgba(30, 122, 107, 0.1);
}

/* Remove border from last section */
section:last-of-type {
    border-bottom: none;
}

/* Responsive Section Padding */
@media (max-width: 768px) {
    section,
    .coach-section,
    .testimonial-section,
    .journey-section,
    .benefits-section,
    .pricing-section,
    .inquiry-section,
    .trust-section,
    .faq-section,
    .final-cta,
    .quick-action-section {
        padding: 1.5rem 0 !important;
    }
    
    .hero {
        padding: 5rem 0 1.5rem 0 !important; /* Reasonable mobile top padding */
        min-height: 90vh !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .section-subtitle {
        margin-bottom: 0.75rem !important;
    }
    
    .pricing-card,
    .testimonial-card,
    .benefits-category,
    .faq-item {
        padding: 1rem !important;
    }
}

/* Coach Section */
.coach-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 2rem 0;
    position: relative;
    scroll-margin-top: 100px; /* Prevent navbar overlap when navigated to */
}

.coach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Coach Hero Photo */
.coach-hero {
    text-align: center;
    margin-bottom: 0.75rem;
}

.coach-photo-container {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.coach-portrait {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    position: relative;
    z-index: 3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    -ms-interpolation-mode: bicubic;
}

.coach-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-outer {
    width: 360px;
    height: 360px;
    border: 4px solid var(--primary-teal);
    opacity: 0.8;
}

.ring-middle {
    width: 340px;
    height: 340px;
    border: 4px solid var(--accent-gold);
    opacity: 0.9;
}





.coach-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.coach-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.coach-abstract-design {
    width: 250px;
    height: 250px;
    position: relative;
}

.coach-circle-1 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-teal), rgba(42, 157, 143, 0.7));
    border-radius: 50%;
    top: 20px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
}

.coach-circle-2 {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), rgba(233, 196, 106, 0.8));
    border-radius: 50%;
    top: 80px;
    right: 30px;
    animation: float 8s ease-in-out infinite reverse;
}

.coach-circle-3 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.3), rgba(233, 196, 106, 0.3));
    border-radius: 50%;
    bottom: 30px;
    left: 70px;
    animation: float 10s ease-in-out infinite;
}

.coach-info {
    text-align: left;
}

.coach-info .section-title {
    text-align: left;
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
}

.coach-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coach-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #4a5568;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.credentials-section {
    margin: 1.5rem 0;
    padding: 2rem;
}

.credentials-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px; /* More organic curves */
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.08);
    transition: all 0.3s ease;
    /* Removed rotation for straight alignment */
}

.credential-item:nth-child(even) {
    /* Removed rotation for straight alignment */
}

.credential-item:hover {
    border-color: var(--primary-teal);
    transform: translateY(-4px) scale(1.02); /* Straight alignment with hover effect */
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.15);
}

.credential-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.credential-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.credential-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.4;
}

.coach-promise {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px; /* More organic curves */
    margin-top: 3rem;
    border: 2px solid var(--primary-teal);
    box-shadow: 0 8px 25px rgba(30, 122, 107, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* Removed rotation for straight alignment */
    transition: transform 0.3s ease;
}

.coach-promise:hover {
    /* Hover effect without rotation */
}

.promise-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.differentiator-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight {
    color: var(--primary-teal);
    font-weight: 600;
}

.coach-cta {
    text-align: center;
    margin-top: 2rem;
}

.journey-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.journey-cta {
    text-align: center;
    margin-top: 3rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.problem-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-text {
    font-size: 1rem;
    color: #4a5568;
}

.problem-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(42, 157, 143, 0.12));
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* Compact Problem Section */
.problem-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.problem-item-compact {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    border-left: 4px solid var(--primary-teal);
    text-align: center;
}

/* Testimonials Carousel - Compact */
.testimonials-carousel-compact {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container-compact {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30, 122, 107, 0.08);
}

.testimonials-track-compact {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-compact {
    min-width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.testimonial-compact blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 400;
    line-height: 1.5;
}

.testimonial-author-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.professional-avatar-compact {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.2);
}

.professional-avatar-compact.young {
    background: linear-gradient(135deg, var(--accent-gold), #d4a843);
}

.professional-avatar-compact.reinvent {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
}

.professional-avatar-compact.student {
    background: linear-gradient(135deg, var(--success-green), #1e7e34);
}

.author-info-compact strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.author-info-compact span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.carousel-nav-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal);
    background: var(--white);
    color: var(--primary-teal);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.carousel-btn-compact:hover,
.carousel-btn-compact:active {
    background: var(--primary-teal);
    color: var(--white);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .carousel-btn-compact {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        border-width: 3px;
    }
    
    .carousel-nav-compact {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-compact {
        padding: 2rem 1rem;
    }
}

.carousel-dots-compact {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-teal);
}

/* Dropdown Sections */
.benefits-dropdown, .faq-dropdown {
    margin-bottom: 1rem;
}

.dropdown-header {
    cursor: pointer;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(42, 157, 143, 0.12));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dropdown-header:hover {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(42, 157, 143, 0.16));
}

.dropdown-header .section-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 1.5rem;
}

.dropdown-content.open {
    max-height: 2000px;
    padding: 2rem 1.5rem;
}

/* Your Complete Transformation Toolkit - Organized Categories */
.benefits-section {
    background: rgba(42, 157, 143, 0.08);
    padding: 2rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

/* Reduced margin for benefits section */
.benefits-section .section-subtitle {
    margin-bottom: 1rem;
}

/* Credibility Block */
.credibility-block {
    text-align: center;
    margin: 1rem auto 2rem;
    max-width: 600px;
    padding: 1rem;
    background: rgba(30, 122, 107, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-teal);
}

.credibility-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0 !important;
}

.benefits-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-category {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px; /* More organic curves */
    border: 2px solid var(--primary-teal);
    box-shadow: 0 6px 20px rgba(30, 122, 107, 0.08);
    transition: all 0.3s ease;
    /* Removed rotation for straight alignment */
}

.benefits-category:nth-child(even) {
    /* Removed rotation for straight alignment */
}

.benefits-category:hover {
    transform: translateY(-6px); /* Straight alignment with lift effect */
    box-shadow: 0 12px 40px rgba(30, 122, 107, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(30, 122, 107, 0.1);
}

.category-header i {
    color: var(--primary-teal);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 122, 107, 0.1);
    border-radius: 8px;
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

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

.category-items li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    border-bottom: 1px solid rgba(30, 122, 107, 0.05);
}

.category-items li:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: var(--text-dark);
}



/* Simple Benefits List (What You Actually Get) */
.benefits-list-simple {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list-simple li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-teal);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.benefits-list-simple li i {
    color: var(--primary-teal);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Assessments Section */
.assessments-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    padding: 2rem 0;
}

/* FAQ Section - Bottom */
.faq-section-bottom {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid rgba(42, 157, 143, 0.1);
}

.faq-search {
    position: relative;
    max-width: 400px;
    margin: 2rem auto;
}

.faq-search input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid rgba(42, 157, 143, 0.2);
    border-radius: 8px;
    font-size: 1rem;
}

.faq-search i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-teal);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid rgba(42, 157, 143, 0.2);
    border-radius: 20px;
    color: var(--primary-teal);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-new {
    border: 2px solid var(--primary-teal);
    border-radius: 16px; /* More organic curves */
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 122, 107, 0.1);
}

.faq-question-new {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    cursor: pointer;
    font-size: 1.1rem; /* Standardized font size */
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    line-height: 1.4;
}

.faq-question-new:hover {
    background: linear-gradient(135deg, #f0f9f9 0%, #e8f6f5 100%);
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.faq-answer-new {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1rem; /* Standardized answer font size */
    color: var(--text-medium);
    line-height: 1.6;
}

.faq-answer-new.open {
    padding: 1rem;
    max-height: 500px;
}

/* Professional Typography */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.025em;
    text-align: center;
}

.journey-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.hero {
    padding: 5rem 0 2rem 0; /* Reasonable top padding */
    min-height: auto;
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.6;
}

.journey-section {
    padding: 2rem 0;
}



.testimonial-section {
    padding: 2rem 0;
}

.pricing-section {
    padding: 2rem 0;
}

.final-cta {
    padding: 2rem 0;
}

.inquiry-section {
    padding: 2rem 0;
}

/* Contact Section - Compact */
.contact-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

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

.inquiry-message {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.inquiry-section {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .benefits-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-category {
        padding: 1.5rem;
    }
    
    .category-header {
        margin-bottom: 1rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .benefits-section {
        padding: 2rem 0;
    }
}
    
    .inquiry-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .inquiry-buttons .btn-primary,
    .inquiry-buttons .btn-secondary {
        min-width: 200px;
    }
}
    
    .faq-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .coach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .coach-visual {
        max-width: 250px;
        margin: 0 auto;
        height: 250px;
    }
    
    .coach-abstract-design {
        width: 200px;
        height: 200px;
    }
    
    .coach-portrait {
        width: 220px;
        height: 220px;
    }
    
    .ring-outer {
        width: 260px;
        height: 260px;
    }
    
    .ring-middle {
        width: 240px;
        height: 240px;
    }
    
    .coach-info {
        text-align: center;
    }
    
    .coach-info .section-title {
        text-align: center;
    }
}

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

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    padding: 1.25rem;
    border-radius: 16px;
    border: 2px solid var(--primary-teal); /* Enhanced dark green border */
}

.faq-question {
    font-size: 1.1rem; /* Standardized to match new FAQ */
    font-weight: 600; /* Standardized weight */
    color: var(--text-dark); /* Consistent color */
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem; /* Standardized answer font size */
    color: var(--text-medium); /* Consistent color variable */
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(42, 157, 143, 0.12));
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-text {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.testimonials-intro {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1rem;
}





@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .testimonials-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coach-promise {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .credential-number {
        font-size: 2rem;
    }
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14pt; /* Body Text: 14pt Open Sans Regular */
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.small-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt; /* Small Text: 12pt Open Sans Regular */
    font-weight: 400;
}

.caption-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 10pt; /* Captions: 10pt Open Sans Regular */
    font-weight: 400;
}

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

/* Page Break */
.page-break {
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, rgba(42, 157, 143, 0.05) 50%, transparent 100%);
}

/* No Pressure Text */
.no-pressure-text {
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 1rem;
    font-weight: 500;
    max-width: 400px;
}

/* Single Testimonial */
.single-testimonial {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-featured {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(42, 157, 143, 0.1);
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-featured blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author-featured {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.professional-avatar-featured {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.professional-avatar-featured.reinvent {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-gold));
}

.author-info-featured {
    text-align: left;
}

.author-info-featured strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info-featured span {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.cta-subtext {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Contact Section - No Pressure Design */
.no-pressure-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.no-pressure-message p:first-child {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.no-pressure-message p:last-child {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(42, 157, 143, 0.08);
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step {
        max-width: 100%;
    }
}

/* FAQ Section */
.faq-search {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.faq-search input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
}

.faq-search i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-medium);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    background: rgba(42, 157, 143, 0.05);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-new {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-question-new {
    padding: 1rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question-new:hover {
    background: rgba(42, 157, 143, 0.05);
}

.faq-toggle {
    color: var(--primary-teal);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(42, 157, 143, 0.02);
}

.faq-answer-new.open {
    max-height: 500px;
    padding: 1rem;
}

.faq-answer-new p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.faq-answer-new ul {
    margin-left: 1rem;
    color: var(--text-medium);
}

.faq-answer-new li {
    margin-bottom: 0.25rem;
}

/* Problem Section */
.problem-section {
    padding: 2rem 0;
    background: var(--white);
    text-align: center;
}

.problem-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.problem-text {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .problem-title {
        font-size: 2rem;
    }
    
    .problem-text {
        font-size: 1.1rem;
    }
}

/* Testimonials Carousel */
.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--accent-gold); /* Gold border for testimonials */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar.amanda { background: var(--primary-teal-light); }
.avatar.entrepreneur { background: var(--primary-teal); }
.avatar.job-loss { background: var(--success-green); }
.avatar.faith { background: var(--accent-gold); }
.avatar.mom { background: var(--warning-yellow); }
.avatar.tommy { background: var(--success-green); }
.avatar.sarah { background: var(--danger-red); }
.avatar.marcus { background: var(--primary-teal); }

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal);
    background: var(--white);
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot, .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .carousel-dot.active {
    background: var(--primary-teal);
}



/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(30, 122, 107, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a6b5f 0%, var(--primary-teal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 122, 107, 0.35);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-teal);
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-teal);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin-top: 2rem;
}

.btn-final {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
}

.btn-form {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Accent Text */
.accent-text {
    color: var(--accent-gold);
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-image {
    height: 80px;
    width: auto;
    background: transparent !important;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.nav-logo h2 {
    color: var(--primary-teal);
    margin: 0;
    font-size: 18pt;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1001; /* Ensure it's above other elements */
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block; /* Ensure lines are visible */
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 2rem 0; /* Reset mobile padding */
        min-height: 100vh;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px; /* Adjusted for navbar height */
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000; /* High z-index to appear above content */
        border-top: 2px solid var(--primary-teal); /* Visual separation */
    }
    
    .nav-links.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(30, 122, 107, 0.1);
    }
    
    .nav-cta {
        margin-top: 1rem;
        align-self: center;
    }
    
    /* Animate hamburger to X when open */
    .nav-toggle.nav-open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.nav-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.nav-open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Hero Section - Minimalist */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 10rem 0 2rem 0; /* Further increased top padding to clear fixed navbar */
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(42, 157, 143, 0.05) 100%);
    pointer-events: none;
}

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

.hero-content {
    z-index: 2;
    text-align: left;
}

.hero-headline {
    font-size: 32pt;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subheading {
    font-size: 14pt;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-abstract-design {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-abstract-design .circle-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-teal), rgba(42, 157, 143, 0.7));
    border-radius: 50%;
    top: 20px;
    left: 20px;
    animation: float 8s ease-in-out infinite;
}

.hero-abstract-design .circle-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), rgba(233, 196, 106, 0.8));
    border-radius: 50%;
    top: 80px;
    right: 30px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-abstract-design .circle-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.3), rgba(233, 196, 106, 0.3));
    border-radius: 50%;
    bottom: 30px;
    left: 80px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-15px) scale(1.05); 
    }
}

/* Hero Badge and Stats */
.badge-text {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Ensure hero content is visible */
.hero-content {
    z-index: 10;
    position: relative;
}

/* Time Breakdown in Hero */
.time-breakdown {
    background: rgba(42, 157, 143, 0.1);
    border: 2px solid var(--primary-teal);
    border-radius: 24px; /* More organic curves */
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    /* Removed rotation for straight alignment */
    transition: transform 0.3s ease;
}

.time-breakdown:hover {
    /* Hover effect without rotation */
}

.time-breakdown h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.time-components {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-item {
    background: var(--white);
    color: var(--text-medium);
    padding: 0.75rem 1.25rem;
    border-radius: 30px; /* More organic pill shape */
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(30, 122, 107, 0.2);
    transition: all 0.3s ease;
}

.time-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 122, 107, 0.1);
}

@media (max-width: 768px) {
    .time-components {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Why Programs Fail Section */
.why-fail-section {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(30, 122, 107, 0.1);
}

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

.fail-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.1);
    background: rgba(220, 38, 38, 0.02);
    transition: all 0.3s ease;
}

.fail-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

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

.fail-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.fail-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.audit-solution {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    border: 2px solid var(--primary-teal);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.audit-solution h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.audit-solution p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .fail-reasons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audit-solution {
        margin: 2rem 1rem 0 1rem;
        padding: 2rem 1.5rem;
    }
}



/* Guarantee Section */
.guarantee-section {
    background: var(--white);
    padding: 3rem 0;
    border-top: 1px solid rgba(30, 122, 107, 0.1);
}

.guarantee-badge {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    border: 3px solid var(--success-green);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.15);
}

.guarantee-icon {
    background: var(--success-green);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 1rem;
}

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

.guarantee-conditions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.condition {
    background: var(--white);
    color: var(--success-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--success-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.guarantee-footer {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0 !important;
}

/* Mobile guarantee */
@media (max-width: 768px) {
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .guarantee-conditions {
        justify-content: center;
    }
}

/* Package Description Styling */
.package-description {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem !important;
    font-size: 0.95rem;
    text-align: center;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 4rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.transparent-pricing-message {
    background: rgba(42, 157, 143, 0.05);
    border: 1px solid rgba(42, 157, 143, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-transparency {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Why Programs Fail Section - Balanced Layout */
.why-fail-section {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(30, 122, 107, 0.1);
}

.fail-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 balanced grid */
    gap: 2.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fail-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 24px; /* More organic curves */
    border: 2px solid rgba(220, 38, 38, 0.1);
    background: rgba(220, 38, 38, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    /* Removed rotation for straight alignment */
}

.fail-item:nth-child(even) {
    /* Removed rotation for straight alignment */
}

.fail-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px); /* Straight alignment with lift effect */
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.12);
}

.fail-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    height: 4rem; /* Fixed height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fail-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    min-height: 3rem; /* Ensure consistent title height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fail-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.audit-solution {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    border: 2px solid var(--primary-teal);
    border-radius: 32px; /* More organic curves */
    padding: 3rem 2.5rem;
    text-align: center;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(-0.3deg); /* Subtle organic tilt */
    transition: transform 0.3s ease;
}

.audit-solution:hover {
    transform: rotate(0deg);
}

.audit-solution h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.audit-solution p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile responsiveness - Stack vertically */
@media (max-width: 768px) {
    .fail-reasons {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2rem;
        margin: 2rem 1rem;
    }
    
    .fail-item {
        min-height: auto; /* Remove fixed height on mobile */
        padding: 2rem 1.5rem;
    }
    
    .fail-item h4 {
        min-height: auto;
        font-size: 1.2rem;
    }
    
    .audit-solution {
        margin: 3rem 1rem 0 1rem;
        padding: 2.5rem 2rem;
    }
    
    .audit-solution h3 {
        font-size: 1.5rem;
    }
    
    .audit-solution p {
        font-size: 1.1rem;
    }
}

/* Tablet view - 2 columns but smaller spacing */
@media (max-width: 1024px) and (min-width: 769px) {
    .fail-reasons {
        gap: 2rem;
        margin: 2.5rem 2rem;
    }
    
    .fail-item {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }
}
.hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 157, 143, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px; /* Organic pill shape */
    border: 2px solid var(--primary-teal);
    margin-bottom: 2rem;
    font-size: 16pt;
    font-weight: 600;
    color: var(--primary-teal);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.12); /* Softer shadow */
    transform: rotate(-0.5deg); /* Subtle organic tilt */
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 0 12px 25px rgba(42, 157, 143, 0.18);
}

.counter {
    color: var(--accent-gold);
    font-weight: 800; /* Bolder */
    font-size: 1.2em; /* Larger than surrounding text */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow */
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 32pt;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 12pt;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-headshot {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.image-accent-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
}

/* Interactive Assessment */
.assessment-preview {
    background: var(--light-gray);
    padding: 2rem 0;
}

.assessment-intro {
    text-align: center;
    font-size: 18pt;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.quiz-question {
    display: none;
    text-align: center;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 20pt;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quiz-option {
    background: var(--light-gray);
    border: 2px solid transparent;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 14pt;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.quiz-option:hover {
    border-color: var(--primary-teal);
    background: rgba(42, 157, 143, 0.05);
}

.quiz-option.selected {
    border-color: var(--primary-teal);
    background: var(--primary-teal);
    color: var(--white);
}

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

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-teal);
    width: 33.33%;
    transition: width 0.5s ease;
}

.quiz-results {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-gold));
    border-radius: 12px;
    color: var(--white);
}

.quiz-results h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* ROI Calculator */
.roi-calculator {
    background: var(--neutral-gray);
    padding: 2rem 0;
}

.roi-calculator .section-title {
    color: var(--white);
}

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

.calculator-inputs {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
}

.input-group {
    margin-bottom: 3rem;
}

.input-group label {
    display: block;
    color: var(--white);
    font-size: 16pt;
    font-weight: 600;
    margin-bottom: 1rem;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    margin-bottom: 1rem;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
}

.input-value {
    color: var(--accent-gold);
    font-size: 18pt;
    font-weight: 700;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.result-card.highlight {
    border-color: var(--accent-gold);
    background: rgba(233, 196, 106, 0.1);
}

.result-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.result-amount {
    font-size: 36pt;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.result-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12pt;
    margin: 0;
}

/* Pricing Header with Timer */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.timer-text {
    font-size: 18pt;
    font-weight: 600;
    color: var(--text-dark);
}

.countdown {
    display: flex;
    gap: 1rem;
}

.time-unit {
    background: var(--primary-teal);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

/* Transparent Pricing Message */
.transparent-pricing-message {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-transparency {
    font-size: 16px;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

.pricing-transparency u {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration-color: var(--primary-teal);
}

.time-number {
    display: block;
    font-size: 24pt;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
}

.time-label {
    font-size: 12pt;
    opacity: 0.8;
}

/* How This Is Different Section */
.different-section {
    background: var(--white);
    padding: 2rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.comparison-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-item.highlight {
    background: var(--white);
    border: 2px solid var(--primary-teal);
    box-shadow: 0 4px 16px rgba(42, 157, 143, 0.1);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(30, 122, 107, 0.1);
}

.comparison-header i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.other-method {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.our-method {
    color: var(--primary-teal);
    background: rgba(30, 122, 107, 0.1);
}

.comparison-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

.different-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 122, 107, 0.05);
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.different-cta p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-item.highlight {
        transform: none;
    }
    
    .different-section {
        padding: 2rem 0;
    }
}

/* Trust Section */
.trust-section {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-title {
    text-align: center;
    color: var(--text-light);
    font-size: 16pt;
    margin-bottom: 1rem;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 1rem 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14pt;
    opacity: 0.7;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.credential-item i {
    color: var(--primary-teal);
    font-size: 18pt;
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-headshot {
        width: 200px;
        height: 200px;
    }
    
    .image-accent-circle {
        width: 240px;
        height: 240px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgency-timer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-logos {
        gap: 1rem;
    }
    
    .credentials {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.abstract-icon {
    transition: all 0.3s ease;
}

.problem-item:hover .abstract-icon {
    transform: scale(1.1);
}

.method-graphic {
    transition: all 0.3s ease;
}

.method-step:hover .method-graphic {
    transform: scale(1.1) rotate(5deg);
}

.benefit-graphic {
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(42, 157, 143, 0.2);
}

.benefit-item:hover .benefit-graphic {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.3);
}

.professional-avatar {
    transition: all 0.3s ease;
}

.testimonial:hover .professional-avatar {
    transform: scale(1.1);
}

/* Power Statement */
.power-statement {
    background: var(--primary-teal);
    padding: 2rem 0;
    text-align: center;
}

.power-headline {
    font-size: 32pt;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.power-subtext {
    font-size: 18pt;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

/* Problem Section */
.problem-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.problem-section .section-title {
    color: var(--text-dark);
}

.problem-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.problem-intro p {
    font-size: 18pt;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

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

.problem-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-item:hover {
    transform: translateY(-8px);
}

.problem-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.abstract-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Browser Chaos - Multiple Tabs Visual */
.abstract-icon.scattered {
    background: linear-gradient(135deg, var(--primary-teal), rgba(42, 157, 143, 0.7));
    border-radius: 8px;
}

.abstract-icon.scattered::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 40px;
    height: 6px;
    background: var(--white);
    border-radius: 2px 2px 0 0;
    box-shadow: 
        0 8px 0 var(--white),
        0 16px 0 var(--white),
        0 24px 0 var(--white);
}

.abstract-icon.scattered::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 8px;
    width: 8px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
    box-shadow: 
        0 8px 0 var(--accent-gold),
        0 16px 0 var(--accent-gold);
}

/* Weekly Energy Decline - Calendar Visual */
.abstract-icon.declining {
    background: linear-gradient(135deg, var(--accent-gold), rgba(233, 196, 106, 0.7));
    border-radius: 8px;
}

.abstract-icon.declining::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 30px;
    background: var(--white);
    border-radius: 3px;
}

.abstract-icon.declining::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 16px;
    width: 6px;
    height: 3px;
    background: var(--success-green);
    border-radius: 1px;
    box-shadow: 
        8px 0 0 var(--accent-gold),
        16px 0 0 var(--danger-red),
        24px 0 0 var(--neutral-gray);
}

/* Exciting Updates No Completions - Speech Bubble */
.abstract-icon.incomplete {
    background: linear-gradient(135deg, var(--neutral-gray), rgba(108, 117, 125, 0.8));
    border-radius: 50%;
}

.abstract-icon.incomplete::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 24px;
    height: 16px;
    background: var(--white);
    border-radius: 8px;
}

.abstract-icon.incomplete::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 22px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--white);
}

/* Beta Mode - Settings Gear */
.abstract-icon.behind {
    background: linear-gradient(135deg, var(--primary-teal), rgba(42, 157, 143, 0.7));
    border-radius: 50%;
}

.abstract-icon.behind::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

.abstract-icon.behind::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
}

.problem-item p {
    font-size: 14pt;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

/* Solution Section */
.solution-section {
    background: var(--neutral-gray);
    padding: 100px 0;
}

.solution-section .section-title {
    color: var(--white);
}

.gray-method {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.method-step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 32px;
    color: var(--white);
    transition: all 0.3s ease;
}

.method-icon:hover {
    transform: scale(1.1);
}

.method-icon i {
    color: inherit;
}

.method-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grow-visual {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grow-visual::before {
    content: '📈';
    font-size: 24px;
}

.reflect-visual {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reflect-visual::before {
    content: '🤔';
    font-size: 24px;
}

.apply-visual {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-visual::before {
    content: '⚡';
    font-size: 24px;
}

.yield-visual {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yield-visual::before {
    content: '🏆';
    font-size: 24px;
}

.method-icon.grow { background: var(--primary-teal); }
.method-icon.reflect { background: var(--accent-gold); color: var(--neutral-gray); }
.method-icon.apply { background: var(--primary-teal); }
.method-icon.yield { background: var(--accent-gold); }

.method-step h3 {
    color: var(--white);
    font-size: 20pt;
    margin-bottom: 1rem;
}

.method-step p {
    color: var(--white);
    font-size: 14pt;
    margin-bottom: 1rem;
}

.method-detail {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 12pt;
}

/* Journey Section */
.journey-section {
    background: rgba(42, 157, 143, 0.08);
    padding: 2rem 0;
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.journey-timeline::before {
    display: none;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-item:nth-child(even) {
    /* Remove the row-reverse for horizontal layout */
}

.timeline-marker {
    width: 70px;
    height: 70px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 1rem;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.1;
}

.timeline-item:nth-child(even) .timeline-marker {
    background: var(--accent-gold);
}

.infinity-marker {
    font-size: 24pt !important;
    font-weight: 700;
}

.timeline-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.timeline-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile timeline */
@media (max-width: 768px) {
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 9px;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
}

/* Benefits Section */
.benefits-section {
    background: rgba(42, 157, 143, 0.08);
    padding: 30px 0;
}

.benefits-section .section-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .benefits-grid-new {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

.benefit-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--accent-gold);
}

.benefit-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 32px rgba(233, 196, 106, 0.3);
}

.benefit-number {
    font-size: 48pt;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.benefit-duration {
    font-size: 36pt;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.benefit-duration span {
    font-size: 18pt;
    opacity: 0.7;
}

.benefit-box h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    aspect-ratio: 1.2/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.professional-avatar.young {
    background: linear-gradient(135deg, var(--accent-gold), #d4a843);
}

.professional-avatar.reinvent {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
}

.professional-avatar.student {
    background: linear-gradient(135deg, var(--success-green), #1e7e34);
}

@media (max-width: 768px) {
    .benefits-grid-new {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        aspect-ratio: auto;
        min-height: 200px;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 140px;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.benefit-graphic {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    position: relative;
    flex-shrink: 0;
}

.benefit-graphic.assessments {
    background: linear-gradient(135deg, var(--accent-gold), #d4a843);
    border-radius: 12px;
    position: relative;
}

.benefit-graphic.assessments::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 2px;
    background: var(--white);
    box-shadow: 0 8px 0 var(--white), 0 16px 0 var(--white);
}

.benefit-graphic.workbook {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
    border-radius: 8px;
    position: relative;
}

.benefit-graphic.workbook::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 4px;
}

.benefit-graphic.blueprint {
    background: linear-gradient(135deg, var(--accent-gold), #d4a843);
    border-radius: 50%;
    position: relative;
}

.benefit-graphic.blueprint::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top: 3px solid transparent;
}

.benefit-graphic.coaching {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
    border-radius: 50%;
    position: relative;
}

.benefit-graphic.coaching::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

.benefit-graphic.coaching::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--white);
    border-radius: 15px 15px 0 0;
}

.benefit-graphic.framework {
    background: linear-gradient(135deg, var(--accent-gold), #d4a843);
    border-radius: 12px;
    position: relative;
}

.benefit-graphic.framework::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--white) 25%, transparent 25%, transparent 75%, var(--white) 75%),
                linear-gradient(45deg, var(--white) 25%, transparent 25%, transparent 75%, var(--white) 75%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}

.benefit-graphic.community {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
    border-radius: 50%;
    position: relative;
}

.benefit-graphic.community::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 12px 0 0 var(--white), 6px 12px 0 var(--white);
}

.benefit-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-size: 3rem;
    color: var(--primary-teal);
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
}

blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 1rem 0;
    font-weight: 400;
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.professional-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12pt;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 14pt;
}

.author-info span {
    color: var(--text-light);
    font-size: 12pt;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        padding: 0 1rem;
        gap: 2rem;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--success-green);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    box-shadow: 0 4px 20px rgba(30, 122, 107, 0.08);
    word-wrap: break-word;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal-light);
    box-shadow: 0 25px 80px rgba(30, 122, 107, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 32px rgba(233, 196, 106, 0.12);
}

.pricing-card.popular:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(233, 196, 106, 0.15);
}

.popular-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 11px;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    padding: 1rem 1rem 0.5rem;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.02) 0%, rgba(42, 157, 143, 0.08) 100%);
    border-bottom: 1px solid rgba(42, 157, 143, 0.08);
}

.pricing-card.popular .card-header {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08) 0%, rgba(42, 157, 143, 0.15) 100%);
    padding-top: 1.75rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.pricing-card.popular .card-header h3 {
    color: var(--primary-teal);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}
    margin: 0;
}

.pricing-card.popular .price {
    color: var(--primary-teal);
}

.card-body {
    padding: 1rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(42, 157, 143, 0.08);
    margin-top: auto;
    min-height: 100px;
}

.best-for {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
}

.card-footer .btn-primary,
.card-footer .btn-secondary {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    line-height: 1.3;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.card-footer .btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    border: none;
}

.card-footer .btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.card-footer .btn-primary:hover {
    background: #238276;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.2);
}

.card-footer .btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.2);
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4a5568;
    border-bottom: 1px solid rgba(42, 157, 143, 0.06);
}

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

.features-list li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li .fa-check {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.features-list li .fa-times {
    background: #e2e8f0;
    color: #94a3b8;
}
}

.card-subtitle {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}



.features-list i {
    color: var(--success-green);
    font-size: 14pt;
}

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

.urgency-section .section-title {
    color: var(--white);
}

.urgency-content {
    max-width: 600px;
    margin: 0 auto;
}

.urgency-text {
    font-size: 18pt;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.choice-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.choice-section h3 {
    color: var(--accent-gold);
    font-size: 24pt;
    margin-bottom: 1rem;
}

.choice-section p {
    color: var(--white);
    font-size: 18pt;
    font-weight: 600;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: var(--neutral-gray);
    padding: 100px 0;
    text-align: center;
}

.cta-headline {
    color: var(--white);
    font-size: 32pt;
    margin-bottom: 1rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--success-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem 0;
    font-weight: 600;
}

.guarantee-badge i {
    font-size: 1.5rem;
}

.cta-message {
    color: var(--white);
    font-size: 18pt;
    max-width: 600px;
    margin: 2rem auto;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 18pt;
    color: var(--primary-teal);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

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

.contact-highlight {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
    color: var(--white);
    border-radius: 12px;
    padding: 2rem;
}

.contact-highlight i {
    color: var(--accent-gold);
}

.contact-highlight strong {
    color: var(--white);
}

.contact-highlight p {
    margin: 0;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14pt;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

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

/* Footer */
.footer {
    background: var(--neutral-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    opacity: 0.9;
}

.brand-text h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.brand-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-cta {
    background: var(--primary-teal) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.footer-cta:hover {
    background: var(--primary-teal-light) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 12pt;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo h2 {
        font-size: 16pt;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 24pt;
    }
    
    .power-headline {
        font-size: 24pt;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gray-method {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .method-step {
        min-height: 240px;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Page Break Styles */
.page-break {
    padding: 0;
    background: var(--white);
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
    width: 60%;
    margin: 0 auto;
}

/* Problem Section Icon Updates - Modern & Professional */
.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), #238276);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.2);
    transition: all 0.3s ease;
}

.problem-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 157, 143, 0.3);
}

.problem-icon i {
    font-size: 32px;
    color: var(--white);
}

/* Special styling for specific icons */
.problem-icon .fa-battery-quarter {
    color: #ff6b6b;
}

.problem-icon .fa-spinner {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Assessments Section */
.assessments-section {
    background: var(--white);
    padding: 2rem 0;
}

.assessments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.assessment-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.assessment-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.1);
}

.assessment-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.assessment-icon i {
    font-size: 24px;
    color: var(--white);
}

.assessment-item h4 {
    font-size: 18pt;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.assessment-item p {
    font-size: 14pt;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Best For Text in Pricing Cards */
.best-for {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 13pt;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    font-style: italic;
}

.card-subtitle {
    font-size: 13pt;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Quick Action Section */
.quick-action-section {
    background: linear-gradient(135deg, var(--primary-teal), #238276);
    padding: 2rem 0;
    text-align: center;
}

.quick-action-content h2 {
    color: var(--white);
    font-size: 32pt;
    margin-bottom: 1rem;
}

.quick-action-content p {
    color: var(--white);
    font-size: 18pt;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    padding: 1rem 2rem;
    font-size: 16pt;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.action-buttons .btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
}

.action-buttons .btn-primary:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

.action-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.action-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-action-content h2 {
        font-size: 24pt;
    }
    
    .quick-action-content p {
        font-size: 16pt;
    }
}

/* Inquiry Section */
.inquiry-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

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

.inquiry-message {
    font-size: 18pt;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.inquiry-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.inquiry-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.inquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.inquiry-card.primary {
    border: 2px solid var(--primary-teal);
}

.inquiry-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.inquiry-icon i {
    font-size: 32px;
    color: var(--white);
}

.inquiry-card h3 {
    font-size: 24pt;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.inquiry-card p {
    font-size: 16pt;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 16pt;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 280px;
    justify-content: center;
}

.inquiry-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 12px;
    color: var(--text-dark);
}

.inquiry-guarantee i {
    font-size: 24px;
    color: var(--primary-teal);
}

@media (max-width: 768px) {
    .inquiry-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .inquiry-card {
        padding: 2rem;
    }
    
    .btn-large {
        min-width: 100%;
    }
}

/* Benefit Icon Styling - Clean & Professional */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-teal);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(42, 157, 143, 0.1);
}

.benefit-icon:hover {
    background: var(--primary-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.25);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--primary-teal);
    transition: color 0.3s ease;
}

.benefit-icon:hover i {
    color: var(--white);
}