:root {
    --primary-color: #8b0a1a;
    --secondary-color: #660000;
    --accent-color: #ff3737;
    --text-color: #ffffff;
    --background-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(26, 26, 46, 0.9);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #8b0a1a 0%, #660000 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.crosshair-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.crosshair-overlay::before,
.crosshair-overlay::after {
    content: '';
    position: absolute;
    background: var(--accent-color);
    opacity: 0.15;
}

/* Vertical line */
.crosshair-overlay::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Horizontal line */
.crosshair-overlay::after {
    height: 2px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/* Circular elements */
.crosshair-overlay::before {
    box-shadow: 
        0 0 50px var(--accent-color),
        0 0 100px var(--accent-color);
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    pointer-events: none;
}

/* Small targeting dots */
.hero .container::before,
.hero .container::after {
    content: '+';
    position: absolute;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: bold;
    opacity: 0.4;
}

.hero .container::before {
    top: 25%;
    right: 25%;
}

.hero .container::after {
    bottom: 25%;
    left: 25%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
}

.classified {
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mission-brief {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 2rem;
}

.security-clearance {
    display: flex;
    gap: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.capabilities {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.capabilities h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
}

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

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.7);
}

.clearance-form {
    padding: 4rem 0;
    background: var(--primary-color);
}

.clearance-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

#ghl-form-1AuYii2qu2x1bbRQTERv {
    min-height: 700px;
}

footer {
    background: var(--secondary-color);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-info {
    display: flex;
    gap: 2rem;
}

.encryption-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .capability-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.mission-brief,
.security-clearance {
    animation: fadeIn 1s ease-out forwards;
}

.services {
    padding: 5rem 5%;
    background-color: #16162e;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
}

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

.service-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission {
    padding: 5rem 5%;
    background-color: var(--primary-color);
}

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

.mission h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact {
    padding: 5rem 5%;
    background-color: #16162e;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: var(--secondary-color);
    border: none;
    color: var(--text-color);
}

form button {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ff6b81;
}

.ai-workforce {
    padding: 5rem 5%;
    background-color: #16162e;
}

.ai-workforce h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
}

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

.workforce-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workforce-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.2);
}

.workforce-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.workforce-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.features-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.platform-features {
    text-align: center;
    margin: 4rem 0;
}

.platform-features h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 2rem;
}

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

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

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.cta-section h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

footer {
    background-color: var(--primary-color);
    padding: 2rem 5%;
    text-align: center;
}

.social-links {
    margin-top: 1rem;
}

.social-icon {
    color: var(--text-color);
    margin: 0 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

.pricing {
    padding: 5rem 5%;
    background-color: var(--primary-color);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
}

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

.pricing-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.2);
}

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

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 1rem;
}

.pricing-cta {
    display: block;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pricing-cta:hover {
    background-color: #ff6b81;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.demo-form {
    padding: 5rem 5%;
    background-color: #16162e;
}

.demo-form h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background-color: var(--secondary-color);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 5px;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

#phone_field {
    transition: all 0.3s ease;
}

#phone_field input[type="tel"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #4b4b6e;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

#phone_field input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#phone_field input[type="tel"]:focus {
    outline: none;
    border-color: #e94560;
}

.demo-cta {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.demo-cta:hover {
    background-color: #ff6b81;
}

.consent-options {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

.consent-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.consent-link:hover {
    opacity: 0.8;
}

.consent-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-style: italic;
}

.contact-preference {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.contact-preference label {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.radio-container:hover {
    background: rgba(233, 69, 96, 0.1);
    border-radius: 5px;
}

.radio-container input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #4b4b6e;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.radio-custom:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #e94560;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.2s ease;
}

.radio-container input[type="radio"]:checked + .radio-custom {
    border-color: #e94560;
}

.radio-container input[type="radio"]:checked + .radio-custom:after {
    transform: translate(-50%, -50%) scale(1);
}

/* Legal Pages Styling */
.legal-content {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.legal-content h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-section ul {
    list-style-type: none;
    padding-left: 0;
}

.legal-section ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

@media screen and (max-width: 768px) {
    .legal-content {
        margin: 100px auto 40px;
    }

    .legal-section {
        padding: 1.5rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    padding: 1rem;
    z-index: 1000;
    border-top: 1px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--text-color);
}

.cookie-decline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

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

    .hero-visual {
        display: none;
    }

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

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

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

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

    .popular-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .checkbox-group {
        align-items: flex-start;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
}

/* Preferences Page Styles */
.preferences-content {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.preferences-section {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.preferences-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.preference-group {
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    padding-bottom: 1.5rem;
}

.preference-group h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.checkbox-group, .radio-group {
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
    margin-top: 0.3rem;
}

.checkbox-group label,
.radio-group label {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.data-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: var(--secondary-dark);
    color: var(--text-color);
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.action-button.warning {
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid var(--accent-color);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.save-button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-button:hover {
    background: #ff6b81;
    transform: translateY(-2px);
}

/* Sessions List */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 4px;
}

.session-info h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.session-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.session-action {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-action:hover {
    background: rgba(233, 69, 96, 0.1);
}

/* Privacy Dashboard */
.privacy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: rgba(26, 26, 46, 0.3);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.stat-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-card p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .preferences-content {
        margin: 100px auto 40px;
    }

    .preferences-section {
        padding: 1.5rem;
    }

    .privacy-stats {
        grid-template-columns: 1fr;
    }

    .session-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        text-align: center;
    }
}

/* Privacy Dashboard Styles */
.cookie-details {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.cookie-type {
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-info {
    cursor: help;
    position: relative;
}

.cookie-info[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    z-index: 1;
    margin-right: 10px;
}

.cookie-description {
    font-size: 0.9em;
    color: #888;
    margin-left: 25px;
}

.encryption-status {
    background: linear-gradient(45deg, #1a1a2e, #4b4b6e);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-icon {
    font-size: 1.5em;
}

.encryption-info {
    color: #888;
    font-size: 0.9em;
    margin-left: 35px;
}

.privacy-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.metric-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--accent-color);
}

.security-score {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.score-bar {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00ff88);
    transition: width 0.3s ease;
}

.score-value {
    font-weight: bold;
    color: var(--accent-color);
}

.access-log {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.access-log li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #888;
}

.access-log span {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-metrics {
        grid-template-columns: 1fr;
    }
    
    .cookie-info[data-tooltip]:hover::after {
        right: 0;
        top: 100%;
        transform: none;
        margin: 5px 0 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Omnichannel Section */
.omnichannel {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #8b0a1a 0%, #660000 100%);
    color: #ffffff;
}

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

.omnichannel-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.omnichannel-card:hover {
    transform: translateY(-5px);
}

.omnichannel-card i {
    font-size: 2.5rem;
    color: #ff3737;
    margin-bottom: 1rem;
}

.omnichannel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.channel-features,
.intelligence-features,
.security-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.channel-features li,
.intelligence-features li,
.security-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.channel-features li i,
.intelligence-features li i,
.security-features li i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #ff3737;
}

/* Updated Form Styles */
.form-group.consent {
    margin-top: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ffffff;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.checkbox-container .checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff3737;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
}

.checkbox-container input:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #ff3737;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#preferred_channel {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #4b4b6e;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

#preferred_channel option {
    background: #1a1a2e;
    color: #ffffff;
}

/* GHL Form Styling */
.ghl-form-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    padding: 2rem;
}

/* Override GHL default styles */
.ghl-form-wrapper input,
.ghl-form-wrapper textarea,
.ghl-form-wrapper select {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(233, 69, 96, 0.2) !important;
    color: var(--text-color) !important;
    border-radius: 4px !important;
    padding: 0.8rem !important;
    font-family: 'Roboto', sans-serif !important;
}

.ghl-form-wrapper input:focus,
.ghl-form-wrapper textarea:focus,
.ghl-form-wrapper select:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.2) !important;
}

.ghl-form-wrapper button {
    background: var(--accent-color) !important;
    color: var(--text-color) !important;
    border: none !important;
    padding: 0.8rem 2rem !important;
    border-radius: 4px !important;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

.ghl-form-wrapper button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3) !important;
}

.ghl-form-wrapper label {
    color: var(--text-color) !important;
    font-family: 'Roboto', sans-serif !important;
    margin-bottom: 0.5rem !important;
}

/* GHL Chat Widget Styling */
#ghl-chat-widget {
    border: 2px solid var(--accent-color) !important;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3) !important;
}

#ghl-chat-widget .chat-header {
    background: linear-gradient(135deg, #1a0505 0%, #2d0808 100%) !important;
    border-bottom: 2px solid var(--accent-color) !important;
}

#ghl-chat-widget .chat-message-agent {
    background: rgba(233, 69, 96, 0.1) !important;
    border: 1px solid rgba(233, 69, 96, 0.2) !important;
}

#ghl-chat-widget .chat-input {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(233, 69, 96, 0.2) !important;
}

/* GHL Calendar Styling */
.ghl-calendar-wrapper {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(233, 69, 96, 0.2) !important;
    border-radius: 8px !important;
}

.ghl-calendar-day.selected {
    background: var(--accent-color) !important;
}

.ghl-calendar-time-slot:hover {
    background: rgba(233, 69, 96, 0.1) !important;
}

/* GHL Form Button Customization */
#ghl-form-1AuYii2qu2x1bbRQTERv button,
#ghl-form-1AuYii2qu2x1bbRQTERv .button,
#ghl-form-1AuYii2qu2x1bbRQTERv [type="submit"] {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.2) !important;
}

#ghl-form-1AuYii2qu2x1bbRQTERv button:hover,
#ghl-form-1AuYii2qu2x1bbRQTERv .button:hover,
#ghl-form-1AuYii2qu2x1bbRQTERv [type="submit"]:hover {
    background-color: #d13651 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3) !important;
}

/* GHL Form Input Fields */
#ghl-form-1AuYii2qu2x1bbRQTERv input,
#ghl-form-1AuYii2qu2x1bbRQTERv select,
#ghl-form-1AuYii2qu2x1bbRQTERv textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid var(--secondary-color) !important;
    color: #ffffff !important;
    border-radius: 5px !important;
}

#ghl-form-1AuYii2qu2x1bbRQTERv input:focus,
#ghl-form-1AuYii2qu2x1bbRQTERv select:focus,
#ghl-form-1AuYii2qu2x1bbRQTERv textarea:focus {
    border-color: var(--accent-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.2) !important;
}

/* GHL Form Labels */
#ghl-form-1AuYii2qu2x1bbRQTERv label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Roboto', sans-serif !important;
}

/* Form Section Styling */
.demo-form {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #8b0a1a 0%, #660000 100%);
    color: #ffffff;
}

.demo-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #ff3737;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.demo-form .section-description {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Navigation Styles */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

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

/* Make nav responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }
}

.mission-section {
    background: linear-gradient(135deg, #660000 0%, #8b0a1a 100%);
    padding: 6rem 0;
}

.mission-card {
    background: linear-gradient(135deg, #8b0a1a 0%, #660000 100%);
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.ai-workforce {
    background: linear-gradient(135deg, #660000 0%, #8b0a1a 100%);
    padding: 6rem 0;
}

.pricing-section {
    background: linear-gradient(135deg, #8b0a1a 0%, #660000 100%);
    padding: 6rem 0;
}

.contact-section {
    background: linear-gradient(135deg, #660000 0%, #8b0a1a 100%);
    padding: 6rem 0;
}

/* Contact Section with Map */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0505 0%, #2d0808 100%);
}

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

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    margin-bottom: 2rem;
}

#map {
    width: 100%;
    height: 100%;
}

.contact-info {
    color: var(--text-color);
}

.contact-details {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.contact-details h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.contact-details p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: var(--accent-color);
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.map-info-window {
    padding: 1rem;
    color: #000000;
}

.map-info-window h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.map-info-window p {
    margin: 0.25rem 0;
}

.map-info-window a {
    color: var(--accent-color);
    text-decoration: none;
}

.map-info-window a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}

/* GHL Form Custom Styling */
iframe#ghl-form-1AuYii2qu2x1bbRQTERv {
    background: transparent !important;
}

/* Custom CSS to inject into GHL form */
<style>
.formBuilder {
    background: rgba(26, 5, 5, 0.95) !important;
    color: #ffffff !important;
}

.formBuilder-wrapper {
    background: transparent !important;
}

/* Form inputs */
.formBuilder input[type="text"],
.formBuilder input[type="email"],
.formBuilder input[type="tel"],
.formBuilder input[type="number"],
.formBuilder textarea,
.formBuilder select {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(233, 69, 96, 0.2) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 12px !important;
    font-family: 'Roboto', sans-serif !important;
}

/* Input focus state */
.formBuilder input:focus,
.formBuilder textarea:focus,
.formBuilder select:focus {
    border-color: #e94560 !important;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.2) !important;
    outline: none !important;
}

/* Labels */
.formBuilder label {
    color: #ffffff !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
}

/* Submit button */
.formBuilder button[type="submit"],
.formBuilder .submit-button {
    background: #e94560 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Button hover state */
.formBuilder button[type="submit"]:hover,
.formBuilder .submit-button:hover {
    background: #d13651 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3) !important;
}

/* Radio and checkbox inputs */
.formBuilder input[type="radio"],
.formBuilder input[type="checkbox"] {
    accent-color: #e94560 !important;
}

/* Radio and checkbox labels */
.formBuilder .radio-label,
.formBuilder .checkbox-label {
    color: #ffffff !important;
}

/* Error messages */
.formBuilder .error-message {
    color: #e94560 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.9em !important;
    margin-top: 4px !important;
}

/* Success messages */
.formBuilder .success-message {
    color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.1) !important;
    border: 1px solid rgba(76, 175, 80, 0.2) !important;
    padding: 12px !important;
    border-radius: 4px !important;
    margin-top: 16px !important;
}

/* Form sections */
.formBuilder .form-section {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(233, 69, 96, 0.2) !important;
    border-radius: 8px !important;
    padding: 24px !important;
    margin-bottom: 24px !important;
}

/* Section headings */
.formBuilder .section-heading {
    color: #e94560 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.5em !important;
    margin-bottom: 16px !important;
}

/* Progress bar */
.formBuilder .progress-bar {
    background: rgba(233, 69, 96, 0.2) !important;
}

.formBuilder .progress-bar-fill {
    background: #e94560 !important;
}

/* Required field asterisk */
.formBuilder .required-asterisk {
    color: #e94560 !important;
}

/* Placeholder text */
.formBuilder input::placeholder,
.formBuilder textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Dropdown options */
.formBuilder select option {
    background: #1a0505 !important;
    color: #ffffff !important;
}

/* Form grid layout */
.formBuilder .form-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .formBuilder .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .formBuilder button[type="submit"],
    .formBuilder .submit-button {
        width: 100% !important;
    }
}
</style>
