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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-brand .logo {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 16px;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 40px;
}

/* Hero Demo */
.hero-demo {
    max-width: 700px;
    margin: 0 auto;
}

.demo-window {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.window-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.window-content {
    padding: 24px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-icon {
    margin-right: 12px;
    font-size: 16px;
}

.search-bar input {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    flex: 1;
    outline: none;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-results {
    space: 12px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.result-icon {
    margin-right: 12px;
    font-size: 16px;
}

.result-title {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 4px;
}

.result-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Features Grid */
.features {
    padding: 0px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Section Styles */
.remember-section,
.ask-section,
.more-answers,
.connect-section,
.share-section {
    padding: 35px 0;
}

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

.section-title {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Grid */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.demo-item {
    text-align: left;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-item h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.demo-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* Ask Section */
.ask-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ask-text {
    text-align: left;
}

.ask-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ask-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.feature-list {
    space: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.check {
    color: #27ca3f;
    margin-right: 12px;
    font-weight: 600;
}

/* Chat Interface */
.chat-interface {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 450px;
    overflow-y: auto;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Voice indicators */
.voice-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    animation: voice-pulse 2s ease-in-out infinite;
}

@keyframes voice-pulse {
    0%, 100% { 
        background: rgba(0, 255, 136, 0.1);
        color: #00ff88;
    }
    50% { 
        background: rgba(0, 255, 136, 0.2);
        color: #33ff99;
    }
}

.chat-message {
    margin-bottom: 24px;
    overflow: hidden; /* Clear floats */
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 16px 16px 4px 16px;
    display: inline-block;
    max-width: 80%;
    margin-left: auto;
    float: right;
    clear: both;
}

.chat-message.assistant .message-content {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    display: inline-block;
    max-width: 80%;
    float: left;
    clear: both;
}

/* More Answers */
.answers-demo {
    margin-top: 60px;
}

.demo-interface {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.interface-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.search-icon {
    margin-right: 12px;
}

.interface-results {
    padding: 20px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-header {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
}

.result-body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Connect Section */
.connect-content {
    text-align: center;
}

.connect-text {
    margin-bottom: 60px;
}

.connect-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.connect-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.integration-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.integration-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Share Section */
.share-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.share-feature {
    text-align: left;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.share-feature h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.share-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(42px, 7vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-content {
    padding: 100px 0 60px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 16px;
    color: #888;
    margin: 0;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-body h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #ffffff;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 10px;
}

.legal-body h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0 15px 0;
    color: #e0e0e0;
}

.legal-body p {
    margin-bottom: 16px;
    color: #b0b0b0;
    font-size: 16px;
}

.legal-body ul,
.legal-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-body li {
    margin-bottom: 8px;
    color: #b0b0b0;
}

.legal-body a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-body a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background-color: #2a2a2a;
    font-weight: 600;
    color: #ffffff;
}

.cookie-table td {
    color: #b0b0b0;
}

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

.cookie-consent-section {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.cookie-consent-section h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.cookie-consent-section p {
    margin-bottom: 20px;
}

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 80px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 36px;
    }
    
    .legal-body h2 {
        font-size: 24px;
    }
    
    .legal-body h3 {
        font-size: 20px;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 12px;
    }
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

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

.footer-brand .logo {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ask-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-grid,
    .share-features {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile breakpoint for very small screens */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}