:root {
  --navy: #10233f;
  --deep: #071426;
  --blue: #2f6bff;
  --gold: #d7a84d;
  --cream: #fff7e8;
  --sky: #edf4ff;
  --ink: #172033;
  --muted: #66758a;
  --line: #dce6f4;
  --white: #ffffff;
  --bg: #f6f8fc;
  --shadow: 0 24px 70px rgba(16, 35, 63, 0.14);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  word-break: keep-all;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 230, 244, .85);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--deep), var(--navy) 55%, var(--gold));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: #35445a;
}

.site-nav a:hover {
  background: var(--sky);
  color: var(--blue);
}

.site-nav .nav-cta {
  background: var(--navy);
  color: white;
  padding-inline: 18px;
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 107, 255, .13), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(215, 168, 77, .18), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.075em;
  color: var(--navy);
}

.hero-desc {
  margin: 24px 0 0;
  max-width: 650px;
  font-size: 20px;
  color: #4d5d72;
  letter-spacing: -0.035em;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 15px 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.03em;
  transition: .2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 36px rgba(47, 107, 255, .25);
}

.btn-outline {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #536275;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  display: block;
  padding: 12px;
  border-radius: 38px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: .22s ease;
}

.hero-visual:hover { transform: translateY(-4px); }

.hero-visual img {
  border-radius: 30px;
}

.program-section {
  padding: 88px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2,
.strength-copy h2,
.contact-box h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.22;
  letter-spacing: -0.065em;
}

.section-title p,
.strength-copy p,
.contact-box p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.program-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(16, 35, 63, .08);
  transition: .24s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.program-card.featured {
  border: 2px solid rgba(47, 107, 255, .35);
}

.program-image {
  padding: 16px 16px 0;
}

.program-image img {
  border-radius: 22px;
  background: var(--sky);
}

.program-content {
  padding: 26px;
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: #9a6d18;
  font-size: 13px;
  font-weight: 900;
}

.program-content h3 {
  margin: 18px 0 5px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.16;
  letter-spacing: -0.06em;
}

.program-content .sub {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
}

.program-content p {
  color: #4d5d72;
  margin: 0;
}

.program-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 9px;
}

.program-content li {
  position: relative;
  padding-left: 20px;
  color: #34445b;
  font-weight: 700;
  font-size: 15px;
}

.program-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 16px;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.program-card:hover .card-button {
  background: var(--blue);
}

.strength-section {
  padding: 84px 0;
  background: white;
}

.strength-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.strength-list {
  display: grid;
  gap: 16px;
}

.strength-list div {
  padding: 24px;
  border-radius: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.strength-list b {
  display: block;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.strength-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-band {
  padding: 84px 0;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, .18), transparent 35%),
    var(--deep);
}

.contact-box {
  border-radius: 32px;
  padding: 46px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.contact-box h2 { color: white; }
.contact-box p { color: rgba(255,255,255,.72); }

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  padding: 34px 0;
  background: #06101d;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong {
  color: white;
}

@media (max-width: 1040px) {
  .hero-grid,
  .strength-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

  .contact-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    height: 68px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero,
  .program-section,
  .strength-section,
  .contact-band {
    padding: 62px 0;
  }

  .hero-desc {
    font-size: 17px;
  }

  .hero-buttons .btn,
  .contact-buttons .btn {
    width: 100%;
  }

  .program-content {
    padding: 22px;
  }

  .program-content h3 {
    font-size: 25px;
  }

  .contact-box {
    padding: 28px;
  }
}


/* coding long landing page */
.coding-hero {
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 107, 255, .16), transparent 31%),
    radial-gradient(circle at 82% 18%, rgba(116, 211, 165, .17), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.coding-hero-grid {
  display: grid;
  grid-template-columns: 1fr .94fr;
  gap: 52px;
  align-items: center;
}

.coding-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.075em;
}

.coding-hero-copy p {
  margin: 24px 0 0;
  max-width: 680px;
  color: #4d5d72;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.coding-hero-image {
  display: block;
  padding: 12px;
  border-radius: 38px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: .22s ease;
}

.coding-hero-image:hover {
  transform: translateY(-4px);
}

.coding-hero-image img {
  border-radius: 30px;
}

.coding-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coding-badges span {
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #536275;
  font-size: 13px;
  font-weight: 900;
}

.coding-section {
  padding: 92px 0;
  background: white;
}

.coding-section.light {
  background: #f6f8fc;
}

.section-title.center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.concern-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(16, 35, 63, .06);
}

.concern-card span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.concern-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.concern-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.class-panel {
  padding: 28px;
  border-radius: 28px;
  background: #f7faff;
  border: 1px solid var(--line);
}

.class-panel h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.05em;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #33445c;
  font-weight: 800;
  font-size: 14px;
}

.teacher-section {
  background:
    radial-gradient(circle at top right, rgba(47,107,255,.1), transparent 30%),
    white;
}

.teacher-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.teacher-grid h2,
.final-box h2,
.consult-box h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.065em;
}

.teacher-grid p,
.final-box p,
.consult-box p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.teacher-points {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.teacher-points div {
  padding: 18px;
  border-radius: 20px;
  background: #f6f8fc;
  border: 1px solid var(--line);
}

.teacher-points b {
  display: block;
  color: var(--navy);
  letter-spacing: -0.035em;
}

.teacher-points span {
  color: var(--muted);
  font-size: 14px;
}

.teacher-image-card,
.process-visual {
  padding: 12px;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.teacher-image-card img,
.process-visual img {
  border-radius: 26px;
}

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

.benefit-card {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

.benefit-card b {
  display: block;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -0.04em;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.process-coding {
  background: white;
}

.process-visual {
  margin: 26px 0 28px;
}

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

.flow-grid article {
  padding: 26px;
  border-radius: 26px;
  background: #f7faff;
  border: 1px solid var(--line);
}

.flow-grid span {
  display: inline-flex;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}

.flow-grid h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.045em;
}

.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.consult-section {
  background: #f6f8fc;
}

.consult-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(16,35,63,.07);
}

.consult-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consult-list span {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--sky);
  color: #24446d;
  font-weight: 850;
  font-size: 14px;
}

.final-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(47,107,255,.22), transparent 32%),
    linear-gradient(135deg, #071426, #10233f);
  color: white;
}

.final-box {
  max-width: 860px;
  text-align: center;
}

.final-box h2 {
  color: white;
}

.final-box p {
  color: rgba(255,255,255,.74);
  margin-bottom: 30px;
}

@media (max-width: 1040px) {
  .coding-hero-grid,
  .teacher-grid,
  .consult-box {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .coding-hero,
  .coding-section,
  .final-cta {
    padding: 64px 0;
  }

  .coding-hero-copy p {
    font-size: 17px;
  }

  .concern-grid,
  .class-layout,
  .flow-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .concern-card {
    min-height: auto;
  }

  .consult-box {
    padding: 28px;
  }
}


/* image based coding landing */
.image-landing-body {
  background: #f4f8ff;
}

.image-landing-page {
  min-height: 100vh;
  padding: 34px 0 80px;
  background:
    radial-gradient(circle at 20% 5%, rgba(47,107,255,.10), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(116,211,165,.10), transparent 28%),
    #f4f8ff;
}

.image-landing-shell {
  width: min(430px, calc(100% - 24px));
  margin: 0 auto;
}

.image-landing-top {
  text-align: center;
  padding: 18px 8px 20px;
}

.image-landing-top p {
  margin: 0 0 6px;
  color: #2f6bff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.image-landing-top h1 {
  margin: 0;
  color: #10233f;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.landing-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: white;
  box-shadow: 0 22px 70px rgba(16,35,63,.16);
}

.landing-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  border-radius: 18px;
  background: rgba(47, 107, 255, 0);
}

.hotspot:hover {
  background: rgba(47, 107, 255, .08);
  outline: 2px solid rgba(47, 107, 255, .18);
}

/* 좌표는 업로드한 이미지 기준 비율입니다. */
.hotspot-top {
  left: 8%;
  top: 3.8%;
  width: 84%;
  height: 13.5%;
}

.hotspot-class {
  left: 5%;
  top: 19.2%;
  width: 90%;
  height: 12.5%;
}

.hotspot-teacher {
  left: 5%;
  top: 43.5%;
  width: 90%;
  height: 18.5%;
}

.hotspot-process {
  left: 5%;
  top: 64.8%;
  width: 90%;
  height: 15.5%;
}

.hotspot-bottom {
  left: 14%;
  top: 89.5%;
  width: 72%;
  height: 6.5%;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  z-index: 20;
  margin: 18px auto 0;
  width: min(100%, 390px);
}

.sticky-cta a {
  min-height: 54px;
  border-radius: 999px;
  background: #2f6bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(47,107,255,.32);
}

@media (max-width: 520px) {
  .image-landing-page {
    padding-top: 20px;
  }

  .image-landing-shell {
    width: min(390px, calc(100% - 18px));
  }

  .image-landing-top h1 {
    font-size: 22px;
  }
}


/* v6 high-resolution section image landing */
.coding-sections-body {
  background: #f5f9ff;
}

.coding-image-landing {
  background:
    radial-gradient(circle at 10% 0%, rgba(47,107,255,.08), transparent 28%),
    radial-gradient(circle at 92% 3%, rgba(124,168,255,.08), transparent 28%),
    #f5f9ff;
  padding: 0 0 96px;
}

.coding-image-shell {
  width: min(100%, 1086px);
  margin: 0 auto;
  background: #ffffff;
}

.image-section {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  background: #ffffff;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
}

.image-section:hover {
  filter: none;
}

.divider-section {
  background: #f8fbff;
}

.clickable-area {
  position: relative;
}

.concern-hotspot,
.final-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  border-radius: 28px;
  background: rgba(47, 107, 255, 0);
}

.concern-hotspot:hover,
.final-hotspot:hover {
  background: rgba(47, 107, 255, .08);
  outline: 2px solid rgba(47, 107, 255, .16);
}



.html-info-section {
  padding: 88px min(54px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  text-align: center;
}

.html-info-section .mini-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.html-info-section h2 {
  margin: 0 0 36px;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.flow-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.flow-card-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35, 86, 160, .08);
}

.flow-card-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0b63ff;
  font-weight: 900;
  font-size: 15px;
}

.flow-card-grid b {
  display: block;
  color: #0b2245;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.flow-card-grid p {
  margin: 12px 0 0;
  color: #52647a;
  font-size: 16px;
  line-height: 1.65;
}

.floating-coding-cta {
  position: sticky;
  bottom: 14px;
  z-index: 30;
  width: min(92%, 520px);
  margin: 18px auto 0;
}

.floating-coding-cta a {
  min-height: 56px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(11, 99, 255, .28);
}

@media (min-width: 1200px) {
  .coding-image-shell {
    margin-top: 28px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(16,35,63,.10);
  }
}

@media (max-width: 760px) {
  .coding-image-landing {
    padding-bottom: 72px;
  }

  .html-info-section {
    padding: 58px 18px;
  }

  .flow-card-grid {
    grid-template-columns: 1fr;
  }

  .flow-card-grid article {
    min-height: auto;
    padding: 22px;
  }

  .flow-card-grid b {
    font-size: 20px;
  }
}

/* v7 hotspot alignment */
.concerns-section .h1 { left: 6.5%; top: 29.7%; width: 87%; height: 8.6%; }
.concerns-section .h2 { left: 6.5%; top: 40.2%; width: 87%; height: 8.6%; }
.concerns-section .h3 { left: 6.5%; top: 50.9%; width: 87%; height: 8.6%; }
.concerns-section .h4 { left: 6.5%; top: 61.5%; width: 87%; height: 8.6%; }
.concerns-section .h5 { left: 6.5%; top: 72.1%; width: 87%; height: 8.6%; }
.concerns-section .h6 { left: 6.5%; top: 82.8%; width: 87%; height: 8.6%; }

.final-cta-section .trial {
  left: 8.6%;
  top: 62.6%;
  width: 82.8%;
  height: 8.7%;
}

.final-cta-section .form {
  left: 8.6%;
  top: 76.0%;
  width: 82.8%;
  height: 8.7%;
}


/* v7 section cleanup */
.coding-image-shell .image-section {
  margin: 0;
}

.coding-image-shell .image-section + .image-section {
  margin-top: 0;
}

.coding-image-shell {
  background: #fff;
}

.image-section img {
  vertical-align: top;
}

@media (max-width: 760px) {
  .concern-hotspot:hover,
  .final-hotspot:hover {
    outline: none;
    background: rgba(47, 107, 255, 0);
  }
}


/* v8 coding page revisions */
.teacher-click-section {
  position: relative;
}

.teacher-click-badge {
  position: absolute;
  right: 7.5%;
  bottom: 5.5%;
  z-index: 5;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #0b63ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(11,99,255,.28);
}

.coding-flow-section {
  padding: 92px min(54px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  text-align: center;
}

.coding-flow-section .mini-label,
.review-title span {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.coding-flow-section h2,
.review-title h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.three-flow {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  gap: 12px;
  align-items: stretch;
}

.three-flow article {
  min-height: 330px;
  padding: 34px 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 18px 44px rgba(35,86,160,.08);
  text-align: left;
}

.three-flow .step-num {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0b63ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
}

.three-flow h3 {
  margin: 0 0 10px;
  color: #0b2245;
  font-size: 30px;
  letter-spacing: -0.06em;
  line-height: 1.18;
}

.three-flow b {
  display: block;
  color: #0b63ff;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.three-flow p {
  margin: 14px 0 0;
  color: #52647a;
  font-size: 16px;
  line-height: 1.75;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b63ff;
  font-size: 42px;
  font-weight: 900;
}

.review-slider-section {
  padding: 96px min(42px, 4vw);
  background: #ffffff;
}

.review-title {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.review-title p {
  margin: 16px 0 0;
  color: #52647a;
  font-size: 18px;
  line-height: 1.65;
}

.review-slider-wrap {
  position: relative;
  width: 100%;
}

.review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: none;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  min-height: 330px;
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 42px rgba(35,86,160,.08);
}

.review-profile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-profile span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eaf3ff;
  color: #0b63ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.review-profile b {
  color: #0b2245;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.stars {
  margin-top: 18px;
  color: #ffb800;
  letter-spacing: .08em;
  font-size: 20px;
}

.review-card p {
  margin: 18px 0 0;
  color: #33465f;
  font-size: 16px;
  line-height: 1.85;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11,99,255,.28);
}

.slider-btn.prev {
  left: -12px;
}

.slider-btn.next {
  right: -12px;
}

@media (max-width: 900px) {
  .three-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 28px;
    transform: rotate(90deg);
  }

  .review-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .teacher-click-badge {
    right: 5%;
    bottom: 3.8%;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .coding-flow-section,
  .review-slider-section {
    padding: 64px 18px;
  }

  .three-flow article {
    min-height: auto;
    padding: 24px;
  }

  .three-flow h3 {
    font-size: 26px;
  }

  .review-slider {
    grid-auto-columns: 88%;
  }

  .slider-btn {
    display: none;
  }
}


/* v9 coding additions */
.review-highlight-section {
  padding: 88px min(42px, 4vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.review-title.compact {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.strength-card-section {
  padding: 94px min(58px, 5vw);
  background:
    radial-gradient(circle at 20% 4%, rgba(49,108,255,.10), transparent 28%),
    #ffffff;
}

.strength-card-title {
  text-align: center;
  margin-bottom: 44px;
}

.strength-card-title p {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.strength-card-title h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.strength-card-title span {
  display: block;
  margin-top: 16px;
  color: #52647a;
  font-size: 18px;
}

.strength-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.strength-card-grid article {
  position: relative;
  min-height: 154px;
  padding: 28px 28px 28px 132px;
  border-radius: 28px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35,86,160,.08);
  display: flex;
  align-items: center;
}

.strength-card-grid em {
  position: absolute;
  left: 24px;
  top: 18px;
  width: 44px;
  height: 36px;
  border-radius: 12px;
  background: #0b63ff;
  color: white;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.strength-card-grid i {
  position: absolute;
  left: 34px;
  top: 58px;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: #edf5ff;
  color: #0b63ff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 25px;
  font-weight: 900;
}

.strength-card-grid b {
  color: #0b2245;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.teacher-profile-map {
  position: relative;
  display: block;
}

.teacher-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  width: 50%;
  height: 33.333%;
  background: rgba(11, 99, 255, 0);
  border-radius: 22px;
}

.teacher-hotspot span {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  min-height: 42px;
  width: min(82%, 330px);
  padding: 0 14px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(11,99,255,.25);
  opacity: 0;
  transition: .2s ease;
}

.teacher-hotspot:hover {
  background: rgba(11, 99, 255, .06);
  outline: 2px solid rgba(11, 99, 255, .18);
}

.teacher-hotspot:hover span {
  opacity: 1;
}

.teacher-hotspot.t1 { left: 0; top: 0; }
.teacher-hotspot.t2 { left: 50%; top: 0; }
.teacher-hotspot.t3 { left: 0; top: 33.333%; }
.teacher-hotspot.t4 { left: 50%; top: 33.333%; }
.teacher-hotspot.t5 { left: 0; top: 66.666%; }
.teacher-hotspot.t6 { left: 50%; top: 66.666%; }

.review-more-section {
  padding: 92px min(42px, 4vw) 110px;
  background: #ffffff;
  border-top: 1px solid #e5effc;
}

.review-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.more-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  box-shadow: 0 14px 36px rgba(35,86,160,.07);
}

.more-card b {
  display: block;
  color: #0b63ff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.more-card em {
  display: block;
  margin-top: 12px;
  color: #ffb800;
  font-style: normal;
  letter-spacing: .08em;
  font-size: 18px;
}

.more-card p {
  margin: 14px 0 0;
  color: #33465f;
  font-size: 15px;
  line-height: 1.75;
}

.hidden-review {
  display: none;
}

.review-more-grid.is-open .hidden-review {
  display: block;
}

.more-review-button {
  width: min(100%, 360px);
  min-height: 56px;
  margin: 34px auto 0;
  border: 0;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(11,99,255,.25);
}

@media (max-width: 900px) {
  .strength-card-grid,
  .review-more-grid {
    grid-template-columns: 1fr;
  }

  .strength-card-grid article {
    min-height: 132px;
    padding-left: 116px;
  }
}

@media (max-width: 620px) {
  .review-highlight-section,
  .strength-card-section,
  .review-more-section {
    padding: 64px 18px;
  }

  .strength-card-grid article {
    padding: 24px 20px 24px 104px;
  }

  .strength-card-grid b {
    font-size: 21px;
  }

  .strength-card-grid i {
    left: 24px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .teacher-hotspot span {
    display: none;
  }

  .teacher-hotspot:hover {
    background: rgba(11, 99, 255, 0);
    outline: none;
  }
}


/* v10 course cards and review swap */
.course-card-section {
  padding: 92px min(50px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.course-card-title {
  text-align: center;
  margin-bottom: 42px;
}

.course-card-title p {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.course-card-title h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.course-card-title span {
  display: block;
  margin-top: 16px;
  color: #52647a;
  font-size: 18px;
}

.course-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.course-card-grid a {
  min-height: 146px;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 14px 34px rgba(35,86,160,.07);
  transition: .2s ease;
}

.course-card-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(11,99,255,.36);
  box-shadow: 0 20px 44px rgba(35,86,160,.13);
}

.course-card-grid b {
  display: block;
  color: #0b63ff;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.course-card-grid span {
  display: block;
  margin-top: 10px;
  color: #52647a;
  font-size: 14px;
  line-height: 1.55;
}

.top-review-block {
  background: #ffffff;
  border-top: 1px solid #e5effc;
}

.bottom-slider-review {
  background: #ffffff;
  border-top: 1px solid #e5effc;
  padding-bottom: 118px;
}

@media (max-width: 980px) {
  .course-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .course-card-section {
    padding: 64px 18px;
  }

  .course-card-grid {
    grid-template-columns: 1fr;
  }

  .course-card-grid a {
    min-height: auto;
  }
}


/* v11 course select customization */
.featured-course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.featured-course-card {
  min-height: 220px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(135deg, #0b63ff 0%, #0946c9 100%);
  color: white;
  box-shadow: 0 22px 54px rgba(11,99,255,.24);
  transition: .22s ease;
  position: relative;
  overflow: hidden;
}

.featured-course-card::after {
  content: "›";
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  opacity: .86;
}

.featured-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(11,99,255,.30);
}

.featured-course-card small {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.96);
  font-weight: 900;
  font-size: 14px;
}

.featured-course-card b {
  display: block;
  margin-top: 22px;
  color: white;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.07em;
}

.featured-course-card span {
  display: block;
  margin-top: 12px;
  max-width: 420px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

.beginner-choice-box {
  margin-top: 34px;
  padding: 30px;
  border-radius: 32px;
  background: #f7fbff;
  border: 1px solid #dbe8fb;
}

.beginner-choice-box p {
  margin: 0 0 22px;
  color: #0b2245;
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-align: center;
}

.beginner-choice-box a {
  min-height: 96px;
  padding: 22px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(35,86,160,.06);
  transition: .2s ease;
}

.beginner-choice-box a + a {
  margin-top: 14px;
}

.beginner-choice-box a:hover {
  transform: translateY(-3px);
  border-color: rgba(11,99,255,.35);
  box-shadow: 0 18px 40px rgba(35,86,160,.12);
}

.beginner-choice-box b {
  color: #0b63ff;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.beginner-choice-box span {
  color: #52647a;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .featured-course-grid {
    grid-template-columns: 1fr;
  }

  .featured-course-card {
    min-height: 190px;
    padding: 28px;
  }

  .beginner-choice-box {
    padding: 22px;
  }

  .beginner-choice-box p {
    text-align: left;
    font-size: 17px;
  }

  .beginner-choice-box a {
    min-height: auto;
    padding: 20px;
  }

  .beginner-choice-box b {
    font-size: 20px;
  }
}


/* v13 SEO city landing and reordered coding page */
.local-seo-intro {
  padding: 70px min(46px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid #e5effc;
}

.local-seo-intro .breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #6a7b90;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.local-seo-intro .breadcrumb a {
  color: #0b63ff;
}

.local-seo-intro h1 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.075em;
}

.local-seo-intro p {
  margin: 20px 0 0;
  max-width: 900px;
  color: #52647a;
  font-size: 18px;
  line-height: 1.8;
}

.teacher-profile-map {
  position: relative;
  display: block;
}

.teacher-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  width: 50%;
  height: 33.333%;
  background: rgba(11, 99, 255, 0);
  border-radius: 22px;
}

.teacher-hotspot span {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  min-height: 42px;
  width: min(82%, 330px);
  padding: 0 14px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(11,99,255,.25);
  opacity: 0;
  transition: .2s ease;
}

.teacher-hotspot:hover {
  background: rgba(11, 99, 255, .06);
  outline: 2px solid rgba(11, 99, 255, .18);
}

.teacher-hotspot:hover span {
  opacity: 1;
}

.teacher-hotspot.t1 { left: 0; top: 0; }
.teacher-hotspot.t2 { left: 50%; top: 0; }
.teacher-hotspot.t3 { left: 0; top: 33.333%; }
.teacher-hotspot.t4 { left: 50%; top: 33.333%; }
.teacher-hotspot.t5 { left: 0; top: 66.666%; }
.teacher-hotspot.t6 { left: 50%; top: 66.666%; }

.coding-flow-section {
  padding: 92px min(54px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  text-align: center;
}

.coding-flow-section .mini-label,
.review-title span,
.seo-text-section .mini-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.coding-flow-section h2,
.review-title h2,
.seo-text-section h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.three-flow {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  gap: 12px;
  align-items: stretch;
}

.three-flow article {
  min-height: 330px;
  padding: 34px 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 18px 44px rgba(35,86,160,.08);
  text-align: left;
}

.three-flow .step-num {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0b63ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
}

.three-flow h3 {
  margin: 0 0 10px;
  color: #0b2245;
  font-size: 30px;
  letter-spacing: -0.06em;
  line-height: 1.18;
}

.three-flow b {
  display: block;
  color: #0b63ff;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.three-flow p {
  margin: 14px 0 0;
  color: #52647a;
  font-size: 16px;
  line-height: 1.75;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b63ff;
  font-size: 42px;
  font-weight: 900;
}

.strength-card-section {
  padding: 94px min(58px, 5vw);
  background:
    radial-gradient(circle at 20% 4%, rgba(49,108,255,.10), transparent 28%),
    #ffffff;
}

.strength-card-title {
  text-align: center;
  margin-bottom: 44px;
}

.strength-card-title p,
.course-card-title p {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.strength-card-title h2,
.course-card-title h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.strength-card-title span,
.course-card-title span {
  display: block;
  margin-top: 16px;
  color: #52647a;
  font-size: 18px;
}

.strength-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.strength-card-grid article {
  position: relative;
  min-height: 154px;
  padding: 28px 28px 28px 132px;
  border-radius: 28px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35,86,160,.08);
  display: flex;
  align-items: center;
}

.strength-card-grid em {
  position: absolute;
  left: 24px;
  top: 18px;
  width: 44px;
  height: 36px;
  border-radius: 12px;
  background: #0b63ff;
  color: white;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.strength-card-grid i {
  position: absolute;
  left: 34px;
  top: 58px;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: #edf5ff;
  color: #0b63ff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 25px;
  font-weight: 900;
}

.strength-card-grid b {
  color: #0b2245;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.review-more-section {
  padding: 92px min(42px, 4vw) 110px;
  background: #ffffff;
  border-top: 1px solid #e5effc;
}

.review-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.more-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  box-shadow: 0 14px 36px rgba(35,86,160,.07);
}

.more-card b {
  display: block;
  color: #0b63ff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.more-card em {
  display: block;
  margin-top: 12px;
  color: #ffb800;
  font-style: normal;
  letter-spacing: .08em;
  font-size: 18px;
}

.more-card p {
  margin: 14px 0 0;
  color: #33465f;
  font-size: 15px;
  line-height: 1.75;
}

.hidden-review {
  display: none;
}

.review-more-grid.is-open .hidden-review {
  display: block;
}

.more-review-button {
  width: min(100%, 360px);
  min-height: 56px;
  margin: 34px auto 0;
  border: 0;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(11,99,255,.25);
}

.seo-text-section {
  padding: 92px min(52px, 5vw);
  background: #ffffff;
  border-top: 1px solid #e5effc;
}

.seo-text-section .seo-content {
  max-width: 920px;
  margin: 0 auto;
}

.seo-text-section p {
  margin: 20px 0 0;
  color: #33465f;
  font-size: 18px;
  line-height: 1.9;
}

.seo-text-section h3 {
  margin: 42px 0 0;
  color: #081b38;
  font-size: 30px;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.seo-faq {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.seo-faq details {
  border-radius: 20px;
  background: #f7fbff;
  border: 1px solid #dbe8fb;
  padding: 20px 22px;
}

.seo-faq summary {
  cursor: pointer;
  color: #081b38;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.seo-faq p {
  margin: 12px 0 0;
  font-size: 16px;
}

@media (max-width: 900px) {
  .three-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 28px;
    transform: rotate(90deg);
  }

  .review-more-grid,
  .strength-card-grid {
    grid-template-columns: 1fr;
  }

  .strength-card-grid article {
    min-height: 132px;
    padding-left: 116px;
  }
}

@media (max-width: 620px) {
  .local-seo-intro,
  .coding-flow-section,
  .strength-card-section,
  .review-more-section,
  .seo-text-section {
    padding: 58px 18px;
  }

  .three-flow article {
    min-height: auto;
    padding: 24px;
  }

  .three-flow h3 {
    font-size: 26px;
  }

  .strength-card-grid article {
    padding: 24px 20px 24px 104px;
  }

  .strength-card-grid b {
    font-size: 21px;
  }

  .strength-card-grid i {
    left: 24px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .teacher-hotspot span {
    display: none;
  }

  .teacher-hotspot:hover {
    background: rgba(11, 99, 255, 0);
    outline: none;
  }
}


/* v14 final conversion flow + admin preview */
.local-seo-intro {
  padding: 68px min(46px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid #e5effc;
}

.local-seo-intro .breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #6a7b90;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.local-seo-intro .breadcrumb a {
  color: #0b63ff;
}

.local-seo-intro h1 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.075em;
}

.local-seo-intro p {
  margin: 20px 0 0;
  max-width: 940px;
  color: #52647a;
  font-size: 18px;
  line-height: 1.82;
}

.local-seo-intro .intro-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.c-language-course-section {
  padding: 92px min(50px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.c-language-course-title {
  text-align: center;
  margin-bottom: 42px;
}

.c-language-course-title p {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.c-language-course-title h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.c-language-course-title span {
  display: block;
  margin-top: 16px;
  color: #52647a;
  font-size: 18px;
}

.c-main-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.c-main-choice-grid a {
  min-height: 220px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(135deg, #0b63ff 0%, #0946c9 100%);
  color: white;
  box-shadow: 0 22px 54px rgba(11,99,255,.24);
  transition: .22s ease;
  position: relative;
  overflow: hidden;
}

.c-main-choice-grid a::after {
  content: "›";
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  opacity: .86;
}

.c-main-choice-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(11,99,255,.30);
}

.c-main-choice-grid small {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.96);
  font-weight: 900;
  font-size: 14px;
}

.c-main-choice-grid b {
  display: block;
  margin-top: 22px;
  color: white;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.07em;
}

.c-main-choice-grid span {
  display: block;
  margin-top: 12px;
  max-width: 420px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

.c-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.c-detail-card-grid a {
  min-height: 146px;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 14px 34px rgba(35,86,160,.07);
  transition: .2s ease;
}

.c-detail-card-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(11,99,255,.36);
  box-shadow: 0 20px 44px rgba(35,86,160,.13);
}

.c-detail-card-grid b {
  display: block;
  color: #0b63ff;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.c-detail-card-grid span {
  display: block;
  margin-top: 10px;
  color: #52647a;
  font-size: 14px;
  line-height: 1.55;
}

.teacher-profile-map {
  position: relative;
  display: block;
}

.teacher-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  width: 50%;
  height: 33.333%;
  background: rgba(11, 99, 255, 0);
  border-radius: 22px;
}

.teacher-hotspot span {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  min-height: 42px;
  width: min(82%, 330px);
  padding: 0 14px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(11,99,255,.25);
  opacity: 0;
  transition: .2s ease;
}

.teacher-hotspot:hover {
  background: rgba(11, 99, 255, .06);
  outline: 2px solid rgba(11, 99, 255, .18);
}

.teacher-hotspot:hover span {
  opacity: 1;
}

.teacher-hotspot.t1 { left: 0; top: 0; }
.teacher-hotspot.t2 { left: 50%; top: 0; }
.teacher-hotspot.t3 { left: 0; top: 33.333%; }
.teacher-hotspot.t4 { left: 50%; top: 33.333%; }
.teacher-hotspot.t5 { left: 0; top: 66.666%; }
.teacher-hotspot.t6 { left: 50%; top: 66.666%; }

.strength-card-section {
  padding: 94px min(58px, 5vw);
  background:
    radial-gradient(circle at 20% 4%, rgba(49,108,255,.10), transparent 28%),
    #ffffff;
}

.strength-card-title,
.review-title.compact,
.coding-flow-section {
  text-align: center;
}

.strength-card-title p,
.review-title span,
.coding-flow-section .mini-label,
.seo-text-section .mini-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.strength-card-title h2,
.review-title h2,
.coding-flow-section h2,
.seo-text-section h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.strength-card-title span,
.review-title p {
  display: block;
  margin-top: 16px;
  color: #52647a;
  font-size: 18px;
  line-height: 1.65;
}

.strength-card-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.strength-card-grid article {
  position: relative;
  min-height: 154px;
  padding: 28px 28px 28px 132px;
  border-radius: 28px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35,86,160,.08);
  display: flex;
  align-items: center;
}

.strength-card-grid em {
  position: absolute;
  left: 24px;
  top: 18px;
  width: 44px;
  height: 36px;
  border-radius: 12px;
  background: #0b63ff;
  color: white;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.strength-card-grid i {
  position: absolute;
  left: 34px;
  top: 58px;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: #edf5ff;
  color: #0b63ff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 25px;
  font-weight: 900;
}

.strength-card-grid b {
  color: #0b2245;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.coding-flow-section {
  padding: 92px min(54px, 5vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.three-flow {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  gap: 12px;
  align-items: stretch;
}

.three-flow article {
  min-height: 330px;
  padding: 34px 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 18px 44px rgba(35,86,160,.08);
  text-align: left;
}

.three-flow .step-num {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0b63ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
}

.three-flow h3 {
  margin: 0 0 10px;
  color: #0b2245;
  font-size: 30px;
  letter-spacing: -0.06em;
  line-height: 1.18;
}

.three-flow b {
  display: block;
  color: #0b63ff;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.three-flow p {
  margin: 14px 0 0;
  color: #52647a;
  font-size: 16px;
  line-height: 1.75;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b63ff;
  font-size: 42px;
  font-weight: 900;
}

.review-more-section {
  padding: 92px min(42px, 4vw) 110px;
  background: #ffffff;
  border-top: 1px solid #e5effc;
}

.review-more-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.more-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  box-shadow: 0 14px 36px rgba(35,86,160,.07);
}

.more-card b {
  display: block;
  color: #0b63ff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.more-card em {
  display: block;
  margin-top: 12px;
  color: #ffb800;
  font-style: normal;
  letter-spacing: .08em;
  font-size: 18px;
}

.more-card p {
  margin: 14px 0 0;
  color: #33465f;
  font-size: 15px;
  line-height: 1.75;
}

.hidden-review {
  display: none;
}

.review-more-grid.is-open .hidden-review {
  display: block;
}

.more-review-button {
  width: min(100%, 360px);
  min-height: 56px;
  margin: 34px auto 0;
  border: 0;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(11,99,255,.25);
}

.seo-text-section {
  padding: 92px min(52px, 5vw);
  background: #ffffff;
  border-top: 1px solid #e5effc;
}

.seo-text-section .seo-content {
  max-width: 920px;
  margin: 0 auto;
}

.seo-text-section p {
  margin: 20px 0 0;
  color: #33465f;
  font-size: 18px;
  line-height: 1.9;
}

.seo-text-section h3 {
  margin: 42px 0 0;
  color: #081b38;
  font-size: 30px;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.seo-faq {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.seo-faq details {
  border-radius: 20px;
  background: #f7fbff;
  border: 1px solid #dbe8fb;
  padding: 20px 22px;
}

.seo-faq summary {
  cursor: pointer;
  color: #081b38;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.seo-faq p {
  margin: 12px 0 0;
  font-size: 16px;
}

.admin-page {
  background: #f5f9ff;
}

.admin-hero {
  padding: 72px 0 42px;
  background: white;
  border-bottom: 1px solid #e5effc;
}

.admin-hero h1 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.07em;
}

.admin-hero p {
  margin: 16px 0 0;
  color: #52647a;
  font-size: 18px;
}

.admin-grid {
  padding: 48px 0 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-grid a {
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 12px 30px rgba(35,86,160,.06);
}

.admin-grid b {
  display: block;
  color: #0b63ff;
  font-size: 20px;
}

.admin-grid span {
  display: block;
  margin-top: 8px;
  color: #52647a;
  font-size: 14px;
}

@media (max-width: 980px) {
  .c-detail-card-grid,
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 28px;
    transform: rotate(90deg);
  }

  .review-more-grid,
  .strength-card-grid {
    grid-template-columns: 1fr;
  }

  .strength-card-grid article {
    min-height: 132px;
    padding-left: 116px;
  }
}

@media (max-width: 700px) {
  .c-main-choice-grid,
  .c-detail-card-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .local-seo-intro,
  .c-language-course-section,
  .coding-flow-section,
  .strength-card-section,
  .review-more-section,
  .seo-text-section {
    padding: 58px 18px;
  }

  .c-main-choice-grid a {
    min-height: 190px;
    padding: 28px;
  }

  .three-flow article {
    min-height: auto;
    padding: 24px;
  }

  .three-flow h3 {
    font-size: 26px;
  }

  .strength-card-grid article {
    padding: 24px 20px 24px 104px;
  }

  .strength-card-grid b {
    font-size: 21px;
  }

  .strength-card-grid i {
    left: 24px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .teacher-hotspot span {
    display: none;
  }

  .teacher-hotspot:hover {
    background: rgba(11, 99, 255, 0);
    outline: none;
  }
}


/* v16 main coding landing coded from image-style sections */
.coding-code-page {
  background: #f5f9ff;
}

.code-hero {
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 10% 10%, rgba(11,99,255,.13), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(68,198,255,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.code-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 46px;
  align-items: center;
}

.code-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.code-hero h1 {
  margin: 0;
  color: #081b38;
  font-size: clamp(52px, 8vw, 96px);
  line-height: .98;
  letter-spacing: -0.09em;
}

.code-hero-copy {
  margin: 24px 0 0;
  color: #52647a;
  font-size: 19px;
  line-height: 1.82;
  max-width: 720px;
}

.code-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.code-hero-actions.center {
  justify-content: center;
}

.code-hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 42px;
  background: linear-gradient(135deg, #0b63ff, #081b38);
  box-shadow: 0 30px 80px rgba(11,99,255,.22);
  padding: 34px;
  overflow: hidden;
}

.code-hero-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}

.code-window {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  border-radius: 26px;
  background: rgba(5, 15, 36, .88);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  overflow: hidden;
}

.window-dot-row {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255,255,255,.08);
}

.window-dot-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
}

.code-window pre {
  margin: 0;
  padding: 26px;
  overflow: auto;
  color: #d8ecff;
  font-size: 15px;
  line-height: 1.75;
}

.floating-note {
  position: absolute;
  z-index: 3;
  border-radius: 18px;
  background: white;
  color: #0b63ff;
  font-weight: 900;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.floating-note.n1 { left: 24px; top: 24px; }
.floating-note.n2 { right: 24px; bottom: 36px; }
.floating-note.n3 { left: 52px; bottom: 52px; }

.code-section {
  padding: 94px 0;
}

.code-section:nth-of-type(even) {
  background: #ffffff;
}

.code-section:nth-of-type(odd) {
  background: #f7fbff;
}

.code-section-title {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 44px;
}

.code-section-title p {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.code-section-title h2 {
  margin: 0;
  color: #081b38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.07em;
}

.code-section-title span {
  display: block;
  margin-top: 16px;
  color: #52647a;
  font-size: 18px;
  line-height: 1.65;
}

.worry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.worry-card-grid article {
  min-height: 210px;
  padding: 30px;
  border-radius: 30px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35,86,160,.08);
}

.worry-card-grid b {
  display: block;
  color: #0b63ff;
  font-size: 27px;
  letter-spacing: -0.06em;
}

.worry-card-grid p {
  margin: 14px 0 0;
  color: #33465f;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.reassure-box {
  margin-top: 28px;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0b63ff, #0946c9);
  color: white;
  text-align: center;
  box-shadow: 0 22px 54px rgba(11,99,255,.20);
}

.reassure-box b {
  font-size: 28px;
  letter-spacing: -0.06em;
}

.reassure-box p {
  margin: 12px auto 0;
  max-width: 820px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.72;
}

.class-kind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.class-kind-grid article {
  padding: 30px;
  border-radius: 30px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35,86,160,.08);
}

.class-kind-grid b {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #edf5ff;
  color: #0b63ff;
  font-size: 19px;
}

.class-kind-grid p {
  margin: 0;
  color: #0b2245;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.class-kind-grid span {
  display: block;
  margin-top: 14px;
  color: #52647a;
  font-size: 15px;
  line-height: 1.65;
}

.teacher-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.teacher-card-grid a {
  min-height: 300px;
  padding: 30px;
  border-radius: 30px;
  background: white;
  border: 1px solid #dbe8fb;
  box-shadow: 0 16px 40px rgba(35,86,160,.08);
  transition: .2s ease;
}

.teacher-card-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(11,99,255,.38);
  box-shadow: 0 22px 54px rgba(35,86,160,.13);
}

.teacher-card-grid strong {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0b63ff;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.teacher-card-grid b {
  display: block;
  margin-top: 18px;
  color: #081b38;
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: -0.06em;
}

.teacher-card-grid p {
  margin: 14px 0 0;
  color: #52647a;
  font-size: 16px;
  line-height: 1.72;
}

.teacher-card-grid span {
  display: inline-flex;
  margin-top: 22px;
  color: #0b63ff;
  font-weight: 900;
}

.code-final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #071426, #10233f);
  color: white;
  text-align: center;
}

.code-final-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.075em;
}

.code-final-cta p {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.75;
}

.btn.light,
.btn-outline.light {
  color: white;
  border-color: rgba(255,255,255,.38);
}

@media (max-width: 980px) {
  .code-hero-grid,
  .worry-card-grid,
  .teacher-card-grid {
    grid-template-columns: 1fr;
  }

  .class-kind-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .code-hero,
  .code-section,
  .code-final-cta {
    padding: 62px 0;
  }

  .code-hero-visual {
    min-height: 340px;
    padding: 22px;
  }

  .code-window {
    margin-top: 54px;
  }

  .worry-card-grid article,
  .class-kind-grid article,
  .teacher-card-grid a {
    min-height: auto;
    padding: 24px;
  }

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

  .code-hero-actions .btn {
    width: 100%;
  }
}


/* =========================
   v17 pretty coding landing
   ========================= */
:root {
  --pc-blue: #1368ff;
  --pc-blue-2: #0049d8;
  --pc-navy: #071b3c;
  --pc-text: #10233f;
  --pc-muted: #5c6e86;
  --pc-line: #dce9fb;
  --pc-sky: #f1f7ff;
  --pc-mint: #17d7c5;
  --pc-yellow: #ffcb2f;
  --pc-card: #ffffff;
  --pc-shadow: 0 18px 48px rgba(28, 83, 164, .11);
}

.pretty-coding {
  margin: 0;
  background: #f7fbff;
  color: var(--pc-text);
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.pretty-coding * {
  box-sizing: border-box;
}

.pretty-coding a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,233,251,.9);
}

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

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--pc-navy);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(19,104,255,.23);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #33465f;
  font-size: 14px;
  font-weight: 900;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-2));
  box-shadow: 0 12px 28px rgba(19,104,255,.23);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--pc-navy);
}

.pretty-main {
  overflow: hidden;
}

.pretty-hero {
  position: relative;
  padding: 90px 0 58px;
  background:
    radial-gradient(circle at 12% 12%, rgba(19,104,255,.14), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(23,215,197,.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.pretty-hero::before,
.pretty-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.pretty-hero::before {
  width: 260px;
  height: 260px;
  background: rgba(19,104,255,.07);
  right: -90px;
  top: 160px;
}

.pretty-hero::after {
  width: 180px;
  height: 180px;
  background: rgba(255,203,47,.11);
  left: -70px;
  bottom: 80px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--pc-blue);
  border: 1px solid var(--pc-line);
  box-shadow: 0 12px 30px rgba(28,83,164,.08);
  font-weight: 900;
}

.hero-copy h1 {
  margin: 22px 0 0;
  color: var(--pc-navy);
  font-size: clamp(48px, 8vw, 94px);
  line-height: .99;
  letter-spacing: -0.09em;
}

.hero-copy h1 span {
  color: var(--pc-blue);
}

.hero-copy p {
  margin: 24px 0 0;
  color: var(--pc-muted);
  font-size: 19px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  min-height: 58px;
  padding: 0 26px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.025em;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-2));
  color: white;
  box-shadow: 0 16px 36px rgba(19,104,255,.28);
}

.btn-outline {
  background: white;
  color: var(--pc-blue);
  border: 1px solid var(--pc-line);
}

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

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-mascot-card {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(86%, 440px);
  border-radius: 42px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--pc-line);
  box-shadow: var(--pc-shadow);
  padding: 20px;
}

.hero-mascot-card img {
  border-radius: 32px;
}

.hero-laptop-card {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 55%;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: var(--pc-shadow);
  padding: 18px;
}

.hero-code-badge {
  position: absolute;
  left: 5%;
  top: 8%;
  width: 108px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--pc-line);
  box-shadow: var(--pc-shadow);
  padding: 10px;
}

.hero-decor {
  position: absolute;
  right: 10px;
  bottom: 4px;
  width: 140px;
  opacity: .95;
}

.section-arrow {
  background: #f3f8ff;
  padding: 18px 0 4px;
}

.section-arrow img {
  width: 84px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.pretty-section {
  position: relative;
  padding: 94px 0;
  background: #fff;
}

.pretty-section.sky {
  background:
    radial-gradient(circle at 8% 8%, rgba(19,104,255,.08), transparent 28%),
    #f5f9ff;
}

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

.section-title .icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 26px;
  object-fit: contain;
  background: white;
  box-shadow: 0 12px 34px rgba(28,83,164,.08);
}

.section-title .label {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--pc-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.section-title h2 {
  margin: 0;
  color: var(--pc-navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.075em;
}

.section-title h2 span {
  color: var(--pc-blue);
}

.section-title p {
  margin: 16px 0 0;
  color: var(--pc-muted);
  font-size: 18px;
  line-height: 1.7;
}

.worry-grid {
  display: grid;
  gap: 16px;
}

.worry-card {
  min-height: 138px;
  padding: 20px 24px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 14px 36px rgba(28,83,164,.07);
  display: grid;
  grid-template-columns: 82px 1fr 52px;
  align-items: center;
  gap: 20px;
  transition: .2s ease;
}

.worry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(19,104,255,.35);
}

.worry-emoji {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: #edf5ff;
  color: var(--pc-blue);
  font-size: 32px;
  font-weight: 900;
}

.worry-card b {
  display: block;
  color: var(--pc-blue);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.worry-card p {
  margin: 8px 0 0;
  color: var(--pc-text);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
}

.arrow-circle {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #edf5ff;
  color: var(--pc-blue);
  font-size: 34px;
  font-weight: 900;
}

.class-list {
  display: grid;
  gap: 14px;
}

.class-row {
  min-height: 142px;
  padding: 22px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 14px 36px rgba(28,83,164,.07);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
}

.class-row-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.class-icon-bubble {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: #edf5ff;
  display: grid;
  place-items: center;
}

.class-icon-bubble img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.class-row b {
  color: var(--pc-blue);
  font-size: 28px;
  letter-spacing: -0.065em;
  line-height: 1.16;
}

.tag-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: #edf5ff;
  color: #0b3d95;
  font-weight: 900;
  font-size: 14px;
}

.tag.mint { background: #e8fbf8; color: #067c73; }
.tag.yellow { background: #fff5d8; color: #8d6400; }
.tag.pink { background: #ffedf7; color: #9b1a63; }

.course-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.course-featured a {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border-radius: 34px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-2));
  box-shadow: 0 22px 54px rgba(19,104,255,.24);
  transition: .2s ease;
}

.course-featured a:hover {
  transform: translateY(-5px);
}

.course-featured a::after {
  content: "›";
  position: absolute;
  right: 28px;
  bottom: 18px;
  font-size: 54px;
  font-weight: 900;
}

.course-featured img {
  position: absolute;
  right: -12px;
  top: -18px;
  width: 158px;
  opacity: .28;
  mix-blend-mode: screen;
}

.course-featured small {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-weight: 900;
}

.course-featured b {
  display: block;
  margin-top: 22px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.075em;
}

.course-featured span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.course-grid a {
  min-height: 140px;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 14px 34px rgba(28,83,164,.06);
  transition: .2s ease;
}

.course-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(19,104,255,.35);
}

.course-grid b {
  display: block;
  color: var(--pc-blue);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.course-grid span {
  display: block;
  margin-top: 10px;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.beginner-box {
  margin-top: 34px;
  padding: 30px;
  border-radius: 34px;
  background: #f5f9ff;
  border: 1px solid var(--pc-line);
}

.beginner-box p {
  margin: 0 0 22px;
  color: var(--pc-navy);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 900;
  text-align: center;
}

.beginner-box a {
  min-height: 96px;
  padding: 22px 28px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--pc-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(28,83,164,.06);
  transition: .2s ease;
}

.beginner-box a + a {
  margin-top: 14px;
}

.beginner-box a:hover {
  transform: translateY(-3px);
  border-color: rgba(19,104,255,.35);
}

.beginner-box b {
  color: var(--pc-blue);
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.beginner-box span {
  margin-top: 6px;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.55;
}

.teacher-zone {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 28px;
  align-items: start;
}

.teacher-visual-card {
  position: sticky;
  top: 92px;
  border-radius: 38px;
  background: linear-gradient(180deg, #eaf5ff, #ffffff);
  border: 1px solid var(--pc-line);
  box-shadow: var(--pc-shadow);
  padding: 22px;
}

.teacher-visual-card img {
  border-radius: 28px;
}

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

.teacher-grid a {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 14px 36px rgba(28,83,164,.07);
  transition: .2s ease;
}

.teacher-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(19,104,255,.35);
}

.teacher-grid small {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--pc-blue);
  font-weight: 900;
  font-size: 12px;
}

.teacher-grid b {
  display: block;
  margin-top: 14px;
  color: var(--pc-navy);
  font-size: 23px;
  line-height: 1.26;
  letter-spacing: -0.055em;
}

.teacher-grid p {
  margin: 12px 0 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.65;
}

.teacher-grid span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pc-blue);
  font-weight: 900;
}

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

.strength-card {
  min-height: 154px;
  padding: 22px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 16px 40px rgba(28,83,164,.07);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
}

.strength-card img {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  object-fit: contain;
}

.strength-card em {
  font-style: normal;
  color: var(--pc-blue);
  font-weight: 900;
  font-size: 14px;
}

.strength-card b {
  display: block;
  margin-top: 5px;
  color: var(--pc-navy);
  font-size: 23px;
  line-height: 1.34;
  letter-spacing: -0.055em;
}

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  gap: 10px;
  align-items: center;
}

.flow-card {
  min-height: 310px;
  padding: 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 16px 40px rgba(28,83,164,.07);
}

.flow-card img {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  object-fit: contain;
  margin-bottom: 18px;
}

.flow-card em {
  font-style: normal;
  color: var(--pc-blue);
  font-weight: 900;
}

.flow-card h3 {
  margin: 12px 0 8px;
  color: var(--pc-navy);
  font-size: 28px;
  letter-spacing: -0.06em;
}

.flow-card b {
  color: var(--pc-blue);
  font-size: 18px;
}

.flow-card p {
  margin: 13px 0 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.72;
}

.flow-arrow-img img {
  width: 70px;
  mix-blend-mode: multiply;
}

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

.review-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 14px 36px rgba(28,83,164,.07);
}

.review-card.hidden-review {
  display: none;
}

.review-grid.is-open .hidden-review {
  display: block;
}

.review-card b {
  display: block;
  color: var(--pc-blue);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.review-card em {
  display: block;
  margin-top: 12px;
  color: #ffb800;
  font-style: normal;
  letter-spacing: .08em;
  font-size: 18px;
}

.review-card p {
  margin: 14px 0 0;
  color: #33465f;
  font-size: 15px;
  line-height: 1.75;
}

.more-review-button {
  width: min(100%, 360px);
  min-height: 56px;
  margin: 34px auto 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(19,104,255,.25);
}

.final-cta {
  position: relative;
  padding: 98px 0 110px;
  background:
    radial-gradient(circle at 82% 16%, rgba(23,215,197,.13), transparent 25%),
    linear-gradient(135deg, #071426, #10233f);
  color: white;
  text-align: center;
  overflow: hidden;
}

.final-cta .rocket {
  width: 170px;
  margin: 0 auto 18px;
  border-radius: 40px;
  mix-blend-mode: screen;
  opacity: .9;
}

.final-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.085em;
}

.final-cta p {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.75;
}

.final-cta .btn-outline {
  color: white;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.26);
}

.floating-coding-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 70;
  width: min(92%, 520px);
}

.floating-coding-cta a {
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-2));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(19,104,255,.34);
}

@media (max-width: 980px) {
  .hero-grid,
  .teacher-zone,
  .flow-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

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

  .flow-arrow-img {
    display: grid;
    place-items: center;
    transform: rotate(90deg);
  }

  .teacher-visual-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 66px;
    padding: 18px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--pc-line);
    box-shadow: var(--pc-shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .pretty-hero,
  .pretty-section,
  .final-cta {
    padding: 62px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-mascot-card {
    width: 75%;
    right: 0;
    top: 0;
  }

  .hero-laptop-card {
    width: 62%;
  }

  .hero-code-badge {
    width: 78px;
  }

  .hero-decor {
    width: 96px;
  }

  .hero-actions,
  .final-cta .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .worry-card {
    grid-template-columns: 62px 1fr 42px;
    gap: 12px;
    min-height: 116px;
    padding: 16px;
  }

  .worry-emoji {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 24px;
  }

  .worry-card b {
    font-size: 24px;
  }

  .worry-card p {
    font-size: 16px;
  }

  .arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 26px;
  }

  .class-row {
    grid-template-columns: 1fr;
  }

  .course-featured,
  .course-grid,
  .teacher-grid,
  .strength-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .course-featured a {
    min-height: 192px;
  }

  .beginner-box {
    padding: 20px;
  }

  .beginner-box p {
    text-align: left;
    font-size: 17px;
  }

  .strength-card {
    grid-template-columns: 64px 1fr;
  }

  .strength-card img {
    width: 62px;
    height: 62px;
  }

  .flow-card {
    min-height: auto;
  }

  .floating-coding-cta {
    bottom: 12px;
  }
}


/* =========================
   v18 requested layout updates
   ========================= */
.compact-worry {
  max-width: 930px;
  margin: 0 auto;
}

.compact-worry .worry-card {
  min-height: 118px;
}

.compact-worry .worry-card b {
  font-size: 26px;
}

.compact-worry .worry-card p {
  font-size: 17px;
}

.mini-recommend-wrap {
  margin-top: 34px;
}

.mini-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.mini-title b {
  color: var(--pc-navy);
  font-size: 23px;
  letter-spacing: -0.055em;
}

.mini-title span {
  color: var(--pc-muted);
  font-size: 14px;
  font-weight: 800;
}

.mini-class-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  -webkit-overflow-scrolling: touch;
}

.mini-class-scroll::-webkit-scrollbar {
  height: 8px;
}

.mini-class-scroll::-webkit-scrollbar-track {
  background: #eaf3ff;
  border-radius: 999px;
}

.mini-class-scroll::-webkit-scrollbar-thumb {
  background: #b8d4ff;
  border-radius: 999px;
}

.mini-class-scroll a {
  flex: 0 0 236px;
  min-height: 168px;
  padding: 18px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--pc-line);
  box-shadow: 0 14px 32px rgba(28,83,164,.07);
  scroll-snap-align: start;
  transition: .2s ease;
}

.mini-class-scroll a:hover {
  transform: translateY(-3px);
  border-color: rgba(19,104,255,.32);
}

.mini-class-scroll img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: contain;
  margin-bottom: 14px;
}

.mini-class-scroll b {
  display: block;
  color: var(--pc-blue);
  font-size: 19px;
  letter-spacing: -0.045em;
}

.mini-class-scroll p {
  margin: 8px 0 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.52;
  font-weight: 800;
}

.teacher-showcase-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.teacher-photo-showcase {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--pc-line);
  box-shadow: 0 22px 58px rgba(28,83,164,.12);
  background: white;
}

.teacher-photo-showcase img {
  width: 100%;
  height: auto;
}

.teacher-mini-buttons {
  max-width: 980px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.teacher-mini-buttons a {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--pc-line);
  color: var(--pc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(28,83,164,.06);
  transition: .2s ease;
}

.teacher-mini-buttons a:hover {
  background: var(--pc-blue);
  color: white;
  transform: translateY(-2px);
}

.beginner-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.beginner-box.standalone {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border: 0;
  padding: 0;
}

.beginner-box.standalone a {
  border-radius: 28px;
  min-height: 106px;
}

#course-select {
  padding-top: 88px;
}

@media (max-width: 820px) {
  .mini-title {
    display: block;
  }

  .mini-title span {
    display: block;
    margin-top: 6px;
  }

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

  .mini-class-scroll a {
    flex-basis: 220px;
  }
}

@media (max-width: 560px) {
  .teacher-mini-buttons {
    grid-template-columns: 1fr;
  }

  .teacher-mini-buttons a {
    justify-content: center;
  }

  .mini-class-scroll {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* =========================
   v19 user-requested cleanup
   ========================= */

/* Remove visual spacing for removed headings */
.clean-teacher {
  padding-top: 70px;
}

.clean-teacher .teacher-photo-showcase {
  display: block;
}

.teacher-photo-showcase.second {
  margin-top: 22px;
  max-width: 980px;
}

/* Make the top recommendation slider titleless and compact */
.mini-recommend-wrap.no-title {
  margin-top: 22px;
}

.no-title .mini-class-scroll {
  padding-top: 0;
}

/* Stronger CTA feel when clicking profile images */
.teacher-photo-showcase {
  transition: .22s ease;
}

.teacher-photo-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(28,83,164,.16);
}

/* Updated strength cards */
#strength .section-title {
  margin-bottom: 38px;
}

#strength .section-title h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Flow: no heading, cards > cards > cards */
.no-heading-flow {
  padding-top: 74px;
  padding-bottom: 74px;
  background: #ffffff;
}

.simple-flow {
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
}

.flow-simple-arrow {
  display: grid;
  place-items: center;
  color: var(--pc-blue);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

/* Start buttons only */
.no-heading-start {
  padding-top: 64px;
  padding-bottom: 64px;
}

.no-heading-start .beginner-box.standalone {
  max-width: 920px;
}

.no-heading-start .beginner-box.standalone a {
  box-shadow: 0 16px 40px rgba(28,83,164,.08);
}

/* Better mobile flow */
@media (max-width: 980px) {
  .simple-flow {
    grid-template-columns: 1fr;
  }

  .flow-simple-arrow {
    transform: rotate(90deg);
    min-height: 38px;
    font-size: 44px;
  }
}

@media (max-width: 720px) {
  .clean-teacher {
    padding-top: 50px;
  }

  .teacher-photo-showcase.second {
    margin-top: 14px;
  }

  .no-heading-flow,
  .no-heading-start {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}


/* v26 teacher profile grid */
.teacher-six-section {
  background: #ffffff;
}

.teacher-profile-grid-v26 {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.teacher-profile-card-v26 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: #f5f9ff;
  border: 1px solid #dbe8fb;
  box-shadow: 0 18px 46px rgba(35,86,155,.10);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.teacher-profile-card-v26:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(35,86,155,.16);
}

.teacher-profile-card-v26 img {
  display: block;
  width: 100%;
  height: auto;
}

.teacher-profile-card-v26 span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1368ff, #0049d8);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 30px rgba(19,104,255,.25);
}

@media (max-width: 720px) {
  .teacher-profile-grid-v26 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .teacher-profile-card-v26 {
    border-radius: 20px;
  }

  .teacher-profile-card-v26 span {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 38px;
    font-size: 11px;
    padding: 6px 8px;
  }
}


/* v27 grade roadmap cards */
.grade-roadmap-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.grade-roadmap-wrap {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.grade-roadmap-intro {
  text-align: center;
  margin-bottom: 26px;
}

.grade-roadmap-intro h2 {
  margin: 0;
  color: #061b3f;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.07em;
  line-height: 1.2;
}

.grade-roadmap-intro p {
  margin: 14px auto 0;
  max-width: 840px;
  color: #52677f;
  line-height: 1.8;
  font-weight: 700;
}

.grade-roadmap-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.grade-roadmap-stars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef5ff;
  color: #1368ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(35,86,155,.08);
}

.grade-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grade-roadmap-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  border-radius: 30px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 44px rgba(35,86,155,.08);
}

.grade-roadmap-card .card-badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1368ff, #0049d8);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.grade-roadmap-card h3 {
  margin: 0 0 12px;
  color: #061b3f;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.grade-roadmap-card p {
  margin: 0 0 14px;
  color: #52677f;
  line-height: 1.82;
  font-weight: 650;
}

.grade-roadmap-card .roadmap-label {
  display: block;
  color: #0b3c84;
  font-weight: 900;
  margin-bottom: 10px;
}

.grade-roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.grade-roadmap-tags span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f3f8ff;
  color: #0b3c84;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid #dbe8fb;
}

.grade-roadmap-summary {
  margin-top: 24px;
  padding: 24px 26px;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(35,86,155,.08);
  text-align: center;
}

.grade-roadmap-summary p {
  margin: 0;
  color: #52677f;
  line-height: 1.85;
  font-weight: 700;
}

@media (max-width: 960px) {
  .grade-roadmap-grid {
    grid-template-columns: 1fr;
  }
}


/* v28 curriculum hero image + cleaner teacher CTA */
.curriculum-image-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  padding-top: 54px;
  padding-bottom: 34px;
}

.curriculum-image-wrap {
  width: min(1050px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(35,86,155,.10);
}

.curriculum-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.teacher-six-section {
  padding-top: 34px;
}

.teacher-profile-grid-v26 {
  width: min(1040px, 100%);
  gap: 22px;
}

.teacher-profile-card-v26 {
  display: flex;
  flex-direction: column;
  padding: 0 0 18px;
}

.teacher-profile-card-v26 span {
  position: static;
  margin: 12px 16px 0;
  min-height: auto;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(19,104,255,.18);
}

@media (max-width: 720px) {
  .curriculum-image-section {
    padding-top: 36px;
    padding-bottom: 22px;
  }

  .curriculum-image-wrap {
    padding: 10px;
    border-radius: 22px;
  }

  .curriculum-image-wrap img {
    border-radius: 14px;
  }

  .teacher-profile-grid-v26 {
    gap: 12px;
  }

  .teacher-profile-card-v26 span {
    margin: 8px 8px 0;
    border-radius: 12px;
    font-size: 11px;
    padding: 9px 8px;
  }
}


/* v29 page-specific SEO and related links */
.page-seo-bottom {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.page-seo-bottom .section-title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.page-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.page-seo-card {
  background: #ffffff;
  border: 1px solid #dbe8fb;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(35,86,155,.08);
}

.page-seo-card h3 {
  margin: 0 0 12px;
  color: #0b3c84;
  font-size: 21px;
  letter-spacing: -0.05em;
}

.page-seo-card p {
  margin: 0;
  color: #52677f;
  line-height: 1.78;
  font-weight: 650;
}

.related-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.related-page-links a,
.related-page-links span {
  text-decoration: none;
  border: 1px solid #dbe8fb;
  background: #fff;
  color: #0b3c84;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(35,86,155,.06);
}

@media (max-width: 860px) {
  .page-seo-grid {
    grid-template-columns: 1fr;
  }
}


/* v30 inactive related tags */
.related-page-links span {
  cursor: default;
  user-select: none;
  opacity: .95;
}

/* Local SEO internal link section */
.local-related-links {
  background: #f8fbff;
  padding: 64px 0 32px;
}

.local-related-box {
  border: 1px solid #dbeafe;
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.local-related-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}

.local-related-box h2 {
  margin: 14px 0 10px;
  color: #10213f;
  letter-spacing: -0.04em;
}

.local-related-box p {
  margin: 0 0 22px;
  color: #475569;
  line-height: 1.75;
}

.local-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-related-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: #ffffff;
  color: #1745a8;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.local-related-chip:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

@media (max-width: 640px) {
  .local-related-links {
    padding: 44px 0 24px;
  }

  .local-related-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .local-related-chip {
    width: 100%;
  }
}

/* =========================
   추가 적용: 상단 내부경로 + 우측 상담버튼
   ========================= */
.ptc-top-breadcrumb {
  width: 100%;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(226, 232, 240, .55);
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 90;
}

.ptc-top-breadcrumb__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 18px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.ptc-top-breadcrumb__inner::-webkit-scrollbar {
  display: none;
}

.ptc-top-breadcrumb a,
.ptc-top-breadcrumb span {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
}

.ptc-top-breadcrumb a:hover {
  color: #64748b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ptc-top-breadcrumb__sep {
  color: #cbd5e1;
  font-size: 11px;
}

.ptc-floating-consult {
  position: fixed;
  right: 18px;
  top: 54%;
  transform: translateY(-50%);
  z-index: 120;
}

.ptc-floating-consult__button {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffe96a 0%, #ffd12f 48%, #f6b800 100%);
  color: #322300;
  border: 1px solid rgba(186, 126, 0, .24);
  box-shadow: 0 16px 34px rgba(214, 154, 0, .34), 0 4px 12px rgba(15, 23, 42, .16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.04em;
}

.ptc-floating-consult__main {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 950;
}

.ptc-floating-consult__sub {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 950;
}

.ptc-floating-consult__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

@media (max-width: 760px) {
  .ptc-top-breadcrumb__inner {
    padding: 7px 14px 5px;
    font-size: 11px;
  }

  .ptc-floating-consult {
    right: 10px;
    top: auto;
    bottom: 86px;
    transform: none;
  }

  .ptc-floating-consult__button {
    width: 76px;
    height: 76px;
  }

  .ptc-floating-consult__main {
    font-size: 12px;
  }

  .ptc-floating-consult__sub {
    font-size: 13px;
  }
}

