/* ===== 11MIND WEBSITE STYLES - VERSION 2.1 ===== */
/* Updated: Header and Button fixes for live deployment */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #000000;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.01em;
    line-height: 1.2;
    word-spacing: 0.1em;
}

h2 {
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-weight: 600;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    letter-spacing: -0.01em;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== HEADER - ULTIMATE CONSISTENCY ===== */
/* Force header consistency with maximum specificity */
/* Override ALL possible header modifications */
/* Reset for live website deployment */
html body .header,
html body:has(.hero) .header,
html body:has(.about-hero) .header,
html body:has(.contact-hero) .header,
html body:has(.page-hero) .header,
html body:has(.legal-hero) .header,
body .header,
body:has(.hero) .header,
body:has(.about-hero) .header,
body:has(.contact-hero) .header,
body:has(.page-hero) .header,
body:has(.legal-hero) .header,
.hero ~ .header,
.about-hero ~ .header,
.contact-hero ~ .header,
.page-hero ~ .header,
.legal-hero ~ .header,
section .header,
* .header,
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    z-index: 1000 !important;
    padding: 1.2rem 0 !important;
    border-bottom: 1px solid rgba(123, 191, 156, 0.15) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    transform: none !important;
    overflow: visible !important;
}

/* Force header-content consistency */
html body .header .header-content,
body .header .header-content,
.header .header-content,
.header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}



/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}



/* Animated Barcode next to logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
}

.logo-barcode {
    display: flex;
    align-items: flex-end;
    gap: 1.5px;
    transition: transform 0.3s ease;
    cursor: pointer;
    order: 2;
}

.logo-img {
    order: 1;
}

.logo-barcode:hover {
    transform: scale(1.2);
}

.barcode-line {
    background-color: #7BBF9C;
    transition: all 0.3s ease;
    transform: skewX(-25deg);
    border-radius: 0.5px;
}

.barcode-line:nth-child(1) { width: 1.5px; height: 16px; }
.barcode-line:nth-child(2) { width: 1px; height: 12px; }
.barcode-line:nth-child(3) { width: 2px; height: 20px; }
.barcode-line:nth-child(4) { width: 1px; height: 8px; }
.barcode-line:nth-child(5) { width: 1.5px; height: 18px; }
.barcode-line:nth-child(6) { width: 1px; height: 14px; }
.barcode-line:nth-child(7) { width: 1.5px; height: 10px; }

.logo-barcode:hover .barcode-line {
    background-color: #5fa882;
    transform: skewX(-25deg) scaleY(1.1);
}

/* Mobile responsiveness for barcode */
@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }
    
    .logo-barcode {
        gap: 1px;
    }
    
    .barcode-line:nth-child(1) { width: 1px; height: 12px; }
    .barcode-line:nth-child(2) { width: 0.8px; height: 10px; }
    .barcode-line:nth-child(3) { width: 1.5px; height: 16px; }
    .barcode-line:nth-child(4) { width: 0.8px; height: 6px; }
    .barcode-line:nth-child(5) { width: 1px; height: 14px; }
    .barcode-line:nth-child(6) { width: 0.8px; height: 11px; }
    .barcode-line:nth-child(7) { width: 1px; height: 8px; }
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(11, 30, 57, 0.7);
    border: 1.5px solid rgba(123, 191, 156, 0.25);
    border-radius: 50px;
    padding: 0.6rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(11, 30, 57, 0.3);
}

.nav-link {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    position: relative;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #FFFFFF;
    background: rgba(123, 191, 156, 0.1);
}

.nav-link.active {
    color: #FFFFFF;
    background: rgba(123, 191, 156, 0.2);
    border: 1px solid rgba(123, 191, 156, 0.3);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    margin-right: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

/* Light mode styles */
[data-theme="light"] {
    background: #FFFFFF;
    color: #000000;
}

[data-theme="light"] body {
    background: #FFFFFF;
    color: #000000;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .nav-link {
    color: #000000;
}

[data-theme="light"] .logo-img {
    filter: invert(1);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #000000;
}

[data-theme="light"] .hero-title {
    color: #000000;
}

[data-theme="light"] .hero-subtitle {
    color: #333333;
}

/* Header CTA Button - Single definition */
.header-cta {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    font-weight: 500;
}

@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .desktop-nav,
    .desktop-cta,
    .header-cta {
        display: none !important;
    }
    
    /* Show mobile navigation elements */
    .mobile-header-right {
        display: flex !important;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }
    
    /* Mobile container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section mobile adjustments */
    .hero {
        padding: 0 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 8rem 0 4rem 0;
    }
    
    /* Mobile button styles */
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Mobile text optimizations */
    .hero-title {
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-benefit {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    * {
        box-sizing: border-box;
    }
    
    /* Mobile spacing */
    .section {
        padding: 3rem 0;
    }
    
    .container {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ===== MOBILE NAVIGATION ===== */
/* Mobile Header Elements - Hidden by default on desktop */
.mobile-header-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-termin {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 2rem 0;
}

.mobile-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: #7BBF9C;
    background: rgba(123, 191, 156, 0.1);
}

/* ===== HERO SECTION ===== */
/* Force hero consistency and prevent header interference */
html body .hero,
body .hero,
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    box-sizing: border-box;
    margin: 0 !important;
    margin-top: 0 !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 191, 156, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 0;
}

/* Simple page-specific hero styles without :has() selectors */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

/* Smaller hero for non-homepage */
.page-hero {
    min-height: 60vh;
    padding-top: 80px;
    box-sizing: border-box;
}

.page-hero .hero-content {
    padding: 6rem 0 3rem 0;
}

/* Legal pages get even smaller hero */
.legal-hero {
    min-height: 50vh;
    padding-top: 80px;
    box-sizing: border-box;
}

.legal-hero .hero-content {
    padding: 6rem 0 1rem 0;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    line-height: 1.3;
    font-size: clamp(1.5rem, 4.5vw, 3.2rem);
    word-spacing: 0.1em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    font-weight: 500;
}



.hero-benefit {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    color: #7BBF9C;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #3DA9FC !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(61, 169, 252, 0.3) !important;
    text-decoration: none !important;
    border: none !important;
}

.btn-primary:hover {
    background: #2E8BD6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(61, 169, 252, 0.4) !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
}

/* Force button consistency on live website */
html body .btn-primary,
body .btn-primary,
a.btn-primary,
.header .btn-primary,
.header-cta .btn-primary,
.mobile-header-right .btn-primary {
    background: #3DA9FC !important;
    color: #FFFFFF !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(61, 169, 252, 0.3) !important;
}

.btn-secondary {
    background: transparent;
    color: #7BBF9C;
    border: 2px solid #7BBF9C;
}

.btn-secondary:hover {
    background: #7BBF9C;
    color: #000000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
}

/* Problem section closer to hero */
.problem {
    padding-top: 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

/* Benefits section specific spacing to match solution section */
.benefits .section-title {
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #E0E0E0;
    font-size: 1.2rem;
    font-weight: 400;
}

/* ===== PROBLEM SECTION ===== */
.problem {
    background: #0B1E39;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(123, 191, 156, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 191, 156, 0.4);
}

.problem-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.problem-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #E0E0E0;
    font-size: 0.95rem;
}

/* Responsive Problem Grid */
@media (max-width: 1200px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-item {
        padding: 1.5rem;
    }
}

/* ===== SOLUTION SECTION ===== */
.solution {
    background: #000000;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.solution-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(11, 30, 57, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(123, 191, 156, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.solution-step:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: rgba(123, 191, 156, 0.5) !important;
    box-shadow: 0 20px 40px rgba(123, 191, 156, 0.15), 
                0 0 0 1px rgba(123, 191, 156, 0.1) !important;
    background: rgba(11, 30, 57, 0.5) !important;
}

/* Extra specific rule to ensure hover works */
.solution .solution-steps .solution-step:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(123, 191, 156, 0.5);
    box-shadow: 0 20px 40px rgba(123, 191, 156, 0.15), 
                0 0 0 1px rgba(123, 191, 156, 0.1);
    background: rgba(11, 30, 57, 0.5);
}

.step-number {
    background: rgba(123, 191, 156, 0.2);
    color: #7BBF9C;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(123, 191, 156, 0.3);
    transition: all 0.3s ease;
}

.solution-step:hover .step-number {
    transform: scale(1.1);
    background: rgba(123, 191, 156, 0.4);
    border-color: rgba(123, 191, 156, 0.6);
}

.step-content {
    transition: all 0.3s ease;
}

.solution-step:hover .step-content {
    transform: translateY(-2px);
}

.step-content h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.solution-step:hover .step-content h3 {
    color: #7BBF9C;
}

.step-content p {
    color: #E0E0E0;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .solution-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-step {
        padding: 2rem 1.5rem;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: #0B1E39;
}

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

.benefit-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(61, 169, 252, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 169, 252, 0.4);
    box-shadow: 0 10px 30px rgba(61, 169, 252, 0.2);
}

.benefit-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-item p {
    color: #E0E0E0;
    line-height: 1.7;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    background: #000000;
}

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

.testimonial {
    background: rgba(11, 30, 57, 0.5);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(46, 110, 115, 0.3);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: #2E6E73;
    font-weight: 800;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7BBF9C;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 169, 252, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 1.5rem;
    color: #7BBF9C;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: #0B1E39;
    padding-top: 3rem;
}

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

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #7BBF9C;
}

.faq-icon {
    font-size: 1.5rem;
    color: #7BBF9C;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    border-top: 1px solid rgba(123, 191, 156, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    color: #E0E0E0;
    margin-top: 1rem;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-column ul li a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #7BBF9C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 191, 156, 0.1);
    color: #E0E0E0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease 0.5s both;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

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

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

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

.mt-0 {
    margin-top: 0;
}

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

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

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

/* ===== SERVICES PAGE ===== */
.services {
    background: #000000;
    padding: 1rem 0 6rem 0;
}

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

.service-card {
    background: rgba(11, 30, 57, 0.4);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(123, 191, 156, 0.4);
    box-shadow: 0 15px 40px rgba(123, 191, 156, 0.1);
}

.service-card.featured {
    border-color: rgba(61, 169, 252, 0.4);
    background: rgba(61, 169, 252, 0.1);
}

.service-card.featured:hover {
    border-color: rgba(61, 169, 252, 0.6);
    box-shadow: 0 15px 40px rgba(61, 169, 252, 0.2);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3DA9FC;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.service-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card > p {
    color: #E0E0E0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-features li {
    color: #E0E0E0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7BBF9C;
    font-weight: bold;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(123, 191, 156, 0.2);
}

.service-duration {
    color: #7BBF9C;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-meta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: #0B1E39;
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(123, 191, 156, 0.2);
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: #7BBF9C;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #E0E0E0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .service-meta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== ABOUT HERO SECTION ===== */
/* Force about-hero consistency */
html body .about-hero,
body .about-hero,
.about-hero {
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 70%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 0 !important;
    margin-top: 0 !important;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.about-hero .hero-content {
    padding: 0;
}

.about-hero .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-subtitle-green {
    color: #7BBF9C !important;
}

.about-welcome {
    padding: 6rem 0 4rem 0;
    margin-top: 80px;
}

.about-welcome-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.about-welcome-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-photo {
    width: 200px;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.founder-info {
    max-width: 200px;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 0.9rem;
    color: #7BBF9C;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.founder-role {
    font-size: 0.8rem;
    color: #B0B0B0;
    font-style: italic;
    line-height: 1.3;
}

.about-welcome-text {
    text-align: left;
}

.about-welcome-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    margin-top: 0;
}

.about-welcome-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-robot-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 4px 20px rgba(123, 191, 156, 0.3));
    transition: transform 0.3s ease;
}

.hero-robot-image:hover {
    transform: scale(1.05);
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0B1E39 0%, #2E6E73 50%, #7BBF9C 100%);
    border-radius: 12px;
    border: 1px solid rgba(123, 191, 156, 0.3);
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cube-2 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.cube-3 {
    top: 10%;
    right: 20%;
    animation-delay: 4s;
    width: 50px;
    height: 50px;
}

.cube-4 {
    top: 70%;
    right: 10%;
    animation-delay: 1s;
    width: 70px;
    height: 70px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(10deg) rotateY(10deg);
    }
    50% {
        transform: translateY(-10px) rotateX(-5deg) rotateY(20deg);
    }
    75% {
        transform: translateY(-25px) rotateX(15deg) rotateY(-10deg);
    }
}

@media (max-width: 768px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .hero-robot-image {
        max-height: 180px;
    }
    
    .about-welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-welcome-text {
        text-align: center;
    }
    
    .profile-photo {
        width: 160px;
        height: 192px;
    }
    
    .cube {
        width: 40px;
        height: 40px;
    }
    
    .cube-2 {
        width: 50px;
        height: 50px;
    }
    
    .cube-4 {
        width: 45px;
        height: 45px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-main {
    background: #000000;
    padding: 6rem 0 3rem 0;
    margin-top: 80px;
}

/* Alternating section backgrounds */
.network {
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 70%);
    padding: 4rem 0;
}

.experience {
    background: #000000;
    padding: 4rem 0;
}

.values {
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 70%);
    padding: 4rem 0;
}

.expertise {
    background: #000000;
    padding: 4rem 0;
}

.cta-section {
    background: radial-gradient(ellipse at center, #0B1E39 0%, #000000 70%);
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.company-intro {
    font-size: 1.4rem;
    color: #7BBF9C;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-photo-container-small {
    width: 250px;
    height: 300px;
    background: rgba(11, 30, 57, 0.3);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.profile-photo-container-small:hover {
    border-color: rgba(123, 191, 156, 0.4);
    box-shadow: 0 10px 30px rgba(123, 191, 156, 0.1);
}

.profile-photo-rect-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
}

.profile-placeholder-rect-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 30, 57, 0.3);
}

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

.founder-name {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #7BBF9C;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.founder-role {
    color: #E0E0E0;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.profile-photo-container {
    width: 300px;
    height: 400px;
    background: rgba(11, 30, 57, 0.3);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.profile-photo-container:hover {
    border-color: rgba(123, 191, 156, 0.4);
    box-shadow: 0 10px 30px rgba(123, 191, 156, 0.1);
}

.profile-photo-rect {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-placeholder-rect {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 30, 57, 0.3);
}

/* Legacy circular photo styles */
.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(123, 191, 156, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background: rgba(11, 30, 57, 0.3);
    display: block;
}

.profile-photo:hover {
    border-color: rgba(123, 191, 156, 0.6);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(123, 191, 156, 0.2);
}

.profile-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(123, 191, 156, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 30, 57, 0.3);
}

.about-text h2 {
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.3rem;
    color: #7BBF9C;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
}

.about-text p {
    color: #E0E0E0;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Tablet breakpoint for expertise grid */
@media (max-width: 1023px) and (min-width: 769px) {
    .network-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset special positioning on tablet */
    .network-expertise-grid .expertise-item:nth-child(4),
    .network-expertise-grid .expertise-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }
    
    .profile-photo-container-small {
        width: 200px;
        height: 240px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .network-expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Reset special positioning on mobile */
    .network-expertise-grid .expertise-item:nth-child(4),
    .network-expertise-grid .expertise-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .expertise-item {
        padding: 1.5rem;
    }
    
    .network-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* ===== NETWORK SECTION ===== */
.network {
    background: #0B1E39;
    padding: 4rem 0;
}

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

.network-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.network-btn {
    display: inline-block;
    margin-top: 1rem;
}

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

/* Special layout for 5 cards: 3 on top, 2 centered below */
.network-expertise-grid .expertise-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.network-expertise-grid .expertise-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.expertise-item {
    background: rgba(11, 30, 57, 0.4);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: rgba(123, 191, 156, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 191, 156, 0.1);
}

.expertise-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-item h3 {
    color: #7BBF9C;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

.network-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 191, 156, 0.2);
}

.network-summary {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== TRACK RECORD SECTION ===== */
.track-record {
    background: #000000;
    padding: 4rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(11, 30, 57, 0.3);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(123, 191, 156, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 191, 156, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #7BBF9C;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #E0E0E0;
    font-weight: 500;
}

.track-record-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #E0E0E0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    background: #0B1E39;
    padding: 6rem 0;
}

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

.experience-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(61, 169, 252, 0.2);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    border-color: rgba(61, 169, 252, 0.4);
    box-shadow: 0 10px 30px rgba(61, 169, 252, 0.1);
}

.experience-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.experience-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.experience-item p {
    color: #E0E0E0;
    margin: 0;
    line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values {
    background: #000000;
    padding: 6rem 0;
}

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

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(11, 30, 57, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(123, 191, 156, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: rgba(123, 191, 156, 0.4);
    box-shadow: 0 15px 40px rgba(123, 191, 156, 0.1);
}

.value-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-item p {
    color: #E0E0E0;
    margin: 0;
    line-height: 1.7;
}

/* ===== EXPERTISE SECTION ===== */
.expertise {
    background: #0B1E39;
    padding: 6rem 0;
}

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

.expertise-category {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(123, 191, 156, 0.2);
    transition: all 0.3s ease;
}

.expertise-category:hover {
    border-color: rgba(123, 191, 156, 0.4);
    transform: translateY(-5px);
}

.expertise-category h3 {
    color: #7BBF9C;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(123, 191, 156, 0.3);
    padding-bottom: 0.5rem;
}

.expertise-category ul {
    list-style: none;
}

.expertise-category li {
    color: #E0E0E0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.expertise-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #3DA9FC;
    font-weight: bold;
}

/* ===== CONTACT PAGE ===== */
.contact-main {
    background: #000000;
    padding: 1rem 0 6rem 0;
}

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

.contact-form-wrapper h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.contact-intro {
    color: #E0E0E0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-form {
    background: rgba(11, 30, 57, 0.4);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(123, 191, 156, 0.2);
}

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

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

.form-group label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(123, 191, 156, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7BBF9C;
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #000000;
    color: #FFFFFF;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(123, 191, 156, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #7BBF9C;
    border-color: #7BBF9C;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #000000;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: #3DA9FC;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    background: rgba(11, 30, 57, 0.4);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(123, 191, 156, 0.2);
    height: fit-content;
}

.contact-info h3 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(123, 191, 156, 0.3);
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(123, 191, 156, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h4 {
    color: #7BBF9C;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: #E0E0E0;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.contact-details a:hover {
    color: #7BBF9C;
    text-decoration: underline;
}

.response-info {
    background: rgba(61, 169, 252, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 169, 252, 0.2);
    margin-top: 2rem;
}

.response-info h4 {
    color: #3DA9FC;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.response-info li {
    color: #E0E0E0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.response-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3DA9FC;
    font-weight: bold;
}

/* Contact FAQ */
.contact-faq {
    background: #0B1E39;
    padding: 6rem 0;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Form Validation Styles - Removed for consistent styling */

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease;
}

.notification-success {
    background: #7BBF9C;
}

.notification-error {
    background: #ff6b6b;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    background: #000000;
    padding: 1rem 0 6rem 0;
}

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

.legal-text h2 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(123, 191, 156, 0.3);
    padding-bottom: 1rem;
}

.legal-text h3 {
    color: #7BBF9C;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-text h4 {
    color: #3DA9FC;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.legal-text p {
    color: #E0E0E0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text a {
    color: #3DA9FC;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* ===== Q&A PAGE ===== */
.hero-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.qa-main {
    background: #000000;
    padding: 1rem 0 6rem 0;
}

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

.qa-item {
    background: rgba(11, 30, 57, 0.4);
    border: 1px solid rgba(123, 191, 156, 0.2);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.qa-item:hover {
    border-color: rgba(123, 191, 156, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 191, 156, 0.1);
}

.qa-question {
    color: #7BBF9C;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.qa-answer p {
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .qa-item {
        padding: 2rem;
    }
    
    .qa-question {
        font-size: 1.2rem;
    }
    
    .qa-answer p {
        font-size: 1rem;
    }
}
