* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.fitpa-logo {
    width: 120px;
    height: 45px;
    transition: all 0.3s ease;
}

.fitpa-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 30px 60px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.back-button {
    background: rgba(255, 255, 255, 0.1);
    color: #00E5FF;
    padding: 12px 24px;
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #00E5FF;
    background: rgba(0, 229, 255, 0.1);
}

.cta-nav {
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.5);
    background: linear-gradient(135deg, #40C4FF 0%, #2196F3 100%);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 30px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d1421 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-container {
    display: inline-block;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 229, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.hero-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 229, 255, 0.3);
    border-color: rgba(0, 229, 255, 0.5);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 60px 30px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00E5FF, #2196F3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 229, 255, 0.5);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.feature-card p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Technology Section */
.technology {
    padding: 60px 30px;
    background: #0a0a0a;
}

/* Development Status Section */
.development-status {
    padding: 60px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.status-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.status-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.development-icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
}

.status-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00E5FF;
    font-weight: 600;
}

.status-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: #00FF88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.timeline-item.in-progress .timeline-marker {
    background: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(0, 229, 255, 0.5);
}

.timeline-content {
    text-align: left;
    flex: 1;
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.timeline-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.timeline-item.completed .timeline-status {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.timeline-item.in-progress .timeline-status {
    background: rgba(0, 229, 255, 0.2);
    color: #00E5FF;
}

.timeline-item.upcoming .timeline-status {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.beta-call-to-action {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.beta-call-to-action h4 {
    color: #00E5FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.beta-call-to-action p {
    color: #ccc;
    margin-bottom: 20px;
}

/* Beta Program Section */
.beta-program {
    padding: 60px 30px;
    background: #0a0a0a;
}

.beta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.beta-info h3 {
    color: #00E5FF;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.beta-info p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.beta-benefits {
    list-style: none;
    margin: 25px 0;
}

.beta-benefits li {
    color: #ccc;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.beta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF88;
    font-weight: bold;
}

.beta-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.beta-form h3 {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group select {
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    border-color: #00E5FF;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label a {
    color: #00E5FF;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00FF88;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
}

.form-success-animation {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    margin-top: 20px;
}

.form-success-animation.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: bounceIn 0.6s ease-out 0.2s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.btn-loading {
    display: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.tech-card {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.3);
}

.tech-metric {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00E5FF;
    margin-bottom: 10px;
}

.tech-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tech-description {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Demo Section */
.demo {
    padding: 60px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.demo-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.demo-preview {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.demo-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.demo-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 229, 255, 0.05) 50%, transparent 60%);
    background-size: 40px 40px;
    animation: slideBackground 10s linear infinite;
}

/* Partnerships Section */
.partnerships {
    padding: 60px 30px;
    background: #0a0a0a;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partnership-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.partnership-card h3 {
    color: #00E5FF;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.partnership-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partnership-features {
    list-style: none;
    margin-top: 20px;
}

.partnership-features li {
    color: #999;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.partnership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF88;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 60px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

/* Privacy Policy and Terms Sections */
.privacy-policy,
.terms-conditions {
    padding: 60px 30px;
    background: #0a0a0a;
}

.privacy-policy {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    color: #00E5FF;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 20px 0 12px 0;
    font-weight: 500;
}

.legal-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.legal-list {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.legal-list li {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 0.9rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00E5FF;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section a {
    color: #00E5FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #40C4FF;
    text-decoration: underline;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(0, 229, 255, 0.5);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #00E5FF;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    color: #999;
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    color: #ccc;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF88;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 30px 20px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #00E5FF;
    font-size: 1.1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #00E5FF;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    margin-bottom: 15px;
    line-height: 1.6;
}

.parent-company {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.parent-company a {
    color: #00E5FF;
    text-decoration: none;
    font-weight: 500;
    display: inline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

@keyframes slideBackground {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(100px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .feature-content {
        flex: none;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .section-title {
        font-size: 2rem;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 20px 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features,
    .technology,
    .demo,
    .partnerships,
    .pricing,
    .privacy-policy,
    .terms-conditions {
        padding: 40px 20px;
    }

    .page-header {
        padding: 100px 20px 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .beta-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-marker {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .timeline-content {
        text-align: center;
    }

    .timeline-item:not(:last-child)::before {
        display: none;
    }

    .development-icon {
        width: 80px;
        height: 80px;
    }

    .status-content {
        padding: 30px 20px;
    }

    .beta-form-container {
        padding: 25px 20px;
    }

    .feature-card,
    .tech-card,
    .partnership-card,
    .pricing-card {
        padding: 25px 20px;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .demo-container {
        padding: 20px;
    }

    .demo-preview {
        padding: 20px;
        min-height: 300px;
    }
}

/* Interactive Elements */
.interactive-demo {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.demo-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.metric {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00E5FF;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #999;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00FF88;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ============================================
   Multi-Page Navigation Styles
   ============================================ */

/* Active nav link */
.nav-links a.active {
    color: #00E5FF;
    background: rgba(0, 229, 255, 0.1);
}

/* Nav CTA button */
.nav-cta {
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4) !important;
    background: linear-gradient(135deg, #40C4FF 0%, #2196F3 100%) !important;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    color: #999;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #666;
}

.breadcrumb a {
    color: #00E5FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #40C4FF;
}

.breadcrumb li[aria-current="page"] {
    color: #ccc;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    max-width: 700px;
    margin: -20px auto 40px;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   FAQ Section Styles
   ============================================ */

.faq-section {
    padding: 60px 30px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
}

.faq-item[open] {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.02);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #00E5FF;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: #ccc;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* ============================================
   Features Overview Section
   ============================================ */

.features-overview {
    padding: 60px 30px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Technology Highlights */
.technology-highlights {
    padding: 60px 30px;
    background: #0a0a0a;
}

/* ============================================
   Feature Detail Pages
   ============================================ */

.feature-detail {
    padding: 60px 30px;
    background: #0a0a0a;
}

.feature-detail.alt-bg {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-detail-grid.reverse {
    direction: rtl;
}

.feature-detail-grid.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-detail-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.feature-lead {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid rgba(0, 229, 255, 0.5);
}

.highlight-item h4 {
    color: #00E5FF;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-item p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-detail-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: #ccc;
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF88;
    font-weight: bold;
}

.feature-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-detail-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 229, 255, 0.2));
}

/* Device Grid */
.device-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.device-brand {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.device-brand strong {
    color: #00E5FF;
    display: block;
    margin-bottom: 5px;
}

.device-brand span {
    color: #999;
    font-size: 0.85rem;
}

/* Conversation Examples */
.conversation-examples {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.conversation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-message,
.ai-message {
    padding: 15px 20px;
    border-radius: 15px;
    max-width: 90%;
    font-size: 0.95rem;
    line-height: 1.6;
}

.user-message {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.ai-message {
    background: rgba(0, 229, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(0, 229, 255, 0.2);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #0d1421 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Technology Page Specific
   ============================================ */

.tech-metrics-section {
    padding: 60px 30px;
    background: #0a0a0a;
}

.tech-grid.large .tech-card {
    padding: 35px;
}

.tech-detail-section {
    padding: 60px 30px;
    background: #0a0a0a;
}

.tech-detail-section.alt-bg {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.tech-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-detail-grid.reverse {
    direction: rtl;
}

.tech-detail-grid.reverse > * {
    direction: ltr;
}

.tech-detail-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.tech-lead {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tech-component {
    margin-bottom: 25px;
}

.tech-component h3 {
    color: #00E5FF;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-component p {
    color: #999;
    line-height: 1.6;
}

.tech-detail-visual img {
    max-width: 100%;
    height: auto;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.security-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-item h4 {
    color: #00E5FF;
    margin-bottom: 10px;
    font-size: 1rem;
}

.security-item p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.security-shield {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
}

.shield-icon {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #00E5FF;
    margin-bottom: 10px;
}

.shield-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.integration-category {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.integration-category h3 {
    color: #00E5FF;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.integration-category ul {
    list-style: none;
}

.integration-category li {
    color: #ccc;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.integration-category li:last-child {
    border-bottom: none;
}

/* Architecture Visual */
.tech-architecture {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.arch-layer {
    background: rgba(0, 229, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
}

.arch-layer h4 {
    color: #00E5FF;
    margin-bottom: 5px;
    font-size: 1rem;
}

.arch-layer span {
    color: #999;
    font-size: 0.85rem;
}

.arch-arrow {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #00E5FF, rgba(0, 229, 255, 0.3));
    margin: 0 auto;
}

/* ============================================
   Beta Page Specific
   ============================================ */

.beta-timeline {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.beta-timeline h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timeline-mini {
    display: flex;
    gap: 20px;
}

.timeline-mini-item {
    background: rgba(0, 229, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    flex: 1;
    text-align: center;
}

.timeline-date {
    display: block;
    color: #00E5FF;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-event {
    color: #ccc;
    font-size: 0.9rem;
}

.beta-benefits li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.beta-benefits li strong {
    color: #fff;
}

.beta-benefits li span {
    color: #999;
    font-size: 0.9rem;
}

/* Form enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-full {
    width: 100%;
}

.required {
    color: #FF6B6B;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    padding: 60px 30px;
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method h3 {
    color: #00E5FF;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-method p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-method a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: #00E5FF;
}

.company-info {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info h3 {
    color: #fff;
    margin-bottom: 15px;
}

.company-info p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-link {
    color: #00E5FF;
    text-decoration: none;
    font-weight: 500;
}

.company-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
}

/* Response Section */
.response-section {
    padding: 60px 30px;
}

.response-section.alt-bg {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.response-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.response-time {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00E5FF;
    margin-bottom: 10px;
}

.response-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.response-item p {
    color: #999;
    font-size: 0.9rem;
}

/* ============================================
   Partnerships Page
   ============================================ */

.partnerships-section {
    padding: 60px 30px;
    background: #0a0a0a;
}

.partnership-icon {
    margin-bottom: 20px;
}

.partnership-icon img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 5px 15px rgba(0, 229, 255, 0.3));
}

.partnership-card .btn-secondary {
    margin-top: 20px;
    display: inline-block;
}

.why-partner-section {
    padding: 60px 30px;
}

.why-partner-section.alt-bg {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.2);
}

.benefit-item h3 {
    color: #00E5FF;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partners-section {
    padding: 60px 30px;
    background: #0a0a0a;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo span {
    color: #ccc;
    font-weight: 600;
    font-size: 1.2rem;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-content-section {
    padding: 60px 30px;
    background: #0a0a0a;
}

.legal-updated {
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
}

.legal-section h2 {
    color: #00E5FF;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.legal-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.legal-warning p {
    color: #FFC107;
    margin: 0;
}

.contact-list li::before {
    display: none;
}

.contact-list li {
    padding-left: 0;
}

/* Footer list styles */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

/* ============================================
   Mobile Responsive Additions
   ============================================ */

@media (max-width: 1024px) {
    .feature-detail-grid,
    .tech-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-detail-grid.reverse,
    .tech-detail-grid.reverse {
        direction: ltr;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .response-grid {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .device-grid {
        grid-template-columns: 1fr;
    }

    .timeline-mini {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .partner-logos {
        gap: 20px;
    }

    .partner-logo {
        padding: 20px 30px;
    }
}

/* ============================================
   How It Works Page Styles
   ============================================ */
.how-it-works-section {
    padding: 60px 30px;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 40px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 229, 255, 0.02) 100%);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 70px;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.3) 0%, transparent 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00E5FF 0%, #00B8D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    flex-shrink: 0;
}

.step-content h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.step-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.step-details h3 {
    color: #00E5FF;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-details ul {
    list-style: none;
}

.step-details li {
    color: #ccc;
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.5;
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00E5FF;
}

.step-details li strong {
    color: #fff;
}

.step-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.time-icon {
    color: #00E5FF;
    font-weight: bold;
}

.step-cta {
    margin-top: 25px;
}

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.integration-badge {
    background: rgba(0, 229, 255, 0.15);
    color: #00E5FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Difference Section */
.difference-section {
    padding: 60px 30px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.difference-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-item h3 {
    color: #00E5FF;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.difference-item p {
    color: #999;
    line-height: 1.6;
}

/* ============================================
   Comparison Page Styles
   ============================================ */
.comparison-section {
    padding: 60px 30px;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(0, 229, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table th.fitpa-column {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0.1) 100%);
    color: #00E5FF;
}

.comparison-table td {
    color: #ccc;
    vertical-align: top;
}

.comparison-table td:first-child {
    color: #fff;
    font-weight: 500;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-icon {
    color: #00FF88;
    font-weight: bold;
}

.cross-icon {
    color: #FF5252;
}

.partial-icon {
    color: #FFB74D;
}

.comparison-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.comparison-intro p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Key Differences Cards */
.key-differences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.key-diff-card {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(0, 229, 255, 0.02) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.key-diff-card h3 {
    color: #00E5FF;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.key-diff-card p {
    color: #999;
    line-height: 1.6;
}

.key-diff-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Responsive How It Works */
@media (max-width: 768px) {
    .step-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .step-content h2 {
        font-size: 1.3rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .key-differences {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
}

/* Product Preview Section */
.product-preview {
    padding: 80px 30px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.product-preview .section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.preview-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-item-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.preview-item-large:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preview-gallery {
    position: relative;
    width: 100%;
    background: #0a0a0a;
    border-radius: 8px 8px 0 0;
}

.gallery-images-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-images {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(0, 229, 255, 0.3);
    border-color: #00E5FF;
    color: #00E5FF;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-img.active {
    position: relative;
    opacity: 1;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    background: #0a0a0a;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    border-color: #00E5FF;
    background: rgba(0, 229, 255, 0.3);
}

.gallery-dot.active {
    background: #00E5FF;
    border-color: #00E5FF;
}

.preview-caption {
    padding: 25px;
}

.preview-caption h3 {
    color: #00E5FF;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.preview-caption p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Product Preview */
@media (max-width: 900px) {
    .preview-grid-two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-preview {
        padding: 60px 20px;
    }

    .preview-caption {
        padding: 20px;
    }

    .preview-caption h3 {
        font-size: 1.1rem;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   Device Integration Strip
   ============================================ */
.integration-strip {
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.integration-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.integration-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.integration-logo {
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #fff;
}

.integration-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.integration-logo img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .integration-strip {
        padding: 30px 20px;
    }

    .integration-logos {
        gap: 25px;
    }

    .integration-logo img {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .integration-logos {
        gap: 20px;
    }

    .integration-logo img {
        height: 18px;
    }
}

/* ============================================
   Lightbox Modal Styles
   ============================================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 229, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 10px;
}

.lightbox-close:hover {
    color: #00E5FF;
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-arrow:hover {
    background: rgba(0, 229, 255, 0.3);
    border-color: #00E5FF;
    color: #00E5FF;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.95rem;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Make gallery images clickable */
.gallery-img {
    cursor: pointer;
}

.gallery-img:hover {
    opacity: 0.9;
}

.gallery-img.active:hover {
    opacity: 0.95;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
    }

    .lightbox-arrow svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-image {
        max-height: 80vh;
    }
}