/* CrystalByte - Pixel-perfect replica of vibekit.sh design */

/* Reset and base styles matching vibekit.sh */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 24px;
    color: oklch(0.145 0 0);
    background-color: oklch(1 0 0);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation styles matching vibekit.sh */
.navbar {
    height: 65px;
    background-color: transparent !important;
    border-bottom: none;
    padding: 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 18px;
    color: oklch(0.145 0 0) !important;
    text-decoration: none;
}

.logo-container {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: white;
    font-size: 16px;
}

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

.nav-link {
    color: oklch(0.145 0 0) !important;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: oklch(0.4 0 0) !important;
}

/* Announcement banner matching vibekit.sh */
.announcement-banner {
    background-color: oklch(0.98 0 0);
    border: 1px solid oklch(0.9 0 0);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 2rem auto;
    text-align: center;
    font-size: 14px;
    max-width: 600px;
}

.announcement-banner i {
    color: #f59e0b;
}

.announcement-banner a {
    color: oklch(0.145 0 0);
    text-decoration: none;
    font-weight: 500;
}

.announcement-banner a:hover {
    text-decoration: underline;
}

/* Hero section matching vibekit.sh */
.hero-section {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: oklch(0.145 0 0);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: oklch(0.4 0 0);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Code snippet container matching vibekit.sh */
.code-snippet-container {
    background-color: oklch(0.98 0 0);
    border: 1px solid oklch(0.9 0 0);
    border-radius: 12px;
    margin: 2rem 0;
    overflow: hidden;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.code-header {
    background-color: oklch(0.95 0 0);
    padding: 12px 20px;
    border-bottom: 1px solid oklch(0.9 0 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-lang {
    font-size: 14px;
    color: oklch(0.4 0 0);
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    color: oklch(0.4 0 0);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.copy-btn:hover {
    background-color: oklch(0.9 0 0);
}

.code-content {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
}

.code-content code {
    color: oklch(0.145 0 0);
}

/* CTA Button matching vibekit.sh */
.cta-button {
    background-color: oklch(0.205 0 0);
    color: oklch(0.985 0 0);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 2rem 0;
}

.cta-button:hover {
    background-color: oklch(0.15 0 0);
    color: oklch(0.985 0 0);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Features section */
.features-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: oklch(0.145 0 0);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: oklch(0.4 0 0);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid oklch(0.9 0 0);
    background-color: oklch(0.99 0 0);
    height: 100%;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: oklch(0.8 0 0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: oklch(0.145 0 0);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: oklch(0.4 0 0);
    line-height: 1.6;
    margin: 0;
}

/* Platforms section */
.platforms-section {
    padding: 4rem 0;
    background-color: oklch(0.99 0 0);
    border-radius: 20px;
    margin: 2rem 0;
}

.platforms-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.platform-logo:hover {
    opacity: 1;
}

.platform-logo i {
    font-size: 2rem;
    color: oklch(0.4 0 0);
}

.platform-logo span {
    font-size: 0.875rem;
    color: oklch(0.4 0 0);
    font-weight: 500;
}

/* Use cases section */
.use-cases-section {
    padding: 4rem 0;
}

.use-case-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid oklch(0.9 0 0);
    background-color: oklch(0.99 0 0);
    height: 100%;
    transition: all 0.2s ease;
}

.use-case-card:hover {
    border-color: oklch(0.8 0 0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.use-case-icon i {
    color: white;
    font-size: 20px;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: oklch(0.145 0 0);
    margin-bottom: 0.75rem;
}

.use-case-card p {
    color: oklch(0.4 0 0);
    line-height: 1.6;
    margin: 0;
}

/* Contact section */
.contact-section {
    padding: 4rem 0;
    background-color: oklch(0.99 0 0);
    border-radius: 20px;
    margin: 2rem 0;
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid oklch(0.9 0 0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    font-weight: 500;
    color: oklch(0.145 0 0);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid oklch(0.85 0 0);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.thank-you-message h3 {
    color: oklch(0.145 0 0);
    margin-bottom: 1rem;
}

.thank-you-message p {
    color: oklch(0.4 0 0);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: oklch(0.98 0 0);
    border-top: 1px solid oklch(0.9 0 0);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.footer-description {
    color: oklch(0.4 0 0);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: oklch(0.4 0 0);
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.contact-info i {
    color: #667eea;
    width: 16px;
}

.footer-links h5 {
    color: oklch(0.145 0 0);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links ul li a {
    color: oklch(0.4 0 0);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: oklch(0.145 0 0);
}

.footer-divider {
    border-color: oklch(0.9 0 0);
    margin: 2rem 0 1rem;
}

.copyright {
    color: oklch(0.4 0 0);
    font-size: 14px;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platforms-logos {
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .platforms-logos {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Pricing page specific styles */
.pricing-section {
    padding: 4rem 0;
}

.pricing-card {
    background-color: white;
    border: 1px solid oklch(0.9 0 0);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-icon i {
    color: white;
    font-size: 24px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: oklch(0.145 0 0);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: oklch(0.4 0 0);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: oklch(0.145 0 0);
    margin: 0 4px;
}

.pricing-price .period {
    font-size: 1.125rem;
    color: oklch(0.4 0 0);
}

.pricing-description {
    color: oklch(0.4 0 0);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pricing-features ul {
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: oklch(0.4 0 0);
    line-height: 1.5;
}

/* Feature comparison table */
.features-comparison {
    padding: 4rem 0;
    background-color: oklch(0.99 0 0);
    border-radius: 20px;
    margin: 2rem 0;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid oklch(0.9 0 0);
}

.comparison-table {
    margin: 0;
    background-color: white;
}

.comparison-table th {
    background-color: oklch(0.98 0 0);
    border-color: oklch(0.9 0 0);
    color: oklch(0.145 0 0);
    font-weight: 600;
    padding: 1rem;
    text-align: center;
}

.comparison-table td {
    border-color: oklch(0.9 0 0);
    padding: 1rem;
    text-align: center;
    color: oklch(0.4 0 0);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: oklch(0.145 0 0);
}

/* Terms and Privacy page styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: oklch(0.145 0 0);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: oklch(0.145 0 0);
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: oklch(0.145 0 0);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: oklch(0.4 0 0);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: oklch(0.4 0 0);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: oklch(0.4 0 0);
    font-style: italic;
    margin-bottom: 2rem;
}
