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

:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--accent: #ec4899;
--success: #10b981;
--dark: #0f172a;
--text: #334155;
--light-bg: #f8fafc;
--white: #ffffff;
--border: #e2e8f0;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text);
font-size: 15px;
}

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

.header {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s;
}

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

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

.logo {
font-size: 20px;
font-weight: 800;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-decoration: none;
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--dark);
margin: 4px 0;
transition: 0.3s;
}

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

.nav a {
color: var(--text);
text-decoration: none;
font-size: 15px;
padding: 8px 16px;
border-radius: 8px;
transition: 0.3s;
font-weight: 500;
}

.nav a:hover {
background: var(--light-bg);
color: var(--primary);
}

.mega-hero {
position: relative;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
overflow: hidden;
padding: 80px 0 100px;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.1;
}

.code-rain {
position: absolute;
width: 100%;
height: 100%;
}

.hero-content {
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-text {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
}

.hero-text h1 {
font-size: 52px;
font-weight: 900;
line-height: 1.1;
margin-bottom: 20px;
}

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

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

.btn-hero {
background: var(--white);
color: var(--primary);
padding: 14px 32px;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 16px;
transition: 0.3s;
display: inline-block;
}

.btn-hero:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-outline {
background: transparent;
color: var(--white);
padding: 14px 32px;
border: 2px solid var(--white);
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 16px;
transition: 0.3s;
display: inline-block;
}

.btn-hero-outline:hover {
background: var(--white);
color: var(--primary);
}

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

.stat {
display: flex;
flex-direction: column;
}

.stat strong {
font-size: 28px;
font-weight: 800;
}

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

.hero-visual {
position: relative;
}

.code-window {
background: var(--dark);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.window-header {
background: #1e293b;
padding: 12px;
display: flex;
gap: 8px;
}

.window-header span {
width: 12px;
height: 12px;
border-radius: 50%;
background: #64748b;
}

.window-header span:nth-child(1) {
background: #ef4444;
}

.window-header span:nth-child(2) {
background: #f59e0b;
}

.window-header span:nth-child(3) {
background: #10b981;
}

.window-content {
padding: 30px;
}

.window-content pre {
color: #94a3b8;
font-size: 16px;
line-height: 1.8;
}

.trust-bar {
background: var(--white);
padding: 30px 0;
border-bottom: 1px solid var(--border);
}

.trust-bar p {
text-align: center;
font-size: 13px;
color: #64748b;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
}

.trust-items {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.trust-items span {
color: var(--text);
font-weight: 600;
font-size: 14px;
}

section {
padding: 80px 0;
}

h2 {
font-size: 36px;
font-weight: 800;
margin-bottom: 15px;
text-align: center;
color: var(--dark);
}

h3 {
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
color: var(--dark);
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

.section-label {
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 700;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
}

.section-subtitle {
font-size: 18px;
color: #64748b;
text-align: center;
margin-bottom: 40px;
}

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

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

.feature-card {
background: var(--white);
padding: 35px;
border-radius: 16px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: 0.3s;
}

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

.feature-icon {
font-size: 40px;
margin-bottom: 20px;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.course-card {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: 0.3s;
}

.course-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.course-image {
position: relative;
overflow: hidden;
}

.course-image img {
width: 100%;
height: 220px;
object-fit: cover;
}

.course-level {
position: absolute;
top: 15px;
right: 15px;
background: var(--white);
color: var(--primary);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
}

.course-content {
padding: 25px;
}

.course-meta {
display: flex;
gap: 15px;
margin: 15px 0 20px;
flex-wrap: wrap;
}

.course-meta span {
background: var(--light-bg);
padding: 6px 12px;
border-radius: 6px;
font-size: 13px;
color: var(--text);
font-weight: 600;
}

.btn-course {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 14px;
transition: 0.3s;
}

.btn-course:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}
.path-timeline {
max-width: 900px;
margin: 0 auto;
}

.timeline-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 30px;
margin-bottom: 40px;
}

.timeline-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: 900;
flex-shrink: 0;
}

.timeline-content h3 {
margin-bottom: 10px;
}

.success-stories {
background: var(--light-bg);
}

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

.story-card {
background: var(--white);
padding: 30px;
border-radius: 16px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.story-quote {
font-size: 16px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
color: var(--text);
}

.story-author strong {
display: block;
font-weight: 700;
color: var(--dark);
margin-bottom: 5px;
}

.story-author span {
font-size: 14px;
color: #64748b;
}

.skills-section {
background: var(--dark);
color: var(--white);
}

.skills-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 50px;
align-items: center;
}

.skills-text h2 {
color: var(--white);
text-align: left;
margin-bottom: 20px;
}

.skills-text p {
font-size: 16px;
opacity: 0.9;
}

.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 15px;
}

.skill-badge {
background: rgba(255,255,255,0.1);
padding: 12px 20px;
border-radius: 8px;
text-align: center;
font-weight: 600;
font-size: 14px;
transition: 0.3s;
}

.skill-badge:hover {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

.price-card {
background: var(--white);
padding: 35px;
border-radius: 16px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
position: relative;
transition: 0.3s;
}

.price-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card.featured {
border: 3px solid var(--primary);
}

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--white);
padding: 6px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}

.price-card h3 {
font-size: 22px;
margin-bottom: 10px;
}

.price {
font-size: 48px;
font-weight: 900;
color: var(--primary);
margin: 20px 0;
}

.price-card > p {
color: #64748b;
margin-bottom: 25px;
}

.price-features {
list-style: none;
margin: 25px 0;
}

.price-features li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
}

.price-features li:last-child {
border-bottom: none;
}

.btn-price {
display: block;
width: 100%;
background: var(--primary);
color: var(--white);
padding: 14px;
border-radius: 8px;
text-align: center;
text-decoration: none;
font-weight: 700;
transition: 0.3s;
}

.btn-price:hover {
background: var(--primary-dark);
}

.guarantee {
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--white);
text-align: center;
}

.guarantee-content h2 {
color: var(--white);
margin-bottom: 20px;
}

.guarantee-content p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 12px 32px;
border: 2px solid var(--white);
border-radius: 8px;
text-decoration: none;
font-weight: 700;
transition: 0.3s;
}

.btn-outline:hover {
background: var(--white);
color: var(--primary);
}

.faq {
background: var(--light-bg);
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
max-width: 1000px;
margin: 0 auto;
}

.faq-item {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item h3 {
font-size: 18px;
margin-bottom: 12px;
}

.faq-item p {
font-size: 15px;
line-height: 1.7;
color: var(--text);
}

.final-cta {
background: var(--dark);
}

.cta-box {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.cta-box h2 {
color: var(--white);
margin-bottom: 20px;
}

.cta-box p {
color: rgba(255,255,255,0.9);
font-size: 18px;
margin-bottom: 30px;
}

.btn-cta {
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--white);
padding: 16px 40px;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 18px;
transition: 0.3s;
}

.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-note {
display: block;
margin-top: 15px;
font-size: 14px;
color: rgba(255,255,255,0.7);
}

.footer {
background: #0f172a;
color: var(--white);
padding: 60px 0 30px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h4 {
font-size: 18px;
margin-bottom: 20px;
font-weight: 700;
}

.footer-section p {
font-size: 14px;
line-height: 1.7;
opacity: 0.8;
}

.footer-section a {
display: block;
color: var(--white);
text-decoration: none;
font-size: 14px;
margin-bottom: 10px;
opacity: 0.8;
transition: 0.3s;
}

.footer-section a:hover {
opacity: 1;
padding-left: 5px;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 25px;
z-index: 9999;
display: none;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.privacy-popup.show {
display: block;
}

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

.privacy-content p {
flex: 1;
font-size: 14px;
}

.privacy-content a {
color: var(--accent);
}

.privacy-content button {
background: var(--accent);
color: var(--white);
border: none;
padding: 10px 24px;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 700;
transition: 0.3s;
}

.privacy-content button:hover {
transform: translateY(-2px);
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--white);
padding: 80px 0;
text-align: center;
}

.page-hero h1 {
font-size: 42px;
font-weight: 900;
margin-bottom: 15px;
}

.page-hero p {
font-size: 18px;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

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

.product-card {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card img {
width: 100%;
height: 220px;
object-fit: cover;
}

.product-card h3,
.product-card p,
.product-card .product-features,
.product-card .product-price,
.product-card .btn {
margin-left: 25px;
margin-right: 25px;
}

.product-card h3 {
margin-top: 25px;
}

.product-card .btn {
margin-bottom: 25px;
}

.product-features {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin: 15px 0;
}

.product-features span {
background: var(--light-bg);
padding: 6px 12px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
}

.product-price {
font-size: 36px;
font-weight: 900;
color: var(--primary);
margin: 20px 0;
}

.btn {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
transition: 0.3s;
border: none;
cursor: pointer;
}

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

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

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-item h3 {
font-size: 18px;
margin-bottom: 10px;
}

.contact-item p {
font-size: 15px;
line-height: 1.7;
}

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

.contact-form {
background: var(--white);
padding: 35px;
border-radius: 16px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 14px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid var(--border);
border-radius: 8px;
font-size: 15px;
font-family: inherit;
transition: 0.3s;
}

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

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

.checkbox-group {
margin: 25px 0;
}

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

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

.map-wrapper {
margin-top: 30px;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary), var(--accent));
padding: 20px;
}

.thankyou-content,
.error-content {
background: var(--white);
padding: 60px 40px;
border-radius: 20px;
text-align: center;
max-width: 600px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.thankyou-icon {
width: 100px;
height: 100px;
background: var(--success);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
margin: 0 auto 30px;
}

.error-code {
font-size: 100px;
font-weight: 900;
color: var(--primary);
margin-bottom: 20px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 28px;
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 35px;
line-height: 1.7;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-page {
padding: 60px 0;
}

.policy-page .container {
max-width: 900px;
}

.policy-page h1 {
font-size: 36px;
font-weight: 900;
margin-bottom: 15px;
}

.update-date {
font-size: 14px;
color: #64748b;
margin-bottom: 40px;
}

.policy-content h2 {
font-size: 24px;
font-weight: 700;
margin-top: 40px;
margin-bottom: 20px;
text-align: left;
}

.policy-content h3 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 15px;
}

.policy-content p {
margin-bottom: 20px;
line-height: 1.8;
}

.policy-content ul {
margin: 20px 0 20px 30px;
}

.policy-content li {
margin-bottom: 10px;
line-height: 1.7;
}

.guide-points,
.projects-list,
.career-benefits {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.guide-point,
.project-item,
.career-item {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.requirements {
background: var(--light-bg);
padding: 30px;
border-radius: 12px;
margin-top: 30px;
}

.requirements h3 {
margin-bottom: 20px;
}

.requirements ul {
margin-left: 25px;
}

.requirements li {
margin-bottom: 10px;
}

@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-text h1 {
font-size: 42px;
}
.skills-content {
grid-template-columns: 1fr;
}
.skills-text h2 {
text-align: center;
}
.contact-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
display: none;
}
.nav.active {
display: flex;
}
.mega-hero {
padding: 60px 0 70px;
}
.hero-text h1 {
font-size: 36px;
}
.hero-text p {
font-size: 16px;
}
.hero-stats {
gap: 25px;
}
h2 {
font-size: 30px;
}
section {
padding: 60px 0;
}
.timeline-item {
grid-template-columns: 60px 1fr;
gap: 20px;
}
.timeline-number {
width: 60px;
height: 60px;
font-size: 22px;
}
.pricing-cards,
.courses-grid,
.products-grid {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}
.container {
padding: 0 15px;
}
.logo {
font-size: 18px;
}
.mega-hero {
padding: 50px 0 60px;
}
.hero-text h1 {
font-size: 30px;
}
.hero-text p {
font-size: 15px;
}
.hero-buttons {
flex-direction: column;
}
.btn-hero,
.btn-hero-outline {
width: 100%;
text-align: center;
}
.hero-stats {
flex-direction: column;
gap: 20px;
}
.stat strong {
font-size: 24px;
}
section {
padding: 50px 0;
}
h2 {
font-size: 26px;
}
h3 {
font-size: 18px;
}
.feature-card,
.story-card {
padding: 25px;
}
.timeline-item {
grid-template-columns: 1fr;
gap: 15px;
}
.timeline-number {
width: 50px;
height: 50px;
font-size: 20px;
margin: 0 auto;
}
.price {
font-size: 40px;
}
.page-hero h1 {
font-size: 28px;
}
.contact-form {
padding: 25px;
}
.thankyou-content,
.error-content {
padding: 40px 25px;
}
.thankyou-icon {
width: 80px;
height: 80px;
font-size: 40px;
}
.error-code {
font-size: 70px;
}
.policy-page h1 {
font-size: 28px;
}
.policy-content h2 {
font-size: 22px;
word-break: break-all;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}
.hero-text h1 {
font-size: 26px;
}
h2 {
font-size: 22px;
}
.features-grid,
.courses-grid,
.faq-grid {
gap: 20px;
}
.btn-hero,
.btn-hero-outline,
.btn {
padding: 12px 20px;
font-size: 14px;
}
.price {
font-size: 36px;
}
}
