/* ============================================================================
   SOKYO Analytics - About Page Stylesheet
   Unified with Index.css for consistent styling
   ============================================================================ */

/* ============================================================================
   IMPORTS & FONTS
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================================
   BASE STYLES
   ============================================================================ */

* {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Light Mode (Default) */
body {
    background-color: #F7F8F3;
    color: #2F342C;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode */
body.dark {
    background-color: #1C2119;
    color: #DDE3D0;
}

/* ============================================================================
   HEADER STYLES
   ============================================================================ */

.modern-header {
    background: rgba(247, 248, 243, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid #E5E7DE;
    transition: all 0.3s ease;
}

.dark .modern-header {
    background: rgba(28, 33, 25, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid #3A4234;
}

.nav-link {
    position: relative;
    transition: all 0.2s ease;
    color: #6E7566;
}

.dark .nav-link {
    color: #8A9480;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #AEBF96;
    transform: translateX(-50%);
    transition: width 0.2s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================================================
   SIDEBAR STYLES
   ============================================================================ */

.floating-sidebar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    background: #FFFFFF;
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid #E5E7DE;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dark .floating-sidebar {
    background: #262B23;
    border: 1px solid #3A4234;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dark .floating-sidebar > div:first-child,
.dark .floating-sidebar > div:last-child {
    background: #262B23 !important;
    border-color: #3A4234 !important;
}

.floating-sidebar.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(47, 52, 44, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

.dark .sidebar-overlay {
    background: rgba(28, 33, 25, 0.6);
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    background: #DDE3D0;
    transition: background 0.3s ease;
}

.dark .sidebar-content {
    background: #343C30;
}

.sidebar-link {
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    color: #6E7566;
}

.dark .sidebar-link {
    color: #8A9480;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #AEBF96;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    border-radius: 0 2px 2px 0;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #CBD7BE;
    color: #2F342C;
}

.dark .sidebar-link:hover,
.dark .sidebar-link.active {
    background: #3A4234;
    color: #C7D7B2;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    transform: translateX(0);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #2F342C;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.dark .hamburger-line {
    background: #DDE3D0;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================================
   TEXT & GRADIENTS
   ============================================================================ */

.gradient-text {
    background: linear-gradient(135deg, #2F342C 0%, #6E7566 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .gradient-text {
    background: linear-gradient(135deg, #C7D7B2 0%, #AEBF96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================================
   TRUST BADGE & ANIMATIONS
   ============================================================================ */

.trust-badge {
    background: #E4EBD8;
    border: 1px solid #C7D7B2;
    transition: all 0.3s ease;
}

.dark .trust-badge {
    background: #343C30;
    border: 1px solid #4A5244;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* ============================================================================
   FEATURE CARDS
   ============================================================================ */

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dark .feature-card {
    background: #262B23;
    border: 1px solid #3A4234;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(174, 191, 150, 0.2);
    border-color: #AEBF96;
}

.dark .feature-card:hover {
    border-color: #C7D7B2;
    box-shadow: 0 12px 24px rgba(174, 191, 150, 0.3);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #AEBF96 0%, #7F8C6D 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(174, 191, 150, 0.3);
    flex-shrink: 0;
}

.dark .icon-wrapper {
    background: linear-gradient(135deg, #7F8C6D 0%, #AEBF96 100%);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F342C;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dark .feature-title {
    color: #DDE3D0;
}

.feature-description {
    color: #6E7566;
    line-height: 1.6;
    flex-grow: 1;
}

.dark .feature-description {
    color: #8A9480;
}

/* ============================================================================
   WHY CHOOSE US CARDS
   ============================================================================ */

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.dark .why-card {
    background: #262B23;
    border: 1px solid #3A4234;
}

.why-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(174, 191, 150, 0.15);
    border-color: #AEBF96;
}

.dark .why-card:hover {
    border-color: #C7D7B2;
    box-shadow: 0 8px 24px rgba(174, 191, 150, 0.25);
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #AEBF96 0%, #7F8C6D 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(174, 191, 150, 0.25);
}

.dark .why-icon {
    background: linear-gradient(135deg, #7F8C6D 0%, #AEBF96 100%);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F342C;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.dark .why-title {
    color: #DDE3D0;
}

.why-description {
    color: #6E7566;
    line-height: 1.6;
    font-size: 1rem;
}

.dark .why-description {
    color: #8A9480;
}

/* ============================================================================
   FOUNDER SECTION
   ============================================================================ */

.founder-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .founder-card {
        grid-template-columns: auto 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

.dark .founder-card {
    background: #262B23;
    border: 1px solid #3A4234;
}

.founder-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #AEBF96 0%, #C7D7B2 100%);
    border-radius: 1.5rem;
    filter: blur(16px);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.founder-card:hover .founder-image-glow {
    opacity: 0.35;
}

.founder-image {
    position: relative;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 4px solid #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
}

@media (min-width: 768px) {
    .founder-image {
        width: 240px;
        height: 240px;
    }
}

.dark .founder-image {
    border-color: #3A4234;
}

.founder-card:hover .founder-image {
    transform: scale(1.03);
}

.founder-info {
    text-align: center;
}

@media (min-width: 768px) {
    .founder-info {
        text-align: left;
    }
}

.founder-name {
    font-size: 1.875rem;
    font-weight: 900;
    color: #2F342C;
    margin-bottom: 0.75rem;
}

.dark .founder-name {
    color: #DDE3D0;
}

.founder-badges {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.founder-role {
    font-size: 1rem;
    color: #AEBF96;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark .founder-role {
    color: #C7D7B2;
}

.founder-subtitle,
.founder-education {
    font-size: 0.875rem;
    color: #6E7566;
    font-weight: 500;
}

.dark .founder-subtitle,
.dark .founder-education {
    color: #8A9480;
}

.founder-bio {
    color: #6E7566;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dark .founder-bio {
    color: #8A9480;
}

.founder-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .founder-social {
        justify-content: flex-start;
    }
}

.social-link {
    width: 40px;
    height: 40px;
    background: #EEF0E7;
    border: 1px solid #E5E7DE;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-center;
    color: #6E7566;
    transition: all 0.2s ease;
}

.dark .social-link {
    background: #343C30;
    border-color: #3A4234;
    color: #8A9480;
}

.social-link:hover {
    background: #AEBF96;
    border-color: #AEBF96;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.dark .social-link:hover {
    background: #C7D7B2;
    border-color: #C7D7B2;
}

/* ============================================================================
   TEAM SECTION
   ============================================================================ */

.team-card {
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.dark .team-card {
    background: #262B23;
    border: 1px solid #3A4234;
}

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #AEBF96 0%, #7F8C6D 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-center;
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(174, 191, 150, 0.3);
}

.dark .team-icon {
    background: linear-gradient(135deg, #7F8C6D 0%, #AEBF96 100%);
}

.team-description {
    font-size: 1.25rem;
    color: #6E7566;
    line-height: 1.6;
}

.dark .team-description {
    color: #8A9480;
}

/* ============================================================================
   PARTNER SECTION
   ============================================================================ */

.partner-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .partner-card {
        grid-template-columns: auto 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

.dark .partner-card {
    background: #262B23;
    border: 1px solid #3A4234;
}

.partner-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .partner-logo-wrapper {
        width: 280px;
    }
}

.partner-logo-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #AEBF96 0%, #C7D7B2 100%);
    border-radius: 1.5rem;
    filter: blur(16px);
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.partner-card:hover .partner-logo-glow {
    opacity: 0.25;
}

.partner-logo-container {
    position: relative;
    background: #FFFFFF;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #DDE3D0;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.dark .partner-logo-container {
    background: #FFFFFF;
    border-color: #DDE3D0;
}

.partner-card:hover .partner-logo-container {
    transform: scale(1.03);
}

.partner-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-info {
    text-align: center;
}

@media (min-width: 768px) {
    .partner-info {
        text-align: left;
    }
}

.partner-name {
    font-size: 1.875rem;
    font-weight: 900;
    color: #2F342C;
    margin-bottom: 0.75rem;
}

.dark .partner-name {
    color: #DDE3D0;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #E4EBD8;
    border: 1px solid #C7D7B2;
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6E7566;
    font-weight: 500;
}

.dark .partner-badge {
    background: #343C30;
    border-color: #4A5244;
    color: #8A9480;
}

.partner-badge i {
    color: #AEBF96;
}

.dark .partner-badge i {
    color: #C7D7B2;
}

.partner-description {
    color: #6E7566;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dark .partner-description {
    color: #8A9480;
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .partner-tags {
        justify-content: flex-start;
    }
}

.partner-tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: #E4EBD8;
    color: #AEBF96;
    border-radius: 9999px;
}

.dark .partner-tag {
    background: #343C30;
    color: #C7D7B2;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #AEBF96;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(174, 191, 150, 0.3);
    transition: all 0.2s ease;
}

.partner-link:hover {
    background: #7F8C6D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(174, 191, 150, 0.4);
}

.dark .partner-link {
    background: #C7D7B2;
    color: #2F342C;
}

.dark .partner-link:hover {
    background: #AEBF96;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-card {
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
}

.dark .cta-card {
    background: #262B23;
    border: 1px solid #3A4234;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2F342C 0%, #6E7566 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.dark .cta-title {
    background: linear-gradient(135deg, #C7D7B2 0%, #AEBF96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: #6E7566;
    margin-bottom: 2rem;
}

.dark .cta-description {
    color: #8A9480;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #AEBF96;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(174, 191, 150, 0.3);
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #7F8C6D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(174, 191, 150, 0.4);
}

.dark .cta-button {
    background: #C7D7B2;
    color: #2F342C;
}

.dark .cta-button:hover {
    background: #AEBF96;
}

/* ============================================================================
   DARK MODE ADJUSTMENTS
   ============================================================================ */

.dark .floating-sidebar .shrink-0 {
    background: #262B23 !important;
    border-color: #3A4234 !important;
}

.dark .floating-sidebar .bg-sage-100 {
    background: #3A4234 !important;
}

.dark .floating-sidebar .bg-sage-100:hover {
    background: #4A5244 !important;
}

.dark .text-sage-100 {
    color: #DDE3D0;
}

.dark .text-sage-300 {
    color: #8A9480;
}

.dark .text-sage-400 {
    color: #6E7566;
}

.dark .bg-sage-600 {
    background-color: #343C30;
}

.dark .via-sage-600 {
    --tw-gradient-stops: var(--tw-gradient-from), #3A4234, var(--tw-gradient-to);
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 768px) {
    .feature-card,
    .why-card,
    .team-card,
    .cta-card {
        padding: 1.5rem;
    }

    .founder-card,
    .partner-card {
        padding: 1.5rem;
    }

    .feature-title,
    .why-title {
        font-size: 1.25rem;
    }

    .founder-name,
    .partner-name {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }
}

/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */

/* ============================================================================
   PRIVACY PAGE SPECIFIC STYLES
   ============================================================================ */

.privacy-section {
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.dark .privacy-section {
    background: #262B23;
    border: 1px solid #3A4234;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

.section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #AEBF96 0%, #7F8C6D 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(174, 191, 150, 0.3);
}

.dark .section-icon {
    background: linear-gradient(135deg, #7F8C6D 0%, #AEBF96 100%);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F342C;
}

.dark .section-title {
    color: #DDE3D0;
}

.section-content {
    color: #6E7566;
    line-height: 1.6;
}

.dark .section-content {
    color: #8A9480;
}

.section-content p {
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    space-y: 0.75rem;
}

.policy-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #AEBF96;
    font-weight: bold;
    font-size: 1.25rem;
}

.list-label {
    font-weight: 600;
    color: #2F342C;
}

.dark .list-label {
    color: #DDE3D0;
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-box {
    background: #E4EBD8;
    border: 1px solid #C7D7B2;
    border-radius: 0.75rem;
    padding: 1rem;
}

.dark .contact-info-box {
    background: #343C30;
    border: 1px solid #4A5244;
}

.contact-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6E7566;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.dark .contact-info-label {
    color: #8A9480;
}

.contact-info-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2F342C;
}

.dark .contact-info-value {
    color: #DDE3D0;
}

.last-updated {
    border-top: 1px solid #E5E7DE;
}

.dark .last-updated {
    border-top: 1px solid #3A4234;
}

.last-updated p {
    color: #6E7566;
    font-size: 0.875rem;
}

.dark .last-updated p {
    color: #8A9480;
}

/* ============================================================================
   END OF PRIVACY STYLES
   ============================================================================ */

/* ============================================================================
   DOCUMENTATION PAGE SPECIFIC STYLES
   ============================================================================ */

.doc-section {
    background: #FFFFFF;
    border: 1px solid #E5E7DE;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.dark .doc-section {
    background: #262B23;
    border: 1px solid #3A4234;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-box {
    background: rgba(174, 191, 150, 0.1);
    border: 1px solid #E5E7DE;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.dark .feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #3A4234;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #AEBF96 0%, #7F8C6D 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2F342C;
    margin-bottom: 0.5rem;
}

.dark .feature-title {
    color: #DDE3D0;
}

.feature-text {
    font-size: 0.875rem;
    color: #6E7566;
}

.dark .feature-text {
    color: #8A9480;
}

code {
    background: rgba(174, 191, 150, 0.15);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    color: #2F342C;
}

.dark code {
    background: rgba(255, 255, 255, 0.1);
    color: #DDE3D0;
}

/* Info Box */
.info-box {
    background: rgba(174, 191, 150, 0.1);
    border: 1px solid #C7D7B2;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.dark .info-box {
    background: rgba(199, 215, 178, 0.05);
    border: 1px solid #4A5244;
}

.info-box-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2F342C;
    margin-bottom: 1rem;
}

.dark .info-box-title {
    color: #DDE3D0;
}

/* Lists */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #6E7566;
}

.dark .check-list li {
    color: #8A9480;
}

.check-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10B981;
}

.step-list {
    list-style: none;
    padding-left: 0;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #6E7566;
}

.dark .step-list li {
    color: #8A9480;
}

.step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #AEBF96;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.dark .step-number {
    background: rgba(255, 255, 255, 0.1);
}

/* Spec Categories */
.spec-category {
    background: rgba(174, 191, 150, 0.05);
    border: 1px solid #E5E7DE;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.dark .spec-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #3A4234;
}

.spec-category-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2F342C;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dark .spec-category-title {
    color: #DDE3D0;
}

.spec-category-title i {
    color: #AEBF96;
}

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

@media (min-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.spec-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2F342C;
    margin-bottom: 0.25rem;
}

.dark .spec-item h4 {
    color: #DDE3D0;
}

.spec-item p {
    font-size: 0.875rem;
    color: #6E7566;
}

.dark .spec-item p {
    color: #8A9480;
}

/* Benchmarks */
.benchmark-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.benchmark-item {
    background: rgba(174, 191, 150, 0.08);
    border: 1px solid #E5E7DE;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.dark .benchmark-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #3A4234;
}

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

.benchmark-header i {
    font-size: 1.25rem;
    color: #AEBF96;
}

.benchmark-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2F342C;
}

.dark .benchmark-header h3 {
    color: #DDE3D0;
}

.benchmark-item p {
    color: #6E7566;
    margin-bottom: 0.75rem;
}

.dark .benchmark-item p {
    color: #8A9480;
}

.benchmark-details {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
}

.benchmark-details li {
    font-size: 0.875rem;
    color: #6E7566;
    margin-bottom: 0.5rem;
}

.dark .benchmark-details li {
    color: #8A9480;
}

.benchmark-details strong {
    color: #2F342C;
}

.dark .benchmark-details strong {
    color: #DDE3D0;
}

.benchmark-note {
    font-size: 0.875rem !important;
    margin-bottom: 0 !important;
}

/* FAQs */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(174, 191, 150, 0.08);
    border: 1px solid #E5E7DE;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.dark .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #3A4234;
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2F342C;
    margin-bottom: 0.5rem;
}

.dark .faq-item h4 {
    color: #DDE3D0;
}

.faq-item p {
    font-size: 0.875rem;
    color: #6E7566;
}

.dark .faq-item p {
    color: #8A9480;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    background: #AEBF96;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #7F8C6D;
    transform: translateY(-2px);
}

.dark .cta-button {
    background: #C7D7B2;
    color: #2F342C;
}

.dark .cta-button:hover {
    background: #AEBF96;
}

/* ============================================================================
   END OF DOCUMENTATION STYLES
   ============================================================================ */
