/* ==========================================
   CognitiveEdge Website Styles
   Brand Colors:
   - Deep Indigo: #1E1B4B (primary)
   - Warm Gold: #F59E0B (accent)
   - White: #FFFFFF
   - Soft Gray: #F8F7FF (background)
   ========================================== */

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

:root {
    --primary-color: #1E1B4B;
    --accent-color: #F59E0B;
    --white: #FFFFFF;
    --bg-soft: #F8F7FF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-cta {
    padding: 0.5rem 1.25rem !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xlarge {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

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

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background-color: var(--bg-soft);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.section-subtitle.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.product-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.product-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #FFFBEB 0%, var(--white) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.product-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.product-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-soft);
}

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

.step-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #D97706 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
}

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

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    background-color: var(--white);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.trust-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.trust-stat-label {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

/* Product Hero */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.product-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.product-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.product-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.product-hero-note {
    color: rgba(255, 255, 255, 0.8);
}

/* Product Problem */
.product-problem {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.column {
    line-height: 1.8;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.stats-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-small {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card-detailed {
    background-color: var(--bg-soft);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

/* Use Cases */
.use-cases {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

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

.use-case-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.use-case-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.use-case-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #FFFBEB 0%, var(--white) 100%);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gray);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.form-input-large {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
}

.form-input-large:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Quiz Styles */
.quiz-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.quiz-hero-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.quiz-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.quiz-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.quiz-section {
    padding: 4rem 0 6rem;
    background-color: var(--bg-soft);
}

.quiz-progress {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, #D97706 100%);
    transition: width 0.4s ease;
    width: 16.66%;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: var(--text-gray);
}

.quiz-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.quiz-question {
    display: none;
}

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

.question-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-soft);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.option-card input[type="radio"]:checked + .option-content {
    background-color: #FFFBEB;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.option-card:hover .option-content {
    border-color: var(--accent-color);
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
}

/* Email Capture */
.email-capture {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.email-capture-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.email-capture-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.email-note {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

/* Results Section */
.results-section {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.result-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.result-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.result-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.result-content {
    margin-bottom: 3rem;
}

.result-section {
    margin-bottom: 2.5rem;
}

.result-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.result-section ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 1.8;
}

.result-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.result-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Blog Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

.blog-grid {
    display: grid;
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card.featured-post {
    grid-column: 1 / -1;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    position: relative;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-title a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background-color: var(--bg-soft);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #D97706;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
}

.newsletter-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.newsletter-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #34D399;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #F87171;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-quick-links,
.contact-list {
    list-style: none;
    line-height: 2;
}

.contact-quick-links a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.contact-quick-links a:hover {
    color: #D97706;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2463 100%);
    color: var(--white);
    border-color: var(--accent-color);
}

.testimonial-card.featured .testimonial-quote,
.testimonial-card.featured .testimonial-name,
.testimonial-card.featured .testimonial-role {
    color: var(--white);
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.testimonial-card.featured .testimonial-rating {
    color: var(--accent-color);
}

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

.testimonial-quote strong {
    color: var(--accent-color);
    font-weight: 700;
    font-style: normal;
}

.testimonial-card.featured .testimonial-quote strong {
    color: var(--accent-color);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
    background: var(--accent-color);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.testimonial-card.featured .testimonial-role {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-product {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--bg-soft);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.testimonial-card.featured .testimonial-product {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.centered .section-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
}

/* CTA Badge */
.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cta-box .cta-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
}

/* Pulse Animation for CTA */
.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Hero Trust Note */
.hero-trust-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ==========================================
   Scroll Animations
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grids */
.stat-card:nth-child(1) { transition-delay: 0.1s; }
.stat-card:nth-child(2) { transition-delay: 0.2s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }
.stat-card:nth-child(4) { transition-delay: 0.4s; }

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================
   Enhanced Hover Effects
   ========================================== */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Product Card Enhanced Hover */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.product-card:hover::after {
    animation: shine 1.5s;
}

@keyframes shine {
    0% {
        top: -50%;
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 150%;
        left: 150%;
        opacity: 0;
    }
}

/* ==========================================
   Exit Intent Popup
   ========================================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.exit-popup-close:hover {
    background: var(--bg-soft);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.exit-popup-inner {
    text-align: center;
}

.exit-popup-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.exit-popup-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.exit-popup-testimonials {
    background: var(--bg-soft);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.exit-popup-quote {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.exit-popup-quote:last-child {
    margin-bottom: 0;
}

.exit-popup-quote strong {
    color: var(--accent-color);
    font-weight: 700;
}

.exit-popup-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    line-height: 2;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid,
    .steps-grid,
    .pricing-grid,
    .features-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quiz-container {
        padding: 2rem 1.5rem;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .option-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-hero-title,
    .quiz-hero-title {
        font-size: 2rem;
    }
    
    .waitlist-form,
    .email-form,
    .newsletter-form {
        flex-direction: column;
    }
    
    .form-input-large {
        min-width: 100%;
    }
}

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

.quiz-question.active {
    animation: fadeIn 0.4s ease;
}

/* Additional product-specific styles */
.admingone-hero {
    background: linear-gradient(135deg, #1E1B4B 0%, #2D2667 100%);
}

.mindgate-hero {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
}

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

.module-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.module-card.highlighted {
    background: linear-gradient(135deg, #FFFBEB 0%, var(--white) 100%);
    border-color: var(--accent-color);
}

.module-number {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.module-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.module-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.module-includes {
    list-style: none;
}

.module-includes li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

/* Bonus Section */
.bonus-section,
.whats-inside {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.bonus-card,
.included-card {
    background-color: var(--bg-soft);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.bonus-card h3,
.included-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.bonus-card p,
.included-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Who For Section */
.who-for-section {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

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

.who-for-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.who-for-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.who-for-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.who-for-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--bg-soft);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* Simple Pricing */
.pricing-section-simple {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.pricing-option {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.pricing-option.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #FFFBEB 0%, var(--white) 100%);
}

.pricing-header-simple {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.pricing-header-simple h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-gray);
}

.price-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-description {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features-simple {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features-simple li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.guarantee-box {
    background-color: var(--bg-soft);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
}

.final-cta-box {
    text-align: center;
    color: var(--white);
}

.final-cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Curriculum Section */
.curriculum-section {
    padding: 6rem 0;
    background-color: var(--bg-soft);
}

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

.week-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.week-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.week-card.highlighted {
    background: linear-gradient(135deg, #FFFBEB 0%, var(--white) 100%);
    border-color: var(--accent-color);
}

.week-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.week-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.week-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.week-deliverables {
    list-style: none;
}

.week-deliverables li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

/* What You Get */
.what-you-get {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Corporate Section */
.corporate-section {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

.corporate-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.corporate-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.corporate-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.corporate-feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Founder Section */
.founder-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.founder-image-placeholder {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.founder-initials {
    font-size: 6rem;
    font-weight: 800;
    color: var(--white);
}

.founder-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: block;
}

.founder-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.founder-story {
    line-height: 1.9;
    color: var(--text-dark);
}

.founder-story p {
    margin-bottom: 1.5rem;
}

.founder-story strong {
    color: var(--primary-color);
    font-weight: 600;
}

.founder-story em {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

.founder-signature {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.founder-title-sub {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-gray);
}

.founder-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .founder-initials {
        font-size: 4rem;
    }
    
    .founder-title {
        font-size: 2rem;
    }
    
    .founder-cta {
        flex-direction: column;
    }
}

/* About Page Styles */
.about-founder {
    padding: 5rem 0;
    background-color: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.about-image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.about-image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    margin: 0 auto 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.about-initials {
    font-size: 8rem;
    font-weight: 800;
    color: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-stat-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.about-stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.about-story-full {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-story-full h3 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-story-full p {
    margin-bottom: 1.5rem;
}

.about-story-full strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-story-full em {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

.about-research-list {
    background-color: var(--bg-soft);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    list-style: none;
}

.about-research-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.about-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2667 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
}

.about-cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Mission Stats */
.mission-stats {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.impact-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg-soft);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.impact-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-section {
        position: relative;
        top: 0;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-initials {
        font-size: 5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0 6rem;
    background-color: var(--white);
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text p {
    margin-bottom: 1.25rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
}

.legal-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: #D97706;
}

.legal-closing {
    background-color: var(--bg-soft);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 3rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }