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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--success: #10b981;
--warning: #f59e0b;
--dark: #0f172a;
--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%);
--gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
--gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

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

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 15px;
}

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

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

.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

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

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

.logo-icon {
width: 40px;
height: 40px;
background: var(--gradient-1);
border-radius: 10px;
position: relative;
overflow: hidden;
}

.logo-icon::before {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

.nav-link {
position: relative;
padding: 10px 20px;
font-weight: 500;
color: var(--dark);
border-radius: 8px;
transition: all 0.3s ease;
}

.nav-link span {
position: relative;
z-index: 1;
}

.nav-link::before {
content: '';
position: absolute;
inset: 0;
background: var(--gradient-1);
border-radius: 8px;
opacity: 0;
transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
opacity: 0.1;
}

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

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

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

.hero {
position: relative;
background: var(--gradient-1);
padding: 120px 0 80px;
overflow: hidden;
}

.hero-bg-shapes {
position: absolute;
inset: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.3;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 400px;
height: 400px;
background: #ec4899;
top: -100px;
right: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 300px;
height: 300px;
background: #8b5cf6;
bottom: -50px;
left: -50px;
animation-delay: 5s;
}

.shape-3 {
width: 250px;
height: 250px;
background: #06b6d4;
top: 50%;
left: 50%;
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -30px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

.hero-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50px;
color: white;
font-size: 14px;
font-weight: 500;
margin-bottom: 25px;
}

.hero-content h1 {
font-size: 3.5rem;
color: white;
margin-bottom: 25px;
line-height: 1.1;
}

.gradient-text {
background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-content p {
font-size: 1.15rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 35px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 60px;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
background: white;
color: var(--primary);
font-weight: 600;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-glass {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.3);
color: white;
font-weight: 600;
border-radius: 12px;
transition: all 0.3s ease;
}

.btn-glass:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
display: flex;
justify-content: center;
gap: 60px;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: white;
line-height: 1;
margin-bottom: 8px;
}

.stat-label {
font-size: 14px;
color: rgba(255, 255, 255, 0.8);
}

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

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

.section-badge {
display: inline-block;
padding: 6px 16px;
background: var(--light);
color: var(--primary);
border-radius: 50px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
}

.section-header h2 {
color: var(--dark);
margin-bottom: 12px;
}

.section-header p {
color: var(--gray);
font-size: 1.05rem;
}

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

.feature-card {
background: var(--white);
padding: 35px;
border-radius: 20px;
border: 2px solid var(--light);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient-1);
transform: scaleX(0);
transition: transform 0.3s ease;
}

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

.feature-card:hover {
transform: translateY(-8px);
border-color: var(--primary);
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
width: 60px;
height: 60px;
background: var(--gradient-1);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.feature-icon i {
font-size: 26px;
color: white;
}

.feature-card h3 {
margin-bottom: 12px;
color: var(--dark);
}

.feature-card p {
color: var(--gray);
line-height: 1.7;
}

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

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

.language-card {
background: var(--white);
padding: 40px;
border-radius: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.language-card::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: var(--gradient-2);
opacity: 0;
transition: opacity 0.3s ease;
}

.language-card:hover::before {
opacity: 0.05;
}

.language-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.language-icon {
width: 70px;
height: 70px;
background: var(--gradient-2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
position: relative;
z-index: 1;
}

.language-icon i {
font-size: 30px;
color: white;
}

.language-card h3 {
margin-bottom: 15px;
position: relative;
z-index: 1;
}

.language-card p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 20px;
position: relative;
z-index: 1;
}

.card-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--primary);
font-weight: 600;
position: relative;
z-index: 1;
}

.card-link:hover {
gap: 12px;
}

.how-it-works {
padding: 80px 0;
background: var(--white);
}

.steps-timeline {
max-width: 900px;
margin: 0 auto;
position: relative;
}

.step-card {
display: flex;
gap: 30px;
align-items: flex-start;
margin-bottom: 50px;
position: relative;
}

.step-card:last-child {
margin-bottom: 0;
}

.step-number {
width: 70px;
height: 70px;
background: var(--gradient-3);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
flex-shrink: 0;
box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.step-content {
flex: 1;
padding-top: 10px;
}

.step-content h3 {
margin-bottom: 10px;
color: var(--dark);
}

.step-content p {
color: var(--gray);
line-height: 1.7;
}

.step-connector {
position: absolute;
left: 35px;
top: 70px;
width: 2px;
height: calc(100% + 50px);
background: linear-gradient(180deg, var(--gradient-3), transparent);
}

.step-card:last-child .step-connector {
display: none;
}

.testimonials {
padding: 80px 0;
background: var(--dark);
position: relative;
overflow: hidden;
}

.testimonials-bg {
position: absolute;
inset: 0;
background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.testimonials .section-header {
position: relative;
z-index: 1;
}

.testimonials .section-badge {
background: rgba(255, 255, 255, 0.1);
color: white;
}

.testimonials .section-header h2 {
color: white;
}

.testimonials .section-header p {
color: rgba(255, 255, 255, 0.7);
}

.testimonials-carousel {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
position: relative;
z-index: 1;
}

.testimonial-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 35px;
border-radius: 20px;
transition: all 0.3s ease;
}

.testimonial-card:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
}

.quote-icon {
font-size: 4rem;
color: var(--primary);
line-height: 1;
margin-bottom: 15px;
opacity: 0.3;
}

.testimonial-rating {
color: #fbbf24;
margin-bottom: 20px;
font-size: 16px;
}

.testimonial-card p {
color: rgba(255, 255, 255, 0.9);
line-height: 1.8;
margin-bottom: 25px;
font-style: italic;
}

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

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

.testimonial-author strong {
color: white;
display: block;
margin-bottom: 3px;
}

.testimonial-author span {
color: rgba(255, 255, 255, 0.6);
font-size: 13px;
}

.photo-gallery {
  padding: 80px 0;
  background: var(--bg-primary);
}

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

.photo-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.interactive-card {
background: var(--white);
padding: 40px 30px;
border-radius: 20px;
text-align: center;
transition: all 0.3s ease;
animation: fadeInUp 0.6s ease forwards;
animation-delay: var(--delay);
opacity: 0;
}

@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
from {
opacity: 0;
transform: translateY(20px);
}
}

.interactive-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.interactive-card h3 {
margin-bottom: 10px;
color: var(--dark);
}

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

.cta-section {
padding: 100px 0;
background: var(--gradient-5);
position: relative;
overflow: hidden;
}

.cta-shapes {
position: absolute;
inset: 0;
}

.cta-shape {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
width: 300px;
height: 300px;
top: -100px;
left: -100px;
animation: pulse 4s infinite ease-in-out;
}

.cta-shape-2 {
width: 200px;
height: 200px;
bottom: -50px;
right: -50px;
animation: pulse 4s infinite ease-in-out 2s;
}

@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.1; }
50% { transform: scale(1.2); opacity: 0.2; }
}

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

.cta-content h2 {
color: white;
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-content p {
color: rgba(255, 255, 255, 0.95);
font-size: 1.15rem;
margin-bottom: 35px;
}

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.btn-outline {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
background: transparent;
border: 2px solid white;
color: white;
font-weight: 600;
border-radius: 12px;
transition: all 0.3s ease;
}

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

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

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

.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
margin-bottom: 20px;
}

.footer-links a {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: white;
}

.footer-bottom p {
color: rgba(255, 255, 255, 0.5);
font-size: 13px;
}

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

.cookie-popup.show {
display: block;
animation: slideUp 0.3s ease;
}

@keyframes slideUp {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}

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

.cookie-content p {
font-size: 14px;
line-height: 1.6;
margin: 0;
}

.cookie-buttons {
display: flex;
gap: 12px;
flex-shrink: 0;
}

.btn-accept,
.btn-learn {
padding: 12px 24px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--primary);
color: white;
border: none;
}

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

.btn-learn {
background: transparent;
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-learn:hover {
background: rgba(255, 255, 255, 0.1);
border-color: white;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 81px;
left: -100%;
width: 100%;
height: calc(100vh - 81px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: left 0.3s ease;
}

.nav.active {
left: 0;
}

.nav-link {
padding: 15px;
border-bottom: 1px solid var(--light);
}

.menu-toggle {
display: flex;
}

.hero {
padding: 80px 0 60px;
}

.hero-content h1 {
font-size: 2.2rem;
}

.hero-content p {
font-size: 1rem;
}

.hero-stats {
gap: 40px;
}

.stat-number {
font-size: 2rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.features,
.languages-preview,
.how-it-works,
.testimonials,
.interactive-section,
.cta-section {
padding: 60px 0;
}

.features-grid,
.languages-grid,
.testimonials-carousel,
.interactive-grid {
grid-template-columns: 1fr;
}

.step-card {
flex-direction: column;
gap: 20px;
}

.step-connector {
display: none;
}

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

.cookie-buttons {
width: 100%;
justify-content: center;
}

.cta-content h2 {
font-size: 1.8rem;
}

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

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

.logo a {
font-size: 1.1rem;
}

.logo-icon {
width: 35px;
height: 35px;
}

.hero-content h1 {
font-size: 1.6rem;
}

.hero-content p {
font-size: 0.95rem;
}

.stat-number {
font-size: 1.5rem;
}

.stat-label {
font-size: 12px;
}

.hero-stats {
gap: 25px;
}

.feature-card,
.language-card,
.testimonial-card,
.interactive-card {
padding: 20px;
}

.btn-primary,
.btn-glass,
.btn-outline {
padding: 12px 20px;
font-size: 13px;
width: 100%;
justify-content: center;
}

.cta-content h2 {
font-size: 1.5rem;
}

.cta-content p {
font-size: 1rem;
}

.footer-links {
gap: 15px;
flex-direction: column;
}
}

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

.logo a {
font-size: 1rem;
}

.logo-icon {
width: 32px;
height: 32px;
}

.hero {
padding: 60px 0 40px;
}

.hero-content h1 {
font-size: 1.4rem;
}

.hero-content p {
font-size: 0.9rem;
}

.hero-badge {
font-size: 12px;
padding: 6px 16px;
}

.stat-number {
font-size: 1.3rem;
}

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

.hero-stats {
gap: 20px;
}

.section-header h2 {
font-size: 1.4rem;
}

.section-header p {
font-size: 0.95rem;
}

.feature-card,
.language-card,
.testimonial-card,
.interactive-card {
padding: 18px;
}

.feature-icon,
.language-icon {
width: 50px;
height: 50px;
}

.feature-icon i,
.language-icon i {
font-size: 22px;
}

.feature-card h3,
.language-card h3 {
font-size: 1.1rem;
}

.feature-card p,
.language-card p {
font-size: 14px;
}

.step-number {
width: 60px;
height: 60px;
font-size: 1.6rem;
}

.step-content h3 {
font-size: 1.1rem;
}

.step-content p {
font-size: 14px;
}

.testimonial-card {
padding: 20px;
}

.quote-icon {
font-size: 3rem;
}

.testimonial-card p {
font-size: 14px;
}

.author-avatar {
width: 40px;
height: 40px;
font-size: 1rem;
}

.testimonial-author strong {
font-size: 14px;
}

.card-icon {
font-size: 2.5rem;
}

.interactive-card h3 {
font-size: 1.1rem;
}

.interactive-card p {
font-size: 13px;
}

.cta-content h2 {
font-size: 1.3rem;
}

.cta-content p {
font-size: 0.95rem;
}

.btn-primary,
.btn-glass,
.btn-outline {
padding: 10px 18px;
font-size: 13px;
}

.footer-links a {
font-size: 13px;
}

.footer-bottom p {
font-size: 12px;
}

.cookie-content {
padding: 15px;
}

.cookie-content p {
font-size: 13px;
}

.btn-accept,
.btn-learn {
padding: 10px 18px;
font-size: 13px;
}
}

.page-hero {
background: var(--gradient-1);
color: white;
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
width: 300px;
height: 300px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
top: -100px;
right: -100px;
}

.page-hero h1 {
color: white;
font-size: 2.5rem;
margin-bottom: 15px;
position: relative;
z-index: 1;
}

.page-hero p {
font-size: 1.1rem;
opacity: 0.95;
position: relative;
z-index: 1;
}

.all-languages,
.pricing-section,
.learning-approach,
.english-programs,
.english-levels,
.english-benefits,
.success-stories,
.contact-section,
.faq-section {
padding: 80px 0;
background: var(--white);
}

.faq-accordion {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
margin-bottom: 15px;
background: var(--white);
border: 2px solid var(--light);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item:hover {
border-color: var(--primary);
box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
}

.faq-question {
width: 100%;
padding: 25px 30px;
background: transparent;
border: none;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
color: var(--dark);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
transition: all 0.3s ease;
}

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

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

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

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

.faq-item.active .faq-answer {
max-height: 500px;
padding: 0 30px 25px;
}

.faq-answer p {
color: var(--gray);
line-height: 1.8;
margin: 0;
}

@media (max-width: 768px) {
.faq-question {
padding: 20px;
font-size: 1rem;
}

.faq-item.active .faq-answer {
padding: 0 20px 20px;
}
}

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

.language-detailed-card {
background: var(--white);
padding: 40px;
border-radius: 20px;
border: 2px solid var(--light);
transition: all 0.3s ease;
}

.language-detailed-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.language-flag {
width: 70px;
height: 70px;
background: var(--gradient-2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
}

.language-flag i {
font-size: 28px;
color: white;
}

.language-detailed-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
}

.language-detailed-card p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.language-features {
list-style: none;
margin-bottom: 25px;
}

.language-features li {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
color: var(--gray);
}

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

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

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

.pricing-section {
background: var(--light);
}

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

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

.pricing-card.featured {
border-color: var(--primary);
transform: scale(1.05);
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-1);
color: white;
padding: 6px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
}

.pricing-header {
text-align: center;
padding-bottom: 25px;
border-bottom: 2px solid var(--light);
margin-bottom: 30px;
}

.pricing-header h3 {
font-size: 1.4rem;
margin-bottom: 20px;
}

.price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
}

.price span {
font-size: 1rem;
font-weight: 400;
color: var(--gray);
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
}

.pricing-features li {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
color: var(--gray);
}

.pricing-features i {
color: var(--success);
font-size: 16px;
}

.approach-grid,
.programs-grid,
.levels-grid,
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.approach-card,
.program-card,
.level-card,
.benefit-item {
background: var(--white);
padding: 35px;
border-radius: 20px;
border: 2px solid var(--light);
transition: all 0.3s ease;
}

.approach-card:hover,
.program-card:hover,
.level-card:hover,
.benefit-item:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.approach-icon,
.program-icon,
.benefit-icon {
width: 60px;
height: 60px;
background: var(--gradient-3);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.approach-icon i,
.program-icon i,
.benefit-icon i {
font-size: 26px;
color: white;
}

.approach-card h3,
.program-card h3,
.level-card h3,
.benefit-item h3 {
margin-bottom: 12px;
}

.approach-card p,
.program-card p,
.level-card p,
.benefit-item p {
color: var(--gray);
line-height: 1.7;
}

.program-list {
list-style: none;
margin-top: 15px;
}

.program-list li {
padding: 6px 0 6px 20px;
color: var(--gray);
position: relative;
font-size: 14px;
}

.program-list li::before {
content: '•';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
}

.contact-info h2 {
font-size: 2rem;
margin-bottom: 15px;
}

.contact-info > p {
color: var(--gray);
margin-bottom: 30px;
}

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

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

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

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

.contact-text h3 {
font-size: 1.1rem;
margin-bottom: 5px;
}

.contact-text p {
color: var(--gray);
line-height: 1.6;
}

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

.contact-form h2 {
font-size: 1.8rem;
margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--light);
border-radius: 10px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
margin-top: 20px;
}

.checkbox-label {
display: flex;
align-items: start;
gap: 10px;
font-size: 13px;
color: var(--gray);
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 {
padding: 80px 0;
background: var(--light);
}

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

.map-wrapper {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.thankyou-icon i {
font-size: 50px;
color: white;
}

.thankyou-content h1 {
font-size: 2.2rem;
margin-bottom: 20px;
}

.thankyou-content p {
color: var(--gray);
margin-bottom: 35px;
font-size: 1.1rem;
}

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

.error-code {
font-size: 8rem;
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-content h1 {
font-size: 2rem;
margin-bottom: 15px;
}

.error-content p {
color: var(--gray);
margin-bottom: 30px;
font-size: 1.1rem;
}

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

.error-links {
text-align: left;
display: inline-block;
}

.error-links h3 {
font-size: 1.2rem;
margin-bottom: 15px;
}

.error-links ul {
list-style: none;
}

.error-links li {
margin-bottom: 10px;
}

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

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

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

.policy-content {
max-width: 900px;
margin: 0 auto;
background: var(--white);
padding: 50px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.policy-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 35px;
}

.policy-block {
margin-bottom: 35px;
}

.policy-block h2 {
font-size: 1.6rem;
margin-bottom: 15px;
}

.policy-block h3 {
font-size: 1.3rem;
margin-bottom: 12px;
margin-top: 20px;
}

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

.policy-block ul {
margin-left: 20px;
margin-bottom: 15px;
}

.policy-block li {
color: var(--gray);
line-height: 1.8;
margin-bottom: 8px;
}

@media (max-width: 768px) {
.page-hero h1 {
font-size: 2rem;
}

.languages-detailed-grid {
grid-template-columns: 1fr;
}

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

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

.approach-grid,
.programs-grid,
.levels-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

.policy-content {
padding: 30px 20px;
}

.error-code {
font-size: 5rem;
}
}

@media (max-width: 480px) {
.language-detailed-card,
.pricing-card,
.approach-card,
.program-card,
.level-card,
.benefit-item {
padding: 20px;
}

.contact-form-wrapper {
padding: 25px 20px;
}

.page-hero h1 {
font-size: 1.6rem;
}

.page-hero p {
font-size: 1rem;
}
}

@media (max-width: 360px) {
.language-detailed-card,
.pricing-card,
.approach-card,
.program-card,
.level-card,
.benefit-item {
padding: 18px;
}

.contact-form-wrapper {
padding: 20px 15px;
}

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

.page-hero h1 {
font-size: 1.4rem;
}

.page-hero p {
font-size: 0.95rem;
}

.language-flag,
.approach-icon,
.program-icon,
.benefit-icon {
width: 50px;
height: 50px;
}

.language-flag i,
.approach-icon i,
.program-icon i,
.benefit-icon i {
font-size: 22px;
}

.language-detailed-card h3,
.approach-card h3,
.program-card h3,
.level-card h3,
.benefit-item h3 {
font-size: 1.1rem;
}

.language-detailed-card p,
.approach-card p,
.program-card p,
.level-card p,
.benefit-item p {
font-size: 14px;
}

.pricing-header h3 {
font-size: 1.2rem;
}

.price {
font-size: 2rem;
}

.price span {
font-size: 0.9rem;
}

.contact-icon {
width: 45px;
height: 45px;
}

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

.contact-text h3 {
font-size: 1rem;
}

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

.form-group label {
font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
font-size: 13px;
padding: 10px 14px;
}

.policy-content {
padding: 25px 15px;
}

.policy-content h1 {
font-size: 1.8rem;
}

.policy-block h2 {
font-size: 1.3rem;
}

.policy-block h3 {
font-size: 1.1rem;
}

.policy-block p,
.policy-block li {
font-size: 14px;
}

.error-code {
font-size: 4rem;
}

.error-content h1,
.thankyou-content h1 {
font-size: 1.5rem;
}

.error-content p,
.thankyou-content p {
font-size: 0.95rem;
}

.thankyou-icon {
width: 80px;
height: 80px;
}

.thankyou-icon i {
font-size: 40px;
}

.faq-question {
padding: 16px;
font-size: 0.95rem;
}

.faq-item.active .faq-answer {
padding: 0 16px 16px;
}

.faq-answer p {
font-size: 14px;
}
}
