/* Silly Money Blueprint Landing Page Styles - Exact PDF Replica */

.blueprint-landing-page {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.4;
    background: #F6F5F4 !important;
}

/* Header Styles */
.blueprint-header {
    background: #ffffff;
    color: #000000;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.blueprint-header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #000000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo a {
    display: block;
    padding: 4px 8px;
}

.header-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-newsletter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-text {
    font-size: 14px;
    font-weight: 600;
}

.newsletter-subtext {
    font-size: 12px;
    opacity: 0.8;
}

.subscribe-btn {
    background: var(--wt-primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    background: var(--primary-hover);
    text-decoration: none;
    color: white;
}

/* Hero Section */
.blueprint-hero {
    background: #F6F5F4;
    color: #1f2937;
    padding: 40px 20px 80px;
    text-align: center;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.wait-message {
    background: transparent;
    color: #1f2937;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge {
    background: #D9EBA6;
    color: #1f2937;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #1f2937;
    background: #D9EBA6;
    padding: 2px 8px;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    background: #D9EBA6;
    border-radius: 8px;
    transform: rotate(-0.5deg) skew(-1deg);
    z-index: -1;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -2px;
    right: -2px;
    bottom: 1px;
    background: #D9EBA6;
    border-radius: 6px;
    transform: rotate(0.3deg) skew(0.5deg);
    z-index: -2;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: #6b7280;
}

.hero-cta {
    margin-bottom: 40px;
}

.cta-button {
    background: #EF4444;
    color: white;
    padding: 20px 40px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    text-decoration: none;
    color: white;
}

.hero-video {
    margin-top: 40px;
}

.video-placeholder {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-button {
    width: 70px;
    height: 70px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6);
}

/* Testimonials Section */
.testimonials-section {
    background: #202938;
    padding: 60px 20px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.testimonial-title {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    font-style: italic;
}

/* Peek Inside Section */
.peek-inside-section {
    background: #D9EBA6;
    padding: 80px 20px;
}

.peek-container {
    max-width: 1000px;
    margin: 0 auto;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.peek-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.peek-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.peek-number {
    background: #202938;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.peek-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.peek-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Main offer styling - same as other boxes */

/* Growth Section */
.growth-section {
    background: #ffffff;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.growth-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.growth-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
}

.growth-text strong {
    font-weight: 700;
}

.growth-cta {
    margin-top: 30px;
}

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

.chart-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-placeholder {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 200px;
    gap: 15px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 700;
    position: relative;
    min-height: 40px;
}

.chart-bar:nth-child(1) {
    background: linear-gradient(to top, #6B7280, #9CA3AF);
}

.chart-bar:nth-child(2) {
    background: linear-gradient(to top, #6B7280, #9CA3AF);
}

.chart-bar:nth-child(3) {
    background: linear-gradient(to top, #6B7280, #9CA3AF);
}

.chart-bar:nth-child(4) {
    background: linear-gradient(to top, #1e293b, #202938);
}

.chart-bar span {
    padding: 8px;
    font-size: 14px;
}

.chart-bar label {
    position: absolute;
    bottom: -25px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.chart-result {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Solo 401k Statistics Section */
.solo401k-stats-section {
    background: #D9EBA6;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.stat-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.stats-footer {
    margin-top: 50px;
    text-align: center;
}

.stats-footer p {
    font-size: 18px;
    color: #1f2937;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Don't Scale Section */
.dont-scale-section {
    background: #ffffff;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

.dont-scale-container {
    max-width: 1000px;
    margin: 0 auto;
}

.dont-scale-container h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
}

.dont-scale-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.system-text p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.system-box {
    background: #202938;
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.system-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.system-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.system-step {
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.step-number {
    background: #1f2937;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Everything You Get Section */
.everything-section {
    background: #D9EBA6;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

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

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
}

.content-block.reverse {
    background: #ffffff;
}

.content-block.reverse .content-text {
    order: 1;
}

.content-block.reverse .content-image {
    order: 2;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.module-badge {
    background: #3b82f6;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-text li {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.content-text li:before {
    content: "✔";
    flex-shrink: 0;
}

.bonus-section {
    background: #ffffff;
    border: 2px dashed #000000;
    border-radius: 12px;
    padding: 40px;
    position: relative;
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #000000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.bonus-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Final CTA Section */
.final-cta-section {
    background: #F6F5F4;
    color: #1f2937;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid #000000;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
}

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

.blueprint-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.blueprint-package img {
    width: 400px;
    height: auto;
}

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

.price-strike {
    font-size: 2.5rem;
    text-decoration: line-through;
    color: #EF4444;
    margin-bottom: 20px;
    font-weight: 800;
}

.price-badge {
    background: #EF4444;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    display: inline-block;
}

.final-cta-button {
    background: #EF4444;
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.final-cta-button:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    text-decoration: none;
    color: white;
}

/* Author Bio Section */
.author-bio-section {
    background: #1f2937;
    color: white;
    padding: 80px 20px;
}

.author-container {
    max-width: 1000px;
    margin: 0 auto;
}

.author-card {
    background: #111827;
    border-radius: 12px;
    padding: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.author-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: white;
}

.author-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.author-image img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* Customer Stories Section */
.customer-stories-section {
    background: #ffffff;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

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

.customer-container h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 60px;
    text-transform: uppercase;
    line-height: 1.1;
}

.customer-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.customer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.customer-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.customer-title {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 5px;
}

.customer-rating {
    color: #F59E0B;
    font-size: 14px;
}

/* Final Pricing Section */
.final-pricing-section {
    background: #D9EBA6;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

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

.pricing-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-card-final {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #D9EBA6;
}

.course-unlock-container {
    text-align: center;
}

.unlock-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.course-title-container {
    margin-bottom: 25px;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.course-title-container h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: white;
    text-transform: uppercase;
}

.course-subtitle {
    color: #D9EBA6;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-modules {
    background: rgba(217, 235, 166, 0.1);
    border-radius: 12px;
    padding: 30px 25px;
    margin: 30px 0;
    border: 1px solid rgba(217, 235, 166, 0.2);
}

.module-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.module-item span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.course-perks {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.perk {
    font-size: 14px;
    font-weight: 600;
    color: #D9EBA6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.unlock-button {
    background: linear-gradient(135deg, #EF4444, #DC2626) !important;
    font-size: 18px !important;
    padding: 18px 40px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4) !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
}

.unlock-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6) !important;
}

.pricing-visual img {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
}

.pricing-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-strike {
    font-size: 2rem;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.final-pricing-button {
    background: #EF4444;
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.final-pricing-button:hover {
    background: #DC2626;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.guarantee-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    position: relative;
}

.guarantee-highlight {
    background: #D9EBA6;
    color: #1f2937;
    padding: 2px 6px;
    border-radius: 4px;
    position: relative;
    display: inline-block;
}

.guarantee-details h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.guarantee-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 20px;
    border-top: 2px solid #000000;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.faq-list {
    margin-bottom: 50px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.15s ease-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

/* Newsletter Footer */
.newsletter-footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 20px;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    color: #1f2937;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.newsletter-signup h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-signup p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #6b7280;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    background: #4F46E5;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-powered {
    font-size: 12px;
    color: #9ca3af;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #ffffff;
    padding: 20px;
}

.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-container p {
    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    opacity: 0.8;
}

.disclaimer-container strong {
    font-weight: 600;
    color: #374151;
}

.footer-copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .growth-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .system-explanation {
        grid-template-columns: 1fr;
    }
    
    .content-block,
    .content-block.reverse,
    .bonus-content,
    .final-cta-visual,
    .author-card,
    .guarantee-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .blueprint-package img {
        width: 100%;
        max-width: 300px;
    }
    
    .customer-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-container h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .peek-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .peek-number {
        margin-bottom: 20px;
        align-self: center;
    }
    
    .chart-bars {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .final-cta-container h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-section {
        padding: 60px 20px;
    }
    
    .content-block,
    .author-card {
        padding: 25px 20px;
    }
    
    .pricing-card-final {
        padding: 30px 20px;
    }
    
    .course-perks {
        flex-direction: column;
        gap: 15px;
    }
    
    .course-icon {
        font-size: 2.5rem;
    }
    
    .course-title-container h3 {
        font-size: 1.8rem;
    }
    
    .guarantee-section {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 14px;
    }
}