:root {
    --primary: #0099cc;
    --primary-dark: #0077a3;
    --secondary: #ff006e;
    --accent: #6b2fb0;
    --dark-bg: #ffffff;
    --darker-bg: #f5f5f5;
    --card-bg: #f9f9f9;
    --text-light: #1a1a1a;
    --text-muted: #666666;
    --border-color: #e0e0e0;
}

/* Dark mode theme */
body.dark-mode {
    --dark-bg: #040407;
    --darker-bg: #1f2736;
    --card-bg: #2d3547;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #424856;
}

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

html {
    scroll-behavior: smooth;
}

/* Accessibility improvements */
:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.dark-mode .navbar {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
    background: transparent !important;
    image-rendering: high-quality;
}

.logo:hover .logo-img {
    filter: brightness(1.3);
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Dark Mode Toggle Button */
.theme-toggle {
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* Navbar Get Started Button */
.nav-cta-button {
    position: relative;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-decoration: none !important;
    display: inline-block;
    clip-path: polygon(
        0 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        8px 100%,
        0 calc(100% - 8px)
    );
}

.nav-cta-button::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.nav-cta-button::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5), 0 0 30px rgba(131, 56, 236, 0.3);
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.nav-cta-button:hover::before {
    animation: cornerGlow 0.6s ease-in-out infinite;
}

.nav-cta-button:hover::after {
    animation: cornerGlow 0.6s ease-in-out infinite 0.2s;
}

@keyframes cornerGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Corner Triangles */
.corner-triangle {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
}

.corner-tl {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    background: var(--primary);
}

.corner-tr {
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    background: var(--accent);
}

.corner-bl {
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    background: var(--secondary);
}

.corner-br {
    bottom: 0;
    right: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    background: var(--primary);
}

.corner-accent {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

.corner-tl-small {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    background: var(--primary);
}

.corner-br-small {
    bottom: 0;
    right: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    background: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 50%, #f0f4f8 100%);
    overflow: hidden;
    margin-top: 60px;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--dark-bg) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

body.dark-mode .hero::before {
    opacity: 0.05;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 90%;
    padding: 0 1rem;
}

.glitch {
    font-size: 10rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

@keyframes glitch {
    0%, 100% { text-shadow: -2px 0 var(--secondary), 2px 0 var(--accent); }
    50% { text-shadow: 2px 0 var(--secondary), -2px 0 var(--accent); }
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: var(--dark-bg);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: inline-block;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.tech-grid {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.tech-dot:nth-child(2) { animation-delay: 0.2s; }
.tech-dot:nth-child(3) { animation-delay: 0.4s; }
.tech-dot:nth-child(4) { animation-delay: 0.6s; }

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

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    margin-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: 1rem auto 0;
}

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

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* About Section */
.about {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    margin-top: 60px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary);
}

.stat-box:hover {
    border-left-color: var(--accent);
    transform: translateY(-5px);
}

.stat-number {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    margin-top: 60px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: var(--dark-bg);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.3rem;
}

/* Locations Section */
.locations-section {
    padding: 3rem 2rem;
    background: var(--darker-bg);
}

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

.location-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-pin-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.location-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
    background: transparent !important;
    image-rendering: high-quality;
}

.footer:hover .footer-logo {
    filter: brightness(1.3);
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Team Section */
.team {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar-image {
    background: none;
    overflow: hidden;
}

.member-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initial {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

/* Dark mode adjustments for team section */
body.dark-mode .team-member:hover {
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

/* Featured Banner */
.featured-banner {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(131, 56, 236, 0.1));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.featured-banner h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-banner p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.banner-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.banner-link:hover {
    color: var(--accent);
}

/* Examples Section */
.examples-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

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

.example-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(240, 244, 248, 0.8);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

body.dark-mode .example-item {
    background: rgba(36, 36, 36, 0.5);
    border: 1px solid var(--border-color);
}

.example-item.reverse {
    direction: rtl;
}

.example-item.reverse > * {
    direction: ltr;
}

.example-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Code Block Styling */
.code-block {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

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

.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #28c840; }

.code-block pre {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    margin: 0;
}

.code-keyword {
    color: var(--accent);
    font-weight: bold;
}

.code-function {
    color: var(--primary);
}

/* Architecture Diagram */
.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}

.diagram-layer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark-bg);
    padding: 1rem;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.diagram-layer:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
    height: 180px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-5px);
}

.chart-legend {
    display: flex;
    justify-content: space-around;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legend-item {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.example-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.example-text p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

body.dark-mode .example-text p {
    color: var(--text-muted);
    font-weight: normal;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    color: #333333;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

body.dark-mode .feature-list li {
    color: var(--text-light);
    font-weight: normal;
}

.feature-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.feature-number {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--card-bg);
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.05);
}

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

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

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(131, 56, 236, 0.1));
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--accent);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .nav-cta-button {
        display: none !important;
    }

    .theme-toggle {
        margin-right: 0.5rem;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        max-height: 400px;
        overflow-y: auto;
        display: none !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero {
        margin-top: 60px;
    }

    /* Featured Banner */
    .featured-banner {
        padding: 2rem 1rem;
    }

    .featured-banner h2 {
        font-size: 1.5rem;
    }

    .featured-banner p {
        font-size: 0.95rem;
    }

    /* Examples Section */
    .examples-section {
        padding: 3rem 1rem;
    }

    .example-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .example-item.reverse {
        direction: ltr;
    }

    .example-item.reverse > * {
        direction: ltr;
    }

    .example-visual {
        min-height: 200px;
    }

    .code-block {
        max-width: 100%;
    }

    .code-block pre {
        font-size: 0.8rem;
    }

    .architecture-diagram {
        max-width: 100%;
    }

    .dashboard-preview {
        max-width: 100%;
    }

    .example-text h3 {
        font-size: 1.5rem;
    }

    .example-text p {
        font-size: 0.95rem;
    }

    .feature-list li {
        padding-left: 1.5rem;
    }

    /* Features Section */
    .features-section {
        padding: 3rem 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Services Grid */
    .services {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* About Section */
    .about {
        padding: 3rem 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Contact Section */
    .contact {
        padding: 3rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 1.8rem;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .location-card {
        padding: 2rem 1.5rem;
    }

    .location-card h3 {
        font-size: 1.1rem;
    }

    .location-card p {
        font-size: 1rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .cta-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content .cta-button {
        width: auto;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 80px;
    }

    /* Corner Triangles - Smaller on mobile */
    .corner-triangle {
        width: 60px;
        height: 60px;
    }

    .corner-accent {
        width: 40px;
        height: 40px;
    }

    /* Footer */
    .footer-content p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    /* Team Section Responsive */
    .team {
        padding: 3rem 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .team-member {
        padding: 2rem 1.5rem;
    }

    .member-role {
        font-size: 0.9rem;
    }

    .member-bio {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.6rem 0.8rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .glitch {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-content .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: auto;
    }

    .tech-grid {
        gap: 15px;
    }

    .tech-dot {
        width: 10px;
        height: 10px;
    }

    .cta-buttons .cta-button {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Featured Banner */
    .featured-banner {
        padding: 1.5rem 0.8rem;
    }

    .featured-banner h2 {
        font-size: 1.2rem;
    }

    .featured-banner p {
        font-size: 0.85rem;
    }

    .banner-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Examples */
    .examples-section {
        padding: 2rem 0.8rem;
    }

    .example-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .example-text h3 {
        font-size: 1.3rem;
    }

    .example-text p {
        font-size: 0.85rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }

    .feature-list li:before {
        font-size: 0.9rem;
    }

    .code-block {
        padding: 1rem;
    }

    .code-block pre {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .architecture-diagram {
        gap: 8px;
    }

    .diagram-layer {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .chart-container {
        height: 140px;
    }

    .chart-bar {
        width: 25px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-number {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Services */
    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Video Coming Soon */
    .coming-soon-icon {
        font-size: 2.5rem;
    }

    .coming-soon-content h4 {
        font-size: 1.2rem;
    }

    .coming-soon-content p {
        font-size: 0.9rem;
    }

    /* About */
    .stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-box {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-box p {
        font-size: 0.85rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-form {
        padding: 1.2rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    /* FAQ */
    .faq-question {
        padding: 0.8rem;
    }

    .faq-answer {
        padding: 0.8rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .corner-triangle {
        width: 50px;
        height: 50px;
    }

    .corner-accent {
        width: 30px;
        height: 30px;
    }

    /* Team Section Mobile */
    .team {
        padding: 2rem 0.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-member {
        padding: 1rem;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }

    .avatar-initial {
        font-size: 2rem;
    }

    .team-member h3 {
        font-size: 1.1rem;
    }

    .member-role {
        font-size: 0.85rem;
    }

    .member-bio {
        font-size: 0.8rem;
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

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

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

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--primary);
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Enhanced Service Cards */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-card.expanded .service-details {
    max-height: 300px;
}

.service-subtitle {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-toggle {
    width: 100%;
    margin-top: 1rem;
    padding: 0.7rem;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-toggle:hover {
    background: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.service-card.expanded .service-toggle {
    background: var(--primary);
    color: var(--dark-bg);
}

.service-card.expanded .service-toggle:after {
    content: "";
}

/* Form Validation */
.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.testimonial-card {
    animation: fadeInUp 0.6s ease backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Mobile Menu Animation */
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .service-details {
        display: none;
    }

    .service-card.expanded .service-details {
        display: block;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .author-name {
        font-size: 0.85rem;
    }

    .author-title {
        font-size: 0.75rem;
    }
}

/* Pricing Page */
.pricing {
    padding: 5rem 2rem;
    background: var(--bg-color);
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--dark-bg);
    border-color: var(--primary);
}

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

.savings {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary);
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

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

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.8rem;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.plan-button:hover {
    background: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.featured-button {
    background: var(--primary);
    color: var(--dark-bg);
}

.featured-button:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Add-ons Section */
.addons-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.addons-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.addon-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.addon-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Pricing FAQ */
.pricing-faq {
    background: rgba(0, 217, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 3rem 1rem;
        margin-top: 60px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .toggle-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .addons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Video Demos Section */
.video-demos {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

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

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--primary);
}

.video-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-coming-soon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.coming-soon-content {
    text-align: center;
    color: white;
}

.coming-soon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.coming-soon-content h4 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    font-weight: 700;
}

.coming-soon-content p {
    font-size: 1rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
}

.video-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.video-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Video Demos */
@media (max-width: 768px) {
    .video-demos {
        padding: 3rem 1rem;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .video-card h3 {
        font-size: 1rem;
        padding: 1rem 1rem 0.4rem;
    }

    .video-card p {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .video-demos {
        padding: 2rem 0.8rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Live Chat Widget */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
}

.chat-toggle.hidden {
    display: none;
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 500px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: slideUp 0.3s ease;
}

.chat-widget.active {
    display: flex;
}

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

.chat-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    margin-bottom: 0.5rem;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message p {
    max-width: 70%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.bot p {
    background: rgba(0, 217, 255, 0.1);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--dark-bg);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.chat-input input::placeholder {
    color: var(--text-secondary);
}

.send-button {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Chat */
@media (max-width: 768px) {
    .chat-widget {
        width: calc(100vw - 40px);
        max-width: 350px;
        height: 400px;
        bottom: 80px;
        right: 20px;
    }

    .chat-messages {
        padding: 1rem;
    }

    .chat-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        width: calc(100vw - 20px);
        height: 350px;
        bottom: 70px;
        right: 10px;
        border-radius: 10px;
    }

    .chat-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .chat-message p {
        max-width: 85%;
        font-size: 0.85rem;
    }
}


@media (max-width: 480px) {
    .pricing {
        padding: 2rem 0.8rem;
        margin-top: 60px;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .amount {
        font-size: 2rem;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-card {
        padding: 1rem;
    }
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    color: #1a1a1a;
    border: 2px solid var(--primary);
}

[data-theme="dark"] .modal-content {
    background: var(--bg-color);
    color: var(--text-color);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 1;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.modal-signature {
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    opacity: 1;
}

.modal-signature strong {
    color: var(--primary);
}

/* Dark theme modal */
[data-theme="dark"] .modal-content {
    background: var(--bg-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .modal-close {
    color: var(--text-color);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 1rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-icon {
        font-size: 2.5rem;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0099cc 0%, #6b2fb0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutScreen 0.5s ease 3.5s forwards;
}

@keyframes fadeOutScreen {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

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

.loading-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(90deg, white 0%, white 25%, rgba(255, 255, 255, 0.3) 50%, white 75%, white 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flashText 1.5s ease-in-out infinite;
}

@keyframes flashText {
    0%, 100% {
        background-position: 200% 0;
    }
    50% {
        background-position: -200% 0;
    }
}

.loading-bar-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.8), white);
    border-radius: 2px;
    width: 0%;
    animation: loadingBarAnimation 3.5s ease-in-out forwards;
}

@keyframes loadingBarAnimation {
    0% {
        width: 0%;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    100% {
        width: 100%;
        box-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
}

.loading-percentage {
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* Responsive loading screen */
@media (max-width: 768px) {
    .loading-text {
        font-size: 2rem;
    }

    .loading-logo {
        width: 80px;
        height: 80px;
    }

    .loading-bar-container {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .loading-text {
        font-size: 1.5rem;
    }

    .loading-logo {
        width: 60px;
        height: 60px;
    }

    .loading-bar-container {
        width: 120px;
    }
}

/* Careers Section */
.careers {
    padding: 5rem 2rem;
    background: var(--bg-color);
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.careers-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.job-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: left 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.15);
}

.job-card:hover::before {
    left: 100%;
}

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

.job-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.job-type {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.job-location,
.job-salary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-link {
    display: inline-block;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Job Detail Page */
.job-detail {
    padding: 5rem 2rem;
    background: var(--bg-color);
    margin-top: 60px;
}

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

.job-detail-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
}

.job-detail-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.job-detail-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-detail-meta-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.job-detail-meta-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.job-detail-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.job-detail-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.job-detail-section ul {
    list-style: none;
    padding: 0;
}

.job-detail-section li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.job-detail-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.job-detail-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
}

.job-detail-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.apply-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.job-detail-main {
    flex: 1;
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apply-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.apply-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white !important;
    font-weight: 700;
}

.apply-box p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: white !important;
}

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

.job-info-box h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 600;
    color: var(--text-muted);
}

.info-item span {
    color: var(--text-light);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.job-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.job-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.full-time {
    background: var(--primary);
    color: white;
}

.job-detail-location,
.job-detail-salary {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Careers */
@media (max-width: 768px) {
    .careers {
        padding: 3rem 1rem;
        margin-top: 60px;
    }

    .job-detail {
        padding: 3rem 1rem;
        margin-top: 60px;
    }

    .job-detail-header {
        padding: 2rem 1.5rem;
    }

    .job-detail-header h1 {
        font-size: 1.8rem;
    }

    .job-detail-section {
        padding: 1.5rem;
    }

    .job-card h3 {
        font-size: 1.2rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers {
        padding: 2rem 0.8rem;
    }

    .job-detail {
        padding: 2rem 0.8rem;
    }

    .job-detail-header {
        padding: 1.5rem 1rem;
    }

    .job-detail-header h1 {
        font-size: 1.5rem;
    }

    .job-detail-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .job-detail-section {
        padding: 1rem;
    }

    .apply-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Careers Page */
.careers {
    padding: 5rem 2rem;
    background: var(--bg-color);
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.careers-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.job-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    border-color: var(--primary);
}

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

.job-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0;
}

.job-level {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.job-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.job-location, .job-salary {
    color: var(--text-light);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--card-bg);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary);
}

.job-button {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.job-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.why-join {
    margin-top: 5rem;
    text-align: center;
}

.why-join h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.benefit-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Job Detail Page */
.job-detail {
    padding: 5rem 2rem;
    background: var(--bg-color);
    margin-top: 60px;
    min-height: 80vh;
}

.job-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.job-detail-header {
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 2rem;
}

.job-detail-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.badge.full-time {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.job-detail-location, .job-detail-salary {
    font-size: 1rem;
    color: var(--text-light);
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.job-detail-main {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.job-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    padding: 0.7rem 0;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.job-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.job-sidebar {
    background: var(--darker-bg);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.job-sidebar h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.sidebar-item {
    margin-bottom: 1.5rem;
}

.sidebar-label {
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

.sidebar-value {
    color: var(--text-muted);
}

.apply-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

/* Responsive Careers */
@media (max-width: 768px) {
    .careers {
        padding: 3rem 1rem;
        margin-top: 60px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-join h2 {
        font-size: 2rem;
    }

    .job-detail {
        padding: 3rem 1rem;
    }

    .job-detail-header h1 {
        font-size: 2rem;
    }

    .job-detail-grid {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: relative;
        top: auto;
    }

    .job-detail-meta {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .careers {
        padding: 2rem 0.8rem;
        margin-top: 60px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-header {
        flex-direction: column;
    }

    .job-level {
        margin-top: 0.5rem;
    }

    .why-join h2 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .job-detail {
        padding: 2rem 0.8rem;
    }

    .job-detail-header h1 {
        font-size: 1.5rem;
    }

    .job-detail-main {
        padding: 1.5rem;
    }

    .job-sidebar {
        padding: 1.5rem;
    }

    .job-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

