/* MyBizMobi Website Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--light-bg);
}

/* MyBizMobi Color Scheme — Deep Blues & Purples with Orange Highlights */
:root {
    --primary-darkest: #0f172a;      /* Deep blue-slate — darkest bg */
    --primary-darker: #1e1b4b;       /* Deep indigo — section backgrounds */
    --primary-dark: #2e1065;         /* Deep purple — headings, dark elements */
    --primary-color: #4c1d95;        /* Purple — primary brand */
    --primary-mid: #6d28d9;          /* Mid purple — gradient midpoints */
    --primary-light: #7c3aed;        /* Vibrant purple — active states, buttons */
    --primary-lighter: #a78bfa;      /* Light purple — subtle accents */
    --primary-pale: #ddd6fe;         /* Pale purple — borders, light accents */
    --secondary-color: #64748b;      /* Slate — secondary text */
    --accent-orange: #f59e0b;        /* Amber — primary highlight */
    --accent-orange-light: #fbbf24;  /* Light amber — hover highlights */
    --accent-orange-dark: #d97706;   /* Deep amber — active highlights */
    --accent-orange-pale: #fef3c7;   /* Pale amber — subtle highlight bg */
    --success-color: #10b981;        /* Emerald — success states */
    --warning-color: #f59e0b;        /* Amber — warnings */
    --danger-color: #ef4444;         /* Red — errors */
    --light-bg: #faf5ff;            /* Very light purple — page bg */
    --light-purple-bg: #ede4f5;     /* Richer lavender — alt sections */
    --warm-section-bg: #fffbf5;     /* Warm off-white — default section bg */
    --dark-purple-bg: #1e1b4b;      /* Deep indigo — dark section bg */
    --card-bg: #ffffff;              /* White — card backgrounds */
    --light-gray: #e2e8f0;          /* Light gray — borders */
    --text-primary: #0f172a;         /* Deep blue-slate — headings */
    --text-secondary: #475569;       /* Slate — body text */
    --text-muted: #94a3b8;          /* Slate — muted text */
    --text-on-dark: #f1f5f9;        /* Light slate — text on dark bg */
    --shadow-color: rgba(79, 30, 149, 0.15); /* Purple-tinted shadows */
    --shadow-dark: rgba(15, 23, 42, 0.3);    /* Dark shadows */
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    z-index: 1000;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: var(--primary-lighter);
    display: block;
    margin-top: -2px;
}

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

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

.nav-menu a:hover {
    color: var(--accent-orange);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-darkest) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-darkest) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-lighter);
    padding: 12px 24px;
    border: 2px solid var(--primary-lighter);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-darkest) 0%, var(--primary-darker) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-orange-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ecosystem Diagram */
.ecosystem-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.platform-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.platform-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-orange);
}

.platform-card .platform-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.platform-card span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

.platform-card[data-platform="maxiwinner"] { top: 260px; left: 140px; }
.platform-card[data-platform="aaabiz"] { top: 20px; left: 140px; }
.platform-card[data-platform="social"] { top: 140px; left: 20px; }
.platform-card[data-platform="voicereport"] { top: 140px; left: 260px; }

/* Sections */
.section {
    padding: 80px 0;
    background: var(--light-purple-bg);
}

.section-alt {
    background: var(--primary-dark);
    color: var(--text-on-dark);
}

.section.section-dark {
    background: #0b1424 !important;
    color: var(--text-on-dark);
}

.section-dark .section-header h2 {
    color: var(--accent-orange-light) !important;
    border-bottom: none;
}

.section-dark .section-header h2::after {
    background: var(--accent-orange-light);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.section-dark .section-header p {
    color: #ffffff;
}

.section-dark .process-step-visual,
.section-dark .governance-item,
.section-dark .platform-card-detailed,
.section-dark .pricing-card,
.section-dark .consulting-cta {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-color: rgba(124, 58, 237, 0.25);
}

.section-dark .process-step-visual h4,
.section-dark .governance-item h3,
.section-dark .platform-info h3,
.section-dark .service-item h4,
.section-dark .step-content h3 {
    color: #ffffff;
}

.section-dark .process-step-visual p,
.section-dark .governance-item p,
.section-dark .platform-description,
.section-dark .service-item p,
.section-dark .step-content p {
    color: #ffffff;
}

.section-dark .consulting-cta {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.section-dark .consulting-cta h4 {
    color: var(--accent-orange-light);
}

.section-dark .consulting-cta p {
    color: #ffffff;
}

.section-dark .benefits-list li {
    color: #ffffff;
}

/* Benefit content (What You Get) on dark bg */
.section-dark .benefit-content h4 {
    color: #ffffff;
    border-left-color: var(--accent-orange);
}

.section-dark .benefit-content p {
    color: #ffffff;
}

/* Section-alt on dark purple — light headings and text */
.section-alt .section-header h2 {
    color: var(--accent-orange-light) !important;
}

.section-alt .section-header h2::after {
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
}

.section-alt .section-header p {
    color: #ffffff;
}

/* Standalone text in section-alt (not inside cards) */
.section-alt > .container > p,
.section-alt > .container > div > p:first-child,
.section-alt .intro-text,
.section-alt .council-description p {
    color: #ffffff;
}

/* Council steps on dark purple */
.section-alt .council-step h4 {
    color: #ffffff;
}

.section-alt .council-step p {
    color: #ffffff;
}

.section-alt .council-steps h3 {
    color: var(--accent-orange-light);
}

/* Council member text (sits on translucent white card) stays dark — no override needed */

/* FAQ items on dark purple */
.section-alt .faq-item h4 {
    color: var(--primary-dark);
}

.section-alt .faq-item p {
    color: var(--text-secondary);
}

/* Card backgrounds stay white on dark purple */
.section-alt .pricing-card,
.section-alt .platform-card-detailed,
.section-alt .governance-item {
    background: var(--card-bg);
}

/* Audit form on dark purple — special handling */
.section-alt .audit-form {
    background: var(--card-bg);
    border-color: var(--primary-pale);
}

.section-alt .audit-benefits {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-alt .audit-benefits h3 {
    color: var(--accent-orange-light) !important;
    border-bottom-color: var(--accent-orange);
}

.section-alt .benefit-content h4 {
    color: #ffffff;
}

.section-alt .benefit-content p {
    color: #ffffff;
}

/* Contact section on dark purple */
.section-alt .contact-details h4 {
    color: #ffffff;
}

.section-alt .contact-details p {
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 0.75rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    margin: 0.75rem auto 0;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.25rem auto 0;
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--primary-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-darkest);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent-orange);
    padding-left: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.platform-card-detailed {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-pale);
}

.platform-card-detailed.highlighted {
    border: 3px solid var(--primary-light);
    box-shadow: 0 0 30px var(--shadow-color);
    transform: scale(1.02);
}

.platform-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
    border-color: var(--accent-orange);
}

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

.platform-icon-large {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-purple-bg) 0%, var(--primary-pale) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-darkest);
    margin: 0;
}

.platform-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--primary-darkest);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.platform-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.platform-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.platform-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.platform-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    display: inline;
}

/* Solutions Tabs */
.solutions-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--accent-orange-dark);
    border-bottom-color: var(--accent-orange);
}

.tab-content {
    margin-top: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

.solution-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-darkest);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-orange-dark);
    font-weight: 700;
}

.solution-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-darkest);
}

.platform-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-platform {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
}

.showcase-platform.active {
    border: 2px solid var(--accent-orange);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.showcase-platform:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.showcase-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.showcase-platform h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-darkest);
    margin: 0;
}

.showcase-platform p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Pricing */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
    border-color: var(--accent-orange);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    border-radius: 16px 16px 0 0;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 1rem;
}

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

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

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
}

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

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

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--primary-darkest);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin: 0.5rem 0;
}

.pricing-amount {
    margin: 1rem 0;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.enterprise-pricing {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
    border-radius: 16px;
    color: white;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.enterprise-pricing h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enterprise-pricing p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.enterprise-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.enterprise-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.enterprise-pricing .btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--primary-darkest);
}

.enterprise-pricing .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-orange) 100%);
    color: var(--primary-darkest);
}

/* Consulting */
.consulting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-list {
    margin: 2rem 0;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-darkest);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent-orange);
    padding-left: 0.75rem;
}

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

.consulting-cta {
    background: linear-gradient(135deg, var(--light-purple-bg) 0%, var(--primary-pale) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.consulting-cta h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 1rem;
}

.process-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.process-step-visual {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-pale);
}

.process-step-visual:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 30px var(--shadow-color);
    transform: translateY(-3px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process-step-visual h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-orange-dark);
    margin-bottom: 0.5rem;
}

.process-step-visual p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.governance-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-pale);
}

.governance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
    border-color: var(--accent-orange);
}

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

.governance-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-darkest);
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 3px solid var(--accent-orange);
    display: inline-block;
}

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

.trust-message {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
    border-radius: 16px;
    color: white;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.trust-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.trust-message p {
    line-height: 1.7;
    opacity: 0.9;
}

/* FAQ Items */
.faq-item {
    background: var(--light-purple-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--primary-pale);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* Council Grid — 2 rows of 3 tiles */
.council-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

/* Council Member Cards */
.council-member {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(79, 30, 149, 0.1);
    border: 1px solid var(--primary-pale);
    transition: all 0.3s ease;
}

.council-member:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.council-member h4 {
    margin: 0 0 0.25rem 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.council-member p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.council-member .member-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Council How It Works */
.council-steps h3 {
    text-align: center;
    color: var(--accent-orange-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.council-step {
    text-align: center;
    padding: 1.5rem;
}

.council-step h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.council-step p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.council-step .step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Audit Form */
.audit-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.audit-form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-orange);
    padding-left: 1rem;
}

.audit-form-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.audit-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--primary-pale);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    margin-right: 0.5rem;
}

.audit-benefits {
    background: linear-gradient(135deg, var(--light-purple-bg) 0%, var(--primary-pale) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.audit-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-orange);
    display: inline-block;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-darkest);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent-orange);
    padding-left: 0.75rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-darkest);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent-orange);
    padding-left: 0.75rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--primary-darkest);
    font-weight: 700;
}

.contact-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-orange) 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-darkest);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .ecosystem-diagram {
        width: 300px;
        height: 300px;
    }

    .platform-card {
        width: 80px;
        height: 80px;
    }

    .platform-card .platform-icon {
        font-size: 1.5rem;
    }

    .platform-card span {
        font-size: 0.7rem;
    }

    .council-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .platform-card[data-platform="maxiwinner"] { top: 205px; left: 110px; }
    .platform-card[data-platform="aaabiz"] { top: 15px; left: 110px; }
    .platform-card[data-platform="social"] { top: 110px; left: 20px; }
    .platform-card[data-platform="voicereport"] { top: 110px; left: 200px; }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .consulting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audit-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enterprise-features {
        flex-direction: column;
        align-items: center;
    }

    .process-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .council-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

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

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

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

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