    :root {
      color-scheme: light;
      --bg: #f7f7fb;
      --bg-2: #eef6ff;
      --surface: #ffffff;
      --surface-soft: rgba(255, 255, 255, 0.76);
      --text: #111827;
      --muted: #667085;
      --subtle: #8a93a3;
      --line: rgba(17, 24, 39, 0.1);
      --primary: #007aff;
      --primary-strong: #0067d8;
      --cyan: #13b8e6;
      --green: #34c759;
      --amber: #ffb020;
      --rose: #ff3b7f;
      --purple: #7c3aed;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
      --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.09);
      --radius: 22px;
      --radius-sm: 14px;
      --max: 1180px;
      --header: 76px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      background:
        radial-gradient(circle at 24% -6%, rgba(19, 184, 230, 0.18), transparent 34rem),
        radial-gradient(circle at 86% 8%, rgba(0, 122, 255, 0.14), transparent 31rem),
        linear-gradient(180deg, #fbfcff 0%, #f7f7fb 34%, #ffffff 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 80%);
    }

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

    button,
    input {
      font: inherit;
    }

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

    .skip-link {
      position: fixed;
      left: 16px;
      top: 12px;
      z-index: 100;
      transform: translateY(-150%);
      border-radius: 999px;
      background: var(--text);
      color: #fff;
      padding: 10px 14px;
      font-weight: 800;
      transition: transform 0.2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 60;
      height: var(--header);
      display: flex;
      align-items: center;
      background: rgba(247, 247, 251, 0.72);
      backdrop-filter: blur(22px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(247, 247, 251, 0.88);
      border-bottom-color: rgba(17, 24, 39, 0.08);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    }

    .nav-shell {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: 0;
      font-size: 1.08rem;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: 0 12px 28px rgba(0, 122, 255, 0.25);
    }

    .brand-mark svg {
      width: 21px;
      height: 21px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 5px;
      border: 1px solid rgba(17, 24, 39, 0.07);
      background: rgba(255, 255, 255, 0.7);
      border-radius: 999px;
    }

    .nav-links a {
      border-radius: 999px;
      padding: 9px 13px;
      color: #4b5565;
      font-size: 0.91rem;
      font-weight: 700;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.is-active {
      color: var(--text);
      background: #fff;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mobile-menu {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(17, 24, 39, 0.1);
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.8);
      color: var(--text);
      cursor: pointer;
    }

    .mobile-menu span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      border-radius: 99px;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

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

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 11px 18px;
      font-weight: 850;
      letter-spacing: 0;
      line-height: 1;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }

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

    .btn:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-primary {
      color: #fff;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: 0 16px 34px rgba(0, 122, 255, 0.26);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 40px rgba(0, 122, 255, 0.32);
    }

    .btn-ghost {
      color: #344054;
      background: rgba(255, 255, 255, 0.74);
      border-color: rgba(17, 24, 39, 0.09);
    }

    .btn-dark {
      color: #fff;
      background: #111827;
      box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
    }

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

    .page {
      padding-top: var(--header);
    }

    .section {
      position: relative;
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
      padding: 96px 0;
    }

    .hero {
      min-height: calc(100svh - var(--header));
      width: min(100% - 32px, 1280px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
      align-items: center;
      gap: clamp(28px, 5vw, 72px);
      padding: 54px 0 72px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      border: 1px solid rgba(0, 122, 255, 0.16);
      border-radius: 999px;
      padding: 8px 12px;
      color: #005fc5;
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 10px 26px rgba(0, 122, 255, 0.08);
      font-size: 0.88rem;
      font-weight: 850;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(52, 199, 89, 0.14);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .hero h1 {
      max-width: 760px;
      margin: 24px 0 18px;
      font-size: clamp(3.2rem, 7vw, 6.85rem);
      line-height: 0.91;
      letter-spacing: 0;
      font-weight: 950;
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(135deg, var(--primary), var(--cyan) 46%, var(--green));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-copy {
      max-width: 660px;
      color: #4b5565;
      font-size: clamp(1.08rem, 1.7vw, 1.36rem);
      line-height: 1.58;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 28px;
    }

    .teacher-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 680px;
    }

    .proof-item {
      min-height: 88px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 18px;
      padding: 14px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    }

    .proof-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1.08rem;
      font-weight: 930;
    }

    .proof-item span {
      display: block;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.35;
    }

    .hero-visual {
      min-height: 660px;
      position: relative;
      display: grid;
      place-items: center;
      perspective: 1300px;
      isolation: isolate;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      width: 90%;
      height: 70%;
      border-radius: 42px;
      background:
        linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(19, 184, 230, 0.08)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.36) 0 1px, transparent 1px 18px);
      filter: blur(0.2px);
      transform: rotate(-3deg);
      z-index: -1;
    }

    .stage {
      --rx: 0deg;
      --ry: 0deg;
      position: relative;
      width: min(100%, 690px);
      height: 610px;
      transform-style: preserve-3d;
      transform: rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform 0.18s ease-out;
    }

    .sheet {
      position: absolute;
      left: 42px;
      top: 40px;
      width: 360px;
      min-height: 500px;
      border-radius: 18px;
      padding: 22px;
      background: #fff;
      box-shadow: 0 36px 80px rgba(15, 23, 42, 0.18);
      transform: rotateX(58deg) rotateZ(-11deg) translateZ(18px);
      transform-origin: 50% 100%;
      border: 1px solid rgba(15, 23, 42, 0.08);
      animation: floatSheet 7.5s ease-in-out infinite;
    }

    .sheet::after {
      content: "";
      position: absolute;
      inset: auto 22px 22px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(90deg, rgba(0, 122, 255, 0.08), rgba(52, 199, 89, 0.08));
    }

    .sheet-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .school-seal {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
      font-weight: 950;
      box-shadow: 0 14px 24px rgba(0, 122, 255, 0.22);
    }

    .sheet h3 {
      margin: 0 0 6px;
      font-size: 1rem;
      line-height: 1.14;
    }

    .sheet small {
      display: block;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.4;
    }

    .line {
      height: 9px;
      border-radius: 99px;
      background: #eef2f7;
      margin: 9px 0;
    }

    .line.short {
      width: 62%;
    }

    .questions {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .question-row {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: center;
    }

    .question-number {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      color: #fff;
      background: #111827;
      font-size: 0.72rem;
      font-weight: 900;
    }

    .bubble-options {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 6px;
    }

    .bubble {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border: 1.5px solid #c8d0dc;
      border-radius: 999px;
      color: #667085;
      font-size: 0.62rem;
      font-weight: 900;
      background: #fff;
    }

    .bubble.filled {
      border-color: var(--primary);
      color: #fff;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(0, 122, 255, 0.12);
    }

    .qr-card {
      position: absolute;
      right: 34px;
      top: 30px;
      width: 174px;
      border-radius: 22px;
      padding: 15px;
      background: #fff;
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
      transform: translateZ(86px) rotateZ(7deg);
      border: 1px solid rgba(15, 23, 42, 0.08);
      animation: floatCard 6.4s ease-in-out infinite;
    }

    .qr-label,
    .key-label {
      color: #344054;
      font-size: 0.78rem;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .qr-box {
      aspect-ratio: 1;
      border-radius: 14px;
      padding: 10px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.1);
    }

    .qr-box svg {
      width: 100%;
      height: 100%;
    }

    .key-card {
      position: absolute;
      left: 92px;
      bottom: 10px;
      width: 250px;
      border-radius: 22px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
      border: 1px solid rgba(15, 23, 42, 0.08);
      transform: translateZ(120px) rotateZ(-5deg);
      animation: floatKey 8s ease-in-out infinite;
    }

    .key-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 7px;
    }

    .key-dot {
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: #667085;
      background: #f2f4f7;
      font-size: 0.75rem;
      font-weight: 900;
    }

    .key-dot.ok {
      color: #fff;
      background: var(--green);
      box-shadow: 0 10px 22px rgba(52, 199, 89, 0.24);
    }

    .phone {
      position: absolute;
      right: 40px;
      bottom: 22px;
      width: 248px;
      height: 500px;
      border-radius: 38px;
      padding: 12px;
      background: #111827;
      box-shadow: 0 42px 90px rgba(15, 23, 42, 0.26);
      transform: translateZ(150px) rotateZ(8deg) rotateY(-8deg);
      animation: floatPhone 7s ease-in-out infinite;
    }

    .phone-screen {
      position: relative;
      height: 100%;
      overflow: hidden;
      border-radius: 29px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 251, 0.98)),
        #fff;
    }

    .phone-top {
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .notch {
      width: 76px;
      height: 20px;
      border-radius: 0 0 14px 14px;
      background: #111827;
    }

    .scan-view {
      margin: 4px 14px 0;
      height: 246px;
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      background:
        linear-gradient(rgba(17, 24, 39, 0.34), rgba(17, 24, 39, 0.18)),
        repeating-linear-gradient(0deg, #fefefe 0 18px, #eef2f7 18px 19px);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .scan-view::before,
    .scan-view::after {
      content: "";
      position: absolute;
      width: 42px;
      height: 42px;
      border-color: rgba(255, 255, 255, 0.92);
      border-style: solid;
    }

    .scan-view::before {
      left: 18px;
      top: 18px;
      border-width: 3px 0 0 3px;
      border-radius: 14px 0 0;
    }

    .scan-view::after {
      right: 18px;
      bottom: 18px;
      border-width: 0 3px 3px 0;
      border-radius: 0 0 14px;
    }

    .scan-line {
      position: absolute;
      left: 16px;
      right: 16px;
      height: 3px;
      top: 30px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, #34c759, transparent);
      box-shadow: 0 0 24px rgba(52, 199, 89, 0.8);
      animation: scan 2.8s ease-in-out infinite;
    }

    .scan-label {
      position: absolute;
      left: 18px;
      bottom: 18px;
      right: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border-radius: 14px;
      padding: 10px;
      color: #fff;
      background: rgba(17, 24, 39, 0.68);
      backdrop-filter: blur(12px);
      font-size: 0.76rem;
      font-weight: 900;
    }

    .scan-label span:last-child {
      color: #abefc6;
    }

    .phone-result {
      margin: 14px;
      display: grid;
      gap: 10px;
    }

    .result-card {
      border-radius: 18px;
      padding: 13px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(17, 24, 39, 0.07);
    }

    .result-card strong {
      display: block;
      font-size: 0.95rem;
      margin-bottom: 3px;
    }

    .result-card span {
      color: var(--muted);
      font-size: 0.75rem;
      font-weight: 700;
    }

    .score-row {
      display: flex;
      gap: 8px;
    }

    .score-chip {
      flex: 1;
      min-height: 58px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--green), #19a957);
      font-size: 1.35rem;
      font-weight: 950;
      box-shadow: 0 12px 24px rgba(52, 199, 89, 0.24);
    }

    .score-chip.secondary {
      color: var(--text);
      background: #eef2f7;
      box-shadow: none;
      font-size: 0.9rem;
      line-height: 1.15;
      text-align: center;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--primary-strong);
      font-size: 0.88rem;
      font-weight: 920;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section-kicker::before {
      content: "";
      width: 24px;
      height: 3px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--primary), var(--cyan));
    }

    .section h2 {
      margin-bottom: 14px;
      font-size: clamp(2rem, 4vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: 0;
      font-weight: 950;
    }

    .section-lead {
      color: #4b5565;
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      line-height: 1.65;
      max-width: 720px;
    }

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

    .flow-card {
      position: relative;
      min-height: 290px;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: var(--shadow-soft);
      padding: 20px;
      transition: transform 0.65s ease, opacity 0.65s ease, box-shadow 0.2s ease;
    }

    .js .flow-card {
      transform: translateY(18px);
      opacity: 1;
    }

    .flow-card.is-visible {
      transform: translateY(0);
      opacity: 1;
    }

    .flow-card:hover {
      box-shadow: 0 28px 68px rgba(15, 23, 42, 0.14);
      transform: translateY(-4px);
    }

    .flow-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 14px;
      color: #fff;
      background: #111827;
      font-weight: 950;
    }

    .flow-card:nth-child(2) .flow-number {
      background: var(--primary);
    }

    .flow-card:nth-child(3) .flow-number {
      background: var(--amber);
    }

    .flow-card:nth-child(4) .flow-number {
      background: var(--green);
    }

    .flow-card h3 {
      margin-bottom: 10px;
      font-size: 1.32rem;
      line-height: 1.16;
    }

    .flow-card p {
      margin-bottom: 18px;
      color: var(--muted);
      line-height: 1.55;
    }

    .mini-ui {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      min-height: 74px;
      border-radius: 18px;
      padding: 14px;
      background: #f5f7fb;
      border: 1px solid rgba(17, 24, 39, 0.07);
    }

    .mini-ui .line {
      height: 8px;
      margin: 0 0 8px;
      background: #dfe6f1;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 6px;
    }

    .mini-grid span {
      aspect-ratio: 1;
      border-radius: 7px;
      background: #dfe6f1;
    }

    .mini-grid span:nth-child(2),
    .mini-grid span:nth-child(8),
    .mini-grid span:nth-child(13) {
      background: var(--primary);
    }

    .mini-sheets {
      display: flex;
      gap: 8px;
      align-items: end;
    }

    .mini-sheet {
      width: 44px;
      height: 54px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.1);
      box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    }

    .mini-sheet:nth-child(2) {
      height: 62px;
      transform: translateY(-4px);
    }

    .mini-sheet:nth-child(3) {
      height: 70px;
      transform: translateY(-8px);
    }

    .mini-phone {
      width: 44px;
      height: 72px;
      border-radius: 13px;
      background: #111827;
      padding: 5px;
    }

    .mini-phone::after {
      content: "";
      display: block;
      height: 100%;
      border-radius: 9px;
      background: linear-gradient(180deg, #eef2f7, #fff);
    }

    .benefit-band {
      width: 100%;
      margin: 34px 0 0;
      background: #111827;
      color: #fff;
      overflow: hidden;
    }

    .benefit-inner {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
      padding: 90px 0;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: start;
    }

    .benefit-inner h2 {
      margin: 0 0 16px;
      font-size: clamp(2rem, 4vw, 4.4rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .benefit-inner p {
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.65;
      font-size: 1.08rem;
    }

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

    .benefit-card {
      min-height: 210px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      padding: 22px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
      rgba(255, 255, 255, 0.04);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
      transition: transform 0.65s ease, opacity 0.65s ease;
    }

    .js .benefit-card {
      transform: translateY(18px);
      opacity: 1;
    }

    .benefit-card.is-visible {
      transform: translateY(0);
      opacity: 1;
    }

    .benefit-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
    }

    .benefit-icon svg {
      width: 23px;
      height: 23px;
    }

    .benefit-card:nth-child(2) .benefit-icon {
      background: linear-gradient(135deg, var(--green), #1aa66a);
    }

    .benefit-card:nth-child(3) .benefit-icon {
      background: linear-gradient(135deg, var(--amber), #ff7a1a);
    }

    .benefit-card:nth-child(4) .benefit-icon {
      background: linear-gradient(135deg, var(--rose), var(--purple));
    }

    .benefit-card h3 {
      margin-bottom: 10px;
      font-size: 1.24rem;
    }

    .benefit-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.98rem;
    }

    .local-context {
      padding-top: 84px;
      padding-bottom: 84px;
    }

    .local-context-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: var(--radius);
      padding: clamp(26px, 5vw, 52px);
      background:
        linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(19, 184, 230, 0.08) 42%, rgba(52, 199, 89, 0.09)),
        rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow-soft);
    }

    .local-context-panel::after {
      content: "";
      position: absolute;
      right: clamp(18px, 5vw, 56px);
      top: clamp(18px, 5vw, 52px);
      width: 118px;
      height: 118px;
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--primary), var(--cyan));
      opacity: 0.16;
      transform: rotate(11deg);
      pointer-events: none;
    }

    .local-context-panel h2 {
      max-width: 820px;
      margin-bottom: 18px;
    }

    .local-context-panel p {
      max-width: 900px;
      margin-bottom: 0;
      color: #344054;
      font-size: clamp(1.02rem, 1.5vw, 1.24rem);
      line-height: 1.7;
    }

    .download-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .download-btn {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      border: 1px solid rgba(17, 24, 39, 0.1);
      border-radius: 999px;
      padding: 12px 18px;
      background: rgba(255, 255, 255, 0.78);
      color: #111827;
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .download-btn:hover {
      transform: translateY(-2px);
      background: #fff;
      box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    }

    .download-icon {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
    }

    .download-icon svg {
      width: 17px;
      height: 17px;
    }

    .download-btn:nth-child(2) .download-icon {
      background: #111827;
    }

    .download-btn:nth-child(3) .download-icon {
      background: linear-gradient(135deg, var(--green), #14b8a6);
    }

    .demo-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 18px;
      align-items: stretch;
    }

    .panel {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.84);
      box-shadow: var(--shadow-soft);
    }

    .teacher-console {
      min-height: 560px;
      padding: 20px;
    }

    .window-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .dots {
      display: flex;
      gap: 7px;
    }

    .dots span {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #ff5f57;
    }

    .dots span:nth-child(2) {
      background: #ffbd2e;
    }

    .dots span:nth-child(3) {
      background: #28c840;
    }

    .window-title {
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 850;
    }

    .console-layout {
      display: grid;
      grid-template-columns: 166px 1fr;
      gap: 16px;
      height: calc(100% - 34px);
    }

    .sidebar {
      border-radius: 20px;
      padding: 14px;
      background: #f2f5fa;
    }

    .side-item {
      display: flex;
      align-items: center;
      gap: 9px;
      min-height: 38px;
      border-radius: 12px;
      padding: 0 10px;
      color: #667085;
      font-size: 0.8rem;
      font-weight: 850;
    }

    .side-item.is-on {
      color: var(--primary-strong);
      background: #fff;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
    }

    .side-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: currentColor;
    }

    .console-main {
      display: grid;
      gap: 14px;
    }

    .console-hero {
      border-radius: 20px;
      padding: 20px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: 0 18px 40px rgba(0, 122, 255, 0.18);
    }

    .console-hero h3 {
      margin-bottom: 8px;
      font-size: 1.35rem;
    }

    .console-hero p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.45;
    }

    .console-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .console-card {
      min-height: 134px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 18px;
      padding: 16px;
      background: #fff;
    }

    .console-card strong {
      display: block;
      margin-bottom: 7px;
      font-size: 1.02rem;
    }

    .console-card span {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .progress {
      height: 8px;
      overflow: hidden;
      border-radius: 999px;
      margin-top: 16px;
      background: #eef2f7;
    }

    .progress i {
      display: block;
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--cyan));
      animation: grow 4s ease-in-out infinite;
    }

    .ai-panel {
      min-height: 560px;
      padding: 26px;
      display: grid;
      align-content: space-between;
      background:
        linear-gradient(145deg, rgba(0, 122, 255, 0.08), rgba(52, 199, 89, 0.05)),
        rgba(255, 255, 255, 0.86);
    }

    .ai-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .ai-tab {
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 999px;
      padding: 9px 12px;
      color: #4b5565;
      background: #fff;
      font-weight: 850;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

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

    .ai-tab.is-active {
      color: #fff;
      background: #111827;
    }

    .ai-output {
      border-radius: 22px;
      padding: 22px;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.08);
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
      min-height: 244px;
    }

    .ai-output h3 {
      margin-bottom: 12px;
      font-size: 1.45rem;
    }

    .ai-output p {
      color: #4b5565;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .answer-preview {
      display: grid;
      gap: 10px;
    }

    .answer-preview div {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      border-radius: 13px;
      padding: 11px 12px;
      background: #f5f7fb;
      color: #344054;
      font-size: 0.9rem;
      font-weight: 800;
    }

    .answer-preview span:last-child {
      color: var(--primary-strong);
    }

    .reports {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .report-chip {
      min-height: 98px;
      border-radius: 18px;
      padding: 16px;
      color: #344054;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.08);
    }

    .report-chip strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1.5rem;
    }

    .report-chip span {
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .pricing-band {
      padding: 0;
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    .pricing-card {
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 34px;
      align-items: center;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 32px;
      padding: clamp(28px, 5vw, 58px);
      color: #fff;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 38%),
        linear-gradient(135deg, #101828, #172033 52%, #0f5bbd);
      box-shadow: var(--shadow);
    }

    .pricing-card h2 {
      margin: 0 0 14px;
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 1;
    }

    .pricing-card p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.1rem;
      line-height: 1.65;
    }

    .credit-stack {
      display: grid;
      gap: 12px;
    }

    .credit-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      padding: 17px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
    }

    .credit-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .credit-item span {
      color: rgba(255, 255, 255, 0.67);
      font-size: 0.9rem;
    }

    .credit-badge {
      flex: none;
      border-radius: 999px;
      padding: 8px 11px;
      color: #111827;
      background: #fff;
      font-size: 0.82rem;
      font-weight: 950;
    }

    .faq {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 38px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border: 0;
      padding: 18px 20px;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 900;
      cursor: pointer;
    }

    .faq-question svg {
      width: 18px;
      height: 18px;
      flex: none;
      transition: transform 0.2s ease;
    }

    .faq-item.is-open .faq-question svg {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.25s ease;
    }

    .faq-item.is-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer > div {
      overflow: hidden;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      line-height: 1.6;
    }

    .final-cta {
      width: min(100% - 32px, var(--max));
      margin: 0 auto 52px;
      min-height: 440px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 36px;
      position: relative;
      color: #fff;
      text-align: center;
      background:
        linear-gradient(rgba(0, 122, 255, 0.7), rgba(17, 24, 39, 0.72)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 60px),
        linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: var(--shadow);
    }

    .final-cta::before {
      content: "";
      position: absolute;
      inset: 26px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 28px;
      pointer-events: none;
    }

    .final-content {
      position: relative;
      z-index: 1;
      max-width: 780px;
      padding: 48px 22px;
    }

    .final-content h2 {
      margin-bottom: 16px;
      font-size: clamp(2.2rem, 5vw, 5rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .final-content p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.14rem;
      line-height: 1.65;
    }

    .site-footer {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
      padding: 26px 0 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--muted);
      font-size: 0.92rem;
      border-top: 1px solid rgba(17, 24, 39, 0.08);
    }

    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-note {
      max-width: 360px;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.5;
    }

    .footer-note a {
      color: var(--ink);
      font-weight: 700;
      text-decoration: none;
    }

    .footer-note a:hover {
      text-decoration: underline;
    }

    .content-page {
      padding-bottom: 48px;
    }

    .content-hero {
      min-height: auto;
      padding-top: 78px;
      padding-bottom: 64px;
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
      gap: clamp(24px, 5vw, 60px);
      align-items: center;
    }

    .content-hero h1 {
      max-width: 880px;
      margin: 24px 0 18px;
      font-size: clamp(2.7rem, 5.6vw, 5.7rem);
      line-height: 0.96;
      letter-spacing: 0;
      font-weight: 950;
    }

    .content-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: -4px 0 26px;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 800;
    }

    .content-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 999px;
      padding: 7px 11px;
      background: rgba(255, 255, 255, 0.72);
    }

    .content-hero-panel {
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 28px;
      padding: clamp(22px, 4vw, 34px);
      background:
        linear-gradient(145deg, rgba(0, 122, 255, 0.1), rgba(19, 184, 230, 0.06)),
        rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow-soft);
    }

    .content-hero-panel h2 {
      margin: 0 0 20px;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      line-height: 1.05;
    }

    .content-outline {
      display: grid;
      gap: 12px;
    }

    .outline-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 12px;
      align-items: center;
      border: 1px solid rgba(17, 24, 39, 0.07);
      border-radius: 18px;
      padding: 13px;
      background: rgba(255, 255, 255, 0.76);
    }

    .outline-item span {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: #111827;
      font-weight: 950;
    }

    .outline-item strong {
      line-height: 1.25;
    }

    .content-shell {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: clamp(24px, 5vw, 56px);
      align-items: start;
      padding-top: 54px;
    }

    .toc-card {
      position: sticky;
      top: calc(var(--header) + 24px);
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 22px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow-soft);
    }

    .toc-card strong {
      display: block;
      margin-bottom: 12px;
      font-size: 0.92rem;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--primary-strong);
    }

    .toc-card nav {
      display: grid;
      gap: 4px;
    }

    .toc-card a {
      border-radius: 12px;
      padding: 9px 10px;
      color: #4b5565;
      font-size: 0.92rem;
      font-weight: 750;
      line-height: 1.3;
    }

    .toc-card a:hover {
      color: var(--text);
      background: #fff;
    }

    .article-body {
      min-width: 0;
      max-width: 880px;
    }

    .article-section {
      padding: 0 0 48px;
      margin-bottom: 48px;
      border-bottom: 1px solid rgba(17, 24, 39, 0.09);
    }

    .article-section h2 {
      margin-bottom: 18px;
      font-size: clamp(1.85rem, 3.2vw, 3.3rem);
      line-height: 1.05;
    }

    .article-section p {
      color: #344054;
      font-size: 1.08rem;
      line-height: 1.78;
      margin-bottom: 18px;
    }

    .comparison-section {
      padding-top: 54px;
    }

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

    .comparison-card {
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: var(--radius);
      padding: 22px;
      background: rgba(255, 255, 255, 0.84);
      box-shadow: var(--shadow-soft);
    }

    .comparison-card h3 {
      margin-bottom: 10px;
      font-size: 1.45rem;
    }

    .comparison-profile,
    .comparison-detail p,
    .rank-card p {
      color: var(--muted);
      line-height: 1.62;
    }

    .comparison-detail {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(17, 24, 39, 0.08);
    }

    .comparison-detail strong {
      display: block;
      margin-bottom: 6px;
      color: var(--text);
      font-weight: 920;
    }

    .comparison-detail.is-positive {
      border-radius: 18px;
      border: 1px solid rgba(52, 199, 89, 0.18);
      padding: 16px;
      background: rgba(52, 199, 89, 0.08);
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .rank-card {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 22px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.84);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    }

    .rank-number {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: 0 14px 28px rgba(0, 122, 255, 0.18);
      font-weight: 950;
      font-size: 1.12rem;
    }

    .rank-card h3 {
      margin: 0 0 8px;
      font-size: 1.28rem;
    }

    @media (max-width: 1080px) {
      .content-hero,
      .content-shell,
      .comparison-grid {
        grid-template-columns: 1fr;
      }

      .toc-card {
        position: static;
      }
    }

    .reveal {
      transform: translateY(0);
      opacity: 1;
      transition: transform 0.7s ease, opacity 0.7s ease;
    }

    .js .reveal {
      transform: translateY(18px);
      opacity: 1;
    }

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

    @keyframes floatSheet {
      0%, 100% { transform: rotateX(58deg) rotateZ(-11deg) translateZ(18px) translateY(0); }
      50% { transform: rotateX(58deg) rotateZ(-11deg) translateZ(34px) translateY(-10px); }
    }

    @keyframes floatCard {
      0%, 100% { transform: translateZ(86px) rotateZ(7deg) translateY(0); }
      50% { transform: translateZ(106px) rotateZ(5deg) translateY(-12px); }
    }

    @keyframes floatKey {
      0%, 100% { transform: translateZ(120px) rotateZ(-5deg) translateY(0); }
      50% { transform: translateZ(142px) rotateZ(-3deg) translateY(10px); }
    }

    @keyframes floatPhone {
      0%, 100% { transform: translateZ(150px) rotateZ(8deg) rotateY(-8deg) translateY(0); }
      50% { transform: translateZ(172px) rotateZ(6deg) rotateY(-6deg) translateY(-13px); }
    }

    @keyframes scan {
      0%, 100% { transform: translateY(0); opacity: 0.7; }
      50% { transform: translateY(168px); opacity: 1; }
    }

    @keyframes grow {
      0%, 100% { width: 54%; }
      50% { width: 92%; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 1080px) {
      .hero {
        grid-template-columns: 1fr;
        padding-top: 44px;
      }

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

      .stage {
        transform: scale(0.9);
      }

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

      .benefit-inner,
      .demo-grid,
      .pricing-card,
      .faq {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 780px) {
      :root {
        --header: 68px;
      }

      .site-header {
        height: var(--header);
      }

      .nav-shell {
        width: min(100% - 24px, var(--max));
      }

      .nav-actions .btn-ghost {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .nav-links {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 76px;
        display: grid;
        border-radius: 22px;
        padding: 10px;
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        box-shadow: var(--shadow-soft);
      }

      .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links a {
        padding: 13px 14px;
      }

      .hero,
      .section,
      .benefit-inner,
      .pricing-band,
      .final-cta,
      .site-footer {
        width: min(100% - 24px, var(--max));
      }

      .hero h1 {
        font-size: clamp(3rem, 16vw, 4.8rem);
      }

      .teacher-proof,
      .workflow,
      .benefit-grid,
      .console-cards,
      .reports {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 520px;
        overflow: hidden;
      }

      .stage {
        width: 650px;
        transform: scale(0.72);
        transform-origin: center;
      }

      .console-layout {
        grid-template-columns: 1fr;
      }

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

      .teacher-console,
      .ai-panel {
        min-height: auto;
      }

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

    @media (max-width: 520px) {
      .btn {
        width: 100%;
      }

      .nav-actions .btn-primary {
        display: none;
      }

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

      .hero {
        padding-top: 34px;
        gap: 16px;
      }

      .hero-visual {
        min-height: 480px;
        margin: 2px 0 0;
      }

      .stage {
        transform: scale(0.56) translateX(-126px);
        transform-origin: center top;
      }

      .sheet {
        left: 70px;
      }

      .qr-card {
        right: 116px;
      }

      .key-card {
        left: 130px;
      }

      .phone {
        right: 178px;
      }

      .section {
        padding: 70px 0;
      }

      .pricing-card,
      .final-content {
        padding: 28px 18px;
      }
    }
