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

:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #ec4899;
--accent: #f59e0b;
--dark: #0f172a;
--dark-light: #1e293b;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Sora', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

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

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

.container-fluid {
width: 100%;
padding: 0;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 28px;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
text-align: center;
}

.btn-primary {
background: var(--gradient-1);
color: var(--white);
box-shadow: var(--shadow-md);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
box-shadow: var(--shadow-lg);
}

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

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

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

.privacy-buttons {
display: flex;
gap: 12px;
align-items: center;
}

.privacy-buttons button {
padding: 10px 24px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
}

.privacy-buttons button:hover {
background: var(--primary-dark);
}

.privacy-buttons a {
color: var(--white);
text-decoration: underline;
font-size: 14px;
}

.header {
background: var(--white);
padding: 16px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
}

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

.logo {
font-family: 'Sora', sans-serif;
font-size: 20px;
font-weight: 700;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

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

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

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

.nav-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
color: var(--dark);
cursor: pointer;
}

.hero {
background: url('https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?w=1920&q=80') center/cover no-repeat;
color: var(--white);
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(15, 23, 42, 0.65);
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}

.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}

.hero p {
font-size: 18px;
margin-bottom: 32px;
opacity: 0.95;
}

.features {
padding: 80px 0;
background: var(--light);
}

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

.feature-card {
background: var(--white);
padding: 32px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

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

.feature-card h3 {
font-size: 1.25rem;
margin-bottom: 12px;
}

.feature-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.about {
padding: 80px 0;
}

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

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

.about-text p {
margin-bottom: 20px;
color: var(--gray);
line-height: 1.7;
}

.about-image img {
border-radius: 16px;
box-shadow: var(--shadow-lg);
}

.learning-method {
padding: 80px 0;
background: var(--light);
}

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

.learning-text h2 {
margin-bottom: 24px;
}

.learning-text p {
margin-bottom: 20px;
color: var(--gray);
line-height: 1.7;
}

.learning-image img {
border-radius: 16px;
box-shadow: var(--shadow-lg);
}

.creative-journey {
padding: 80px 0;
}

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

.journey-text h2 {
margin-bottom: 24px;
}

.journey-text p {
margin-bottom: 20px;
color: var(--gray);
line-height: 1.7;
}

.journey-image img {
border-radius: 16px;
box-shadow: var(--shadow-lg);
}

.courses-preview {
padding: 80px 0;
background: var(--light);
}

.courses-preview h2 {
text-align: center;
margin-bottom: 48px;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
margin-bottom: 48px;
}

.course-card {
background: var(--white);
padding: 36px;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
}

.course-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}

.course-card i {
font-size: 36px;
color: var(--secondary);
margin-bottom: 16px;
}

.course-card h3 {
margin-bottom: 12px;
}

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

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

.testimonials {
padding: 80px 0;
}

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

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

.testimonial-card {
background: var(--light);
padding: 32px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

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

.testimonial-author strong {
display: block;
font-weight: 600;
margin-bottom: 4px;
}

.testimonial-author span {
font-size: 13px;
color: var(--gray);
}

.cta {
padding: 80px 0;
background: var(--gradient-2);
color: var(--white);
text-align: center;
}

.cta-content h2 {
margin-bottom: 16px;
}

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

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

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

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

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

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

.footer-links a:hover {
opacity: 1;
}

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

.page-hero h1 {
font-size: 2.5rem;
margin-bottom: 12px;
}

.page-hero p {
font-size: 18px;
opacity: 0.95;
}

.products {
padding: 80px 0;
}

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

.product-card {
background: var(--white);
border: 2px solid var(--light);
border-radius: 16px;
padding: 36px;
transition: all 0.3s ease;
position: relative;
}

.product-card:hover {
border-color: var(--primary);
box-shadow: var(--shadow-lg);
transform: translateY(-4px);
}

.product-card.featured {
border-color: var(--primary);
background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.product-badge {
position: absolute;
top: 16px;
right: 16px;
background: var(--secondary);
color: var(--white);
padding: 6px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-icon {
text-align: center;
margin-bottom: 20px;
}

.product-icon i {
font-size: 48px;
color: var(--primary);
}

.product-card h3 {
text-align: center;
margin-bottom: 16px;
}

.product-card p {
color: var(--gray);
font-size: 14px;
margin-bottom: 20px;
line-height: 1.7;
}

.product-features {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 24px;
}

.product-features span {
font-size: 13px;
color: var(--dark);
display: flex;
align-items: center;
gap: 8px;
}

.product-features i {
color: var(--primary);
font-size: 14px;
}

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
text-align: center;
margin-bottom: 24px;
}

.product-card .btn-primary {
width: 100%;
}

.curriculum {
padding: 80px 0;
background: var(--light);
}

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

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

.curriculum-item {
background: var(--white);
padding: 28px;
border-radius: 12px;
text-align: center;
}

.curriculum-item i {
font-size: 36px;
color: var(--accent);
margin-bottom: 16px;
}

.curriculum-item h3 {
font-size: 1.125rem;
margin-bottom: 12px;
}

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

.course-benefits {
padding: 80px 0;
}

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

.benefits-image img {
border-radius: 16px;
box-shadow: var(--shadow-lg);
}

.benefits-text h2 {
margin-bottom: 24px;
}

.benefits-list {
list-style: none;
margin-bottom: 32px;
}

.benefits-list li {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
color: var(--dark);
}

.benefits-list i {
color: var(--primary);
font-size: 18px;
margin-top: 2px;
}

.faq {
padding: 80px 0;
}

.faq h2 {
text-align: center;
margin-bottom: 48px;
}

.faq-grid {
display: grid;
gap: 40px;
}

.faq-category h3 {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
color: var(--primary);
}

.faq-category h3 i {
font-size: 24px;
}

.faq-item {
background: var(--light);
border-radius: 8px;
margin-bottom: 12px;
overflow: hidden;
}

.faq-question {
padding: 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
transition: background 0.3s ease;
}

.faq-question:hover {
background: rgba(99, 102, 241, 0.05);
}

.faq-question i {
transition: transform 0.3s ease;
color: var(--primary);
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.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 20px 20px;
color: var(--gray);
line-height: 1.7;
}

.support-contact {
padding: 80px 0;
background: var(--light);
}

.support-wrapper {
max-width: 800px;
margin: 0 auto;
}

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

.support-text > p {
color: var(--gray);
margin-bottom: 32px;
line-height: 1.7;
}

.support-info {
display: grid;
gap: 20px;
margin-bottom: 32px;
}

.support-item {
display: flex;
gap: 16px;
align-items: flex-start;
background: var(--white);
padding: 20px;
border-radius: 8px;
}

.support-item i {
font-size: 24px;
color: var(--primary);
margin-top: 4px;
}

.support-item strong {
display: block;
margin-bottom: 4px;
}

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

.contact-section {
padding: 80px 0;
}

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

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

.contact-info-side > p {
color: var(--gray);
margin-bottom: 32px;
line-height: 1.7;
}

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

.contact-detail-item {
display: flex;
gap: 16px;
}

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

.contact-icon i {
font-size: 20px;
}

.contact-detail-text strong {
display: block;
margin-bottom: 4px;
}

.contact-detail-text p {
font-size: 14px;
color: var(--gray);
}

.contact-form {
background: var(--light);
padding: 40px;
border-radius: 16px;
}

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

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

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

.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-bottom: 24px;
}

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

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

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

.contact-form .btn-primary {
width: 100%;
}

.map-section {
margin-top: 60px;
}

.map-wrapper iframe {
width: 100%;
border-radius: 0;
}

.contact-cta {
padding: 60px 0;
background: var(--light);
}

.contact-cta .cta-content {
max-width: 600px;
margin: 0 auto;
}

.cta-phone {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
margin-top: 20px;
}

.cta-phone i {
font-size: 28px;
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
}

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

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

.thankyou-content h1,
.error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
color: var(--gray);
margin-bottom: 32px;
line-height: 1.7;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.thankyou-extra {
background: var(--light);
padding: 32px;
border-radius: 12px;
margin-top: 40px;
}

.thankyou-extra p {
margin-bottom: 20px;
font-weight: 600;
}

.thankyou-links {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.thankyou-links a {
display: flex;
align-items: center;
gap: 8px;
color: var(--primary);
font-weight: 500;
}

.thankyou-links a:hover {
text-decoration: underline;
}

.error-code {
font-size: 120px;
font-weight: 700;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 20px;
}

.error-links {
margin-top: 40px;
}

.error-links p {
font-weight: 600;
margin-bottom: 16px;
}

.error-nav {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.error-nav a {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 20px;
background: var(--light);
border-radius: 8px;
color: var(--dark);
font-weight: 500;
transition: all 0.3s ease;
}

.error-nav a:hover {
background: var(--primary);
color: var(--white);
}

.policy-hero {
background: var(--dark);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.policy-hero h1 {
margin-bottom: 12px;
}

.policy-hero p {
opacity: 0.8;
font-size: 14px;
}

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

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

.policy-text h2 {
margin-top: 40px;
margin-bottom: 20px;
color: var(--primary);
}

.policy-text h3 {
margin-top: 28px;
margin-bottom: 16px;
font-size: 1.25rem;
}

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

.policy-text ul,
.policy-text ol {
margin-bottom: 20px;
padding-left: 24px;
}

.policy-text li {
margin-bottom: 10px;
color: var(--gray);
line-height: 1.7;
}

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

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: var(--shadow-lg);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.nav.active {
transform: translateX(0);
}

.nav-toggle {
display: block;
}

.hero {
padding: 60px 0;
}

.hero h1 {
font-size: 2rem;
}

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

.features,
.about,
.courses-preview,
.testimonials,
.cta,
.products,
.curriculum,
.course-benefits,
.faq,
.support-contact,
.contact-section {
padding: 50px 0;
}

.about-wrapper,
.benefits-wrapper,
.contact-wrapper,
.learning-wrapper,
.journey-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.about-image,
.benefits-image,
.learning-image {
order: -1;
}

.features-grid,
.courses-grid,
.testimonials-grid,
.products-grid,
.curriculum-grid {
grid-template-columns: 1fr;
gap: 20px;
}

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

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

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

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

.thankyou-icon {
font-size: 60px;
}

.contact-form {
padding: 28px;
}
}

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

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }

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

.hero h1 {
font-size: 1.75rem;
}

.product-price {
font-size: 1.75rem;
}

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

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