/* -------------------- GLOBAL -------------------- */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; background: #ffffff; line-height: 1.6; }
img { max-width: 100%; height: auto; }
.container { width: 90%; max-width: 1100px; margin: auto; }
/* -------------------- NAVBAR -------------------- */

header { background: white; border-bottom: 1px solid #eee; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.logo img { height: 50px; }
nav a { margin-left: 25px; text-decoration: none; color: #444; font-weight: 500; }
/* -------------------- BUTTONS -------------------- */

.btn-primary { background: #f57c00; color: white; padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; transition: all .2s ease; }
.btn-primary:hover { background: #e36f00; transform: translateY(-2px); }
.btn-outline { border: 2px solid #1f4e8c; color: #1f4e8c; padding: 11px 24px; border-radius: 8px; text-decoration: none; margin-left: 10px; font-weight: 600; display: inline-block; }
.btn-outline:hover { background: #1f4e8c; color: white; }
.big { padding: 14px 32px; margin-top: 20px; display: inline-block; }
/* -------------------- HERO -------------------- */

.hero { padding: 90px 0; background: linear-gradient(135deg, #f5f7fb, #e9f1ff); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 42px; margin-bottom: 20px; color: #1f4e8c; }
.hero-text p { font-size: 17px; margin-bottom: 25px; color: #555; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image-box { position: relative; z-index: 2; }
.hero-image::before { content: ""; position: absolute; width: 90%; height: 90%; background: #e8f0fb; border-radius: 20px; top: 30px; left: 30px; z-index: 1; }
.hero-image img { transition: all 0.3s ease; }
.hero-image img:hover { transform: translateY(-6px); box-shadow: 0 35px 70px rgba(0,0,0,0.2); }
/* -------------------- BENEFITS -------------------- */

.benefits { padding: 80px 0; }
.benefits h2 { text-align: center; margin-bottom: 40px; color: #1f4e8c; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; transition: .25s; }
.benefit:hover { transform: translateY(-6px); }
.benefit img { width: 45px; margin-bottom: 12px; }
/* -------------------- SHOWCASE -------------------- */

.showcase { padding: 80px 0; background: #f8faff; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.showcase-img img { border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.showcase-text h2 { font-size: 32px; margin-bottom: 15px; color: #1f4e8c; }
.showcase-text ul { margin-top: 15px; padding-left: 18px; }
.showcase-text li { margin-bottom: 10px; }
/* -------------------- PARALLAX OFFER -------------------- */

.parallax-offer { background-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7"); background-size: cover; background-position: center; background-attachment: fixed; height: 500px; display: flex; align-items: center; }
.parallax-overlay { background: rgba(31,78,140,0.85); width: 100%; height: 100%; display: flex; align-items: center; padding: 80px 0; }
.parallax-content { text-align: center; color: white; max-width: 700px; margin: auto; }
.parallax-content h2 { font-size: 34px; margin-bottom: 15px; }
.offer-highlight { font-size: 36px; font-weight: 700; margin: 15px 0; }
.offer-highlight span { color: #ff9f2f; }
.parallax-content p { margin-bottom: 25px; }
/* -------------------- PROCESS -------------------- */

.process { padding: 80px 0; background: #f5f7fb; }
.process h2 { text-align: center; margin-bottom: 40px; color: #1f4e8c; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.step { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.step span { display: inline-block; width: 45px; height: 45px; background: #f57c00; color: white; border-radius: 50%; line-height: 45px; margin-bottom: 15px; font-weight: 600; }
/* -------------------- CTA -------------------- */

.cta { padding: 100px 0; background: linear-gradient(135deg, #1f4e8c, #315fa8); color: white; text-align: center; }
.cta h2 { font-size: 36px; }
.cta p { margin: 15px 0 25px; }
/* -------------------- FOOTER -------------------- */

footer { background: #0f2b55; color: #ddd; padding: 20px 0; }
.footer { display: flex; justify-content: space-between; align-items: center; }
.footer p a {color: #ff9f2f; }
.footer-links a { color: #ddd; margin-left: 20px; text-decoration: none; }



/* -------------------- RESPONSIVE -------------------- */

@media (max-width:900px) {
.hero-grid { grid-template-columns: 1fr; text-align: center; }
.showcase-grid { grid-template-columns: 1fr; }
.benefit-grid { grid-template-columns: 1fr; }
.process-grid { grid-template-columns: 1fr; }
.hero-text h1 { font-size: 32px; }
.hero-buttons { justify-content: center; }
.showcase-text { margin-top: 25px; text-align: left; }
.parallax-offer { height: auto; background-attachment: scroll; }
}
 @media (max-width:700px) {
.nav { flex-direction: column; gap: 10px; }
nav a { margin: 0 10px; }
}
.stats-section { margin-top: 80px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.stats-left { background: #1f4e8c; color: white; padding: 80px 70px; }
.stats-left h2 { font-size: 34px; margin-bottom: 15px; }
.stats-left p { opacity: 0.9; margin-bottom: 35px; max-width: 420px; }
.stats-items { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.stat h3 { font-size: 34px; color: #ff9f2f; margin-bottom: 5px; }
.stat span { font-size: 16px; opacity: 0.9; }
.stats-right img { width: 100%; height: 100%; object-fit: cover; }

/* MOBILE */

@media (max-width:900px) {
.stats-grid { grid-template-columns: 1fr; }
.stats-left { padding: 50px 30px; text-align: center; }
.stats-items { grid-template-columns: 1fr 1fr; }
}
.price-highlight { font-size: 22px; margin: 10px 0; color: #555; }
.price-highlight span { color: #f57c00; font-weight: 700; font-size: 26px; }
.launch-offer { margin-top: 8px; font-size: 15px; color: #1f4e8c; }
.hero { padding: 90px 0; background: linear-gradient(135deg, #f5f7fb, #e9f1ff); }
.hero-text h1 { font-size: 40px; color: #1f4e8c; margin-bottom: 18px; line-height: 50px; }
.hero-sub { font-size: 17px; color: #555; margin-bottom: 20px; }
.hero-price { font-size: 20px; margin-bottom: 6px; }
.hero-price span { font-size: 28px; font-weight: 700; color: #f57c00; }
.hero-offer { color: #1f4e8c; font-size: 15px; margin-bottom: 20px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image img { border-radius: 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.step-icon { width: 55px; margin-bottom: 15px; opacity: 0.9; }
.school-types { padding: 80px 0; text-align: center; }
.types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.type-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.contact-info { display: flex; gap: 30px; margin: 40px 0 50px 0; }
.contact-card { flex: 1; background: #ffffff; padding: 30px; border-radius: 14px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
.contact-card h3 { color: #1f4e8c; margin-bottom: 10px; font-size: 18px; }
.contact-card a { color: #ff7a00; font-weight: 600; text-decoration: none; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; }
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.2); z-index: 999; }
.whatsapp-float img { width: 32px; }
