/* ===========================
   GLOBAL RESET & BASE STYLES
   =========================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* ===========================
   GLOBAL NAVIGATION + BUTTONS
   =========================== */

/* Default nav (fixed, blurred background) */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 64px; 
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* LOGO IMAGE â€“ CLEAR & FIT */
.nav-logo {
    max-height: 4.5rem;          /* ðŸ‘ˆ key line */
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);  /* GPU sharpen */
}

/* OPTIONAL: slight contrast boost (safe) */
.nav-logo {
    filter: contrast(1.05);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

/* Login dropdown (Educator / Learner) */
.dropdown {
    position: relative;
}

.login-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    font-size: 0.95rem;
}

.login-btn:hover {
    color: #333;
}

/* Active state for dropdown (when on login-related routes) */
.dropdown.active > .login-btn {
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    color: #2563eb;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    display: none;
    z-index: 50;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #374151;
    white-space: nowrap;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Global primary button (red) e.g. Start Free Trial */
.btn-primary {
    background: #ff6b6b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    background: #ff5252;
}

/* Generic gradient CTA button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
}

/* Variants often reused */
.btn-white {
    background: white;
    color: #667eea;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* ===========================
   GLOBAL FOOTER
   =========================== */

footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

/* Only FAQ page uses this extra footer line, but we keep global */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Generic responsive headings tweaks */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* ===========================
   HOME / MAIN LANDING PAGE (1)
   =========================== */
/* Use: <body class="home-page"> */

.home-page .launch-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 1rem 5%;
    margin-top: 115px;
    font-weight: 600;
    font-size: 1rem;
}

.home-page .launch-banner strong {
    color: #FFD700;
    font-weight: 700;
}

/* Hero section */
.home-page header {
    background: #FFFFFF;
    color: #333;
    padding: 5rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid #f8f9fa;
    margin-top: 0;
}

.home-page header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #333;
}

.home-page header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.home-page .hero-subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: #666;
}

/* Trust badges under hero */
.home-page .trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.home-page .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #48BB78;
    font-weight: 600;
    font-size: 0.95rem;
}

.home-page .trust-badge-item::before {
    content: '✓';
    font-weight: 700;
    font-size: 1.2rem;
}

/* Demo video block */
.home-page .demo-video {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.home-page .demo-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.home-page .demo-video::after {
    /*content: 'â–¶ Watch 45-Second Demo';*/
    position: absolute;
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: none;
}

.home-page .demo-video.has-video::after {
    display: none;
}

.home-page .demo-video:hover::after {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.05);
}

/* CTA subtext */
.home-page .cta-subtext {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-weight: 400;
}

.home-page .btn .cta-subtext {
    color: rgba(255, 255, 255, 0.9);
}

.home-page .cta-bar .btn .cta-subtext {
    color: #667eea;
}

/* Sections */
.home-page section {
    padding: 5rem 0;
}

.home-page section:nth-child(even):not(.trial-form-section):not(.early-adopter):not(.cta-bar) {
    background-color: #f8f9fa;
}

.home-page h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.home-page .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.home-page h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #34495e;
}

/* Feature Grid */
.home-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.home-page .feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
}

.home-page .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.home-page .feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Differentiator section */
.home-page .differentiator {
    background: #F8F9FA;
    color: #333;
    padding: 5rem 5%;
}

.home-page .differentiator h2 {
    color: #333;
}

.home-page .differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.home-page .differentiator-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.home-page .differentiator-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.home-page .differentiator-card p {
    color: #666;
    line-height: 1.8;
}

/* CTA Bar */
.home-page .cta-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 3rem 5%;
    margin: 0;
}

.home-page .cta-bar h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.home-page .cta-bar .btn {
    background: white;
    color: #667eea;
}

.home-page .cta-bar .btn:hover {
    background: #f8f9fa;
}

/* Audience showcase cards */
.home-page .audience-showcase {
    background: white;
    padding: 5rem 5%;
}

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

.home-page .audience-showcase-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.home-page .audience-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.home-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.home-page .card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.home-page .card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.home-page .card-content {
    padding: 2rem;
    flex-grow: 1;
}

.home-page .card-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.home-page .benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.home-page .benefits-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.home-page .benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: 700;
    font-size: 1.2rem;
}

.home-page .stat-highlight {
    background: white;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 120px;
}

.home-page .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1.2;
    display: block;
}

.home-page .stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    display: block;
}

.home-page .info-icon {
    display: inline-block;
    margin-left: 0.3rem;
    color: #667eea;
    font-size: 0.85rem;
    cursor: help;
    font-weight: 600;
    vertical-align: middle;
}

.home-page .info-icon:hover {
    color: #764ba2;
}

.home-page .card-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.home-page .card-btn:hover {
    background: linear-gradient(135deg, #5a52e0 0%, #6a3f8f 100%);
}

/* How it works (home) */
.home-page .how-it-works {
    background: #f8f9fa;
}

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

.home-page .step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.home-page .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

/* Trust section (home) */
.home-page .trust-section {
    background: white;
}

.home-page .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.home-page .trust-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #48BB78;
}

.home-page .trust-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.home-page .trust-card ul {
    list-style: none;
    margin-top: 1rem;
}

.home-page .trust-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.home-page .trust-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: 700;
}

/* Trial form section */
.home-page .trial-form-section {
    background: #2c3e50 !important;
    color: red !important;
    padding: 5rem 5%;
}

.home-page .trial-form-section h2 {
    color: white !important;
    margin-bottom: 1rem;
}

.home-page .trial-form-section > .container > p {
    color: white !important;
}

.home-page .trial-form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.home-page .trial-form-container h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

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

.home-page .form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.home-page .form-group input,
.home-page .form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.home-page .form-group input:focus,
.home-page .form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.home-page .form-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.home-page .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.home-page .form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Early adopter */
.home-page .early-adopter {
    background: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 5rem 5%;
}

.home-page .early-adopter h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.home-page .early-adopter p {
    color: #333;
}

.home-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.home-page .benefit-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.home-page .benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.home-page .benefit-card p {
    color: #666;
}

/* Technical specs (home) */
.home-page .technical-specs {
    background: #f8f9fa;
}

.home-page .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.home-page .spec-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.home-page .spec-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Home responsive tweaks */
@media (max-width: 1024px) {
    .home-page .audience-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-page .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-page .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-page .nav-links {
        gap: 1rem;
    }

    .home-page .trust-badges {
        gap: 1rem;
    }
}

/* ===========================
   FAQ PAGE (2)
   =========================== */
/* Use: <body class="faq-page"> */

.faq-page body {
    background: #ffffff;
}

/* FAQ: nav override (sticky instead of fixed if you want original behaviour) */
.faq-page nav {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo a bit smaller */
.faq-page .logo {
    font-size: 1.5rem;
}

/* Hero / header */
.faq-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 5% 3rem;
    text-align: center;
    margin-top: 0;
}

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

.faq-page .breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.faq-page .breadcrumb a {
    color: white;
    text-decoration: none;
}

.faq-page .breadcrumb span {
    margin: 0 0.5rem;
}

.faq-page header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-page header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Search section */
.faq-page .search-section {
    padding: 2rem 5%;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.faq-page .search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-page .search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-page .search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.faq-page .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Category nav */
.faq-page .category-nav {
    padding: 2rem 5%;
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.faq-page .category-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.faq-page .category-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: white;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.faq-page .category-btn:hover,
.faq-page .category-btn.active {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* FAQ content */
.faq-page .faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.faq-page .faq-category {
    margin-bottom: 3rem;
}

.faq-page .category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.faq-page .category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.faq-page .category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* FAQ items (accordion) */
.faq-page .faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-page .faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-page .faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    background: white;
    transition: background 0.3s;
}

.faq-page .faq-question:hover {
    background: #f8f9fa;
}

.faq-page .faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-page .faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
}

.faq-page .faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: #667eea;
    color: white;
}

.faq-page .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #555;
    line-height: 1.7;
}

.faq-page .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 2000px;
}

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

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

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

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

.faq-page .faq-answer strong {
    color: #333;
}

.faq-page .faq-answer code {
    background: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Highlight box (FAQ) */
.faq-page .highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid #667eea;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.faq-page .highlight-box p {
    margin: 0;
}

/* FAQ comparison table */
.faq-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.faq-page .comparison-table th,
.faq-page .comparison-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.faq-page .comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.faq-page .comparison-table tr:hover {
    background: #f8f9fa;
}

/* FAQ CTA section */
.faq-page .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 5%;
    text-align: center;
    margin-top: 3rem;
}

.faq-page .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-page .cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-page .btn-white {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-page .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-page .btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-page .btn-outline-white:hover {
    background: white;
    color: #667eea;
}

/* FAQ responsive */
@media (max-width: 768px) {
    .faq-page .nav-links {
        display: none;
    }

    .faq-page header h1 {
        font-size: 2rem;
    }

    .faq-page .category-nav {
        position: relative;
        top: 0;
    }

    .faq-page .category-nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .faq-page .category-btn {
        white-space: nowrap;
    }

    .faq-page .faq-question {
        padding: 1rem;
    }

    .faq-page .faq-answer {
        padding: 0 1rem;
    }

    .faq-page .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* ===========================
   PRICING PAGE (3)
   =========================== */
/* Use: <body class="pricing-page"> */

.pricing-page body {
    background: #f8f9fa;
}

/* Hero / header */
.pricing-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 5% 4rem;
    text-align: center;
    margin-top: 60px;
}

.pricing-page header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-page header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.pricing-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-page .hero-stat {
    text-align: center;
}

.pricing-page .hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.pricing-page .hero-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Billing toggle */
.pricing-page .billing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    background: white;
}

.pricing-page .billing-label {
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.pricing-page .billing-label.active {
    color: #667eea;
}

.pricing-page .billing-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.pricing-page .billing-toggle.annual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-page .billing-toggle::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pricing-page .billing-toggle.annual::after {
    transform: translateX(30px);
}

.pricing-page .save-badge {
    background: #48BB78;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Pricing cards */
.pricing-page .pricing-section {
    padding: 3rem 5% 5rem;
    background: white;
}

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

.pricing-page .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e5e7eb;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-page .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pricing-page .pricing-card.popular {
    border-color: #667eea;
    transform: scale(1.02);
}

.pricing-page .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-page .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-page .card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.pricing-page .card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-page .card-slots {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
}

.pricing-page .card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-page .price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
}

.pricing-page .price-period {
    font-size: 1rem;
    color: #666;
}

.pricing-page .price-annual {
    font-size: 0.9rem;
    color: #48BB78;
    margin-top: 0.5rem;
    font-weight: 600;
}

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

.pricing-page .card-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.pricing-page .card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: 700;
}

.pricing-page .card-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.pricing-page .card-cta.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-page .card-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pricing-page .card-cta.secondary {
    background: #f8f9fa;
    color: #667eea;
    border: 2px solid #667eea;
}

.pricing-page .card-cta.secondary:hover {
    background: #667eea;
    color: white;
}

.pricing-page .card-capacity {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.pricing-page .capacity-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.pricing-page .capacity-label {
    font-size: 0.85rem;
    color: #666;
}

/* How it works (pricing) */
.pricing-page .how-it-works {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.pricing-page .how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-page .how-it-works .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

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

.pricing-page .step-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.pricing-page .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.pricing-page .step-card h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.pricing-page .step-card p {
    color: #666;
    font-size: 0.95rem;
}

.pricing-page .learn-more-link {
    text-align: center;
    margin-top: 3rem;
}

.pricing-page .learn-more-link a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-page .learn-more-link a:hover {
    text-decoration: underline;
}

/* Value section */
.pricing-page .value-section {
    padding: 5rem 5%;
    background: white;
}

.pricing-page .value-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.pricing-page .value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.pricing-page .value-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.pricing-page .value-example {
    margin: 1rem 0;
}

.pricing-page .value-example strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-page .value-example p {
    color: #666;
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.pricing-page .value-result {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.pricing-page .value-result-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #48BB78;
}

.pricing-page .value-result-label {
    font-size: 0.85rem;
    color: #666;
}

/* Founding cohort */
.pricing-page .founding-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.pricing-page .founding-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.pricing-page .founding-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.pricing-page .founding-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pricing-page .founding-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.pricing-page .founding-benefit::before {
    content: '✓';
    font-weight: 700;
}

/* All features list (pricing) */
.pricing-page .all-features {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.pricing-page .all-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-page .all-features .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

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

.pricing-page .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.pricing-page .feature-item::before {
    content: '✓';
    color: #48BB78;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-page .feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* FAQ on pricing page (simple list) */
.pricing-page .faq-section {
    padding: 5rem 5%;
    background: white;
}

.pricing-page .faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.pricing-page .faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-page .faq-grid .faq-item {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    border-radius: 0;
}

.pricing-page .faq-grid .faq-item:last-child {
    border-bottom: none;
}

.pricing-page .faq-grid .faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.pricing-page .faq-grid .faq-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA section (pricing) */
.pricing-page .cta-section {
    padding: 5rem 5%;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.pricing-page .cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-page .cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

/* Pricing responsive */
@media (max-width: 1200px) {
    .pricing-page .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-page .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-page header h1 {
        font-size: 2.2rem;
    }
    .pricing-page .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing-page .pricing-card.popular {
        transform: none;
    }
    .pricing-page .steps-grid,
    .pricing-page .value-grid,
    .pricing-page .features-grid {
        grid-template-columns: 1fr;
    }
    .pricing-page .hero-stats {
        gap: 1.5rem;
    }
}

/* ===========================
   FEATURES / COMPARISON PAGE (4)
   =========================== */
/* Use: <body class="features-page"> */

.features-page body {
    background: #fff;
}

/* Hero */
.features-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 5% 5rem;
    text-align: center;
    margin-top: 60px;
}

.features-page header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-page header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.features-page .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-page .breadcrumb a {
    color: white;
    text-decoration: none;
}

.features-page .breadcrumb a:hover {
    text-decoration: underline;
}

/* Quick nav */
.features-page .quick-nav {
    background: #f8f9fa;
    padding: 2rem 5%;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.features-page .quick-nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-page .quick-nav h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #667eea;
    margin-bottom: 1rem;
}

.features-page .quick-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.features-page .quick-nav-links a {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.features-page .quick-nav-links a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Sections */
.features-page section {
    padding: 5rem 0;
}

.features-page section:nth-child(even) {
    background-color: #f8f9fa;
}

.features-page h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.features-page .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.features-page h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.features-page h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #667eea;
}

/* Feature categories */
.features-page .feature-category {
    margin-bottom: 4rem;
}

.features-page .feature-category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-page .feature-category-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.features-page .feature-category-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature grid */
.features-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.features-page .feature-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.features-page .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
}

.features-page .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.features-page .feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-page .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.features-page .feature-item ul {
    list-style: none;
    margin-top: 1rem;
}

.features-page .feature-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.features-page .feature-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: 700;
}

.features-page .benefit-callout {
    background: #f0f7ff;
    border-left: 3px solid #667eea;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.features-page .benefit-callout strong {
    color: #667eea;
}

/* Comparison table (features vs other) */
.features-page .comparison-section {
    background: white;
    padding: 5rem 5%;
}

.features-page .comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem auto;
    max-width: 1200px;
}

.features-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.features-page .comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.features-page .comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.features-page .comparison-table th:first-child {
    width: 30%;
}

.features-page .comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.features-page .comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.features-page .comparison-table td {
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
}

.features-page .comparison-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.features-page .check-yes {
    color: #48BB78;
    font-weight: 700;
    font-size: 1.2rem;
}

.features-page .check-no {
    color: #F56565;
    font-weight: 700;
    font-size: 1.2rem;
}

.features-page .check-partial {
    color: #ED8936;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Audience-specific features section */
.features-page .audience-features {
    background: #f8f9fa;
    padding: 5rem 5%;
}

.features-page .audience-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.features-page .audience-tab {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.features-page .audience-tab:hover {
    border-color: #667eea;
    color: #667eea;
}

.features-page .audience-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.features-page .audience-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.features-page .audience-content.active {
    display: block;
}

/* Tech specs for this page */
.features-page .tech-specs {
    background: white;
}

.features-page .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.features-page .spec-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.features-page .spec-card h4 {
    margin-bottom: 1rem;
}

.features-page .spec-card ul {
    list-style: none;
}

.features-page .spec-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.features-page .spec-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

/* CTA section */
.features-page .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 5%;
}

.features-page .cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.features-page .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive */
@media (max-width: 1400px) {
    .features-page .feature-grid.four-col {
        gap: 1.25rem;
    }
}

@media (max-width: 1200px) {
    .features-page .feature-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-page .feature-grid.four-col {
        grid-template-columns: 1fr;
    }

    .features-page .quick-nav {
        position: relative;
        top: 0;
    }

    .features-page .quick-nav-links {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .features-page .comparison-table {
        font-size: 0.85rem;
    }

    .features-page .comparison-table th,
    .features-page .comparison-table td {
        padding: 1rem 0.5rem;
    }
}

/* ===========================
   JOURNEY / TRUST PAGE (5)
   =========================== */
/* Use: <body class="journey-page"> */

.journey-page body {
    background: #fff;
}

/* Hero */
.journey-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 5% 5rem;
    text-align: center;
    margin-top: 60px;
}

.journey-page header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.journey-page header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.journey-page .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.journey-page .breadcrumb a {
    color: white;
    text-decoration: none;
}

.journey-page .breadcrumb a:hover {
    text-decoration: underline;
}

/* Sections */
.journey-page section {
    padding: 5rem 5%;
}

.journey-page section:nth-child(even) {
    background-color: #f8f9fa;
}

.journey-page h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.journey-page h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.journey-page h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #667eea;
}

.journey-page .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Trust section */
.journey-page .trust-section {
    background: white;
}

.journey-page .trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.journey-page .trust-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.journey-page .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.journey-page .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.journey-page .trust-icon {
    font-size: 1.5rem;
    color: #48BB78;
    flex-shrink: 0;
}

.journey-page .trust-icon.no {
    color: #F56565;
}

.journey-page .trust-item-content {
    flex: 1;
}

.journey-page .trust-item-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

.journey-page .trust-item-content span {
    color: #666;
    font-size: 0.95rem;
}

.journey-page .compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.journey-page .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.journey-page .badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    padding: 0.5rem;
}

.journey-page .badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Steps section */
.journey-page .steps-section {
    background: #f8f9fa;
}

.journey-page .step {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.journey-page .step-number-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.journey-page .step-content h3 {
    margin-top: 0;
}

.journey-page .step-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.journey-page .step-features {
    list-style: none;
    margin: 1.5rem 0;
}

.journey-page .step-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #666;
}

.journey-page .step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: 700;
    font-size: 1.2rem;
}

.journey-page .highlight-box {
    background: #f0f7ff;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.journey-page .highlight-box strong {
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.journey-page .highlight-box p {
    margin: 0;
    font-size: 1rem;
}

/* Audience sections (journey) */
.journey-page .audience-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.journey-page .audience-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.journey-page .scenario-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #667eea;
}

.journey-page .scenario-box strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.journey-page .scenario-box p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Timeline */
.journey-page .timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.journey-page .timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.journey-page .timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.journey-page .timeline-day {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #667eea;
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px solid #667eea;
    position: relative;
    z-index: 1;
}

.journey-page .timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.journey-page .timeline-content h4 {
    margin-top: 0;
    font-size: 1.2rem;
}

.journey-page .timeline-content p {
    margin: 0;
    color: #666;
}

/* Comparison cards */
.journey-page .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.journey-page .comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.journey-page .comparison-card h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.journey-page .comparison-list {
    list-style: none;
}

.journey-page .comparison-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.journey-page .comparison-list li:last-child {
    border-bottom: none;
}

.journey-page .comparison-list li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2rem;
}

.journey-page .comparison-list li.pro::before {
    content: '✓';
    color: #48BB78;
}

.journey-page .comparison-list li.con::before {
    content: 'âœ—';
    color: #F56565;
}

/* FAQ (journey) */
.journey-page .faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.journey-page .faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.journey-page .faq-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.journey-page .faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

/* CTA section */
.journey-page .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 5%;
}

.journey-page .cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.journey-page .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.journey-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.journey-page .benefits-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.journey-page .benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-page .benefits-list li::before {
    content: '✓';
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-page header h1 {
        font-size: 2.2rem;
    }

    .journey-page h2 {
        font-size: 2rem;
    }

    .journey-page .step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .journey-page .step-number-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto;
    }

    .journey-page .timeline::before {
        left: 30px;
    }

    .journey-page .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .journey-page .trust-grid {
        grid-template-columns: 1fr;
    }
}


        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 8rem 2rem 4rem;
            text-align: center;
            color: white;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        

        /* Login Container */
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 20px 50px;
            margin-top: 40px;

        }

        .login-box {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 450px;
            width: 100%;
            padding: 50px 40px;
        }

        .login-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .login-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5em;
            color: white;
        }

        .login-header h1 {
            font-size: 2em;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .login-header p {
            color: #718096;
            font-size: 1.05em;
        }

        .user-type-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 20px;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1em;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 0.9em;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .forgot-password {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .login-button {
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2e8f0;
        }

        .divider span {
            background: white;
            padding: 0 15px;
            position: relative;
            color: #718096;
            font-size: 0.9em;
        }

        .signup-link {
            text-align: center;
            font-size: 0.95em;
            color: #4a5568;
        }

        .signup-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

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

        .help-links {
            text-align: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #e2e8f0;
        }

        .help-links a {
            color: #667eea;
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 500;
            margin: 0 10px;
        }

        .help-links a:hover {
            text-decoration: underline;
        }



        /* Responsive */
        @media (max-width: 768px) {
            .login-box {
                padding: 40px 30px;
            }

            .nav-links {
                gap: 1rem;
            }

            .nav-links a {
                font-size: 0.85rem;
            }
        }


        
        /* Header/Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-tagline {
            font-size: 1.5em;
            font-weight: 300;
            opacity: 0.95;
            margin-bottom: 15px;
        }

        .hero-description {
            font-size: 1.1em;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Story Timeline Section */
        .story-section {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2em;
            color: #718096;
            max-width: 700px;
            margin: 0 auto 60px;
        }

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

        .timeline-item {
            margin-bottom: 30px;
            position: relative;
            padding-left: 80px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-icon {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
            font-weight: 700;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.07);
            border: 2px solid #e2e8f0;
            position: relative;
        }

        .timeline-content h3 {
            font-size: 1.8em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .timeline-content p {
            font-size: 1.1em;
            color: #4a5568;
            line-height: 1.7;
        }

        /* Values Grid Section */
        .values-section {
            padding: 80px 20px;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .value-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
            border-color: #667eea;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2em;
        }

        .value-card h3 {
            font-size: 1.5em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .value-card p {
            font-size: 1.05em;
            color: #4a5568;
            line-height: 1.7;
        }

        /* Mission & Vision Section */
        .mission-vision {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .mission-box, .vision-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .mission-box h2, .vision-box h2 {
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .mission-box p, .vision-box p {
            font-size: 1.15em;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Commitment Section */
        .commitment-section {
            padding: 80px 20px;
            background: #f7fafc;
        }

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

        .commitment-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .commitment-item {
            background: white;
            padding: 25px 20px;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
            font-size: 1.05em;
            color: #2d3748;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .commitment-item:hover {
            border-color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
        }

        /* Sustainability Section */
        .sustainability-section {
            padding: 80px 20px;
            background: white;
        }

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

        .sustainability-card {
            background: #f7fafc;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }

        .sustainability-card h3 {
            font-size: 1.3em;
            color: #2d3748;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .sustainability-card p {
            font-size: 1.05em;
            color: #4a5568;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2em;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 18px 45px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }

            .hero-tagline {
                font-size: 1.2em;
            }

            .section-title {
                font-size: 2em;
            }

            .timeline-item {
                padding-left: 70px;
            }

            .timeline-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2em;
            }

            .timeline-content {
                padding: 20px;
            }

            .timeline-content h3 {
                font-size: 1.4em;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .commitment-list {
                grid-template-columns: 1fr;
            }

            .sustainability-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1200px) and (min-width: 769px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

                /* Introduction Section */
        .intro-section {
            padding: 80px 20px;
            background: white;
        }

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

        .intro-content h2 {
            font-size: 2.5em;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 25px;
        }

        .intro-content p {
            font-size: 1.15em;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Commitment Grid */
        .commitment-section {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2em;
            color: #718096;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .commitment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .commitment-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .commitment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
            border-color: #667eea;
        }

        .commitment-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2em;
        }

        .commitment-card h3 {
            font-size: 1.5em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }

        .commitment-card p {
            font-size: 1.05em;
            color: #4a5568;
            line-height: 1.7;
            text-align: center;
        }

        /* Blueprint Section */
        .blueprint-section {
            padding: 80px 20px;
            background: white;
        }

        .blueprint-intro {
            max-width: 900px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .blueprint-intro p {
            font-size: 1.15em;
            color: #4a5568;
            line-height: 1.8;
        }

        .blueprint-image-container {
            max-width: 1100px;
            margin: 0 auto;
            background: #f7fafc;
            padding: 40px;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.07);
        }

        .blueprint-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        .blueprint-caption {
            text-align: center;
            margin-top: 25px;
            font-size: 1em;
            color: #718096;
            font-style: italic;
        }

        /* Detailed Actions Section */
        .actions-section {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .action-box {
            background: white;
            padding: 35px;
            border-radius: 12px;
            border-left: 4px solid #667eea;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .action-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        .action-box h3 {
            font-size: 1.6em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .action-box h4 {
            font-size: 1.2em;
            color: #667eea;
            margin: 20px 0 10px;
            font-weight: 600;
        }

        .action-box ul {
            list-style: none;
            padding: 0;
        }

        .action-box li {
            padding: 8px 0 8px 25px;
            position: relative;
            color: #4a5568;
            line-height: 1.6;
        }

        .action-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: 700;
        }

        /* Values Section */
        .values-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

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

        .values-content h2 {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .values-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .value-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 25px 20px;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            font-size: 1.1em;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        /* Impact Stats */
        .impact-section {
            padding: 80px 20px;
            background: white;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 40px auto 0;
        }

        .impact-stat {
            text-align: center;
            padding: 30px;
            background: #f7fafc;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
        }

        .impact-stat-number {
            font-size: 3em;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }

        .impact-stat-label {
            font-size: 1.1em;
            color: #4a5568;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2em;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .cta-button-primary {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 18px 45px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
        }

        .cta-button-secondary {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 18px 45px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            border: 2px solid white;
            transition: all 0.3s ease;
        }

        .cta-button-secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }

            .hero-tagline {
                font-size: 1.2em;
            }

            .section-title {
                font-size: 2em;
            }

            .commitment-grid,
            .actions-grid {
                grid-template-columns: 1fr;
            }

            .values-list {
                grid-template-columns: 1fr;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .blueprint-image-container {
                padding: 20px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button-primary,
            .cta-button-secondary {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 1200px) and (min-width: 769px) {
            .commitment-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .values-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ==============================
   TRIAL-STYLE CONTACT PAGE
   (Like image 2)
   ============================== */

.contact-trial-style .trial-contact-wrap{
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 70px 0 90px;
  background: #2f4053; /* dark slate */
  overflow: hidden;
}

/* soft background blobs */
.contact-trial-style .trial-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 420px at 80% 25%, rgba(124, 77, 255, .18) 0%, rgba(124, 77, 255, 0) 60%),
    radial-gradient(520px 520px at 85% 80%, rgba(0, 188, 212, .18) 0%, rgba(0, 188, 212, 0) 60%),
    radial-gradient(520px 520px at 15% 70%, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.contact-trial-style .trial-container{
  position: relative;
  z-index: 2;
  max-width: 980px;
}

/* Heading like image 2 */
.contact-trial-style .trial-heading{
  margin-bottom: 22px;
}

.contact-trial-style .trial-heading h1{
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(26px, 3vw, 42px);
  margin: 0 0 8px 0;
  text-align: center;
}

.contact-trial-style .trial-heading p{
  color: rgba(255,255,255,.70);
  margin: 0;
  font-size: 13px;
  text-align: center;
}

/* Card */
.contact-trial-style .trial-card{
  width: 100%;
  max-width: 460px;         /* same like image 2 */
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  padding: 22px 22px 18px;
  border: 1px solid rgba(0,0,0,.06);
}

.contact-trial-style .trial-card-header{
  text-align: center;
  margin-bottom: 14px;
}

.contact-trial-style .trial-card-header h2{
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #0f172a;
}

.contact-trial-style .trial-sub{
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

/* Form */
.contact-trial-style .trial-form{
  margin-top: 10px;
}

.contact-trial-style .trial-field{
  margin-bottom: 12px;
}

.contact-trial-style .trial-field label{
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-trial-style .trial-field .req{
  color: #ef4444;
  font-weight: 900;
}

/* Inputs */
.contact-trial-style .trial-field input,
.contact-trial-style .trial-field textarea{
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 6px;       /* image 2 small radius */
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  background: #fff;
  transition: all .16s ease;
}

.contact-trial-style .trial-field textarea{
  min-height: 120px;
  resize: vertical;
}

.contact-trial-style .trial-field input:focus,
.contact-trial-style .trial-field textarea:focus{
  border-color: rgba(124,77,255,.55);
  box-shadow: 0 0 0 4px rgba(124,77,255,.12);
}

.contact-trial-style .trial-field input::placeholder,
.contact-trial-style .trial-field textarea::placeholder{
  color: #94a3b8;
}

/* invalid */
.contact-trial-style .trial-field .is-invalid{
  border-color: rgba(239,68,68,.65) !important;
  box-shadow: 0 0 0 4px rgba(239,68,68,.10) !important;
}

.contact-trial-style .trial-error{
  margin-top: 6px;
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
}

/* Captcha box */
.contact-trial-style .trial-captcha{
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}

/* Button (purple like image 2) */
.contact-trial-style .trial-btn{
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: #6d28d9;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
  box-shadow: 0 12px 22px rgba(109, 40, 217, .25);
}

.contact-trial-style .trial-btn:hover{
  transform: translateY(-1px);
  opacity: .98;
  box-shadow: 0 16px 26px rgba(109, 40, 217, .30);
}

.contact-trial-style .trial-btn:active{
  transform: translateY(0);
}

/* Footnote */
.contact-trial-style .trial-footnote{
  text-align: center;
  font-size: 11px;
  color: #64748b;
  margin-top: 10px;
}

/* Make sure footer does not stick too close */
@media (max-width: 576px){
  .contact-trial-style .trial-card{
    max-width: 94%;
    padding: 18px 16px 16px;
  }
}


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 5rem 5% 4rem;
            text-align: center;
        }

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

        .breadcrumb {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb span {
            margin: 0 0.5rem;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Content Section */
        section {
            padding: 4rem 5%;
        }

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

        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
        }

        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: #333;
        }

        p {
            margin-bottom: 1rem;
            /* color: #555; */
            font-size: 1rem;
        }
        /* Explanation Box */
        .explanation-box {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-left: 4px solid #667eea;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .explanation-box h3 {
            margin-top: 0;
            color: #667eea;
        }

        /* Visual Diagram */
        .visual-diagram {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .diagram-title {
            text-align: center;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #667eea;
        }

        .slot-visual {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .slot {
            aspect-ratio: 1;
            background: #667eea;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .slot.available {
            background: #e9ecef;
            color: #999;
        }

        .diagram-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }

        /* Scenario Box */
        .scenario-box {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        .scenario-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e9ecef;
        }

        .scenario-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .scenario-title h3 {
            margin: 0;
            color: #667eea;
        }

        .scenario-subtitle {
            color: #666;
            font-size: 0.9rem;
        }

        .scenario-content {
            margin-bottom: 1rem;
        }

        .scenario-math {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            font-family: monospace;
        }

        .scenario-result {
            background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
            border-left: 4px solid #48BB78;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }

        .scenario-result strong {
            color: #16a34a;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .comparison-table th {
            background: #667eea;
            color: white;
            font-weight: 600;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover {
            background: #f8f9fa;
        }

        .highlight-cell {
            background: rgba(102, 126, 234, 0.1);
            font-weight: 600;
            color: #667eea;
        }

        /* FAQ Section */
        .faq-section {
            background: #f8f9fa;
        }

        .faq-item {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, background 0.3s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
            background: #667eea;
            color: white;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: #555;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 1000px;
        }

        /* Key Takeaways */
        .key-takeaways {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem;
            border-radius: 12px;
            margin: 3rem 0;
        }

        .key-takeaways h3 {
            color: white;
            margin-top: 0;
        }

        .key-takeaways ul {
            list-style: none;
            padding: 0;
        }

        .key-takeaways li {
            padding: 0.5rem 0;
            padding-left: 1.75rem;
            position: relative;
        }

        .key-takeaways li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: 700;
        }
                /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 4rem 5%;
            background: #f8f9fa;
        }

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

        .btn-secondary {
            background: white;
            color: #667eea;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid #667eea;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #667eea;
            color: white;
        }
