:root {
    --primary: #00F0FF;
    --secondary: #8B5CF6;
    --accent: #FF6B9D;
    --dark: #0B0D17;
    --darker: #050609;
    --gray: #8B92A7;
    --light-gray: #1A1E2E;
    --lighter-gray: #252B3D;
    --white: #FFFFFF;
    --purple: #8B5CF6;
    --gradient-1: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
    --gradient-2: linear-gradient(135deg, #8B5CF6 0%, #FF6B9D 100%);
    --gradient-3: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
    --gradient-4: linear-gradient(135deg, #00F0FF 0%, #00D9FF 50%, #8B5CF6 100%);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: var(--darker);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 13, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 0.6s ease-out;
    min-height: 70px;
    box-sizing: border-box;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)); }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

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

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

/* Dropdown Styles */
.nav-links .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.dropdown-toggle:hover {
    color: var(--primary);
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: var(--darker);
    border: 1px solid var(--lighter-gray);
    border-radius: 12px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
    z-index: 1000;
    pointer-events: none;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    padding-left: 1.75rem;
}

.dropdown-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    flex-shrink: 0;
    position: relative;
}

.mobile-menu-toggle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s, transform 0.2s;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.mobile-menu-toggle:hover img {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    opacity: 0.6;
}

.mobile-menu-toggle:active img {
    transform: scale(0.95);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 6, 9, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    pointer-events: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--lighter-gray);
    overflow-y: auto;
    z-index: 10000;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--primary);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--lighter-gray);
}

.mobile-dropdown > .mobile-dropdown-toggle {
    border-bottom: 1px solid var(--lighter-gray);
}

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

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu li {
    margin: 0;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 2.25rem;
}

.mobile-menu-btn {
    margin-top: 1rem;
    text-align: center;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
}

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

.btn-secondary:hover {
    background: var(--lighter-gray);
    border-color: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Demo Section */
.demo-section {
    padding: 6rem 2rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: -400px;
    left: -400px;
    opacity: 0.05;
}

.demo-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-content h2 {
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.demo-content p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.demo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    position: relative;
}

.demo-image {
    width: 100%;
    max-height: 768px;
    max-width: 1368px;
    aspect-ratio: 16/9;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.demo-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.demo-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 240, 255, 0.2);
}

.demo-image:hover::before {
    opacity: 1;
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Feature Section */
.features-section {
    padding: 6rem 2rem;
    background: var(--darker);

}

.coming-soon-section {
    padding: 8rem 2rem;
    background: var(--darker);
}

.coming-soon-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.coming-soon-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid var(--lighter-gray);
    opacity: 0.8;
}

.coming-soon-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.coming-soon-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.coming-soon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.coming-soon-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #8B5CF6;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--lighter-gray);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: var(--lighter-gray);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}


.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.benefits-content.reverse {
    direction: rtl;
}

.benefits-content.reverse > * {
    direction: ltr;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefits-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid var(--lighter-gray);
}

.benefits-list li:hover {
    background: var(--lighter-gray);
    border-color: var(--primary);
    transform: translateX(10px);
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefits-image {
    width: 100%;
    height: 500px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

/* Integration Section */
.integration-section {
    padding: 6rem 2rem;
    background: var(--darker);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--lighter-gray);
    border-bottom: 1px solid var(--lighter-gray);
}

.integration-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-3);
    border-radius: 50%;
    bottom: -300px;
    right: -200px;
    opacity: 0.1;
}

.integration-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.integration-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.integration-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.integration-logo {
    background: var(--light-gray);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid var(--lighter-gray);
    min-height: 140px;
    width: 100%;
    max-width: 160px;
    gap: 0.75rem;
}

.integration-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    transition: all 0.3s;
    opacity: 0.9;
}

.integration-logo img[src=""],
.integration-logo img:not([src]) {
    display: none;
}

.integration-label {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.integration-logo.text-only {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    flex-direction: row;
    min-height: 100px;
}

.integration-logo.text-only .integration-label {
    display: none;
}

.integration-logo:hover {
    background: var(--lighter-gray);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.integration-logo:hover img {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 2rem;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.use-cases-tabs {
    max-width: 1200px;
    margin: 0px auto 30px auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.use-case-tab-btn {
    padding: 1rem 2rem;
    background: var(--light-gray);
    color: var(--white);
    border: 2px solid var(--lighter-gray);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.use-case-tab-btn:hover {
    border-color: var(--primary);
    background: var(--lighter-gray);
}

.use-case-tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

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

.use-case-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.use-case-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.use-case-features li::before {
    content: '→';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.use-case-image {
    width: 100%;
    height: 400px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.use-case-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.use-case-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 240, 255, 0.2);
}

.use-case-image:hover::before {
    opacity: 1;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--darker);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--lighter-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--lighter-gray);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Outfit', serif;
}

.testimonial-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 240, 255, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    left: -250px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--lighter-gray);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--white);
}

.faq-question:hover {
    background: var(--lighter-gray);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

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

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

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

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

/* Footer */
footer {
    background: var(--darker);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--lighter-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .legal-container,
    .footer-content,
    .features-grid,
    .testimonials-grid {
        max-width: 1440px;
    }
}

/* Desktop (1024px - 1279px) */
@media (max-width: 1279px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    /* Dropdown adjustments for tablets */
    .dropdown-menu {
        min-width: 150px;
        margin-top: 0.75rem;
    }
    
    .dropdown-menu a {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    nav {
        padding: 1.25rem 1.5rem;
        min-height: 65px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .nav-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        padding: 5rem 2rem 3rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .demo-image {
        width: 100%;
        max-width: 450px;
        aspect-ratio: 1.4 / 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .benefits-content {
        gap: 3rem;
    }
    
    .benefits-image {
        height: 400px;
    }
    
    .coming-soon-section {
        padding: 5rem 2rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .integration-content h2 {
        font-size: 2.5rem;
    }
    
    .use-case-image {
        height: 350px;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 6rem 1.5rem 3rem;
    }
}

/* Mobile (640px - 767px) */
@media (max-width: 767px) {
    nav {
        padding: 1rem 1.25rem;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.4rem;
        gap: 0.6rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-actions {
        gap: 0.75rem;
        display: flex !important;
    }
    
    .nav-actions .btn {
        display: none !important;
    }
    
    .nav-actions .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }
    
    .hero {
        padding: 4rem 1.5rem 2.5rem;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .demo-section {
        padding: 4rem 1.5rem;
    }
    
    .demo-content h2 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
    
    .demo-tabs {
        gap: 0.75rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .demo-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1.4 / 1;
    }
    
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .benefits-section {
        padding: 4rem 1.5rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .benefits-text h2,
    .benefits-text h3 {
        font-size: 2rem;
    }
    
    .benefits-image {
        height: 300px;
    }
    
    .integration-section {
        padding: 4rem 1.5rem;
    }
    
    .integration-content h2 {
        font-size: 2rem;
    }
    
    .integration-content p {
        font-size: 1rem;
    }
    
    .integration-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.25rem;
    }
    
    .integration-logo {
        padding: 1.25rem 0.75rem;
        min-height: 130px;
        max-width: 140px;
    }
    
    .integration-logo img {
        width: 48px;
        height: 48px;
    }
    
    .integration-label {
        font-size: 0.85rem;
    }
    
    .integration-logo.text-only {
        font-size: 1rem;
        min-height: 90px;
    }
    
    .use-cases-section {
        padding: 4rem 1.5rem;
    }
    
    .tab-buttons {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .use-case-tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .tab-content.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-case-content h3 {
        font-size: 1.5rem;
    }
    
    .use-case-image {
        height: 300px;
    }
    
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .faq-section {
        padding: 4rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
    
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coming-soon-section {
        padding: 4rem 1.5rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .coming-soon-card {
        padding: 2rem;
    }
    
    .legal-section {
        padding: 5rem 1rem 3rem;
    }
    
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-intro p {
        font-size: 1rem;
    }
    
    .legal-section-block h2 {
        font-size: 1.5rem;
    }
    
    .legal-section-block h3 {
        font-size: 1.2rem;
    }
    
    .legal-section-block p {
        font-size: 0.95rem;
    }
    
    .contact-section-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .contact-hero {
        padding: 3rem 1.5rem;
        margin-top: 70px;
    }
    
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile (480px - 639px) */
@media (max-width: 639px) {
    nav {
        padding: 0.875rem 1rem;
        min-height: 55px;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .mobile-menu-toggle img {
        width: 20px;
        height: 20px;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        display: none !important;
    }
    
    .nav-actions .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero {
        padding: 3rem 1rem 2rem;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .demo-section {
        padding: 3rem 1rem;
    }
    
    .demo-content h2 {
        font-size: 1.75rem;
    }
    
    .demo-content p {
        font-size: 0.95rem;
    }
    
    .demo-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .demo-image {
        aspect-ratio: 1.4 / 1;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .benefits-section {
        padding: 3rem 1rem;
    }
    
    .benefits-text h2,
    .benefits-text h3 {
        font-size: 1.75rem;
    }
    
    .benefits-image {
        height: 250px;
    }
    
    .integration-section {
        padding: 3rem 1rem;
    }
    
    .integration-content h2 {
        font-size: 1.75rem;
    }
    
    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .integration-logo {
        padding: 1rem 0.5rem;
        min-height: 120px;
        max-width: 100%;
    }
    
    .integration-logo img {
        width: 40px;
        height: 40px;
    }
    
    .integration-label {
        font-size: 0.8rem;
    }
    
    .integration-logo.text-only {
        font-size: 0.9rem;
        min-height: 80px;
    }
    
    .use-cases-section {
        padding: 3rem 1rem;
    }
    
    .use-case-tab-btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .use-case-content h3 {
        font-size: 1.25rem;
    }
    
    .use-case-image {
        height: 250px;
    }
    
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .coming-soon-section {
        padding: 3rem 1rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-card {
        padding: 1.5rem;
    }
    
    .coming-soon-icon {
        width: 50px;
        height: 50px;
    }
    
    .coming-soon-card h3 {
        font-size: 1.3rem;
    }
    
    .legal-section {
        padding: 4rem 1rem 2.5rem;
    }
    
    .legal-title {
        font-size: 1.75rem;
    }
    
    .legal-section-block h2 {
        font-size: 1.25rem;
    }
    
    .legal-section-block h3 {
        font-size: 1rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    nav {
        padding: 0.75rem 0.875rem;
        min-height: 50px;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-actions {
        gap: 0.4rem;
    }
    
    .nav-actions .btn {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        padding: 0.4rem;
    }
    
    .mobile-menu-toggle img {
        width: 18px;
        height: 18px;
        display: block !important;
    }
    
    .hero {
        padding: 2.5rem 0.875rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.875rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .demo-section {
        padding: 2.5rem 0.875rem;
    }
    
    .demo-content h2 {
        font-size: 1.5rem;
    }
    
    .demo-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.75rem;
    }
    
    .demo-image {
        aspect-ratio: 1.4 / 1;
    }
    
    .features-section {
        padding: 2.5rem 0.875rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .benefits-section {
        padding: 2.5rem 0.875rem;
    }
    
    .benefits-text h2,
    .benefits-text h3 {
        font-size: 1.5rem;
    }
    
    .integration-section {
        padding: 2.5rem 0.875rem;
    }
    
    .integration-content h2 {
        font-size: 1.5rem;
    }
    
    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .integration-logo {
        padding: 1rem 0.5rem;
        min-height: 110px;
        max-width: 100%;
    }
    
    .integration-logo img {
        width: 36px;
        height: 36px;
    }
    
    .integration-label {
        font-size: 0.75rem;
    }
    
    .integration-logo.text-only {
        font-size: 0.85rem;
        min-height: 70px;
        grid-column: 1 / -1;
    }
    
    .use-cases-section {
        padding: 2.5rem 0.875rem;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .use-case-tab-btn {
        width: 100%;
    }
    
    .testimonials-section {
        padding: 2.5rem 0.875rem;
    }
    
    .cta-section {
        padding: 2.5rem 0.875rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .faq-section {
        padding: 2.5rem 0.875rem;
    }
    
    footer {
        padding: 2rem 0.875rem 1rem;
    }
    
    .coming-soon-section {
        padding: 2.5rem 0.875rem;
    }
    
    .coming-soon-card {
        padding: 1.25rem;
    }
    
    .coming-soon-icon {
        width: 45px;
        height: 45px;
    }
    
    .coming-soon-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-hero {
        padding: 2rem 0.875rem;
        margin-top: 55px;
    }
    
    .contact-section {
        padding: 2rem 0.875rem;
    }
    
    .legal-section {
        padding: 3.5rem 0.875rem 2rem;
    }
    
    .legal-title {
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

/* Legal Pages */
.legal-section {
    padding: 8rem 2rem 4rem;
    background: var(--white);
    color: var(--dark);
    min-height: 100vh;
}

.legal-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.legal-last-updated {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.legal-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--darker);
    margin-bottom: 2rem;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151; /* gray-700 */
    margin-bottom: 1rem;
}

.legal-content-wrapper {
    display: flex;
    gap: 60px;
    position: relative;
}

.legal-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: none;
}

@media (min-width: 1024px) {
    .legal-sidebar {
        display: block;
    }
}

.legal-toc {
    position: sticky;
    top: 120px;
    background: #F9FAFB; /* gray-50 */
    border: 1px solid #E5E7EB; /* gray-200 */
    border-radius: 8px;
    padding: 1.25rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.legal-toc-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    color: #374151;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.legal-toc-link:hover {
    background: #F3F4F6; /* gray-100 */
}

.legal-toc-link.active {
    color: var(--secondary);
    font-weight: 600;
}

.legal-toc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9CA3AF; /* gray-400 */
    flex-shrink: 0;
}

.legal-toc-link.active .legal-toc-dot {
    background: var(--secondary);
}

.legal-main-content {
    flex: 1;
    min-width: 0; /* Prevent overflow */
}

.legal-section-block {
    margin-bottom: 3rem;
    scroll-margin-top: 120px; /* Offset for sticky nav */
}

.legal-section-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--darker);
}

.legal-section-block h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--darker);
}

.legal-section-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section-block ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-section-block li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Force dark header on white page override */
.legal-page nav {
    background: rgba(11, 13, 23, 1);
}

@media (max-width: 1024px) {
    .legal-content-wrapper {
        flex-direction: column;
    }
}

/* Contact Page */
.contact-form-container {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--lighter-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--lighter-gray);
    border: 2px solid var(--lighter-gray);
    border-radius: 15px;
    padding: 1rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--lighter-gray);
    color: var(--white);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--lighter-gray);
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--lighter-gray);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

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

/* Force mobile menu toggle visibility on mobile screens */
@media (max-width: 767px) {
    button.mobile-menu-toggle,
    .nav-actions button.mobile-menu-toggle,
    .nav-actions .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-toggle img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 639px) {
    button.mobile-menu-toggle,
    .nav-actions button.mobile-menu-toggle,
    .nav-actions .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .mobile-menu-toggle img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 479px) {
    button.mobile-menu-toggle,
    .nav-actions button.mobile-menu-toggle,
    .nav-actions .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .mobile-menu-toggle img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 18px !important;
        height: 18px !important;
    }
}

/* Contact Page */
.contact-hero {
    margin-top: 90px;
    padding: 4rem 2rem;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

