/* Datus.work - Professional Corporate Website Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #0f172a;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #475569;
}

a {
    color: #059669;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #047857;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
    margin-right: 1rem;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #059669;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: #f1f5f9;
    color: #059669;
}

.nav-cta-btn {
    background: #059669;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.nav-cta-btn:hover {
    background: #047857;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #475569;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: #059669;
    color: white;
    border-color: #059669;
}

.btn-primary:hover {
    background: #047857;
    border-color: #047857;
    color: white;
}

.btn-secondary {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.btn-outline {
    background: transparent;
    color: #059669;
    border-color: #059669;
}

.btn-outline:hover {
    background: #059669;
    color: white;
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.business-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
}

.agency-hero {
    background: linear-gradient(135deg, #dbeafe 0%, #60a5fa 100%);
}

.individual-hero {
    background: linear-gradient(135deg, #fce7f3 0%, #f472b6 100%);
}

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

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subhead,
.page-hero-subhead {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

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

/* Visual Diagrams */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-exchange-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.exchange-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.stakeholder {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #059669;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.stakeholder i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #059669;
}

.businesses {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.agencies {
    bottom: 20px;
    left: 20px;
}

.individuals {
    bottom: 20px;
    right: 20px;
}

/* Business Flow Diagram */
.business-flow-diagram {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.flow-item.central {
    background: #059669;
    color: white;
}

.flow-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #059669;
}

.flow-item.central i {
    color: white;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #64748b;
}

/* Agency Workflow Diagram */
.agency-workflow-diagram {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 100px;
}

.workflow-item.central {
    background: #3b82f6;
    color: white;
}

.workflow-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.workflow-item.central i {
    color: white;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #64748b;
}

/* Individual Impact Multiplier */
.impact-multiplier-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.your-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.your-action i {
    font-size: 2rem;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.multiplier-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-path {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.multiplier-effect {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.multiplier-effect i {
    font-size: 1.2rem;
    color: #ec4899;
    margin-bottom: 0.25rem;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Props */
.value-props {
    background: white;
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: #059669;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 4rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #64748b;
}

/* Audience Pathways */
.pathway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pathway-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pathway-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pathway-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.pathway-card ul {
    list-style: none;
    margin: 1rem 0 2rem;
}

.pathway-card li {
    padding: 0.25rem 0;
    color: #64748b;
}

.pathway-card li:before {
    content: "✓";
    color: #059669;
    font-weight: 600;
    margin-right: 0.5rem;
}

.pathway-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pathway-link:hover {
    color: #047857;
}

/* Impact Stats */
.impact-stats {
    background: #0f172a;
    color: white;
    padding: 80px 0;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #e2e8f0;
}

/* How It Works Detailed */
.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step-content h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.step-details ul {
    list-style: none;
    margin: 1rem 0 2rem;
}

.step-details li {
    padding: 0.5rem 0;
    color: #64748b;
}

.step-details li:before {
    content: "→";
    color: #059669;
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Step Visuals */
.step-visual {
    margin-top: 2rem;
}

.verification-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.flow-box {
    padding: 1rem 1.5rem;
    background: #f1f5f9;
    border-radius: 8px;
    font-weight: 500;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.matching-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.match-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.match-card i {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 0.5rem;
}

.reports-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.report-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    text-align: center;
}

.report-type i {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 0.5rem;
}

/* Data Flow */
.data-flow {
    background: #f8fafc;
}

.data-flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding: 2rem 0;
}

.flow-stage {
    min-width: 200px;
    text-align: center;
}

.flow-stage h4 {
    margin-bottom: 1rem;
    color: #059669;
}

.flow-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flow-item {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
}

.flow-connector {
    font-size: 2rem;
    color: #059669;
    margin: 0 1rem;
    align-self: center;
}

/* Tech Stack */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tech-feature {
    text-align: center;
    padding: 2rem;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.tech-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.tech-feature ul {
    list-style: none;
    text-align: left;
}

.tech-feature li {
    padding: 0.25rem 0;
    color: #64748b;
}

.tech-feature li:before {
    content: "→";
    color: #059669;
    margin-right: 0.5rem;
}

/* Why It Works */
.incentive-alignment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.stakeholder-benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stakeholder-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stakeholder-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.stakeholder-benefit ul {
    list-style: none;
    text-align: left;
}

.stakeholder-benefit li {
    padding: 0.5rem 0;
    color: #64748b;
}

.stakeholder-benefit li:before {
    content: "•";
    color: #059669;
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Business Capabilities */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capability-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: #fef3c7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.capability-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.capability-details ul {
    list-style: none;
    margin-top: 1rem;
}

.capability-details li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.capability-details li:before {
    content: "✓";
    color: #f59e0b;
    margin-right: 0.5rem;
}

/* Business Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #fef3c7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.benefit-details ul {
    list-style: none;
    margin-top: 1rem;
}

.benefit-details li {
    padding: 0.5rem 0;
    color: #64748b;
}

.benefit-details li:before {
    content: "→";
    color: #f59e0b;
    margin-right: 0.5rem;
}

/* Business Case */
.business-case {
    background: #f8fafc;
}

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

.case-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

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

.case-benefit {
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

/* Sample Report */
.sample-report {
    background: #f8fafc;
}

.report-preview {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.report-period {
    color: #64748b;
    font-size: 0.9rem;
}

.report-metrics {
    margin-bottom: 2rem;
}

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

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
}

.metric-value {
    font-weight: 600;
    color: #059669;
    font-size: 1.1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: #f8fafc;
    border-radius: 6px;
}

.report-impact ul {
    list-style: none;
}

.report-impact li {
    padding: 0.25rem 0;
    color: #64748b;
}

.report-impact li:before {
    content: "→";
    color: #059669;
    margin-right: 0.5rem;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.verification-stamp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-size: 0.9rem;
}

/* Implementation */
.implementation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impl-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-duration {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.pricing-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #f59e0b;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #64748b;
}

.price-desc {
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #64748b;
}

.pricing-card li:before {
    content: "✓";
    color: #f59e0b;
    margin-right: 0.5rem;
}

/* Agency Specific Styles */
.target-agencies {
    background: #f8fafc;
}

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

.agency-type {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.agency-icon {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.agency-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.agency-examples {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.agency-examples span {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Agency Benefits */
.benefits-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefit-section:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.benefit-section:nth-child(even) .benefit-content {
    order: 2;
}

.benefit-section:nth-child(even) .benefit-visual {
    order: 1;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.feature-item i {
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.integration-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.integration-item i {
    color: #3b82f6;
}

.data-ownership-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.data-ownership-note i {
    color: #3b82f6;
}

/* Verification Queue Preview */
.verification-queue-preview {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.queue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.queue-stats {
    display: flex;
    gap: 1rem;
}

.queue-stats .stat {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.queue-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.queue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 4px solid #e2e8f0;
}

.queue-item.urgent {
    border-left-color: #ef4444;
}

.item-info {
    display: flex;
    flex-direction: column;
}

.item-type {
    font-weight: 500;
    color: #0f172a;
}

.item-time {
    font-size: 0.8rem;
    color: #64748b;
}

.item-status {
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.queue-item.urgent .item-status {
    background: #ef4444;
}

/* Export Preview */
.export-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.export-formats {
    display: flex;
    gap: 1rem;
}

.format-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #cbd5e1;
}

.format-option i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

/* Success Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.9rem;
    color: #64748b;
}

/* Case Study */
.case-study {
    background: #f8fafc;
}

.case-overview {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
}

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

.case-stat strong {
    display: block;
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

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

.case-challenge,
.case-solution,
.case-results {
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.case-results ul {
    list-style: none;
}

.case-results li {
    padding: 0.25rem 0;
    color: #64748b;
}

.case-results li:before {
    content: "✓";
    color: #3b82f6;
    margin-right: 0.5rem;
}

.case-quote {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.case-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #0f172a;
    margin-bottom: 1rem;
}

.case-quote cite {
    color: #64748b;
    font-style: normal;
}

/* Timeline */
.implementation-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.timeline-marker {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-content {
    padding: 1rem 0;
}

/* Agency Pricing */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-tier {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.pricing-tier.recommended {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-tier.recommended::before {
    content: "Recommended";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 1rem 0;
}

.tier-duration {
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
}

/* Individual Specific Styles */
.individual-actions {
    background: #f8fafc;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.action-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.action-icon {
    width: 60px;
    height: 60px;
    background: #fce7f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.action-icon i {
    font-size: 1.5rem;
    color: #ec4899;
}

.action-details ul {
    list-style: none;
    margin: 1rem 0;
}

.action-details li {
    padding: 0.5rem 0;
    color: #64748b;
}

.action-details li:before {
    content: "→";
    color: #ec4899;
    margin-right: 0.5rem;
}

.action-example {
    margin-top: 1rem;
    padding: 1rem;
    background: #fef7ff;
    border-radius: 8px;
    border-left: 4px solid #ec4899;
    font-size: 0.9rem;
    color: #64748b;
}

/* Individual Benefits */
.benefits-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefit-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.benefit-item:nth-child(even) .benefit-content {
    order: 2;
}

.benefit-item:nth-child(even) .benefit-visual {
    order: 1;
}

.transparency-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
}

.feature i {
    color: #ec4899;
}

.dignity-principles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.principle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.principle i {
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.principle strong {
    color: #0f172a;
}

.principle span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Transparency Demo */
.transparency-demo {
    display: flex;
    justify-content: center;
}

.need-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.need-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.need-type {
    font-weight: 600;
    color: #0f172a;
}

.need-status {
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.need-status.verified {
    background: #059669;
}

.need-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.need-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: #059669;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #64748b;
}

.need-verification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-size: 0.9rem;
}

/* Story Preview */
.story-preview {
    display: flex;
    justify-content: center;
}

.story-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.story-card h5 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.story-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-outcome {
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.story-outcome strong {
    color: #059669;
}

/* Needs Explorer */
.needs-explorer {
    background: #f8fafc;
}

.needs-filters {
    margin-bottom: 3rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.filter-tab.active,
.filter-tab:hover {
    border-color: #ec4899;
    background: #ec4899;
    color: white;
}

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

.need-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    position: relative;
}

.need-urgency {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.need-card.emergency .need-urgency {
    background: #ef4444;
}

.need-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    margin: 1rem 0;
}

.need-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.needs-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.needs-cta p {
    margin-bottom: 1rem;
    color: #64748b;
}

/* Goodwill Report Sample */
.goodwill-report-sample {
    background: #f8fafc;
}

.report-sample {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.report-summary {
    margin-bottom: 3rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.summary-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: #fef7ff;
    border-radius: 12px;
    border: 1px solid #f3e8ff;
}

.summary-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.summary-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.report-contributions {
    margin-bottom: 3rem;
}

.contribution-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    margin: 1rem 0;
    border-left: 4px solid #ec4899;
}

.contribution-type {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contribution-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.contribution-details .amount {
    font-weight: 600;
    color: #ec4899;
}

.contribution-details .outcome {
    color: #64748b;
}

.contribution-impact {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.report-multipliers {
    margin-bottom: 3rem;
}

.multiplier-explanation {
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.multiplier-explanation ul {
    list-style: none;
}

.multiplier-explanation li {
    padding: 0.25rem 0;
    color: #64748b;
}

.multiplier-explanation li:before {
    content: "→";
    color: #059669;
    margin-right: 0.5rem;
}

/* Getting Started */
.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.start-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.start-step .step-number {
    width: 50px;
    height: 50px;
    background: #ec4899;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.start-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.start-cta p {
    margin-bottom: 1rem;
    color: #64748b;
}

/* Community Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.story-quote {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

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

.story-avatar {
    width: 50px;
    height: 50px;
    background: #fce7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
}

.story-info strong {
    display: block;
    color: #0f172a;
}

.story-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.story-impact {
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

/* CTA Sections */
.cta-section,
.cta-final {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    margin: 0;
}

/* Governance & Safeguards Specific Styles */
.governance-principles {
    background: #f8fafc;
}

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

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.principle-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.principle-details ul {
    list-style: none;
    margin-top: 1rem;
}

.principle-details li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.principle-details li:before {
    content: "•";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Policy Framework */
.policy-framework {
    background: white;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.policy-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #059669;
}

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

.policy-header i {
    font-size: 1.5rem;
    color: #059669;
}

.policy-header h3 {
    margin: 0;
    color: #0f172a;
}

.policy-statement {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    margin-bottom: 2rem;
    font-weight: 500;
}

.policy-details h4 {
    color: #059669;
    margin: 1.5rem 0 1rem 0;
}

.policy-details ul {
    list-style: none;
    margin: 1rem 0;
}

.policy-details li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.policy-details li:before {
    content: "→";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-details li strong {
    color: #0f172a;
}

/* Review Workflow */
.review-workflow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.review-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h5 {
    margin: 0 0 0.5rem 0;
    color: #0f172a;
}

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

.review-arrow {
    font-size: 1.5rem;
    color: #059669;
    font-weight: bold;
}

/* Appeals Timeline */
.appeals-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

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

.timeline-marker {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    font-size: 0.9rem;
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    margin: 0 0 0.5rem 0;
    color: #0f172a;
}

.timeline-content p {
    margin: 0;
    color: #64748b;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.metric-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.metric-category h5 {
    color: #059669;
    margin-bottom: 1rem;
}

.metric-category ul {
    list-style: none;
    margin: 0;
}

.metric-category li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.metric-category li:before {
    content: "📊";
    position: absolute;
    left: 0;
}

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

.board-composition,
.board-responsibilities {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.board-composition h5,
.board-responsibilities h5 {
    color: #059669;
    margin-bottom: 1rem;
}

/* Security Framework */
.security-compliance {
    background: #f8fafc;
}

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

.security-pillar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.security-features h4 {
    color: #3b82f6;
    margin: 1.5rem 0 1rem 0;
}

.security-features ul {
    list-style: none;
    margin: 1rem 0;
}

.security-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.security-features li:before {
    content: "🔒";
    position: absolute;
    left: 0;
}

/* Transparency Reports */
.transparency-reports {
    background: white;
}

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

.report-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.report-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.report-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.report-metrics ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.report-metrics li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.report-metrics li:before {
    content: "📈";
    position: absolute;
    left: 0;
}

/* Improvement Process */
.policy-updates {
    background: #f8fafc;
}

.improvement-process {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    text-align: center;
    max-width: 200px;
    flex: 1;
    min-width: 180px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.process-arrow {
    font-size: 2rem;
    color: #059669;
    font-weight: bold;
}

/* Policy Changelog */
.policy-changelog {
    margin-top: 3rem;
}

.changelog-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.changelog-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.changelog-date {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    font-size: 0.9rem;
}

.changelog-content {
    flex: 1;
}

.changelog-content h4 {
    margin: 0 0 0.5rem 0;
    color: #0f172a;
}

.changelog-content p {
    margin: 0;
    color: #64748b;
}

/* Contact Options */
.governance-contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.governance-contact .cta-content h2 {
    color: white;
}

.governance-contact .cta-content p {
    color: #cbd5e1;
}

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

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-option i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.contact-option h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-option p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.contact-option a {
    color: #10b981;
    font-weight: 500;
    text-decoration: none;
}

.contact-option a:hover {
    color: #34d399;
}

.governance-resources {
    margin-top: 3rem;
}

.governance-resources h3 {
    color: white;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tablet and medium screens - optimize navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 950px) {
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-cta-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 850px) {
    .nav-menu {
        gap: 0.4rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-cta-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content,
    .benefit-item,
    .benefit-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .benefit-item:nth-child(even) .benefit-content,
    .benefit-section:nth-child(even) .benefit-content {
        order: 1;
    }

    .benefit-item:nth-child(even) .benefit-visual,
    .benefit-section:nth-child(even) .benefit-visual {
        order: 2;
    }

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

    .step-arrow {
        transform: rotate(90deg);
    }

    .data-flow-diagram {
        flex-direction: column;
        align-items: center;
    }

    .flow-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

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

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .impact-exchange-diagram,
    .business-flow-diagram,
    .agency-workflow-diagram {
        transform: scale(0.8);
    }

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

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured,
    .pricing-tier.recommended {
        transform: none;
    }

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

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

    /* Governance Mobile Responsive */
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .review-workflow {
        flex-direction: column;
    }

    .review-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

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

    .review-board {
        grid-template-columns: 1fr;
    }

    .security-framework {
        grid-template-columns: 1fr;
    }

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

    .improvement-process {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .changelog-item {
        flex-direction: column;
        gap: 1rem;
    }

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

    .resource-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Recognition Page Specific Styles */
.report-types-overview {
    background: #f8fafc;
}

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

.report-type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.report-type-card.goodwill {
    border-top: 4px solid #ec4899;
}

.report-type-card.impact {
    border-top: 4px solid #f59e0b;
}

.report-type-card.csr {
    border-top: 4px solid #3b82f6;
}

.report-type-card.verified {
    border-top: 4px solid #059669;
}

.report-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.report-type-card.goodwill .report-type-icon {
    background: #fce7f3;
}

.report-type-card.goodwill .report-type-icon i {
    color: #ec4899;
    font-size: 1.5rem;
}

.report-type-card.impact .report-type-icon {
    background: #fef3c7;
}

.report-type-card.impact .report-type-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.report-type-card.csr .report-type-icon {
    background: #dbeafe;
}

.report-type-card.csr .report-type-icon i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.report-type-card.verified .report-type-icon {
    background: #f0fdf4;
}

.report-type-card.verified .report-type-icon i {
    color: #059669;
    font-size: 1.5rem;
}

.report-audience {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.report-features {
    margin-top: 1.5rem;
}

.report-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.report-features .feature-item:last-child {
    border-bottom: none;
}

.report-features .feature-item i {
    width: 20px;
    color: #64748b;
}

.report-features .feature-item span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Recognition Pipeline */
.recognition-pipeline {
    background: white;
}

.pipeline-flow {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pipeline-stage {
    text-align: center;
    max-width: 200px;
    flex: 1;
    min-width: 180px;
}

.stage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid #10b981;
}

.stage-icon i {
    font-size: 1.8rem;
    color: #059669;
}

.pipeline-stage h4 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.stage-details ul {
    list-style: none;
    text-align: left;
}

.stage-details li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.stage-details li:before {
    content: "•";
    color: #059669;
    position: absolute;
    left: 0;
}

.pipeline-arrow {
    font-size: 2rem;
    color: #10b981;
    font-weight: bold;
}

/* Sample Reports Section */
.sample-reports {
    background: #f8fafc;
}

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

.report-tab-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: inherit;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #059669;
    background: #059669;
    color: white;
}

.report-sample {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.report-sample.active {
    display: block;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.report-header h4 {
    margin: 0;
    color: #0f172a;
    font-size: 1.5rem;
}

.report-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    text-align: right;
}

.report-meta span {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.report-metrics {
    margin-bottom: 2rem;
}

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

.metric-box {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.9rem;
}

.report-section {
    margin-bottom: 2rem;
}

.report-section h5 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Business Report Styles */
.business-metrics .metric-box {
    background: #fef3c7;
    border-color: #fcd34d;
}

.business-metrics .metric-value {
    color: #f59e0b;
}

.breakdown-chart {
    margin: 1.5rem 0;
}

.chart-item {
    margin-bottom: 1rem;
}

.chart-bar {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

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

.outcome-card {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #fcd34d;
}

.outcome-card i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.outcome-card h6 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.outcome-card p {
    color: #78350f;
    margin: 0;
    font-size: 0.9rem;
}

/* CSR Report Styles */
.esg-scorecard {
    margin-bottom: 2rem;
}

.scorecard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.score-item {
    text-align: center;
    padding: 1.5rem;
    background: #dbeafe;
    border-radius: 12px;
    border: 1px solid #93c5fd;
}

.score-category {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.score-rating {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.score-rating.excellent {
    color: #059669;
}

.score-rating.good {
    color: #f59e0b;
}

.score-detail {
    color: #1e40af;
    font-size: 0.875rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.verification-section {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    margin-top: 2rem;
}

.verification-stamp {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.verification-stamp i {
    font-size: 2rem;
    color: #3b82f6;
}

.stamp-info strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.5rem;
}

.stamp-info p {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.verification-date {
    color: #64748b;
    font-size: 0.875rem;
    font-style: italic;
}

/* Agency Report Styles */
.agency-performance .performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.performance-metric {
    text-align: center;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.performance-metric .metric-value {
    color: #059669;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.metric-change.positive {
    color: #059669;
}

.metric-change:before {
    content: "↗ ";
}

/* Impact Timeline */
.impact-timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.timeline-date {
    background: #ec4899;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    font-size: 0.9rem;
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Recognition Benefits */
.recognition-benefits {
    background: white;
}

.benefits-comparison {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.old-way,
.new-way {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.old-way {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.new-way {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
}

.old-way h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.new-way h4 {
    color: #059669;
    margin-bottom: 1rem;
}

.old-way ul,
.new-way ul {
    list-style: none;
}

.old-way li {
    padding: 0.5rem 0;
    color: #7f1d1d;
    position: relative;
    padding-left: 1.5rem;
}

.old-way li:before {
    content: "✗";
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.new-way li {
    padding: 0.5rem 0;
    color: #14532d;
    position: relative;
    padding-left: 1.5rem;
}

.new-way li:before {
    content: "✓";
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.recognition-principles {
    margin-top: 3rem;
}

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

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.principle-icon i {
    font-size: 1.5rem;
    color: #059669;
}

/* Download CTA */
.download-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.download-cta .cta-content h2 {
    color: white;
}

.download-cta .cta-content p {
    color: #cbd5e1;
}

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

.download-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, background 0.2s ease;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    color: inherit;
}

.download-card i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.download-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.download-btn {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pilot-cta {
    margin-top: 3rem;
}

/* Mobile Responsive for Recognition */
@media (max-width: 768px) {
    .report-types-grid {
        grid-template-columns: 1fr;
    }
    
    .pipeline-flow {
        flex-direction: column;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .report-tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .report-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .report-meta {
        align-items: flex-start;
        text-align: left;
    }
    
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==================== PRICING PAGE SPECIFIC STYLES ==================== */

/* Pricing Overview */
.pricing-overview {
    background: #f8fafc;
}

.pricing-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-nav .tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: inherit;
    font-size: 1rem;
}

.tab-nav .tab-btn.active,
.tab-nav .tab-btn:hover {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.pricing-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Pricing Tiers Grid */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-tier {
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-tier.recommended {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.pricing-tier.recommended:hover {
    transform: scale(1.05) translateY(-4px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-header {
    margin-bottom: 2rem;
}

.tier-header h4 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.tier-duration {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.tier-features {
    text-align: left;
    margin-bottom: 2rem;
}

.tier-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

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

.tier-features li i {
    color: #10b981;
    width: 16px;
    flex-shrink: 0;
}

.pricing-note {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #0c4a6e;
}

.pricing-note strong {
    color: #0369a1;
}

/* Grant Funding Note */
.grant-funding-note {
    margin-top: 3rem;
}

.funding-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.funding-info i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.funding-info strong {
    color: #0369a1;
    display: block;
    margin-bottom: 0.5rem;
}

.funding-info p {
    color: #0c4a6e;
    margin: 0;
}

/* Enterprise Features */
.enterprise-features {
    max-width: 900px;
    margin: 0 auto;
}

.enterprise-tier {
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 3rem 2rem;
}

.enterprise-tier .tier-header {
    text-align: center;
    margin-bottom: 3rem;
}

.enterprise-tier .tier-price {
    color: #059669;
    font-size: 2.5rem;
}

.tier-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.5rem;
}

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

.feature-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.feature-category h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-category h5 i {
    color: #059669;
    font-size: 1.25rem;
}

.feature-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.feature-category li:before {
    content: "•";
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.enterprise-cta p {
    color: #64748b;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Individual Pricing */
.individual-pricing {
    max-width: 800px;
    margin: 0 auto;
}

.free-tier {
    background: white;
    border-radius: 12px;
    border: 2px solid #10b981;
    padding: 3rem 2rem;
    text-align: center;
}

.free-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 2rem;
    width: fit-content;
}

.free-badge i {
    font-size: 1.5rem;
}

.free-features {
    margin-bottom: 3rem;
}

.free-features h4 {
    color: #0f172a;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

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

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

.feature-grid .feature-item i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-grid .feature-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-grid .feature-item p {
    color: #64748b;
    margin: 0;
}

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

.free-cta p {
    color: #64748b;
    margin-top: 1rem;
}

/* Value Proposition */
.pricing-value {
    background: white;
}

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

/* ROI Calculator */
.roi-calculator {
    background: #f8fafc;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.calculator-form h3 {
    color: #0f172a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.calc-input-group {
    margin-bottom: 1.5rem;
}

.calc-input-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.calc-input-group select,
.calc-input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.calc-input-group select:focus,
.calc-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.calculator-results {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: none;
}

.calculator-results.active {
    display: block;
}

.calculator-results h3 {
    color: #0f172a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.result-item.total {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    font-weight: 600;
}

.result-item.investment {
    background: #fef3c7;
    border: 2px solid #fcd34d;
}

.result-item.roi {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    font-weight: 600;
}

.result-label {
    color: #374151;
    font-weight: 500;
}

.result-value {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.1rem;
}

.result-item.total .result-value {
    color: #1d4ed8;
}

.result-item.investment .result-value {
    color: #d97706;
}

.result-item.roi .result-value {
    color: #059669;
}

/* Pricing FAQ */
.pricing-faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq-item h4 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.pricing-cta .cta-content h2 {
    color: white;
}

.pricing-cta .cta-content p {
    color: #cbd5e1;
}

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

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-option h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-option p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.contact-info p {
    color: #cbd5e1;
    margin: 0;
}

.contact-info a {
    color: #10b981;
    text-decoration: none;
}

.contact-info a:hover {
    color: #34d399;
}

.download-instructions {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.download-instructions small {
    color: #cbd5e1;
}

.download-instructions i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .pricing-tier.recommended {
        transform: none;
    }
    
    .pricing-tier.recommended:hover {
        transform: translateY(-4px);
    }
    
    .feature-categories {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tier-price {
        font-size: 2.5rem;
    }
    
    .enterprise-tier,
    .free-tier {
        padding: 2rem 1rem;
    }
    
    .calculator-form,
    .calculator-results {
        padding: 2rem 1rem;
    }
}

/* ==================== RESOURCES PAGE SPECIFIC STYLES ==================== */

/* Resource Categories */
.resource-categories {
    background: #f8fafc;
}

.resource-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #059669;
    background: #059669;
    color: white;
}

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

/* Resource Cards */
.resource-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-type {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-image {
    background: #f0fdf4;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.resource-image i {
    font-size: 3rem;
    color: #059669;
}

.resource-content {
    padding: 2rem;
}

.resource-content h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.resource-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.resource-time,
.resource-audience {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.resource-audience {
    background: #dbeafe;
    color: #1e40af;
}

.resource-highlights {
    margin-bottom: 2rem;
}

.resource-highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-highlights li {
    padding: 0.5rem 0;
    color: #059669;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.resource-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.resource-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Featured Resources */
.featured-resources {
    background: white;
}

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

.featured-resource {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.featured-resource:hover {
    transform: translateY(-2px);
}

.featured-icon {
    width: 60px;
    height: 60px;
    background: #059669;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-icon i {
    font-size: 1.5rem;
}

.featured-content h3 {
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.featured-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.featured-stats {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Resource Newsletter */
.resource-newsletter {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

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

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
}

.newsletter-benefits .benefit-item i {
    color: #10b981;
    width: 16px;
    flex-shrink: 0;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input,
.newsletter-form select {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #cbd5e1;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form option {
    background: #1e293b;
    color: white;
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
    line-height: 1.4;
}

.newsletter-privacy a {
    color: #10b981;
    text-decoration: none;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}

/* Resource Support */
.resource-support {
    background: #f8fafc;
}

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

.support-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 1.5rem;
}

.support-item h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.support-item p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Form Styles for Contact Page */
.contact-options-section {
    background: #f8fafc;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-method-card.pilot {
    border-top: 4px solid #10b981;
}

.contact-method-card.sales {
    border-top: 4px solid #3b82f6;
}

.contact-method-card.demo {
    border-top: 4px solid #f59e0b;
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-method-card.pilot .method-icon {
    background: #f0fdf4;
    color: #10b981;
}

.contact-method-card.sales .method-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.contact-method-card.demo .method-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.method-icon i {
    font-size: 2rem;
}

.contact-method-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-method-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.method-details ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.method-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #64748b;
}

.method-details li i {
    color: #10b981;
    width: 16px;
    flex-shrink: 0;
}

.method-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.method-note {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-content {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    color: #64748b;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 2rem;
}

.form-success h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.form-success p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.contact-item i {
    color: #059669;
    width: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #059669;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.response-type {
    color: #64748b;
    font-size: 0.9rem;
}

.response-time {
    color: #059669;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Office Info */
.office-info {
    background: #f8fafc;
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.office-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.office-icon i {
    font-size: 1.5rem;
}

.office-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.office-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.office-details p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.office-details strong {
    color: #0f172a;
}

/* Contact FAQ */
.contact-faq {
    background: white;
}

/* Mobile Responsive for Resources and Contact */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-resource {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        padding: 2rem;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .resource-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .resource-actions {
        flex-direction: column;
    }
    
    .contact-method-card {
        padding: 2rem 1rem;
    }
    
    .form-content {
        padding: 1.5rem;
    }
}

/* ==================== DATABASE-POWERED COMPONENTS ==================== */

/* Current Pilots Dashboard */
.current-pilots {
    background: #f8fafc;
}

.pilot-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-loading,
.dashboard-error {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.dashboard-loading i {
    font-size: 2rem;
    color: #059669;
    margin-bottom: 1rem;
}

.dashboard-error i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.current-pilots-list {
    margin-bottom: 3rem;
}

.current-pilots-list h3 {
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.pilot-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pilot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pilot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pilot-header h4 {
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.pilot-type {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

.pilot-details {
    margin-bottom: 1.5rem;
}

.pilot-details p {
    margin: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.pilot-details strong {
    color: #0f172a;
}

.pilot-goals {
    margin-bottom: 1.5rem;
}

.pilot-goals p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

.pilot-status {
    display: flex;
    justify-content: flex-end;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #f0fdf4;
    color: #059669;
}

.status-badge.submitted {
    background: #fef3c7;
    color: #f59e0b;
}

.status-badge.under-review {
    background: #dbeafe;
    color: #3b82f6;
}

.recent-impact h3 {
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.impact-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #059669;
}

.impact-item .impact-icon {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-item .impact-icon i {
    font-size: 1.25rem;
}

.impact-content {
    flex: 1;
}

.impact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.impact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.impact-type {
    background: #f0fdf4;
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

.impact-description {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.impact-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.people-served,
.impact-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.people-served::before {
    content: "👥";
}

.impact-date::before {
    content: "📅";
}

/* Mobile Responsive for Database Components */
@media (max-width: 768px) {
    .pilot-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        text-align: center;
        flex-direction: column;
    }
    
    .pilots-grid {
        grid-template-columns: 1fr;
    }
    
    .pilot-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .impact-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .stat-card,
    .pilot-card,
    .impact-item {
        padding: 1.5rem;
    }
    
    .pilot-dashboard {
        padding: 0 1rem;
    }
}

/* ==================== ABOUT PAGE SPECIFIC STYLES ==================== */

/* Mission & Vision */
.mission-vision {
    background: #f8fafc;
}

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

.mission-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.mission-item:hover {
    transform: translateY(-4px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i {
    font-size: 2rem;
}

.mission-item h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Our Story */
.our-story {
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.story-text {
    max-width: 800px;
}

.story-section {
    margin-bottom: 3rem;
}

.story-section h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.story-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.story-section li {
    padding: 0.75rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.story-section li:before {
    content: "→";
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.story-section strong {
    color: #0f172a;
}

.approach-principles {
    margin-top: 2rem;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.principle-number {
    width: 50px;
    height: 50px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.principle-content h4 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.principle-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.story-stats {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.story-stats h3 {
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.stats-note {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

/* Public Benefit Corporation */
.pbc-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.pbc-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.pbc-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.pbc-text p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pbc-benefits h3 {
    color: white;
    margin-bottom: 2rem;
}

.benefit-grid {
    display: grid;
    gap: 2rem;
}

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

.benefit-item i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.pbc-certification {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-badge i {
    color: #10b981;
    font-size: 2rem;
}

.cert-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cert-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
}

.cert-details h4 {
    color: white;
    margin-bottom: 1rem;
}

.cert-details p {
    color: #cbd5e1;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Team Section */
.team-section {
    background: #f8fafc;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 2.5rem;
}

.member-info h3 {
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-expertise span {
    background: #f0fdf4;
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Advisory Section */
.advisory-section {
    background: white;
}

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

.advisor-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
}

.advisor-info h4 {
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.advisor-title {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advisor-bio {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Culture Section */
.culture-section {
    background: #f8fafc;
}

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

.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.culture-icon i {
    font-size: 1.8rem;
}

.culture-item h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.culture-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Transparency Section */
.transparency-section {
    background: white;
}

.transparency-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.report-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.report-icon {
    width: 60px;
    height: 60px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.report-icon i {
    font-size: 1.5rem;
}

.report-item h4 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.report-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transparency-commitments {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.transparency-commitments h3 {
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.commitment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.commitment-item i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.commitment-item span {
    color: #64748b;
    font-weight: 500;
}

/* Join Us Section */
.join-us-section {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

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

.join-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.join-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.join-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-option h4 {
    color: white;
    margin-bottom: 1rem;
}

.join-option p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mobile Responsive for About */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pbc-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .transparency-reports {
        grid-template-columns: 1fr;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    
    .join-options {
        grid-template-columns: 1fr;
    }
    
    .principle {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mission-item,
    .team-member,
    .join-option {
        padding: 2rem 1rem;
    }
    
    .story-stats {
        padding: 2rem 1rem;
    }
    
    .transparency-commitments {
        padding: 2rem 1rem;
    }
}

/* ==================== HELP PAGE SPECIFIC STYLES ==================== */

/* Help Search */
.help-search {
    background: #f8fafc;
    padding: 3rem 0;
}

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

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.2s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.popular-label {
    color: #64748b;
    font-weight: 500;
}

.search-tag {
    background: white;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #d1fae5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.search-tag:hover {
    background: #059669;
    color: white;
    transform: translateY(-1px);
}

/* Help Categories */
.help-categories {
    background: white;
}

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

.help-category-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 1.5rem;
}

.help-category-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-category-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-topics {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-topics li {
    margin-bottom: 0.5rem;
}

.category-topics a {
    color: #059669;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.category-topics a:hover {
    color: #0f172a;
    text-decoration: underline;
}

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

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-cat-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: inherit;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
    border-color: #059669;
    background: #059669;
    color: white;
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.search-highlight {
    border-color: #059669;
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.2s ease;
}

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

.faq-question h4 {
    color: #0f172a;
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Support */
.contact-support {
    background: white;
}

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

.support-option {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.support-option:hover {
    transform: translateY(-4px);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 1.8rem;
}

.support-option h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.support-option p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.availability,
.response-time {
    font-size: 0.9rem;
    color: #64748b;
}

.availability {
    font-weight: 500;
}

/* Help Resources */
.help-resources {
    background: #f8fafc;
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.resource-item:hover {
    transform: translateY(-4px);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    font-size: 1.5rem;
}

.resource-item h4 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.resource-item p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Status Updates */
.status-updates {
    background: white;
    border-top: 1px solid #e2e8f0;
}

.status-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.status-info h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

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

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.operational {
    background: #10b981;
}

.status-text {
    color: #10b981;
    font-weight: 600;
}

.status-updated {
    color: #64748b;
    font-size: 0.9rem;
}

.status-info p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.status-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile Responsive for Help */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cat-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .status-content {
        flex-direction: column;
        text-align: center;
    }
    
    .status-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .popular-searches {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .help-category-card,
    .support-option,
    .resource-item {
        padding: 1.5rem;
    }
    
    .faq-question,
    .faq-answer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .search-box input {
        font-size: 1rem;
    }
}

/* ==================== CONTACT PAGE SPECIFIC STYLES ==================== */

/* Contact Methods Section */
.contact-options-section {
    background: #f8fafc;
}

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

.contact-method-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-method-card.pilot {
    border-top: 4px solid #10b981;
}

.contact-method-card.sales {
    border-top: 4px solid #3b82f6;
}

.contact-method-card.demo {
    border-top: 4px solid #f59e0b;
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-method-card.pilot .method-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 3px solid #10b981;
}

.contact-method-card.pilot .method-icon i {
    color: #059669;
    font-size: 1.8rem;
}

.contact-method-card.sales .method-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 3px solid #3b82f6;
}

.contact-method-card.sales .method-icon i {
    color: #1d4ed8;
    font-size: 1.8rem;
}

.contact-method-card.demo .method-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #f59e0b;
}

.contact-method-card.demo .method-icon i {
    color: #d97706;
    font-size: 1.8rem;
}

.contact-method-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.method-details {
    margin: 2rem 0;
    text-align: left;
}

.method-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.method-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.method-details li i {
    color: #10b981;
    width: 16px;
    flex-shrink: 0;
}

.method-cta {
    margin-top: 2rem;
}

.method-note {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

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

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid #bbf7d0;
}

.success-icon {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.form-success p {
    color: #166534;
    margin-bottom: 2rem;
}

/* Contact Info Sidebar */
.contact-info {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.info-section {
    margin-bottom: 3rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-item span {
    color: #64748b;
    font-size: 0.9rem;
}

.response-times {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.response-type {
    color: #64748b;
    font-size: 0.9rem;
}

.response-time {
    color: #0f172a;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Office Info Section */
.office-info {
    background: #f8fafc;
}

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

.office-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.office-icon {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.office-icon i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.office-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.office-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.office-details {
    text-align: left;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.office-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.office-details strong {
    color: #0f172a;
}

/* Contact FAQ */
.contact-faq {
    background: white;
}

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

.contact-faq .faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-faq .faq-item h4 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-faq .faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
    }
    
    .contact-faq .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .office-card {
        padding: 2rem 1.5rem;
    }
}