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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
--gradient-alt: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--dark);
background: var(--light);
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Orbitron', sans-serif;
font-weight: 600;
line-height: 1.2;
margin-bottom: 12px;
}

h1 {
font-size: 32px;
}

h2 {
font-size: 24px;
}

h3 {
font-size: 18px;
}

p {
margin-bottom: 12px;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--light);
padding: 15px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 200px;
}

.privacy-buttons {
display: flex;
gap: 10px;
}

.privacy-buttons a {
color: var(--primary);
font-size: 13px;
}

.privacy-buttons button {
background: var(--primary);
color: var(--dark);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
}

.header {
background: rgba(10, 14, 39, 0.95);
backdrop-filter: blur(10px);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid var(--primary);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Orbitron', sans-serif;
font-size: 18px;
font-weight: 700;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 1px;
}

.nav {
display: flex;
gap: 25px;
}

.nav a {
color: var(--light);
font-size: 14px;
font-weight: 500;
position: relative;
padding: 5px 0;
}

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

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

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

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

.hero {
background: var(--dark);
color: var(--light);
padding: 0;
position: relative;
overflow: hidden;
min-height: 600px;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--gradient);
opacity: 0.15;
z-index: 1;
}

.hero::after {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 800px;
height: 800px;
background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
opacity: 0.2;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
padding: 100px 15px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-text h1 {
font-size: 56px;
margin-bottom: 25px;
line-height: 1.1;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-text p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.hero-image {
position: relative;
}

.hero-image img {
border-radius: 20px;
box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.5s ease;
}

.hero-image:hover img {
transform: perspective(1000px) rotateY(0deg);
}

.hero-stats {
display: flex;
gap: 30px;
margin-top: 40px;
}

.hero-stat {
text-align: left;
}

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

.hero-stat-label {
font-size: 13px;
opacity: 0.7;
}

.btn-primary {
display: inline-block;
background: var(--primary);
color: var(--dark);
padding: 12px 30px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: 2px solid var(--primary);
}

.btn-primary:hover {
background: transparent;
color: var(--primary);
transform: translateY(-2px);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--dark);
padding: 12px 30px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--dark);
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: var(--dark);
color: var(--light);
transform: translateY(-2px);
}

section {
padding: 60px 0;
}

.features {
background: var(--light);
}

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

.feature-card {
background: white;
padding: 25px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid #e0e0e0;
}

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

.feature-card i {
font-size: 36px;
color: var(--primary);
margin-bottom: 15px;
}

.about {
background: white;
}

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

.about-text h2 {
margin-bottom: 20px;
}

.about-text p {
margin-bottom: 15px;
color: var(--gray);
}

.about-image img {
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.curriculum {
background: var(--light);
}

.curriculum h2 {
text-align: center;
margin-bottom: 40px;
}

.curriculum-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.curriculum-item {
background: white;
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.curriculum-icon {
font-size: 28px;
color: var(--primary);
margin-bottom: 12px;
}

.stats {
background: var(--dark);
color: var(--light);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
}

.stat-number {
font-size: 42px;
font-weight: 700;
color: var(--primary);
font-family: 'Orbitron', sans-serif;
margin-bottom: 8px;
}

.stat-label {
font-size: 14px;
opacity: 0.9;
}

.cta {
background: var(--dark);
color: var(--light);
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--gradient);
opacity: 0.1;
}

.cta-content {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr auto;
gap: 40px;
align-items: center;
text-align: left;
}

.cta-text h2 {
margin-bottom: 15px;
font-size: 36px;
}

.cta-text p {
margin-bottom: 0;
font-size: 16px;
opacity: 0.9;
}

.cta-action {
display: flex;
flex-direction: column;
gap: 12px;
align-items: flex-end;
}

.cta-highlight {
font-size: 13px;
color: var(--primary);
font-weight: 600;
}

.page-hero {
background: var(--gradient);
color: var(--light);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 38px;
margin-bottom: 15px;
}

.products {
background: var(--light);
}

.products h2 {
text-align: center;
margin-bottom: 40px;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.product-card {
background: white;
padding: 30px;
border-radius: 8px;
text-align: center;
border: 2px solid #e0e0e0;
transition: all 0.3s ease;
position: relative;
}

.product-card.featured {
border-color: var(--primary);
transform: scale(1.05);
}

.product-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-icon {
font-size: 42px;
color: var(--primary);
margin-bottom: 15px;
}

.product-card h3 {
margin-bottom: 15px;
}

.product-features {
list-style: none;
margin: 20px 0;
text-align: left;
}

.product-features li {
padding: 8px 0;
font-size: 13px;
color: var(--gray);
}

.product-features i {
color: var(--primary);
margin-right: 8px;
}

.product-price {
font-size: 32px;
font-weight: 700;
color: var(--primary);
font-family: 'Orbitron', sans-serif;
margin: 20px 0;
}

.course-benefits {
background: white;
}

.course-benefits h2 {
text-align: center;
margin-bottom: 40px;
}

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

.benefit-item {
text-align: center;
padding: 20px;
}

.benefit-item i {
font-size: 36px;
color: var(--primary);
margin-bottom: 15px;
}

.course-structure {
background: var(--light);
}

.structure-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.structure-image img {
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.animation-intro {
background: white;
}

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

.intro-image img {
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.animation-topics {
background: var(--light);
}

.animation-topics h2 {
text-align: center;
margin-bottom: 40px;
}

.topics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.topic-card {
background: white;
padding: 25px;
border-radius: 8px;
border-top: 4px solid var(--primary);
}

.topic-number {
font-size: 32px;
font-weight: 700;
color: var(--primary);
font-family: 'Orbitron', sans-serif;
margin-bottom: 12px;
opacity: 0.3;
}

.animation-workflow {
background: white;
}

.animation-workflow h2 {
text-align: center;
margin-bottom: 40px;
}

.workflow-steps {
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}

.workflow-step {
flex: 1;
min-width: 180px;
text-align: center;
padding: 20px;
background: var(--light);
border-radius: 8px;
}

.step-icon {
font-size: 36px;
color: var(--primary);
margin-bottom: 12px;
}

.workflow-arrow {
font-size: 24px;
color: var(--primary);
}

.animation-cta {
background: var(--light);
}

.cta-box {
background: var(--gradient);
color: var(--light);
padding: 50px;
border-radius: 12px;
text-align: center;
}

.contact-hero {
background: var(--gradient);
color: var(--light);
padding: 60px 0;
text-align: center;
}

.contact-main {
background: var(--light);
}

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

.contact-info-section h2 {
margin-bottom: 15px;
}

.contact-methods {
margin-top: 30px;
}

.contact-method {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.method-icon {
font-size: 24px;
color: var(--primary);
flex-shrink: 0;
}

.method-content h3 {
font-size: 16px;
margin-bottom: 5px;
}

.method-content p {
color: var(--gray);
font-size: 14px;
}

.contact-form-section {
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
margin-bottom: 20px;
}

.form-group {
margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
font-family: 'Space Grotesk', sans-serif;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.map-section {
background: white;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-container {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
background: var(--light);
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
}

.thankyou-icon {
font-size: 72px;
color: var(--primary);
margin-bottom: 20px;
}

.thankyou-icon i {
animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.error-code {
font-size: 120px;
font-weight: 700;
color: var(--primary);
font-family: 'Orbitron', sans-serif;
line-height: 1;
margin-bottom: 20px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.policy-hero {
background: var(--gradient);
color: var(--light);
padding: 50px 0;
text-align: center;
}

.policy-content {
background: white;
padding: 60px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
margin-top: 30px;
margin-bottom: 15px;
color: var(--dark);
}

.policy-text p {
color: var(--gray);
margin-bottom: 15px;
line-height: 1.8;
}

.footer {
background: var(--dark);
color: var(--light);
padding: 25px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-info p {
margin: 0;
font-size: 13px;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 12px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

.testimonials {
background: var(--light);
}

.testimonials h2 {
text-align: center;
margin-bottom: 50px;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
position: relative;
}

.testimonial-quote {
font-size: 48px;
color: var(--primary);
opacity: 0.2;
position: absolute;
top: 20px;
left: 20px;
font-family: Georgia, serif;
}

.testimonial-text {
margin-bottom: 20px;
font-style: italic;
color: var(--gray);
line-height: 1.7;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--gradient);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 18px;
}

.author-info h4 {
margin: 0;
font-size: 15px;
color: var(--dark);
}

.author-info p {
margin: 0;
font-size: 13px;
color: var(--gray);
}

.process {
background: white;
}

.process h2 {
text-align: center;
margin-bottom: 50px;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.process-step {
text-align: center;
padding: 30px 20px;
background: var(--light);
border-radius: 12px;
position: relative;
transition: transform 0.3s ease;
}

.process-step:hover {
transform: translateY(-5px);
}

.process-number {
width: 60px;
height: 60px;
margin: 0 auto 20px;
background: var(--gradient);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
font-family: 'Orbitron', sans-serif;
}

.process-step h3 {
margin-bottom: 12px;
}

.process-step p {
color: var(--gray);
font-size: 14px;
}

.showcase {
background: var(--dark);
color: var(--light);
}

.showcase h2 {
text-align: center;
margin-bottom: 20px;
}

.showcase-subtitle {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
opacity: 0.8;
}

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

.showcase-item {
position: relative;
overflow: hidden;
border-radius: 12px;
aspect-ratio: 16/10;
}

.showcase-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

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

.showcase-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
padding: 30px 20px 20px;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
transform: translateY(0);
}

.showcase-overlay h3 {
margin-bottom: 8px;
color: white;
}

.showcase-overlay p {
margin: 0;
font-size: 13px;
opacity: 0.9;
}

@media (max-width: 768px) {
.showcase-grid {
grid-template-columns: 1fr;
}

.showcase-item {
aspect-ratio: 16/9;
}
}

@media (max-width: 480px) {
.showcase-grid {
gap: 20px;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--dark);
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.nav.active {
max-height: 300px;
padding: 15px;
}

.nav a {
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero {
min-height: auto;
}

.hero-content {
grid-template-columns: 1fr;
padding: 60px 15px;
gap: 40px;
}

.hero-text h1 {
font-size: 36px;
}

.hero-text p {
font-size: 16px;
}

.hero-stats {
flex-wrap: wrap;
gap: 20px;
}

.hero-image img {
transform: none;
}

h1 {
font-size: 26px;
}

h2 {
font-size: 20px;
}

.about-grid,
.structure-content,
.intro-grid,
.contact-grid {
grid-template-columns: 1fr;
}

.workflow-arrow {
display: none;
}

.workflow-steps {
flex-direction: column;
}

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

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

.cta-content {
grid-template-columns: 1fr;
text-align: center;
}

.cta-action {
align-items: center;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

.stat-number {
font-size: 32px;
}

.error-code {
font-size: 80px;
}

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

.process-steps {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.container {
padding: 0 12px;
}

section {
padding: 40px 0;
}

.hero-content {
padding: 50px 15px;
}

.hero-text h1 {
font-size: 28px;
}

.hero-text p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
width: 100%;
text-align: center;
}

.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 13px;
}

.features-grid,
.curriculum-grid,
.benefits-grid,
.topics-grid {
grid-template-columns: 1fr;
}

.logo {
font-size: 14px;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}

.cta-text h2 {
font-size: 24px;
}
}

@media (max-width: 375px) {
.hero-text h1 {
font-size: 24px;
}

.hero-stat-number {
font-size: 24px;
}

.stat-number {
font-size: 28px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 10px;
}

.hero-text h1 {
font-size: 22px;
}

.hero-text p {
font-size: 14px;
}

.hero-stat-number {
font-size: 20px;
}

.hero-stat-label {
font-size: 11px;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 16px;
}

.btn-primary,
.btn-secondary {
padding: 8px 16px;
font-size: 12px;
}

.feature-card,
.curriculum-item,
.product-card {
padding: 20px;
}

.stat-number {
font-size: 24px;
}

.logo {
font-size: 12px;
}
}
