﻿:root {
    --color-primary: #8B4252;
    --color-secondary: #56334B;
    --color-dark: #272C49;
    --color-light: #A9A8AD;
    --color-accent: #00ffcc;
    --color-white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-cyber: linear-gradient(135deg, #8B4252, #56334B, #272C49);
    --gradient-glow: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(139, 66, 82, 0.5);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 66, 82, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 66, 82, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(39, 44, 73, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 66, 82, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-glow);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--color-primary));
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--color-accent);
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--color-primary);
}

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(39, 44, 73, 0.95) 0%,
        rgba(86, 51, 75, 0.9) 50%,
        rgba(139, 66, 82, 0.85) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 204, 0.03) 2px,
        rgba(0, 255, 204, 0.03) 4px
    );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--color-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 204, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 204, 0.6); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 14px rgba(0, 110, 88, 0.7));
}

.hero-description {
    font-size: 18px;
    color: var(--color-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(139, 66, 82, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 66, 82, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 204, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--color-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #555;
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    pointer-events: none;
    animation: framePulse 3s ease-in-out infinite;
}

@keyframes framePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 18px;
    color: var(--color-light);
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(86, 51, 75, 0.5);
    border-color: var(--color-accent);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--color-white);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-white);
}

.feature-text p {
    font-size: 14px;
    color: var(--color-light);
}

.trial {
    background: rgba(39, 44, 73, 0.5);
}

.trial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.trial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trial-content {
    position: relative;
    z-index: 1;
}

.trial-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.trial-content p {
    font-size: 16px;
    color: var(--color-light);
    margin-bottom: 24px;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-light);
}

.trial-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trial-form input {
    padding: 14px 20px;
    background: rgba(39, 44, 73, 0.8);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 8px;
    color: var(--color-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.trial-form input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.trial-form input::placeholder {
    color: var(--color-light);
}

.trial-image-wrapper {
    position: relative;
}

.trial-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    background: #555;
}

.trial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(139, 66, 82, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.technique-card {
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.technique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.technique-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.2);
}

.technique-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    margin: 0 auto 24px;
    color: var(--color-white);
}

.technique-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.technique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #555;
}

.technique-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(39, 44, 73, 0.9), transparent);
}

.technique-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.technique-card p {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.technique-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.technique-list li {
    font-size: 14px;
    color: var(--color-light);
    padding-left: 20px;
    position: relative;
}

.technique-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.thematic-grid {
    display: grid;
    gap: 32px;
}

.thematic-card {
    display: grid;
    grid-template-columns: auto 300px 1fr;
    gap: 32px;
    align-items: center;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.thematic-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.2);
}

.thematic-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
    opacity: 0.3;
}

.thematic-image {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.thematic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #555;
}

.thematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(39, 44, 73, 0.7), transparent);
}

.thematic-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.thematic-content p {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.thematic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.thematic-tags span {
    padding: 6px 14px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-size: 12px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project {
    background: rgba(39, 44, 73, 0.5);
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-image-wrapper {
    position: relative;
}

.project-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    background: #555;
}

.project-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 44, 73, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-accent);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--color-accent);
    font-weight: 600;
}

.project-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.project-description {
    font-size: 16px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.project-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 12px;
    color: var(--color-light);
    text-transform: uppercase;
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.project-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-light);
}

.project-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-light);
    line-height: 1.8;
}

.footer {
    background: rgba(39, 44, 73, 0.95);
    border-top: 1px solid rgba(139, 66, 82, 0.3);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.footer-description {
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(86, 51, 75, 0.5);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 8px;
    color: var(--color-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.footer-links,
.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contacts a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-light);
    font-size: 14px;
}

.footer-contacts svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 66, 82, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-light);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 32px));
    background: rgba(39, 44, 73, 0.95);
    border: 1px solid rgba(139, 66, 82, 0.5);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 1100;
    backdrop-filter: blur(12px);
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.6;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner .btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 2px solid rgba(139, 66, 82, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-banner .btn-primary {
    flex: 1;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-grid,
    .trial-card,
    .project-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thematic-card {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .thematic-image {
        grid-column: 1 / -1;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        width: 100%;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 24px);
        padding: 20px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(39, 44, 73, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    
    .trial-card {
        padding: 40px 20px;
    }
    
    .thematic-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .thematic-number {
        font-size: 48px;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-image,
    .trial-image,
    .project-image {
        height: 300px;
    }
    
    .cookie-banner .btn-primary,
    .cookie-banner .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* Page Hero Styles */
.page-hero {
    padding: 140px 0 80px;
    background: var(--gradient-cyber);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 204, 0.03) 10px,
        rgba(0, 255, 204, 0.03) 20px
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    font-size: 18px;
    color: var(--color-light);
    line-height: 1.8;
}

/* Classes Info */
.classes-info {
    padding: 80px 0;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.class-card {
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.class-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.2);
}

.class-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.class-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.class-card p {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.class-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.class-list li {
    font-size: 14px;
    color: var(--color-light);
    padding-left: 24px;
    position: relative;
}

.class-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
}

/* Study Grid */
.techniques-study {
    background: rgba(39, 44, 73, 0.5);
}

.study-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.study-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.study-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.2);
}

.study-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.study-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #555;
}

.study-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
}

.study-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.study-description {
    font-size: 16px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.study-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.study-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-light);
}

.study-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Process Timeline */
.lesson-process {
    padding: 100px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.timeline-content p {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.timeline-duration {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    background: rgba(39, 44, 73, 0.5);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 18px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    background: #555;
}

/* Contact Page */
.contact-section {
    padding: 140px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--color-white);
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.contact-details p,
.contact-details a {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.6;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--color-accent);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(139, 66, 82, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(30%) contrast(1.2);
}

.contact-form-card {
    grid-column: 1 / -1;
    width: 60%;
    margin: 0 auto;
    padding: 32px;
    background: rgba(86, 51, 75, 0.3);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 204, 0.12), transparent 60%);
    pointer-events: none;
}

.contact-form-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form-card p {
    font-size: 16px;
    color: var(--color-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 20px;
    background: rgba(39, 44, 73, 0.85);
    border: 1px solid rgba(139, 66, 82, 0.3);
    border-radius: 8px;
    color: var(--color-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 18px rgba(0, 110, 88, 0.35);
}

.contact-form textarea {
    min-height: 140px;
}

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

.form-note {
    font-size: 13px;
    color: var(--color-light);
    opacity: 0.8;
}

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

.form-note a:hover {
    color: var(--color-white);
}

/* Content Page Styles */
.content-page {
    padding: 140px 0 80px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.content-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
}

.content-wrapper p {
    font-size: 16px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    font-size: 16px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.success-icon svg {
    width: 60px;
    height: 60px;
}

/* Responsive for additional pages */
@media (max-width: 1024px) {
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    .study-card {
        grid-template-columns: 1fr;
    }
    
    .study-image img {
        height: 250px;
    }
    
    .cta-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }
    
    .study-features {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-description {
        font-size: 16px;
    }
    
    .class-card {
        padding: 24px;
    }
    
    .study-card {
        padding: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .content-wrapper h1 {
        font-size: 32px;
    }
    
    .content-wrapper h2 {
        font-size: 24px;
    }
}

@media (max-width: 320px) {
    .page-title {
        font-size: 28px;
    }
}