:root {
  --primary: #0ab8a5;
  --primary-dark: #078f82;
  --accent: #f45405;
  --accent-dark: #d94804;
  --accent-soft: #fff0e8;
  --text-dark: #0f1c2d;
  --text-body: #2e3d4f;
  --bg-main: #ffffff;
  --bg-soft: #f7fbfb;
  --bg-soft-2: #eef7f6;
  --border: #d9e7e6;
  --shadow-soft: 0 10px 30px rgba(15, 28, 45, 0.06);
  --shadow-medium: 0 16px 40px rgba(15, 28, 45, 0.08);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* TOP BAR */
.topbar {
  background: linear-gradient(90deg, var(--accent) 0%, #ff7a3c 100%);
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topbar p {
  font-size: 0.94rem;
  font-weight: 600;
  color: #ffffff;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 184, 165, 0.08);
}

.header-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  position: relative;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

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

.menu-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-cta {
  display: none !important;
}

.desktop-cta {
  display: inline-flex !important;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 184, 165, 0.18);
}

.btn-primary:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(244, 84, 5, 0.22);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-light {
  background: #ffffff;
  color: var(--accent);
  font-weight: 700;
}

.btn-light:hover {
  background: var(--accent);
  color: #ffffff;
}

/* HERO */
.hero {
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at left top, rgba(10, 184, 165, 0.10), transparent 28%),
    radial-gradient(circle at right 20%, rgba(244, 84, 5, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfefe 0%, #ffffff 100%);
}

.hero-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: var(--text-body);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-soft-2);
  border: 1px solid rgba(10, 184, 165, 0.15);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

/* GLOBAL SECTIONS */
section {
  padding: 72px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading-left {
  text-align: left;
}

.section-heading:not(.section-heading-left) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.contact-info h2,
.pricing-content h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.12;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-text,
.contact-info p,
.pricing-content p,
.value-card p,
.service-card p {
  color: var(--text-body);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.65;
}

/* WHY ENLEARN */
.why-enlearn {
  background: #ffffff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  border: 1px solid #ebf0f0;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

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

.value-card h3 {
  font-size: 1.26rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

/* PROBLEMS */
.problems {
  background: var(--bg-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 22px 22px 22px 28px;
  background: linear-gradient(135deg, #fff5f1 0%, #fff9f7 100%);
  border: 1px solid rgba(244, 84, 5, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), #ff9a6c);
  border-radius: 4px 0 0 4px;
}

/* SERVICES */
.services {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 28, 45, 0.06);
}

.service-card.featured {
  background: linear-gradient(180deg, #f2fffd 0%, #ffffff 100%);
  border: 1px solid rgba(10, 184, 165, 0.22);
}

.service-card-soft-neutral,
.service-card-soft-teal {
  background: linear-gradient(180deg, #f3fcfb 0%, #ffffff 100%);
  border: 1px solid rgba(10, 184, 165, 0.14);
}

.service-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-badge-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  margin-bottom: 0;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-body);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.65;
}

.service-types {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.service-types p {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(10, 184, 165, 0.06);
  border: 1px solid rgba(10, 184, 165, 0.10);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-types strong {
  color: var(--primary-dark);
}

.service-note {
  margin-top: 14px;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
}

.service-card .price-alt {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1rem;
  margin-top: 14px;
}

/* PRICING */
.pricing {
  background: linear-gradient(135deg, #0ab8a5 0%, #088f81 100%);
}

.light {
  color: #dcfbf7;
}

.strong-label {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.pricing .section-heading h2 {
  color: #ffffff;
}

.pricing .section-text {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.accent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.92em;
  vertical-align: middle;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 34px;
}

.toggle-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: color 0.25s ease;
}

.toggle-label.active {
  color: #ffffff;
}

.pricing-toggle {
  position: relative;
  width: 72px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.pricing-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.25s ease;
}

.pricing-toggle.yearly::before {
  transform: translateX(34px);
}

.toggle-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.pricing-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.featured-pricing {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-box-secondary {
  background: rgba(10, 82, 77, 0.24);
}

.plan-name {
  margin-bottom: 12px;
  color: #fff4ef;
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-box h3 {
  margin-bottom: 10px;
  font-size: 2.6rem;
  line-height: 1.05;
  color: #ffffff;
}

.pricing-box h3 span {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.annual-price {
  margin-bottom: 10px;
  color: #fff0ea;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-extra {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: #f7fffd;
  font-weight: 500;
}

.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
}

.hidden {
  display: none;
}

.pricing-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* PACKAGE DETAILS */
.package-details {
  background: #ffffff;
}

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

.detail-card {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  border: 1px solid rgba(10, 184, 165, 0.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.detail-card h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.detail-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.detail-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-body);
  font-weight: 500;
}

.detail-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
}

/* CONTACT */
.contact {
  background: #fffdfb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-box {
  margin: 22px 0;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-box p {
  margin-bottom: 10px;
  color: var(--text-body);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #ebf0f0;
  border-radius: 22px;
  box-shadow: var(--shadow-medium);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8e4e3;
  border-radius: 14px;
  font-size: 1rem;
  outline: none;
  color: var(--text-dark);
  background: #ffffff;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 184, 165, 0.10);
}

.form-btn {
  width: 100%;
}

.formbricks-embed {
  padding: 0;
  overflow: hidden;
  min-height: 620px;
}

.formbricks-embed iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  display: block;
  background: #ffffff;
  border-radius: 22px;
}

/* FOOTER */
.site-footer {
  background: #0f1c2d;
  padding: 26px 0;
}

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

.site-footer p {
  color: #c8d6e5;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.footer-partner {
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .value-grid,
  .problem-grid,
  .service-grid,
  .pricing-grid,
  .details-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar-wrap {
    min-height: 34px;
  }

  .topbar p {
    font-size: 0.82rem;
  }

  .header-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-cta {
    display: none !important;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 28, 45, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-cta {
    display: inline-flex !important;
    width: 100%;
    margin-top: 6px;
  }
}

@media (min-width: 901px) {
  .mobile-cta {
    display: none !important;
  }

  .desktop-cta {
    display: inline-flex !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 72px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  section {
    padding: 60px 0;
  }

  .accent-pill {
    margin-left: 0;
    margin-top: 10px;
  }

  .pricing-box h3 {
    font-size: 2.2rem;
  }

  .pricing-toggle-wrap {
    gap: 10px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-partner {
    white-space: normal;
  }
}

@media (max-width: 540px) {
  .btn,
  .header-cta,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .service-card,
  .detail-card,
  .pricing-box,
  .contact-form {
    padding: 22px;
  }

  .pricing-toggle-wrap {
    flex-direction: column;
  }
}
.section-head-wide {
  max-width: 920px;
}
.hidden {
  display: none !important;
}