/* Global Nav CTA styles */
.desktop-nav-ctas {
    display: none;
    gap: 15px;
    align-items: center;
}
@media (min-width: 768px) {
    .desktop-nav-ctas {
        display: flex;
        margin-left: auto;
        margin-right: 20px;
    }
    .mobile-nav .nav-logo {
        margin-right: 20px;
    }
}
.ghost-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}
.ghost-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}
.solid-btn {
    background: #D4AF37;
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}
.solid-btn:hover {
    background: #FFD700;
}

/* Trust Badges Strip */
.trust-badges-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #ccc;
}
.trust-badge .material-symbols-outlined {
    color: #D4AF37;
    font-size: 1.2rem;
}

/* Compliance Timeline */
.compliance-timeline-container {
    background: rgba(6, 11, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.timeline-header h4 {
    margin: 0;
    font-size: 1.2rem;
}
.timeline-status-badge.critical {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.timeline-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
}
.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #D4AF37;
    width: 60%; /* Currently in Phase 3 */
    border-radius: 2px;
}
.timeline-marker {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #222;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: -5px;
    z-index: 2;
}
.timeline-marker.passed {
    background: #D4AF37;
    border-color: #D4AF37;
}
.timeline-marker.active {
    background: #000;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.timeline-marker.deadline {
    border-color: #ff6b6b;
}
.timeline-marker span {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    white-space: nowrap;
    color: #aaa;
}
/* Prevent cutoff for first and last edge items */
.timeline-marker.step-1 span {
    left: 0;
    transform: translateX(0);
}
.timeline-marker.step-4 span {
    left: auto;
    right: 0;
    transform: translateX(0);
}

.timeline-marker.active span {
    color: #fff;
    font-weight: 600;
}
.timeline-marker.deadline span {
    color: #ff6b6b;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: rgba(6, 11, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-weight: 500;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.faq-answer p {
    padding-bottom: 20px;
    color: #bbb;
    line-height: 1.6;
}
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px;
}
.faq-question[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}
.dropdown-icon {
    transition: transform 0.3s ease;
}

/* Enterprise Contact Mega-Section */
.mega-contact {
    padding-top: 80px;
    padding-bottom: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.contact-info p {
    color: #bbb;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.contact-method .material-symbols-outlined {
    font-size: 2rem;
    color: #D4AF37;
}
.contact-method strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}
.contact-form-container {
    background: rgba(6, 11, 25, 0.95);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row .form-group {
    flex: 1;
    min-width: 200px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #D4AF37;
}
.full-width {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    cursor: pointer;
}

/* Accessibility hidden elements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Light Mode SEO Components Overrides */
[data-theme="light"] .ghost-btn {
    color: var(--text-main);
    border-color: rgba(26, 84, 144, 0.4);
}
[data-theme="light"] .ghost-btn:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}
[data-theme="light"] .trust-badges-strip {
    background: rgba(26, 84, 144, 0.05);
    border-color: rgba(26, 84, 144, 0.15);
}
[data-theme="light"] .trust-badge {
    color: var(--text-muted);
}
[data-theme="light"] .compliance-timeline-container {
    background: rgba(250, 248, 240, 0.92);
    border-color: rgba(15, 45, 82, 0.12);
    box-shadow: 0 10px 30px rgba(15, 45, 82, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .timeline-header h4,
[data-theme="light"] .timeline-subtext {
    color: var(--text-main);
}
[data-theme="light"] .timeline-bar {
    background: rgba(26, 84, 144, 0.1);
}
[data-theme="light"] .timeline-marker {
    background: #fff;
    border-color: rgba(26, 84, 144, 0.3);
}
[data-theme="light"] .timeline-marker.active {
    background: #0f2d52;
}
[data-theme="light"] .timeline-marker span {
    color: var(--text-muted);
}
[data-theme="light"] .timeline-marker.active span {
    color: #0f2d52;
}
[data-theme="light"] .faq-item {
    background: rgba(250, 248, 240, 0.92);
    border-color: rgba(15, 45, 82, 0.1);
    box-shadow: 0 5px 20px rgba(15, 45, 82, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
[data-theme="light"] .faq-question {
    color: var(--text-main);
}
[data-theme="light"] .faq-answer p {
    color: var(--text-muted);
}
[data-theme="light"] .mega-contact {
    border-top-color: rgba(26, 84, 144, 0.15);
}
[data-theme="light"] .contact-info h2 {
    color: var(--text-main);
}
[data-theme="light"] .contact-info p {
    color: var(--text-muted);
}
[data-theme="light"] .contact-method strong {
    color: var(--text-main);
}
[data-theme="light"] .contact-form-container {
    background: rgba(250, 248, 240, 0.92);
    border-color: rgba(15, 45, 82, 0.12);
    box-shadow: 0 10px 30px rgba(15, 45, 82, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .form-group label {
    color: var(--text-muted);
}
[data-theme="light"] .form-group input, [data-theme="light"] .form-group select {
    background: rgba(250, 248, 240, 0.6);
    border-color: rgba(15, 45, 82, 0.15);
    color: var(--text-main);
}

/* Form Status Messages */
.form-status {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
    animation: fadeInStatus 0.3s ease;
}

.form-status.success {
    background: rgba(52, 168, 83, 0.15);
    color: #4ade80;
    border: 1px solid rgba(52, 168, 83, 0.3);
}

.form-status.error {
    background: rgba(234, 67, 53, 0.15);
    color: #f87171;
    border: 1px solid rgba(234, 67, 53, 0.3);
}

[data-theme="light"] .form-status.success {
    background: rgba(52, 168, 83, 0.1);
    color: #16a34a;
    border-color: rgba(52, 168, 83, 0.25);
}

[data-theme="light"] .form-status.error {
    background: rgba(234, 67, 53, 0.1);
    color: #dc2626;
    border-color: rgba(234, 67, 53, 0.25);
}

@keyframes fadeInStatus {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
