/* ===== SOCIALPRO ACADEMY — Instagram Gradient Pink/Purple/Orange + White ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', system-ui, sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --pink: #E1306C;
  --purple: #833AB4;
  --orange: #F77737;
  --gradient: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  --gradient-soft: linear-gradient(135deg, rgba(131,58,180,0.08), rgba(225,48,108,0.08), rgba(247,119,55,0.08));
  --dark: #1a1a2e;
  --gray: #64748b;
  --light: #faf5ff;
  --light2: #fff5f7;
  --border: #f0e6f6;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(131,58,180,0.08);
  --shadow-lg: 0 20px 60px rgba(131,58,180,0.12);
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 16px; color: var(--dark); }
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { text-align: center; color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto 56px; line-height: 1.7; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .3s; border: none; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(225,48,108,0.35); }
.btn-secondary { background: #fff; color: var(--pink); border: 2px solid var(--pink); }
.btn-secondary:hover { background: var(--gradient); color: #fff; border-color: transparent; }
.btn-large { padding: 18px 44px; font-size: 1.05rem; }
.badge { display: inline-block; padding: 6px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600; }

/* ===== NAV — Gradient bottom border ===== */
.nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); z-index: 1000; }
.nav::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
.nav .container { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.nav-logo { font-size: 1.4rem; font-weight: 800; }
.nav-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--gray); transition: color .2s; font-size: .95rem; }
.nav-links a:hover { color: var(--pink); }
.nav-cta { background: var(--gradient) !important; color: #fff !important; padding: 10px 24px !important; border-radius: 50px !important; -webkit-text-fill-color: #fff !important; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ===== HERO — Big centered with phone mockup ===== */
.hero { padding: 140px 0 80px; background: linear-gradient(180deg, var(--light) 0%, #fff 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -300px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(225,48,108,0.06) 0%, transparent 70%); }
.hero::after { content: ''; position: absolute; bottom: -200px; left: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(131,58,180,0.05) 0%, transparent 70%); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { background: var(--gradient-soft); color: var(--pink); margin-bottom: 24px; }
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 24px; color: var(--dark); }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.1rem; color: var(--gray); margin-bottom: 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; gap: 16px; justify-content: center; }
.hero-phone { width: 260px; background: #fff; border-radius: 32px; padding: 8px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.hero-phone img { width: 100%; border-radius: 24px; aspect-ratio: 9/16; object-fit: cover; }
.hero-phone:nth-child(2) { margin-top: 40px; }

/* ===== STATS BAR — Gradient bg ===== */
.stats-bar { background: var(--gradient); padding: 32px 0; }
.stats-bar .container { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat { text-align: center; color: #fff; }
.stat-number { font-size: 2.2rem; font-weight: 800; }
.stat-label { font-size: .9rem; opacity: 0.85; }

/* ===== BENTO GRID FEATURES ===== */
.features { background: #fff; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 20px; }
.bento-card { background: var(--light); border-radius: 20px; padding: 32px; border: 1px solid var(--border); transition: all .3s; position: relative; overflow: hidden; }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card.large { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.bento-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; }
.bento-card.large img { height: 100%; min-height: 240px; }
.bento-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.bento-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.bento-card p { color: var(--gray); font-size: .93rem; line-height: 1.6; }

/* ===== FOLLOWER COUNTER ===== */
.counter-section { background: var(--light2); padding: 80px 0; text-align: center; }
.counter-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.counter-item { background: #fff; border-radius: 20px; padding: 32px 40px; box-shadow: var(--shadow); border: 1px solid var(--border); min-width: 200px; }
.counter-platform { font-size: 2rem; margin-bottom: 8px; }
.counter-number { font-size: 2.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.counter-label { color: var(--gray); font-size: .9rem; margin-top: 4px; }

/* ===== CURRICULUM ===== */
.curriculum-section { background: #fff; }
.curriculum-list { max-width: 700px; margin: 0 auto; }
.curriculum-item { display: flex; gap: 24px; padding: 24px; background: var(--light); border-radius: 16px; border: 1px solid var(--border); margin-bottom: 14px; align-items: center; transition: all .3s; }
.curriculum-item:hover { border-color: var(--pink); box-shadow: var(--shadow); }
.curriculum-num { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.curriculum-item h4 { font-weight: 700; margin-bottom: 4px; }
.curriculum-item p { font-size: .9rem; color: var(--gray); }

/* ===== PRICING ===== */
.pricing { background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { background: #fff; border-radius: 24px; padding: 40px 32px; border: 2px solid var(--border); text-align: center; transition: all .3s; position: relative; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--pink); box-shadow: var(--shadow-lg); }
.pricing-card.popular::before { content: 'MEEST GEKOZEN'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; padding: 5px 22px; border-radius: 50px; font-size: .8rem; font-weight: 700; }
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-price small { font-size: 1rem; color: var(--gray); font-weight: 400; -webkit-text-fill-color: var(--gray); }
.pricing-desc { color: var(--gray); font-size: .95rem; margin: 8px 0 28px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; font-size: .93rem; display: flex; gap: 10px; align-items: start; }
.pricing-features li::before { content: '\2713'; color: var(--pink); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; }

/* ===== TESTIMONIALS — Instagram card style ===== */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--light); padding: 32px; border-radius: 20px; border: 1px solid var(--border); transition: all .3s; }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { color: var(--dark); margin-bottom: 24px; line-height: 1.8; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid; border-image: var(--gradient) 1; }
.testimonial-name { font-weight: 700; }
.testimonial-role { font-size: .85rem; color: var(--gray); }

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 16px; border: 1px solid var(--border); margin-bottom: 10px; overflow: hidden; transition: all .2s; }
.faq-item.active { border-color: var(--pink); }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 600; text-align: left; color: var(--dark); font-family: 'Poppins', sans-serif; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--pink); font-weight: 700; transition: transform .3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s ease; }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 200px; }
.faq-answer p { color: var(--gray); line-height: 1.7; }

/* ===== CTA ===== */
.cta { background: var(--gradient); color: #fff; text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta .btn-primary { background: #fff; color: var(--pink); -webkit-text-fill-color: var(--pink); }
.cta .btn-primary:hover { background: var(--dark); color: #fff; -webkit-text-fill-color: #fff; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand h3 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { line-height: 1.7; font-size: .9rem; }
.footer-col h4 { color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; padding: 4px 0; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .85rem; }

/* ===== MOBILE NAV ===== */
.nav-links.show {
  display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
  background: #fff; padding: 20px; box-shadow: var(--shadow-lg); gap: 14px; border-radius: 0 0 20px 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.large { grid-column: span 1; grid-template-columns: 1fr; }
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar .container { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .section-title { font-size: 1.9rem; }
  .section { padding: 70px 0; }
  .counter-row { gap: 16px; }
  .counter-item { min-width: 140px; padding: 24px; }
}
