:root {
    --primary: #FFD700;
    --secondary: #00F0FF;
    --dark: #0A0A0A;
    --dark-alt: #1A1A1A;
    --white: #FFFFFF;
    --gray: #A0A0A0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Text Selection */
::selection {
    background: rgba(173, 255, 47, 0.8);
    color: var(--white);
}

::-moz-selection {
    background: rgba(173, 255, 47, 0.8);
    color: var(--white);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

nav.hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark) !important;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-nav::after {
    display: none;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu.hide {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;
}

.nav-dropdown.no-hover:hover .nav-dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
}

.nav-dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    width: 100%;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding-left: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-small {
    min-height: 60vh;
    padding: 8rem 2rem 4rem;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

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

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rotating-text-container {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.rotating-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: rotateWord 0.5s ease-in-out;
    min-width: 120px;
}

@keyframes rotateWord {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Stats Section */
.stats {
    padding: 5rem 2rem;
    background: var(--dark-alt);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

#services-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 10;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.service-card {
    background: linear-gradient(145deg, rgba(18, 18, 28, 0.95), rgba(25, 25, 35, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 28px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), #00d4ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 215, 0, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 215, 0, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(255, 215, 0, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 215, 0, 0.03) 3px);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow:
        0 25px 70px rgba(255, 215, 0, 0.2),
        0 12px 35px rgba(0, 212, 255, 0.12);
    background: linear-gradient(145deg, rgba(22, 22, 32, 1), rgba(28, 28, 38, 0.95));
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.15);
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:hover .service-number {
    color: rgba(255, 215, 0, 0.25);
    transform: scale(1.1);
}

.service-icon-container {
    padding: 3rem 3rem 0;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 212, 255, 0.08));
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.service-icon svg {
    width: 52px;
    height: 52px;
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 212, 255, 0.15));
    border-color: transparent;
    transform: scale(1.05) rotate(-3deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
}

.service-card:hover .service-icon svg {
    color: var(--white);
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.6));
}

.service-content {
    padding: 2rem 3rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.95rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: all 0.3s;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

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

.service-features li {
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.925rem;
    transition: all 0.3s;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-card:hover .service-features li::before {
    box-shadow: 0 0 8px var(--primary);
    transform: scale(1.3);
}

.service-footer {
    padding: 2rem 3rem 2.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.service-card:hover .service-footer {
    border-top-color: rgba(255, 215, 0, 0.15);
}

.service-link-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.service-card:hover .service-link-text {
    color: var(--primary);
    letter-spacing: 0.08em;
}

.service-arrow {
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.service-card:hover .service-arrow {
    color: var(--primary);
    transform: translateX(8px) scale(1.2);
}

/* Case Studies Section */
.case-studies {
    padding: 8rem 2rem;
    background: #000000;
    position: relative;
}

.case-studies .section-header {
    margin-bottom: 4rem;
}

.case-studies-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-study-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: start;
}

.case-study-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-card:hover {
    transform: translateX(8px);
    box-shadow: -4px 0 30px rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.9);
    border-left-color: var(--secondary);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.case-study-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 240, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s;
}

.case-study-icon svg {
    width: 32px;
    height: 32px;
}

.case-study-card:hover .case-study-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 240, 255, 0.2));
}

.case-study-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.case-study-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.case-study-duration {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.case-study-content h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin: 0;
    background: linear-gradient(135deg, var(--white), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-client {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.case-study-description {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin: 0.5rem 0;
}

.case-study-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-study-stats .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-stats .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s;
}

.tech-badge:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.case-study-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 1rem;
    margin-top: auto;
}

.case-study-link {
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.3s;
}

.case-study-card:hover .case-study-link {
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--dark-alt);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--gray);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 3px;
}

.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);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-alt);
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: color 0.3s;
}

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

.mobile-menu .cta-nav {
    margin-top: 2rem;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 50px;
    border: none;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-dropdown-toggle {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu a {
    padding: 0.8rem 0;
    font-size: 1rem;
    border-bottom: none;
    opacity: 0.8;
}

.mobile-dropdown-menu a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

/* Workflows Section */
.workflows {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.workflows-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workflows-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.workflows-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.workflow-features li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.workflow-features li::before {
    content: '→';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 900;
}

.workflows-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#workflow-canvas {
    width: 100%;
    height: 100%;
}

/* Certifications Section */
.certifications {
    padding: 4rem 2rem;
    background: var(--dark-alt);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
}

.cert-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.certifications .section-header {
    margin-bottom: 2rem;
}

.certifications h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cert-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: max-content;
}

.cert-badge {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.cert-badge:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.cert-badge-large {
    width: 200px;
    height: 200px;
}

.cert-badge-xlarge {
    width: 250px;
    height: 250px;
    margin-left: -50px;
    margin-right: -50px;
}

.cert-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Technology Logos */
.tech-logos {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 1.5rem 0;
    align-items: center;
    justify-content: center;
}

.tech-logo {
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-logo-large {
    width: 150px;
    height: 85px;
}

.tech-logo-small {
    width: 100px;
    height: 60px;
}

.tech-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.tech-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(1);
}

.tech-logo-black img {
    filter: brightness(0%) contrast(100%) saturate(0%);
}

/* Custom Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    filter: blur(5px);
}

.cursor-follower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(0);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background: var(--dark-alt);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.5s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-banner h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cookie-banner p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cookie-decline:hover {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

/* Light Gray Sections */
.section-light-gray {
    background: linear-gradient(135deg, #b0b0b0 0%, #909090 25%, #a0a0a0 50%, #909090 75%, #b0b0b0 100%);
    color: var(--dark);
}

.section-light-gray h2 {
    color: var(--dark);
}

.section-light-gray .section-tag {
    color: #000000;
}

.section-light-gray .section-description {
    color: #333;
}

.section-light-gray .service-card {
    background: #000000;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-light-gray .service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.section-light-gray .service-card h3 {
    color: var(--white);
}

.section-light-gray .service-card p,
.section-light-gray .service-features li {
    color: var(--gray);
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.5s ease-in;
}

/* Responsive */
@media (max-width: 968px) {
    .workflows-container {
        grid-template-columns: 1fr;
    }

    .workflows-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

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

    .service-number {
        font-size: 3.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .service-icon-container {
        padding: 2.5rem 2rem 0;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-icon svg {
        width: 42px;
        height: 42px;
    }

    .service-content {
        padding: 1.5rem 2rem;
    }

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

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

    .service-features li {
        font-size: 0.875rem;
    }

    .service-footer {
        padding: 1.5rem 2rem;
    }

    .service-link-text {
        font-size: 0.8rem;
    }

    .service-arrow {
        font-size: 1.3rem;
    }

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

    .case-study-card {
        padding: 2rem;
    }

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

    .case-study-content h3 {
        font-size: 1.5rem;
    }

    .case-study-stats .stat-value {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cert-grid {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .cert-badge {
        width: 125px;
        height: 125px;
    }

    .cert-badge-large {
        width: 175px;
        height: 175px;
    }

    .cert-badge-xlarge {
        width: 225px;
        height: 225px;
    }

    .tech-logos {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .tech-logo {
        width: 90px;
        height: 55px;
    }

    .tech-logo-large {
        width: 115px;
        height: 70px;
    }

    .tech-logo-small {
        width: 75px;
        height: 45px;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .cursor-follower {
        display: none;
    }
}

/* View Transitions API - Smooth page transitions */
@view-transition {
    navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.3s;
}

::view-transition-old(root) {
    animation-name: fade-out;
}

::view-transition-new(root) {
    animation-name: fade-in;
}

@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.form-status {
    margin-top: 1rem;
}

.success-message {
    padding: 1rem;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
}

.error-message {
    padding: 1rem;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid #ff3b30;
    border-radius: 8px;
    color: #ff3b30;
}

/* Career Page Styles */
.job-card {
    cursor: default;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-location,
.job-type,
.job-level {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
}

.job-card .service-footer {
    cursor: pointer;
}

.job-card .service-footer:hover .service-link-text {
    color: var(--primary-color);
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}
