@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #3A2AA7;
  --primary-dark: #3A2AA7;
  --secondary: #ff9933;
  --secondary-dark: #e67300;
  --text: #1f2937;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-light: #eef2ff;
  --border: #e2e8f0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.top-banner {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.9rem;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-content p {
  font-weight: 500;
}

.pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.link-button {
  border: none;
  background: none;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.main-nav {
  background: #3A2AA7;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.nav-accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 150px;
}

.logo img {
  height: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  color: var(--text);
}

.nav-links a {
  font-size: 0.95rem;
  color: #fff;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--secondary-dark);
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(91, 77, 219, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 180px 0 90px;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 55%),
    linear-gradient(135deg, #3A2AA7 0%, #6b5de8 50%, #4a3dc2 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  color: var(--secondary);
  display: block;
}

.hero-copy p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.hero-checks i {
  color: var(--secondary);
}

.hero-checks div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-media {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(91, 77, 219, 0.5));
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  color: var(--text);
  font-size: 0.85rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card.left {
  bottom: -18px;
  left: -18px;
}

.floating-card.right {
  top: -18px;
  right: -18px;
  animation-delay: 1s;
}

.floating-card strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
}

.icon-circle.purple {
  background: linear-gradient(135deg, var(--primary), #6b5de8);
}

.icon-circle.orange {
  background: linear-gradient(135deg, var(--secondary), #ffa94d);
}

.stats {
  background: var(--bg);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

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

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

.stat-card .icon-circle {
  margin: 0 auto 16px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.section {
  padding: 90px 0;
}

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

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-heading h2 span {
  color: var(--secondary-dark);
}

.section-heading p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-heading.light {
  color: #fff;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.7);
}

.why-choose {
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.feature-card .icon-circle {
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.courses {
  background: var(--bg-soft);
}

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

.course-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 77, 219, 0.2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.course-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

.course-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.course-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.course-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
  color: #334155;
}

.course-card li i {
  color: var(--secondary);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.case-study {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.case-image {
  position: relative;
  min-height: 280px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(91, 77, 219, 0.75), transparent);
}

.case-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 1;
}

.case-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-content h3 {
  font-size: 1.5rem;
}

.case-result {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.case-metrics div {
  text-align: center;
}

.case-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.case-metrics span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonials {
  background: linear-gradient(135deg, #3A2AA7, #6b5de8);
  color: #fff;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.quote {
  position: relative;
  padding-left: 24px;
}

.quote i {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 153, 51, 0.4);
}

.pricing {
  background: var(--bg-soft);
}

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

.pricing-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.pricing-card.highlight {
  border-color: var(--secondary);
  box-shadow: 0 24px 60px rgba(255, 153, 51, 0.2);
}

.highlight-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--secondary);
  color: #fff;
  padding: 8px 18px;
  font-weight: 700;
  border-bottom-left-radius: 14px;
}

.pricing-card h3 {
  font-size: 1.4rem;
}

.pricing-card p {
  color: var(--muted);
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
}

.pricing-card li i {
  color: var(--secondary);
}

.contact {
  background: var(--bg);
}

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

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 16px;
}

.contact-form h3 {
  margin-bottom: 6px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: #475569;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.info-card,
.benefits-card,
.offer-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.info-row p {
  color: var(--muted);
}

.benefits-card {
  background: linear-gradient(135deg, var(--primary), #6b5de8);
  color: #fff;
}

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

.benefits-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefits-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.benefits-card li i {
  color: var(--secondary);
}

.offer-card {
  background: #fff7ed;
  border: 1px solid rgba(255, 153, 51, 0.3);
}

.offer-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 60px 0 30px;
}

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

.footer-brand img {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: #111827;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #fff;
  border-top: 1px solid #1f2937;
  padding-top: 20px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--secondary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(255, 153, 51, 0.3);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #3A2AA7;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 160px;
  }

  .floating-card.left,
  .floating-card.right {
    position: static;
    margin-top: 20px;
  }

  .hero-media {
    display: grid;
    gap: 14px;
  }

  .case-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .banner-content {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    padding-top: 60px;
  }

  .pricing-card {
    padding: 24px;
  }

  .newsletter {
    flex-direction: column;
  }
}

