/* ===================================
   CYBERPUNK THEME - VARIABLES
   =================================== */
:root {
    --primary-color: #7ed957;
    --secondary-color: #ffd700;
    --accent-color: #ff6b9d;
    --accent-red: #ff4757;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #0f1419;
    --text-primary: #e0e0e0;
    --text-secondary: #8892b0;
    --glow-primary: 0 0 5px rgba(126, 217, 87, 0.3);
    --glow-secondary: 0 0 5px rgba(255, 215, 0, 0.3);
    --glow-accent: 0 0 5px rgba(255, 107, 157, 0.3);
    --transition-fast: 0.15s;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   CYBERPUNK BACKGROUND
   =================================== */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-rotor {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(126, 217, 87, 0.5));
    transition: transform var(--transition-fast);
}

.logo-rotor:hover {
    transform: scale(1.1);
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-bracket {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    letter-spacing: 2px;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    color: var(--secondary-color);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

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

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

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

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

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

.hero-content {
    animation: fadeInLeft 1s ease-out;
    text-align: center;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .hero-description {
    width: 100%;
    max-width: 36rem;
}

.hero-description--last {
    margin-bottom: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 20px rgba(126, 217, 87, 0.6));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(126, 217, 87, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(126, 217, 87, 0.8));
    }
}

.glitch {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(126, 217, 87, 0.5);
    position: relative;
    animation: glitch 3s infinite;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.typing-text {
    border-right: 2px solid var(--secondary-color);
    animation: typing 6s steps(40) 2s, blink 1.4s infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.15s;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-secondary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Terminal Visual */
.hero-visual {
    animation: fadeInRight 1s ease-out;
}

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

.terminal-window {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    overflow: hidden;
}

.terminal-header {
    background: rgba(0, 255, 136, 0.1);
    padding: 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

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

.terminal-dot.red {
    background: #ff5f56;
    box-shadow: 0 0 10px #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px #ffbd2e;
}

.terminal-dot.green {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    max-height: 500px;
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    animation: fadeIn 0.5s;
}

.terminal-line:nth-child(1) { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }
.terminal-line:nth-child(2) { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }
.terminal-line:nth-child(3) { animation-delay: 0.9s; opacity: 0; animation-fill-mode: forwards; }
.terminal-line:nth-child(4) { animation-delay: 1.2s; opacity: 0; animation-fill-mode: forwards; }
.terminal-line:nth-child(5) { animation-delay: 1.5s; opacity: 0; animation-fill-mode: forwards; }
.terminal-line:nth-child(6) { animation-delay: 1.8s; opacity: 0; animation-fill-mode: forwards; }
.terminal-line:nth-child(7) { animation-delay: 2.1s; opacity: 0; animation-fill-mode: forwards; }

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

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

.success {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.online {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    animation: pulse 2s infinite;
}

.terminal-cursor::after {
    content: '█';
    animation: blink 1s infinite;
}

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

/* Hero format groups */
.hero-formats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(126, 217, 87, 0.05);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: 12px;
    max-width: 800px;
}

.format-group {
    text-align: center;
}

.hero-stats {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(126, 217, 87, 0.3);
    border-radius: 8px;
    text-align: center;
    max-width: 1000px;
    margin: 1.5rem auto;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.05), transparent);
}

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

.stat-card {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.15s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

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

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

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

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bar {
    height: 3px;
    background: var(--primary-color);
    margin-top: 1rem;
    box-shadow: var(--glow-primary);
    animation: loadBar 2s ease-out;
}

@keyframes loadBar {
    from { width: 0; }
    to { width: 100%; }
}

/* ===================================
   AD FORMATS SECTION
   =================================== */
.formats-section {
    background: linear-gradient(180deg, transparent, rgba(126, 217, 87, 0.05), transparent);
}

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

.formats-grid .format-card {
    min-width: 0;
}

.format-card {
    background: var(--bg-card);
    border: 2px solid rgba(126, 217, 87, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.15s;
}

.format-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(126, 217, 87, 0.2);
    transform: translateY(-5px);
}

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

.format-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.format-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(126, 217, 87, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.badge-info {
    background: rgba(78, 205, 196, 0.15);
    color: #4ecdc4;
    border: 1px solid #4ecdc4;
}

.badge-warning {
    background: rgba(255, 215, 0, 0.15);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-section {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05), transparent, rgba(255, 107, 157, 0.05));
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.why-grid .why-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

/* Make last 2 cards narrower and centered */
.why-grid .why-card:nth-child(n+4) {
    flex: 0 1 calc(50% - 1rem);
    max-width: 450px;
}

.why-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.15s;
}

.why-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

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

.why-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.why-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.15s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

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

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.tech-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ===================================
   TECHNOLOGY SECTION
   =================================== */
.technology-section {
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.05), transparent);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.tech-item {
    background: var(--bg-card);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.15s;
}

.tech-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.tech-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: linear-gradient(180deg, transparent, rgba(255, 0, 85, 0.05), transparent);
}

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

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-card);
    border-left: 3px solid var(--primary-color);
    transition: all 0.15s;
}

.benefits-list li:hover {
    background: rgba(0, 255, 136, 0.05);
    transform: translateX(10px);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-form-wrapper {
    position: relative;
    width: 100%;
}

.contact-form {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

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

.form-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-darker);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-success,
.form-error {
    width: 100%;
    box-sizing: border-box;
    background: var(--bg-card);
    border: 2px solid;
    border-radius: 10px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    min-height: 22rem;
}

.form-success {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.form-error {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.12);
}

.success-icon,
.error-icon {
    font-size: 3rem;
    line-height: 1;
    margin: 0 0 0.5rem;
    flex-shrink: 0;
}

.success-icon {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

.error-icon {
    color: var(--accent-color);
    text-shadow: var(--glow-accent);
}

.form-success h3 {
    color: var(--primary-color);
    margin: 0 0 0.35rem;
}

.form-error h3 {
    color: var(--accent-color);
    margin: 0 0 0.35rem;
}

.form-success p,
.form-error p {
    margin: 0;
    color: var(--text-primary);
}

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

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

.footer-content--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-content--split .footer-section:first-child {
    text-align: left;
}

.footer-content--split .footer-section:last-child {
    text-align: right;
}

.footer-content--split .footer-section:last-child ul {
    padding-left: 0;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p,
.footer-section ul {
    color: var(--text-secondary);
    line-height: 2;
}

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

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

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

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

.footer-tech {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ===================================
   3D TURBINE ANIMATIONS
   =================================== */

/* Small Turbine (Navbar) */
.turbine-logo-small {
    width: 45px;
    height: 45px;
    position: relative;
    perspective: 1000px;
    filter: drop-shadow(0 0 15px rgba(126, 217, 87, 0.5));
    transform-style: preserve-3d;
}

.turbine-logo-small::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-5px);
    background: radial-gradient(circle, rgba(126, 217, 87, 0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
}

.turbine-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 3s ease-in-out infinite;
}

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

.turbine-blades-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: turbine-rotate 3s linear infinite;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
}

@keyframes turbine-rotate {
    from {
        transform: rotateY(-15deg) rotateX(10deg) rotate(0deg);
    }
    to {
        transform: rotateY(-15deg) rotateX(10deg) rotate(360deg);
    }
}

.turbine-blade {
    position: absolute;
    width: 3px;
    height: 50%;
    top: 50%;
    left: 50%;
    transform-origin: center top;
    transform: translateX(-50%) rotate(calc(var(--i) * 30deg));
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--primary-color) 30%,
        rgba(78, 205, 196, 0.9) 50%,
        var(--primary-color) 70%,
        transparent 100%
    );
    box-shadow: 0 0 8px var(--primary-color);
    animation: blade-glow 2s ease-in-out infinite;
}

@keyframes blade-glow {
    0%, 100% {
        box-shadow: 0 0 8px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--accent-color);
    }
}

.turbine-core-small {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ffd700, #ff6b9d);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 
        0 0 15px #ffd700,
        0 0 25px #ff6b9d,
        inset 0 0 5px #ffffff;
    animation: core-pulse-small 2s ease-in-out infinite;
}

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

.core-glow-small {
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent);
    border-radius: 50%;
    filter: blur(5px);
    animation: glow-pulse 2s ease-in-out infinite;
}

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

/* Hero Turbine (Large) */
.turbine-hero {
    width: 230px;
    height: 230px;
    position: relative;
    perspective: 2000px;
    margin: 0 auto;
    animation: hero-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.turbine-hero::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 35px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(126, 217, 87, 0.3), transparent 70%);
    filter: blur(15px);
    animation: shadow-pulse 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes shadow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

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

.turbine-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid;
    border-radius: 50%;
    animation: ring-expand 4s ease-out infinite;
    transform-style: preserve-3d;
}

.turbine-ring.ring-1 {
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
    border-color: rgba(126, 217, 87, 0.4);
    animation-delay: 0s;
}

.turbine-ring.ring-2 {
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
    border-color: rgba(255, 107, 157, 0.4);
    animation-delay: 1.3s;
}

.turbine-ring.ring-3 {
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
    border-color: rgba(255, 215, 0, 0.4);
    animation-delay: 2.6s;
}

@keyframes ring-expand {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.turbine-main {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(15deg);
    transition: transform 0.3s ease-out;
    filter: drop-shadow(0 20px 40px rgba(126, 217, 87, 0.3));
}

.turbine-main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
}

.blade-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
}

.back-layer {
    transform: translateZ(-27px);
    animation: blade-spin-back 4s linear infinite;
    opacity: 0.7;
}

.middle-layer {
    transform: translateZ(0px) rotateZ(15deg);
    animation: blade-spin-middle 3s linear infinite reverse;
    opacity: 0.85;
}

.front-layer {
    transform: translateZ(27px) rotateZ(30deg);
    animation: blade-spin-front 2.5s linear infinite;
}

@keyframes blade-spin-back {
    from {
        transform: translateZ(-27px) rotate(0deg);
    }
    to {
        transform: translateZ(-27px) rotate(360deg);
    }
}

@keyframes blade-spin-middle {
    from {
        transform: translateZ(0px) rotateZ(15deg) rotate(0deg);
    }
    to {
        transform: translateZ(0px) rotateZ(15deg) rotate(360deg);
    }
}

@keyframes blade-spin-front {
    from {
        transform: translateZ(27px) rotateZ(30deg) rotate(0deg);
    }
    to {
        transform: translateZ(27px) rotateZ(30deg) rotate(360deg);
    }
}

.blade-segment {
    position: absolute;
    width: 5px;
    height: 50%;
    top: 50%;
    left: 50%;
    transform-origin: center top;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(126, 217, 87, 0.9) 20%,
        rgba(78, 205, 196, 1) 40%,
        rgba(126, 217, 87, 0.9) 60%,
        rgba(78, 205, 196, 0.7) 80%,
        transparent 100%
    );
    border-radius: 4px;
    box-shadow: 
        0 0 20px var(--primary-color),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: blade-glow-hero 3s ease-in-out infinite;
}

/* Add depth shading for 3D effect */
.back-layer .blade-segment {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(126, 217, 87, 0.6) 20%,
        rgba(78, 205, 196, 0.7) 40%,
        rgba(126, 217, 87, 0.6) 60%,
        rgba(78, 205, 196, 0.5) 80%,
        transparent 100%
    );
}

@keyframes blade-glow-hero {
    0%, 100% {
        box-shadow: 
            0 0 20px var(--primary-color),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 40px var(--primary-color),
            0 0 60px var(--accent-color),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

.blade-segment::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    top: 20%;
    left: 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shine-slide 2s linear infinite;
}

/* Side highlight for 3D depth */
.blade-segment::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2)
    );
    border-radius: 0 4px 4px 0;
}

@keyframes shine-slide {
    0% {
        top: 0%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 70%;
        opacity: 0;
    }
}

/* Blade positions */
.seg-1 { transform: translateX(-50%) rotate(0deg); }
.seg-2 { transform: translateX(-50%) rotate(30deg); }
.seg-3 { transform: translateX(-50%) rotate(60deg); }
.seg-4 { transform: translateX(-50%) rotate(90deg); }
.seg-5 { transform: translateX(-50%) rotate(120deg); }
.seg-6 { transform: translateX(-50%) rotate(150deg); }
.seg-7 { transform: translateX(-50%) rotate(180deg); }
.seg-8 { transform: translateX(-50%) rotate(210deg); }
.seg-9 { transform: translateX(-50%) rotate(240deg); }
.seg-10 { transform: translateX(-50%) rotate(270deg); }
.seg-11 { transform: translateX(-50%) rotate(300deg); }
.seg-12 { transform: translateX(-50%) rotate(330deg); }

.turbine-core {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    transform-style: preserve-3d;
}

.core-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.8) 0%,
        rgba(255, 107, 157, 0.6) 50%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(15px);
    animation: flame-flicker 0.2s ease-in-out infinite, core-rotate 10s linear infinite;
}

@keyframes flame-flicker {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

.core-inner {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        #ffffff 0%,
        #ffd700 30%,
        #ff6b9d 60%,
        #7ed957 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 30px #ffd700,
        0 0 60px #ff6b9d,
        0 0 90px #7ed957,
        inset 0 0 20px #ffffff;
    animation: core-pulse-hero 2s ease-in-out infinite;
}

@keyframes core-pulse-hero {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px #ffd700,
            0 0 60px #ff6b9d,
            0 0 90px #7ed957,
            inset 0 0 20px #ffffff;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 
            0 0 50px #ffd700,
            0 0 90px #ff6b9d,
            0 0 120px #7ed957,
            inset 0 0 30px #ffffff;
    }
}

.core-center {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ffffff, #ffd700);
    border-radius: 50%;
    box-shadow: 
        0 0 20px #ffffff,
        inset 0 0 10px #ffd700;
}

/* Energy particles */
.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.energy-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: particle-orbit 4s linear infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.7s;
    background: radial-gradient(circle, var(--accent-color), transparent);
    box-shadow: 0 0 15px var(--accent-color);
}

.dot-3 {
    animation-delay: 1.4s;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    box-shadow: 0 0 15px var(--secondary-color);
}

.dot-4 {
    animation-delay: 2.1s;
}

.dot-5 {
    animation-delay: 2.8s;
    background: radial-gradient(circle, var(--accent-color), transparent);
    box-shadow: 0 0 15px var(--accent-color);
}

.dot-6 {
    animation-delay: 3.5s;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    box-shadow: 0 0 15px var(--secondary-color);
}

@keyframes particle-orbit {
    0% {
        top: 50%;
        left: 0;
        opacity: 0;
        transform: scale(0);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        top: 0;
        left: 50%;
    }
    50% {
        top: 50%;
        left: 100%;
    }
    75% {
        top: 100%;
        left: 50%;
    }
    95% {
        opacity: 1;
    }
    100% {
        top: 50%;
        left: 0;
        opacity: 0;
        transform: scale(0);
    }
}

/* Sparks */
.spark-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 3px;
    height: 15px;
    top: 50%;
    left: 50%;
    background: linear-gradient(180deg, #ffd700, #ff6b9d, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px #ffd700;
    opacity: 0;
    animation: spark-fly 2.5s ease-out infinite;
}

.sp-1 {
    animation-delay: 0s;
}

.sp-2 {
    animation-delay: 0.6s;
}

.sp-3 {
    animation-delay: 1.2s;
}

.sp-4 {
    animation-delay: 1.8s;
}

@keyframes spark-fly {
    0% {
        transform: translate(-50%, -50%) translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-100px) translateX(calc((var(--random, 0.5) - 0.5) * 80px)) scale(0);
        opacity: 0;
    }
}

.sp-1 { --random: 0.2; }
.sp-2 { --random: 0.8; }
.sp-3 { --random: 0.3; }
.sp-4 { --random: 0.7; }

/* Hover effects */
.logo:hover .turbine-blades-container {
    animation-duration: 1s !important;
}

.logo:hover .turbine-core-small {
    animation-duration: 0.8s !important;
}

.hero-logo-container:hover .turbine-hero {
    animation-duration: 3s !important;
    filter: drop-shadow(0 10px 30px rgba(126, 217, 87, 0.6));
}

.hero-logo-container:hover .back-layer,
.hero-logo-container:hover .middle-layer,
.hero-logo-container:hover .front-layer {
    animation-duration: 1.5s !important;
}

.hero-logo-container:hover .turbine-main {
    animation-duration: 10s !important;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content--split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content--split .footer-section:first-child,
    .footer-content--split .footer-section:last-child {
        text-align: center;
    }
    
    .glitch {
        font-size: 2rem;
    }
}

