:root {
  color-scheme: light;

  --purple-950: #250239;
  --purple-900: #360450;
  --purple-800: #560b81;
  --purple-700: #6b149b;
  --purple-100: #f2e7f8;
  --amber-600: #ffa306;
  --amber-500: #ffb22e;
  --amber-100: #fff4dd;

  --text: #211728;
  --muted: #62576a;
  --border: #e8dfec;
  --surface: #ffffff;
  --background: #fbf8fd;
  --link: var(--purple-800);

  --shadow-sm: 0 1px 2px rgba(37, 2, 57, .06), 0 8px 20px rgba(37, 2, 57, .07);
  --shadow-md: 0 16px 38px rgba(37, 2, 57, .14);
  --radius: 8px;

  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--link);
  text-decoration: none;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 253, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: .95rem;
  font-weight: 600;
}

.nav a {
  color: var(--text);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--purple-800);
  text-decoration: none;
}

.nav .btn {
  color: #fff;
}

.nav .btn:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: #fff;
  box-shadow: 0 8px 22px rgba(86, 11, 129, .28);
}

.btn-gold {
  background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
  color: #291500;
  box-shadow: 0 8px 22px rgba(255, 163, 6, .34);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-800);
  border: 2px solid rgba(86, 11, 129, .2);
}

.btn-ghost:hover {
  border-color: var(--purple-800);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(37, 2, 57, .96) 0%, rgba(86, 11, 129, .88) 44%, rgba(37, 2, 57, .42) 100%),
    url("assets/eduka-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58px;
  background: var(--background);
  clip-path: polygon(0 64%, 100% 12%, 100% 100%, 0 100%);
}

.hero .wrap {
  position: relative;
  padding: 98px 0 116px;
}

.hero-text {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-600);
  border: 1px solid rgba(255, 163, 6, .45);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .06);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 18px 0 16px;
}

.hero h1 .gold {
  color: var(--amber-600);
}

.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88);
  max-width: 610px;
  margin: 0 0 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
}

.hero-ghost:hover {
  border-color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-stats .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--amber-600);
  line-height: 1;
}

.hero-stats .lbl {
  max-width: 170px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  line-height: 1.12;
  margin: 10px 0 12px;
  color: var(--purple-900);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.benefits {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.benefit-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 166px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 163, 6, .8);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-950));
  box-shadow: 0 8px 18px rgba(86, 11, 129, .26);
}

.benefit-icon svg {
  width: 29px;
  height: 29px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--purple-900);
  margin: 2px 0 6px;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.benefits-tagline {
  text-align: center;
  margin: 44px auto 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  line-height: 1.32;
  color: var(--purple-800);
}

.benefits-tagline .gold {
  color: #b76d00;
}

.about .wrap:first-child {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--purple-100);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  color: var(--purple-900);
  margin: 10px 0 16px;
  line-height: 1.14;
}

.about-text p {
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 570px;
}

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

.segment {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 15px 17px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber-600);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple-900);
  box-shadow: var(--shadow-sm);
}

.segment svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple-800);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.coverage {
  margin-top: 22px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-950));
  color: #fff;
  border-radius: var(--radius);
}

.coverage p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .9);
}

.cta {
  background:
    linear-gradient(135deg, rgba(255, 163, 6, .16), transparent 36%),
    linear-gradient(160deg, var(--purple-800), var(--purple-950));
  color: #fff;
}

.cta .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  line-height: 1.14;
  margin: 10px 0 14px;
}

.cta h2 .gold {
  color: var(--amber-600);
}

.cta p {
  color: rgba(255, 255, 255, .85);
  margin: 0 0 26px;
  max-width: 500px;
}

.contact-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.contact-item + .contact-item {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-item .ci-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
}

.contact-item .ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: #291500;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item .lbl {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .62);
}

.contact-item a,
.contact-item .val {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--amber-600);
  text-decoration: none;
}

.site-footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding: 0;
  margin-bottom: 16px;
  background: transparent;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin: 0 0 14px;
}

.site-footer p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
}

.site-footer a:hover {
  color: var(--amber-600);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .66);
}

.policy {
  width: min(840px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.policy-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px clamp(20px, 5vw, 52px);
}

.policy-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--purple-900);
  margin: 4px 0 6px;
  line-height: 1.15;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--purple-800);
  margin: 34px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.policy-content p,
.policy-content li {
  color: #3c3044;
  overflow-wrap: anywhere;
}

.policy-content p {
  max-width: 70ch;
  margin: 0 0 12px;
}

.policy-content ul {
  max-width: 70ch;
  padding-left: 22px;
  margin: 0 0 12px;
}

.updated-date {
  color: var(--muted);
  font-size: .92rem;
}

.policy-company {
  display: inline-block;
  color: #b76d00;
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 16px;
}

@media (max-width: 880px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(37, 2, 57, .96) 0%, rgba(86, 11, 129, .88) 100%),
      url("assets/eduka-hero.png") center / cover no-repeat;
  }

  .hero .wrap {
    padding: 70px 0 92px;
  }

  .about .wrap:first-child,
  .cta .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo {
    order: -1;
  }

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

  .site-footer .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 28px), 1120px);
  }

  .site-header .wrap {
    gap: 10px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .nav .btn {
    min-height: 42px;
    padding: 11px 16px;
    font-size: .88rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 22px;
  }

  .segments {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 12px;
  }

  .nav .hide-sm {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-stats .lbl {
    max-width: none;
    font-size: .78rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.35rem);
  }

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

  .section-head h2,
  .about-text h2,
  .cta h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .site-footer .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
