/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1e2a2e;
    --bg-secondary: #2d3a3f;
    --text-primary: #ffffff;
    --text-secondary: #b8c5c9;
    --accent-primary: #ff6b35;
    --accent-secondary: #ff8c5a;
    --border-color: #3d4a4f;
    --gradient-start: #ff6b35;
    --gradient-end: #ff8c5a;
    --card-bg: #2d3a3f;
    --code-bg: #1e2a2e;
    --code-border: #3d4a4f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(30, 42, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.version-link {
    font-size: 0.85rem !important;
    color: var(--accent-primary) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-icon:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/geeksspark_head.avif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: bgPulse 8s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 42, 46, 0.3) 0%,
        rgba(45, 58, 63, 0.2) 50%,
        rgba(30, 42, 46, 0.3) 100%
    );
    z-index: 1;
}


/* Quantum Particles */
.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.quantum-particles::before,
.quantum-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 
        100px 200px 0 0 rgba(255, 107, 53, 1),
        300px 100px 0 0 rgba(255, 107, 53, 0.9),
        500px 300px 0 0 rgba(255, 107, 53, 0.8),
        700px 150px 0 0 rgba(255, 107, 53, 0.9),
        900px 400px 0 0 rgba(255, 107, 53, 1),
        200px 500px 0 0 rgba(255, 107, 53, 0.9),
        800px 600px 0 0 rgba(255, 107, 53, 0.8),
        400px 700px 0 0 rgba(255, 107, 53, 0.9),
        600px 250px 0 0 rgba(255, 140, 90, 0.8),
        150px 350px 0 0 rgba(255, 140, 90, 0.9);
    animation: particleFloat 15s linear infinite;
    filter: blur(0.5px);
}

.quantum-particles::after {
    animation-delay: -7.5s;
    box-shadow: 
        150px 300px 0 0 rgba(255, 140, 90, 1),
        350px 200px 0 0 rgba(255, 140, 90, 0.9),
        550px 400px 0 0 rgba(255, 140, 90, 1),
        750px 250px 0 0 rgba(255, 140, 90, 0.8),
        950px 500px 0 0 rgba(255, 140, 90, 1),
        250px 600px 0 0 rgba(255, 140, 90, 0.9),
        650px 700px 0 0 rgba(255, 140, 90, 0.8),
        450px 800px 0 0 rgba(255, 140, 90, 0.9),
        850px 150px 0 0 rgba(255, 107, 53, 0.9),
        50px 450px 0 0 rgba(255, 107, 53, 1);
    filter: blur(0.5px);
}

@keyframes particleFloat {
    0% { 
        transform: translate(0, 0) scale(1); 
        opacity: 1; 
        filter: brightness(1) blur(0.5px);
    }
    25% { 
        transform: translate(50px, -100px) scale(1.3); 
        opacity: 0.9; 
        filter: brightness(1.3) blur(0.3px);
    }
    50% { 
        transform: translate(-30px, -200px) scale(0.9); 
        opacity: 0.8; 
        filter: brightness(1.1) blur(0.4px);
    }
    75% { 
        transform: translate(80px, -300px) scale(1.2); 
        opacity: 0.85; 
        filter: brightness(1.2) blur(0.3px);
    }
    100% { 
        transform: translate(0, -400px) scale(1); 
        opacity: 0; 
        filter: brightness(1) blur(0.5px);
    }
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 40%),
        radial-gradient(circle, rgba(255, 140, 90, 0.3) 0%, transparent 50%),
        radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 60%),
        radial-gradient(circle, rgba(255, 140, 90, 0.2) 0%, transparent 70%);
    animation: energyPulse 6s ease-in-out infinite;
    z-index: 2;
    filter: blur(1px);
}

@keyframes energyPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.5;
        filter: blur(1px) brightness(1);
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.3) rotate(90deg);
        opacity: 0.7;
        filter: blur(0.5px) brightness(1.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
        opacity: 0.6;
        filter: blur(1px) brightness(1.2);
    }
    75% { 
        transform: translate(-50%, -50%) scale(1.25) rotate(270deg);
        opacity: 0.65;
        filter: blur(0.5px) brightness(1.25);
    }
}

/* Quantum Field */
.quantum-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(255, 107, 53, 0.15) 3px,
            rgba(255, 107, 53, 0.15) 6px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255, 107, 53, 0.15) 3px,
            rgba(255, 107, 53, 0.15) 6px
        );
    animation: fieldShift 12s linear infinite;
    opacity: 0.7;
    z-index: 2;
    box-shadow: inset 0 0 200px rgba(255, 107, 53, 0.1);
}

@keyframes fieldShift {
    0% { 
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% { 
        transform: translate(120px, 120px);
        opacity: 0.6;
    }
}

/* Quantum Connections */
.quantum-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.quantum-connections::before,
.quantum-connections::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 107, 53, 0.6) 20%,
        rgba(255, 107, 53, 1) 50%,
        rgba(255, 107, 53, 0.6) 80%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
                0 0 40px rgba(255, 107, 53, 0.4);
    animation: connectionFlow 3s ease-in-out infinite;
    border-radius: 2px;
}

.quantum-connections::before {
    left: 20%;
    top: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.quantum-connections::after {
    right: 25%;
    top: 30%;
    animation-delay: 1.5s;
    transform: rotate(-15deg);
}

@keyframes connectionFlow {
    0%, 100% {
        opacity: 0;
        transform: translateY(-150px) scaleY(0) rotate(15deg);
        filter: brightness(0.5);
    }
    20% {
        opacity: 0.6;
        filter: brightness(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scaleY(1) rotate(15deg);
        filter: brightness(1.5);
    }
    80% {
        opacity: 0.6;
        filter: brightness(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(150px) scaleY(0) rotate(15deg);
        filter: brightness(0.5);
    }
}

.quantum-connections::before,
.quantum-connections::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.8), transparent);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: connectionFlow 4s ease-in-out infinite;
}

.quantum-connections::before {
    left: 20%;
    top: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.quantum-connections::after {
    right: 25%;
    top: 30%;
    animation-delay: 2s;
    transform: rotate(-15deg);
}

@keyframes connectionFlow {
    0%, 100% {
        opacity: 0;
        transform: translateY(-100px) scaleY(0) rotate(15deg);
    }
    20% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
        transform: translateY(0) scaleY(1) rotate(15deg);
    }
    80% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(100px) scaleY(0) rotate(15deg);
    }
}

/* Quantum Sparks */
.quantum-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.quantum-sparks::before,
.quantum-sparks::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(255, 107, 53, 1),
        0 0 30px rgba(255, 107, 53, 0.8),
        0 0 45px rgba(255, 107, 53, 0.5);
    animation: sparkMove 3s linear infinite;
}

.quantum-sparks::before {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.quantum-sparks::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes sparkMove {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
        filter: brightness(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.5);
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        filter: brightness(2);
    }
    90% {
        opacity: 1;
        filter: brightness(1.5);
    }
    100% {
        transform: translate(150px, -150px) scale(0);
        opacity: 0;
        filter: brightness(0.5);
    }
}

/* Quantum Pulse */
.quantum-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 3px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    animation: pulseRing 2s ease-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        inset 0 0 30px rgba(255, 107, 53, 0.2);
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.5);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        border-width: 1px;
        filter: brightness(2);
    }
}

/* Quantum Beams */
.quantum-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.quantum-beams::before,
.quantum-beams::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 107, 53, 0.3) 20%,
        rgba(255, 107, 53, 0.8) 50%,
        rgba(255, 107, 53, 0.3) 80%,
        transparent 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    animation: beamSweep 4s ease-in-out infinite;
}

.quantum-beams::before {
    left: 30%;
    animation-delay: 0s;
}

.quantum-beams::after {
    right: 30%;
    animation-delay: 2s;
}

@keyframes beamSweep {
    0%, 100% {
        transform: translateX(0) scaleY(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translateX(50px) scaleY(1);
        opacity: 0.8;
    }
}

/* Quantum Nodes */
.quantum-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.quantum-nodes::before,
.quantum-nodes::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 1),
        0 0 40px rgba(255, 107, 53, 0.8),
        0 0 60px rgba(255, 107, 53, 0.5);
    animation: nodePulse 2s ease-in-out infinite;
}

.quantum-nodes::before {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.quantum-nodes::after {
    bottom: 25%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        filter: brightness(1);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        filter: brightness(2);
    }
}

/* Quantum Trails */
.quantum-trails {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.quantum-trails::before,
.quantum-trails::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 300px;
    background: linear-gradient(to bottom,
        rgba(255, 107, 53, 0) 0%,
        rgba(255, 107, 53, 0.8) 30%,
        rgba(255, 107, 53, 1) 50%,
        rgba(255, 107, 53, 0.8) 70%,
        rgba(255, 107, 53, 0) 100%);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    animation: trailMove 5s linear infinite;
}

.quantum-trails::before {
    left: 40%;
    top: -300px;
    animation-delay: 0s;
    transform: rotate(25deg);
}

.quantum-trails::after {
    right: 40%;
    top: -300px;
    animation-delay: 2.5s;
    transform: rotate(-25deg);
}

@keyframes trailMove {
    0% {
        transform: translateY(0) rotate(25deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 300px)) rotate(25deg);
        opacity: 0;
    }
}

/* Quantum Orb */
.quantum-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 107, 53, 0.4) 0%,
        rgba(255, 140, 90, 0.2) 40%,
        transparent 70%);
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.6),
        0 0 100px rgba(255, 107, 53, 0.4),
        inset 0 0 50px rgba(255, 107, 53, 0.2);
    z-index: 2;
    pointer-events: none;
    animation: orbFloat 6s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(-48%, -52%) scale(1.1) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-52%, -48%) scale(1.1) rotate(270deg);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 16px;
}

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

.hero-title {
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5);
    filter: none;
}

.title-line {
    display: inline-block;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(135deg, #ff733f 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: none;
}

.quantum-text {
    position: relative;
    filter: none;
}

.quantum-glow {
    display: none;
}

.subtitle-glow {
    color: var(--accent-primary);
    font-weight: 600;
    text-shadow: 
        0 0 15px rgba(255, 107, 53, 0.8),
        0 0 30px rgba(255, 107, 53, 0.6),
        0 0 45px rgba(255, 107, 53, 0.4);
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(255, 107, 53, 0.8),
            0 0 30px rgba(255, 107, 53, 0.6),
            0 0 45px rgba(255, 107, 53, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255, 107, 53, 1),
            0 0 40px rgba(255, 107, 53, 0.8),
            0 0 60px rgba(255, 107, 53, 0.6);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    filter: none;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.quantum-btn {
    position: relative;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: btnGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnGlow {
    0%, 100% { 
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% { 
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4),
                0 0 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.icon-3d {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    margin: 0 auto;
}

.logo-3d {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255, 107, 53, 1))
            drop-shadow(0 0 100px rgba(255, 107, 53, 0.8))
            drop-shadow(0 0 150px rgba(255, 107, 53, 0.5));
    animation: float 3s ease-in-out infinite, quantumRotate 20s linear infinite;
    position: relative;
    z-index: 3;
}

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

@keyframes quantumRotate {
    0% { 
        transform: rotateY(0deg) rotateX(0deg);
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 1))
                drop-shadow(0 0 100px rgba(255, 107, 53, 0.8))
                drop-shadow(0 0 150px rgba(255, 107, 53, 0.5));
    }
    25% { 
        transform: rotateY(90deg) rotateX(10deg);
        filter: drop-shadow(0 0 60px rgba(255, 107, 53, 1))
                drop-shadow(0 0 120px rgba(255, 107, 53, 0.9))
                drop-shadow(0 0 180px rgba(255, 107, 53, 0.6));
    }
    50% { 
        transform: rotateY(180deg) rotateX(0deg);
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 1))
                drop-shadow(0 0 100px rgba(255, 107, 53, 0.8))
                drop-shadow(0 0 150px rgba(255, 107, 53, 0.5));
    }
    75% { 
        transform: rotateY(270deg) rotateX(-10deg);
        filter: drop-shadow(0 0 60px rgba(255, 107, 53, 1))
                drop-shadow(0 0 120px rgba(255, 107, 53, 0.9))
                drop-shadow(0 0 180px rgba(255, 107, 53, 0.6));
    }
    100% { 
        transform: rotateY(360deg) rotateX(0deg);
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 1))
                drop-shadow(0 0 100px rgba(255, 107, 53, 0.8))
                drop-shadow(0 0 150px rgba(255, 107, 53, 0.5));
    }
}

.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Quantum Rings */
.quantum-ring {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 107, 53, 0.9);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 480px;
    height: 480px;
    border-color: rgba(255, 140, 90, 0.8);
    box-shadow: 0 0 30px rgba(255, 140, 90, 0.7);
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 560px;
    height: 560px;
    border-color: rgba(255, 107, 53, 0.7);
    box-shadow: 0 0 35px rgba(255, 107, 53, 0.6);
    animation: ringPulse 3s ease-in-out infinite 1s;
}

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

/* Hologram Effect */
.hologram-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 53, 0.3) 0%,
        transparent 25%,
        transparent 75%,
        rgba(255, 107, 53, 0.3) 100%
    );
    animation: hologramScan 4s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes hologramScan {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.6;
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.3;
    }
}

/* Quantum Orbits */
.quantum-orbits {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 1),
                0 0 40px rgba(255, 107, 53, 0.9),
                0 0 60px rgba(255, 107, 53, 0.6);
    top: 50%;
    left: 50%;
}

.orbit-1 {
    animation: orbit1 4s linear infinite;
}

.orbit-2 {
    animation: orbit2 6s linear infinite;
}

.orbit-3 {
    animation: orbit3 8s linear infinite;
}

@keyframes orbit1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(250px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(250px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(300px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(350px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(350px) rotate(-360deg);
    }
}

/* Quantum Tunnel */
.quantum-tunnel {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 300px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(255, 107, 53, 0.1) 20px,
            rgba(255, 107, 53, 0.1) 22px
        );
    perspective: 500px;
    animation: tunnelFlow 3s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes tunnelFlow {
    0% {
        transform: translateX(-50%) translateZ(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) translateZ(-200px) scale(1.5);
        opacity: 0.6;
    }
    100% {
        transform: translateX(-50%) translateZ(-400px) scale(2);
        opacity: 0.3;
    }
}

/* Trusted By Section */
.trusted-by {
    padding: 2rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.trusted-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    scroll-margin-top: 80px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.9));
    color: var(--accent-secondary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.section-label {
    display: block;
    text-align: center;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 90, 0.03) 100%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 107, 53, 0.1) inset;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3),
                0 0 40px rgba(255, 107, 53, 0.2),
                inset 0 0 30px rgba(255, 107, 53, 0.05);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.05) 100%);
}

.feature-visual {
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal-window {
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.terminal-header {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--code-border);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) { background-color: #ff5f56; }
.terminal-dot:nth-child(2) { background-color: #ffbd2e; }
.terminal-dot:nth-child(3) { background-color: #27c93f; }

.terminal-content {
    padding: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.terminal-prompt {
    color: var(--accent-primary);
    margin-right: 0.5rem;
}

.hmr-visual {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.hmr-item {
    padding: 0.75rem;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hmr-item.active {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background-color: rgba(255, 107, 53, 0.1);
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-icon {
    padding: 0.5rem 1rem;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.build-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.build-step {
    padding: 0.75rem 1.25rem;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.build-arrow {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Foundation Section */
.foundation {
    padding: 6rem 0;
}

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

.foundation-item {
    padding: 2rem;
}

.foundation-visual {
    margin-bottom: 1.5rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.plugin-core {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

.plugin-item {
    padding: 0.5rem 1rem;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.ssr-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ssr-server,
.ssr-client {
    padding: 1rem 1.5rem;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.ssr-arrow {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.ci-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 200px;
}

.ci-node {
    aspect-ratio: 1;
    background-color: var(--code-bg);
    border: 2px solid var(--accent-primary);
    border-radius: 8px;
    position: relative;
}

.ci-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-color: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
}

.foundation-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.foundation-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.code-snippet {
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.code-keyword {
    color: #c792ea;
}

.code-string {
    color: #c3e88d;
}

.code-function {
    color: #82aaff;
}

.code-comment {
    color: var(--text-secondary);
    font-style: italic;
}

/* Frameworks Section */
.frameworks {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.keyboard-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--text-primary) 2px, var(--text-primary) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--text-primary) 2px, var(--text-primary) 4px);
    background-size: 40px 40px;
    pointer-events: none;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.framework-item {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
}

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

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

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

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

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sponsors Section */
.sponsors {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.sponsor-main {
    text-align: center;
    margin: 3rem 0;
}

.sponsor-logo-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sponsor-partnership {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.sponsors-categories {
    margin: 3rem 0;
}

.sponsor-category {
    margin-bottom: 3rem;
}

.sponsor-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.sponsor-logo {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.sponsor-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e2a2e 0%, #2d3a3f 50%, #1e2a2e 100%);
    opacity: 0.8;
    z-index: 0;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-actions {
    margin-top: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .features-grid,
    .foundation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 1rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
    }


    .quantum-particles::before,
    .quantum-particles::after {
        box-shadow: 
            50px 100px 0 0 rgba(255, 107, 53, 0.6),
            150px 50px 0 0 rgba(255, 107, 53, 0.4),
            250px 150px 0 0 rgba(255, 107, 53, 0.3);
    }


    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .foundation-grid,
    .frameworks-grid,
    .testimonials-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .section-subtitle {
        font-size: 1rem;
    }

    .features,
    .foundation,
    .frameworks,
    .testimonials,
    .sponsors,
    .final-cta {
        padding: 4rem 0;
    }

    .sponsor-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .quantum-tunnel {
        height: 150px;
    }

    .feature-card,
    .testimonial-card,
    .foundation-item {
        padding: 1.5rem;
    }

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

    .features,
    .foundation,
    .frameworks,
    .testimonials,
    .sponsors,
    .final-cta {
        padding: 3rem 0;
    }

    .sponsor-logos {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-primary);
    scroll-margin-top: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    max-width: 600px;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.about-text-content {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    scroll-margin-top: 80px;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0;
}

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

.service-features {
    margin: 1.5rem 0;
}

.service-feature-group {
    margin-bottom: 1.5rem;
}

.service-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.service-feature-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-cta {
    color: var(--accent-primary);
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.service-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: var(--bg-primary);
    scroll-margin-top: 80px;
}

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

.portfolio-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-primary);
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item > *:not(.portfolio-image) {
    padding: 0 2rem;
}

.portfolio-item .portfolio-category {
    margin-top: 1.5rem;
}

.portfolio-item .portfolio-link {
    margin-bottom: 2rem;
    display: inline-block;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.portfolio-category {
    display: inline-block;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 4px;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.portfolio-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    scroll-margin-top: 80px;
}

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

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

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

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

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

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    display: block;
}

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

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.contact-detail-item {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-detail-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-detail-value {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-detail-value:hover {
    color: var(--accent-secondary);
}

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

.social-link {
    color: var(--accent-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-primary);
    background-color: rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

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