/* CSS Tokens */
:root {
    --brand: #FF4B00;
    --accent: #FF4D00;
    --ink: #0B0D12;
    --muted: #4C5567;
    --border: rgba(255,75,0,0.12);
    --bg-card-dark: #0F121A;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff; /* Clear white background */
    min-height: 100vh;
}

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

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

/* Navigation */
.nav {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 600; /* Inter Semi Bold */
    text-decoration: none;
    color: #1a202c;
}

.logo i {
    color: #FF4B00; /* Orange accent */
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF4B00;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FF4B00; /* Primary orange CTA */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 75, 0, 0.3);
}

.nav-cta:hover {
    background: #e63e00;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 75, 0, 0.4);
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a202c;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Hero Section */
.new-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Enhanced Hero Section with Background Image */
.enhanced-hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

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

.enhanced-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(26, 32, 44, 0.6) 100%);
    z-index: 2;
}

.enhanced-hero .hero-header {
    position: relative;
    z-index: 10;
}

.enhanced-hero .hero-panels {
    position: relative;
    z-index: 10;
}

.enhanced-hero .panel-title {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

.enhanced-hero .point-content h4 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.enhanced-hero .point-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.enhanced-hero .price-info {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.enhanced-hero .price-highlight {
    color: #FF4B00 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

.enhanced-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.enhanced-hero .hero-badge svg {
    color: #FF4B00;
}

.enhanced-hero .hero-title {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.enhanced-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.enhanced-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Proof Points Section */
.proof-points {
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--brand, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.proof-content h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.proof-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fef3e2; /* Light orange background */
    color: #FF4B00;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-panels {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.hero-image-panel {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.book-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.book-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.book-image:hover {
    transform: scale(1.08);
}

.hero-content-panel {
    padding: 20px 0;
}

.panel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    text-align: left;
}

.selling-points {
    list-style: none;
    margin-bottom: 40px;
}

.selling-point {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF4B00 0%, #ff6b2b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.point-content h4 {
    color: #1a202c;
    margin-bottom: 4px;
}

.point-content p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
}

/* CTA Buttons - Primary Orange */
.cta-primary-unified,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #FF4B00; /* Primary orange CTA */
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 75, 0, 0.3);
    border: none;
    cursor: pointer;
}

.cta-primary-unified:hover,
.btn-primary:hover {
    background: #e63e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 75, 0, 0.4);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: #FF4B00;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #FF4B00;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #FF4B00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 0, 0.3);
}

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

.price-info {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

.price-highlight {
    color: #FF4B00;
    font-weight: 700;
}

.amazon-link {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.amazon-link a {
    color: #FF4B00;
    text-decoration: none;
}

.amazon-link a:hover {
    text-decoration: underline;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: #f8fafc; /* Light gray background for contrast */
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.quote-icon {
    color: #FF4B00;
    margin-bottom: 20px;
    width: 32px;
    height: 32px;
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    color: #4a5568;
}

.testimonial-author strong {
    color: #1a202c;
    display: block;
    margin-bottom: 4px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-section h2 {
    margin-bottom: 40px;
    color: #1a202c;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: #f8fafc;
}

.social-proof h2 {
    color: var(--ink);
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

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

.client-categories h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 40px;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.category-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 75, 0, 0.2);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(255, 75, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

.category-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.category-item p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 60px;
}

.company-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FF4B00 0%, #ff6b2b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-card h3 {
    color: #1a202c;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 50px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    position: relative;
}


.step {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.15s ease;
    text-align: left;
}

.step:hover {
    border-color: rgba(255, 75, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 75, 0, 0.08);
}

.step-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.badge {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-head i {
    color: var(--brand);
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.step h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    line-height: 24px;
    color: #2A3241;
    margin-bottom: 8px;
}

.step p strong {
    color: var(--ink);
}

.step .output {
    font-size: 15px;
    line-height: 22px;
    color: var(--muted);
    margin-bottom: 4px;
}

.step .micro-proof {
    font-size: 13px;
    line-height: 18px;
    color: var(--brand);
    font-weight: 500;
    margin: 0;
}

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

.steps-cta .btn {
    font-size: 16px;
    padding: 14px 28px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    color: #1a202c;
    margin-bottom: 50px;
}

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

.testimonials .testimonial-card {
    padding: 30px;
    text-align: left;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #1a202c;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: #4a5568;
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq h2 {
    color: #1a202c;
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a202c;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question i {
    color: #FF4B00;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px 24px;
    color: #4a5568;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Secondary CTA Section */
.secondary-cta {
    padding: 80px 0;
    background: white;
}

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

.cta-text {
    text-align: left;
}

.cta-text h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-text p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.cta-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.subheading {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 50px;
    line-height: 1.6;
}

.pricing-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1a202c;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.pricing-box h3 i {
    color: #FF4B00;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #4a5568;
}

.features-list li i {
    color: #10b981; /* Green checkmarks for features */
    flex-shrink: 0;
}

.pricing {
    text-align: center;
    margin-bottom: 20px;
}

.regular-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 8px;
}

.launch-price {
    color: #FF4B00;
    font-size: 1.5rem;
    font-weight: 700;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-subtexts {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.cta-subtext.primary-sub {
    color: rgba(255, 255, 255, 0.8);
}

.cta-subtext.secondary-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.mobile-sticky-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #FF4B00;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-sticky-cta .btn:hover {
    background: #e63e00;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: #1a202c;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer .logo {
    color: white;
}

.footer .logo i {
    color: #FF4B00;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: #a0aec0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FF4B00;
    color: white;
}

.social-icon .icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(8%) saturate(1000%) hue-rotate(180deg) brightness(95%) contrast(85%);
    transition: filter 0.3s ease;
}

.social-icon:hover .icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.footer-copyright {
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
    border-top: 1px solid #2d3748;
    padding-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-panels {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .panel-title {
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .steps,
    .testimonials-grid,
    .categories-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .category-item {
        padding: 25px 20px;
    }
    
    /* How It Works mobile styles */
    .steps {
        gap: 16px;
    }
    
    .steps::before {
        display: none; /* Hide connector line on mobile */
    }
    
    .step {
        padding: 20px;
    }
    
    .step-head i {
        width: 40px;
        height: 40px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons .btn-primary,
    .final-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Proof points mobile styles */
    .proof-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .benefit-card,
    .step,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.benefit-card,
.step,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
a:focus,
.faq-question:focus {
    outline: 2px solid #FF4B00;
    outline-offset: 2px;
}

/* Educational Content Section */
.educational-content {
    padding: 100px 0;
    background: white;
}

.educational-content .container {
    max-width: 1200px;
    padding-inline: 32px;
    margin-inline: auto;
}

.educational-content .intro {
    text-align: center;
    margin-bottom: 56px;
}

.educational-content .intro h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.educational-content .intro p {
    font-size: 18px;
    line-height: 30px;
    color: var(--ink-2);
    max-width: 65ch;
    margin: 0 auto;
}

.educational-content .edu-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 64px;
}

.educational-content .edu-card-full {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.educational-content .edu-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF4B00 0%, #ff6b2b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.educational-content .edu-card-full:hover {
    border-color: rgba(255, 75, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(255, 75, 0, 0.12);
}

.educational-content .edu-card-full:hover::before {
    transform: scaleX(1);
}

.educational-content .edu-card-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.educational-content .card-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF4B00 0%, #ff6b2b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 75, 0, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 8px;
}

.educational-content .edu-card-full:hover .card-number {
    transform: scale(1.1);
}

.educational-content .edu-card-content h3 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.educational-content .edu-card-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--ink-2);
    margin: 0;
}

.educational-content .edu-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.educational-content .edu-card-content li {
    font-size: 15px;
    line-height: 26px;
    color: var(--ink-2);
    padding-left: 24px;
    position: relative;
}

.educational-content .edu-card-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 600;
}

.educational-content .edu-card-content .card-link {
    font-size: 14px;
    margin-top: 8px;
}

.educational-content .edu-card-image {
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.educational-content .edu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.educational-content .edu-card-full:hover .edu-card-image img {
    transform: scale(1.05);
}

/* Model comparison table */
.model-compare {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.model-compare th {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid var(--border);
    background: rgba(255, 75, 0, 0.03);
}

.model-compare td {
    font-size: 15px;
    line-height: 24px;
    color: var(--ink-2);
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 75, 0, 0.08);
}

.model-compare tr:last-child td {
    border-bottom: none;
}

.model-compare td:first-child {
    font-weight: 600;
    color: var(--ink);
}

.model-compare tbody tr:hover {
    background: rgba(255, 75, 0, 0.02);
}

.educational-content .section-cta {
    text-align: center;
}

.educational-content .section-cta .btn {
    margin-bottom: 12px;
}

.educational-content .cta-sub {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0;
}

.educational-content .cta-sub a {
    color: var(--brand);
    text-decoration: none;
}

.educational-content .cta-sub a:hover {
    text-decoration: underline;
}

/* Mobile responsive for educational content */
@media (max-width: 768px) {
    .educational-content {
        padding: 64px 0;
    }
    
    .educational-content .container {
        padding-inline: 20px;
    }
    
    .educational-content .intro {
        margin-bottom: 40px;
    }
    
    .educational-content .intro h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .educational-content .intro p {
        font-size: 16px;
        line-height: 26px;
    }
    
    .educational-content .edu-cards-stack {
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .educational-content .edu-card-full {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    
    .educational-content .edu-card-content {
        padding: 32px;
        gap: 16px;
    }
    
    .educational-content .card-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .educational-content .edu-card-content h3 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .educational-content .edu-card-content p {
        font-size: 15px;
        line-height: 26px;
    }
    
    .educational-content .edu-card-content li {
        font-size: 14px;
        line-height: 24px;
    }
    
    .educational-content .edu-card-image {
        min-height: 300px;
        order: -1;
    }
    
    /* Mobile table stacking */
    .model-compare {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .model-compare thead {
        display: none;
    }
    
    .model-compare tbody {
        display: contents;
    }
    
    .model-compare tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px;
        background: rgba(255, 75, 0, 0.02);
        border-radius: 8px;
        border: 1px solid rgba(255, 75, 0, 0.06);
    }
    
    .model-compare td {
        padding: 0;
        border: none;
    }
    
    .model-compare td:first-child {
        font-weight: 700;
        color: var(--brand);
        margin-bottom: 4px;
    }
    
    .model-compare td:first-child::after {
        content: ":";
    }
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Founder Profile Section */
.founder-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.founder-image-section {
    text-align: center;
}

.founder-image-section img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.founder-image-section h3 {
    margin: 20px 0 8px;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 600;
}

.founder-image-section p {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
}

.founder-bio-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
}

.founder-bio-section p:last-child {
    margin-bottom: 0;
}

.founder-bio-section a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}

.founder-bio-section a:hover {
    text-decoration: underline;
}

/* Mobile responsive for founder profile */
@media (max-width: 768px) {
    .founder-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .founder-image-section {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .founder-bio-section {
        text-align: left;
    }
}

/* Motion preferences - respect users who disable animations */
@media (prefers-reduced-motion: reduce) {
  * { 
    animation-duration: 0.001ms !important; 
    animation-iteration-count: 1 !important; 
    transition-duration: 0.001ms !important; 
  }
}

/* Screen reader only class for table caption */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Hero Section with Background Image */
.about-hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(26, 32, 44, 0.6) 100%);
    z-index: -1;
}

.about-hero-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero-badge svg {
    color: #FF4B00;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive for enhanced hero */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
        min-height: 60vh;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 50px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
}
