:root {
    --bg-body: #050505;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    
    --text-main: #ffffff;
    --text-muted: #888888;
    
    --accent: #00f0ff; /* Cyan Neon */
    --accent-glow: rgba(0, 240, 255, 0.4);
    
    --border: #222222;
    --border-hover: #333333;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Hide scrollbar for all elements */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0;
}

header .container {
    display: flex;
    align-items: center;
    height: 90px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Header Scrolled State - Floating Island */
header.scrolled {
    top: 20px;
    width: 95%;
    max-width: 1100px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.1);
}

header.scrolled .container {
    height: 60px;
    width: 100%;
    padding: 0 20px;
}

header.scrolled .logo {
    font-size: 1.4rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.logo .dot {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-small {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    cursor: pointer;
}

.btn-small:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/homebg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.15; /* Drastically reduced opacity for text readability */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.8) 50%, rgba(5, 5, 5, 0.6) 100%); /* Solid dark on the left where text is */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* ... existing hero content styles ... */

/* Hero Visual - Canvas */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

#ai-network {
    width: 100%;
    height: 100%;
    max-width: 600px;
}

/* Enhanced Glow Effects */
.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 1.8rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: scale(1.1);
}

/* Grid Background Effect */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--text-main);
    color: var(--bg-body);
}

.cta-button.primary:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.cta-button.secondary:hover {
    border-color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.features h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-muted);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.icon-wrapper {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 32px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Privacy Section */
.privacy-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-body) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.privacy-section p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 100px 0 60px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #050505 0%, #080808 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.company-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 300px;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-item i {
    color: var(--accent);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.detail-item address {
    font-style: normal;
}

.footer-copyright {
    margin-top: auto;
    padding-top: 32px;
    font-size: 0.85rem;
    color: #444;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-contact {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

.full-width {
    width: 100%;
    text-align: center;
    border: none;
    font-size: 1rem;
    margin-top: 10px;
    padding: 18px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        padding: 24px;
    }
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow);
}

.chat-window {
    width: 350px;
    height: 500px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.chat-window.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.close-chat:hover {
    color: var(--text-main);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    display: flex;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message.bot .message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-top-left-radius: 2px;
}

.message.user .message-content {
    background: var(--accent);
    color: #000;
    border-top-right-radius: 2px;
    font-weight: 500;
}

.chat-input-area {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.chat-input-area input:focus {
    border-color: var(--accent);
}

.chat-input-area button {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    transition: transform 0.3s;
}

.chat-input-area button:hover {
    transform: translateX(3px);
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-card) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.technology-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-list {
    list-style: none;
    margin-top: 30px;
}

.tech-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.tech-list li i {
    color: var(--accent);
}

.tech-list li strong {
    color: var(--text-main);
}

.tech-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.tech-img:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.info-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: var(--text-main);
}

.info-item p, .info-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent);
}

.contact-form-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: var(--bg-body);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.submit-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .technology-section .container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tech-image {
        order: -1;
    }
}

/* Footer Links Restyling */
.footer-links h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Adjust Footer Grid for better spacing */
.footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-card-hover);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th.highlight {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.comparison-table td {
    color: var(--text-muted);
    font-size: 1rem;
}

.comparison-table td.highlight {
    background: rgba(0, 240, 255, 0.03);
    color: var(--text-main);
    font-weight: 500;
    border-left: 1px solid rgba(0, 240, 255, 0.1);
    border-right: 1px solid rgba(0, 240, 255, 0.1);
}

.comparison-table td i {
    color: var(--accent);
    margin-right: 8px;
}

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

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-body) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.uc-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.uc-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.use-case-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.use-case-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Custom Development Section */
.custom-dev-section {
    padding: 100px 0;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
}

.dev-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.dev-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.dev-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.dev-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.dev-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.dev-features li i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.dev-features li strong {
    color: var(--text-main);
}

.dev-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.dev-visual i {
    font-size: 8rem;
    color: var(--text-main);
    filter: drop-shadow(0 0 20px var(--accent));
    animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .dev-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .dev-visual {
        order: -1;
        height: 300px;
    }
}

/* Privacy Section Enhanced */
.privacy-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.pc-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.privacy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.privacy-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.compliance-banner {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.compliance-banner span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    opacity: 0.8;
}

.compliance-banner span i {
    color: var(--accent);
}

@media (max-width: 768px) {
    .compliance-banner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Real-time Billing Section */
.billing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(0, 240, 255, 0.03) 50%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 968px) {
    .billing-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .billing-features li {
        justify-content: center;
        text-align: left;
    }
}

.billing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.billing-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.billing-content .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.billing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.billing-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

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

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Visual Card */
.billing-visual {
    display: flex;
    justify-content: center;
}

.billing-card-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.billing-card-preview::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 24px;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.3), transparent);
    z-index: -1;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.blink {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(120%);
    width: min(1100px, 94%);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-radius: 14px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1200;
}

.cookie-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.cookie-text {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.primary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}

.cookie-btn:hover {
    border-color: var(--accent);
}

/* Cookie modal */
.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    padding: 20px;
}

.cookie-modal {
    background: rgba(10,10,10,0.97);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: min(600px, 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.cookie-close {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px;
}

.cookie-modal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}

.opt-title { color: var(--text-main); font-weight: 700; }
.opt-desc { color: var(--text-muted); font-size: 0.9rem; }

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input { display: none; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .2s;
    border-radius: 26px;
    border: 1px solid var(--border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: var(--accent);
    border-color: var(--accent);
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}

.switch.disabled { opacity: 0.6; cursor: not-allowed; }

.switch.disabled .slider { cursor: not-allowed; }

@media (max-width: 768px) {
    .cookie-banner {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}

.preview-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.preview-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.preview-graph {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 60px;
}

.preview-graph .bar {
    flex: 1;
    background: var(--border);
    border-radius: 4px;
    height: 20%;
    transition: height 0.3s ease;
}

.preview-graph .bar:nth-child(1) { height: 30%; }
.preview-graph .bar:nth-child(2) { height: 50%; }
.preview-graph .bar:nth-child(3) { height: 25%; }
.preview-graph .bar:nth-child(4) { height: 40%; }
.preview-graph .bar.active { 
    height: 70%; 
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}
