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

:root {
    /* Color Palette from Logo */
    --orange-primary: #ec5625;
    --orange-secondary: #f6871f;
    --blue-primary: #0a90b4;
    --blue-dark: #005c83;
    --green: #559f68;
    --yellow-primary: #fbb337;
    --yellow-secondary: #f8b235;
    --navy-dark: #002a3d;
    --navy-light: #1f254b;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --black: #000000;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-dark);
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container .logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--navy-dark);
    font-weight: 400;
}

.righteous-regular {
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: var(--white) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 86, 37, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--navy-dark);
    color: var(--white);
}

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

/* Hero Section */
.hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background-color: #000000;
    background-image: url('images/3dswirl3b-wide-1000.png');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: var(--spacing-md);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Value Proposition */
.value-prop {
    padding: var(--spacing-xl) 0;
    background: #000000;
}

.value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.value-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.value-content p {
    font-size: 1.2rem;
    color: #e9ecef;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(248, 249, 250, 0.9);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--white);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

/* Stat icon gradients */
.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #ec5625, #f6871f);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #0a90b4, #005c83);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #559f68, #559f68);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #fbb337, #f8b235);
}

.stat-card:nth-child(5) .stat-icon {
    background: linear-gradient(135deg, #002a3d, #1f254b);
}

.stat-card:nth-child(6) .stat-icon {
    background: linear-gradient(135deg, #ec5625, #0a90b4);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-top: var(--spacing-xs);
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: #000000;
    background-image: url('images/3dswirl2b-wide-1000.jpg');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: #e9ecef;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

/* Feature icon gradients */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ec5625, #f6871f);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #0a90b4, #005c83);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #559f68, #559f68);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #fbb337, #f8b235);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #002a3d, #1f254b);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #ec5625, #0a90b4);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    background: #000000;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-info p {
    font-size: 1.1rem;
    color: #e9ecef;
    margin-bottom: var(--spacing-md);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #e9ecef;
}

/* Forms */
.contact-form, .waitlist-form {
    background: rgba(248, 249, 250, 0.9);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Waitlist Section */
.waitlist {
    padding: var(--spacing-xl) 0;
    background-color: #000000;
    background-image: url('images/3dswirl1a-wide-1000.jpg');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    color: var(--white);
}

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

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.waitlist-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.form-inline {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.form-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.benefit {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo {
    height: 50px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: var(--spacing-sm);
    }

    .nav-links a:not(.btn-primary) {
        display: none;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .form-inline {
        flex-direction: column;
    }

    .waitlist-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* Privacy Policy Page */
.privacy-policy-section {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
}

.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.privacy-policy-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--orange-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section {
    margin-bottom: var(--spacing-lg);
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--orange-primary);
}

.policy-section h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--blue-primary);
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-light);
}

.policy-section ul,
.policy-section ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.policy-section li {
    margin-bottom: var(--spacing-xs);
    color: var(--gray-light);
}

.policy-section a {
    color: var(--orange-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--blue-primary);
    text-decoration: underline;
}

.policy-section strong {
    color: var(--white);
    font-weight: 600;
}

.summary-section {
    background: rgba(248, 249, 250, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--orange-primary);
}

.summary-section h2 {
    margin-top: 0;
}

/* Special sections styling */
.dpa-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--orange-primary);
}

.appendix-section {
    margin-top: var(--spacing-lg);
}

/* SLA Table styling */
.sla-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
    background: rgba(248, 249, 250, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.sla-table thead {
    background: rgba(255, 107, 53, 0.2);
}

.sla-table th {
    padding: var(--spacing-sm);
    text-align: left;
    color: var(--orange-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--orange-primary);
}

.sla-table td {
    padding: var(--spacing-sm);
    border-bottom: 1px solid rgba(248, 249, 250, 0.1);
    color: var(--gray-light);
}

.sla-table tbody tr:last-child td {
    border-bottom: none;
}

.sla-table tbody tr:hover {
    background: rgba(248, 249, 250, 0.08);
}

@media (max-width: 768px) {
    .privacy-policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-content {
        padding: var(--spacing-md);
    }

    .sla-table {
        font-size: 0.9rem;
    }

    .sla-table th,
    .sla-table td {
        padding: var(--spacing-xs);
    }
}
