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

:root {
    --primary-color: #3b82f6;
    --secondary-color: #2563eb;
    --dark-color: #0f172a;
    --darker-color: #020617;
    --light-color: #1e293b;
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --success-color: #10b981;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --card-bg: #1e293b;
    --card-hover: #334155;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--darker-color);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: var(--dark-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover .logo-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.5));
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 16px rgba(74, 144, 226, 0.4));
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(74, 144, 226, 0.6));
}

.device-mockup {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* AI Model Notice */
.ai-model-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.ai-model-notice i {
    font-size: 1rem;
    color: var(--primary-color);
}

.ai-model-notice span {
    font-weight: 500;
}

.ai-model-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--success-color);
}

.ai-model-info i {
    font-size: 1rem;
    color: var(--success-color);
}

.ai-model-info span {
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--dark-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

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

/* Center the 7th feature card */
.features-grid .feature-card:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    box-shadow: 0 8px 12px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Pain Points Section */
.pain-points {
    padding: 80px 0;
    background: var(--light-color);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, background 0.3s;
}

.pain-item:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
}

.pain-icon {
    font-size: 3.5rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.pain-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pain-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--darker-color);
}

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

/* Second row with 2 centered items */
.steps .step:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: center;
}

.steps .step:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: center;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--dark-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, background 0.3s;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

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

/* Launching Soon Styles */
.launching-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.launching-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.launching-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.launching-soon-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.launching-title-wrapper {
    display: inline-block;
    position: relative;
}

.launching-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 2px;
}

.launching-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.launching-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 4rem 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.launching-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.launching-badge i {
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.launching-content {
    text-align: center;
}

.launching-hero {
    margin-bottom: 3rem;
}

.launching-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.launching-icon {
    font-size: 6rem;
    color: var(--primary-color);
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.launching-logo-svg {
    width: 120px;
    height: 120px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.launching-logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.7));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.launching-title {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launching-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.launching-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.launching-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.launching-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.launching-feature:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.3);
    border-color: var(--primary-color);
}

.launching-feature:hover::before {
    left: 100%;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.launching-feature span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.5;
}

.launching-cta {
    margin-top: 3rem;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-large i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-large:hover i {
    transform: translateX(4px);
}

.launching-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.launch-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.launch-note i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.launching-contact {
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.launching-contact strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Setup Section */
.setup {
    padding: 80px 0;
    background: var(--darker-color);
}

.setup-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-content.active {
    display: block;
}

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

.setup-list, .setup-steps {
    margin-left: 2rem;
    line-height: 2;
}

.setup-list i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

pre {
    background: var(--darker-color);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

code {
    background: var(--darker-color);
    color: #60a5fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* API Documentation */
.api-docs {
    padding: 80px 0;
    background: var(--dark-color);
}

.api-endpoints {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.endpoint {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method {
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

.method.post {
    background: #10b981;
    color: white;
}

.method.get {
    background: #3b82f6;
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, background 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
}

.quote {
    margin-bottom: 1.5rem;
}

.quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.quote p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
}

.author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--darker-color);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-box {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-box:hover::before {
    opacity: 1;
}

.contact-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.contact-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

.contact-items {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-color);
}

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

/* Email Contact Info */
.contact-email-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-email-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-email-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.email-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.email-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.email-highlight:hover::before {
    left: 100%;
}

.email-highlight:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.7);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.email-highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
}

.email-highlight:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.4));
}

.email-highlight a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(59, 130, 246, 0.2);
}

.email-highlight:hover a {
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.email-highlight a:hover {
    color: var(--secondary-color);
}

.email-note {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.85;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.email-note:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover .footer-logo-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.5));
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

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

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

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: var(--dark-color);
    color: white;
    min-height: 100vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

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

.breadcrumb a:hover {
    color: #60a5fa;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumb span {
    color: #cbd5e1;
}

.policy-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.policy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.policy-subtitle {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.back-to-home {
    margin-top: 3rem;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.back-to-home .btn i {
    font-size: 0.9rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.policy-section h2::before {
    content: '';
    width: 6px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: #e2e8f0;
    padding-left: 1rem;
    border-left: 3px solid rgba(59, 130, 246, 0.3);
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    text-align: justify;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section ul li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    position: relative;
    font-size: 1.05rem;
    padding-left: 0.5rem;
}

.policy-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
    top: -0.1rem;
}

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

.policy-section a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info strong {
    color: #e2e8f0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .policy-header h1 {
        font-size: 2.5rem;
    }

    .policy-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }

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

    .policy-section h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem;
    }

    .policy-section p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .policy-section ul li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .device-mockup {
        font-size: 3rem;
    }
    
    .hero-logo-svg {
        width: 80px;
        height: 80px;
    }
    
    .nav-logo .logo-svg {
        width: 32px;
        height: 32px;
    }

    .contact-content {
        padding: 0 1rem;
    }

    .contact-box {
        padding: 2rem;
    }

    .email-highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .setup-tabs {
        flex-wrap: wrap;
    }

    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    /* Mobile improvements for launching soon */
    .launching-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .launching-hero h3 {
        font-size: 2rem;
    }

    .launching-description {
        font-size: 1.1rem;
    }

    .launching-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .launching-feature {
        padding: 0.75rem 1rem;
    }

    .launching-icon {
        font-size: 4rem;
    }
    
    .launching-logo-svg {
        width: 80px;
        height: 80px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* Mobile responsive for features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid .feature-card:nth-child(7) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }

    /* Mobile responsive for steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps .step:nth-child(4),
    .steps .step:nth-child(5) {
        grid-column: 1;
        justify-self: stretch;
    }
}