:root {
      --bg: #f6fbff;
      --surface: #ffffff;
      --surface-soft: #f8fafc;
      --ink: #0f1f35;
      --muted: #5f6b7d;
      --line: #dce4ee;
      --brand: #00b6d8;
      --brand-deep: #0091b0;
      --accent: #ff9f1c;
      --success: #22c55e;
      --shadow-lg: 0 24px 80px rgba(15, 31, 53, 0.14);
      --shadow-md: 0 12px 36px rgba(15, 31, 53, 0.1);
      --radius: 24px;
      --container: min(1120px, calc(100vw - 32px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(0, 182, 216, 0.08), transparent 25%),
        radial-gradient(circle at bottom right, rgba(255, 159, 28, 0.08), transparent 30%),
        #fff;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font: inherit; }
    section[id] { scroll-margin-top: 88px; }

    .container { width: var(--container); margin: 0 auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 999px;
      background: #e6f9fd;
      color: var(--brand-deep);
      font-size: 13px;
      font-weight: 700;
      border: 1px solid #b4ebf5;
    }
    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 6px rgba(0, 182, 216, 0.12);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: rgba(255, 255, 255, 0.86);
      border-bottom: 1px solid rgba(220, 228, 238, 0.9);
    }
    .site-header .container {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: -0.02em;
    }
    .brand img { height: 28px; width: auto; }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #405066;
      font-size: 13px;
      font-weight: 600;
    }
    .main-nav a:hover,
    .footer-links a:hover { color: var(--brand-deep); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .lang-switcher {
      display: inline-flex;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      background: #eef2f6;
    }
    .lang-switcher button,
    .lang-switcher a {
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: #607085;
      padding: 6px 10px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
      font-size: 13px;
    }
    .lang-switcher button.is-active,
    .lang-switcher a.is-active {
      background: #fff;
      color: var(--ink);
      box-shadow: 0 2px 8px rgba(15, 31, 53, 0.08);
    }
    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 14px;
      padding: 13px 20px;
      font-weight: 700;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      box-shadow: 0 14px 30px rgba(0, 182, 216, 0.28);
    }
    .btn-secondary {
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--line);
    }
    .btn-dark {
      color: #fff;
      background: #0f1f35;
      box-shadow: 0 16px 30px rgba(15, 31, 53, 0.24);
    }

    .hero {
      padding: 56px 0 72px;
      background:
        linear-gradient(160deg, #f0f9ff 0%, #ffffff 45%, #fff7ed 100%);
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 48px;
      align-items: center;
    }
    .hero-copy h1 {
      margin: 20px 0 18px;
      font-size: clamp(40px, 5vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.05em;
      white-space: pre-line;
    }
    .hero-copy p {
      max-width: 620px;
      font-size: 18px;
      line-height: 1.75;
      color: var(--muted);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 34px 0 18px;
    }
    .microcopy {
      color: #8090a4;
      font-size: 13px;
      font-weight: 600;
    }
    .hero-proof {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .hero-proof-card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(220, 228, 238, 0.9);
      border-radius: 18px;
      padding: 18px;
      backdrop-filter: blur(10px);
    }
    .hero-proof-card strong {
      display: block;
      font-size: 22px;
      margin-bottom: 6px;
    }
    .hero-proof-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .dashboard-shell {
      position: relative;
      padding: 28px;
      border-radius: 32px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.68));
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 32px 80px rgba(15, 31, 53, 0.16);
    }
    .dashboard-shell::before,
    .dashboard-shell::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }
    .dashboard-shell::before {
      width: 140px;
      height: 140px;
      top: -36px;
      right: -18px;
      background: rgba(0, 182, 216, 0.12);
    }
    .dashboard-shell::after {
      width: 120px;
      height: 120px;
      bottom: -30px;
      left: -10px;
      background: rgba(255, 159, 28, 0.12);
    }
    .dashboard-card {
      position: relative;
      z-index: 1;
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      border: 1px solid #dfe6ef;
      box-shadow: var(--shadow-lg);
    }
    .dashboard-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 20px;
      background: #0f1f35;
      color: #fff;
    }
    .dashboard-dots { display: flex; gap: 6px; }
    .dashboard-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }
    .dashboard-body {
      display: grid;
      grid-template-columns: 58px 1fr;
      min-height: 380px;
    }
    .sidebar {
      display: grid;
      align-content: start;
      gap: 16px;
      padding: 16px 0;
      background: #f8fafc;
      border-inline-end: 1px solid #e5ebf2;
      justify-items: center;
    }
    .sidebar span {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-size: 16px;
      color: #708198;
    }
    .sidebar span.is-active {
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      color: #fff;
      box-shadow: 0 10px 20px rgba(0, 182, 216, 0.24);
    }
    .dashboard-main {
      padding: 20px;
      background:
        linear-gradient(180deg, #ffffff, #f9fcff);
    }
    .dashboard-main h3 {
      margin: 0 0 14px;
      font-size: 14px;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 16px;
    }
    .stat {
      padding: 12px;
      border-radius: 16px;
    }
    .stat strong {
      display: block;
      font-size: 20px;
      margin-bottom: 4px;
    }
    .stat span {
      font-size: 11px;
      font-weight: 600;
      color: #66788e;
    }
    .chart,
    .list-card {
      border-radius: 18px;
      background: #f8fafc;
      padding: 14px;
      border: 1px solid #e8edf3;
    }
    .chart-label {
      font-size: 11px;
      font-weight: 700;
      color: #73859a;
      margin-bottom: 12px;
    }
    .bars {
      height: 78px;
      display: flex;
      align-items: end;
      gap: 8px;
    }
    .bar {
      flex: 1;
      border-radius: 999px 999px 4px 4px;
      background: #cceff7;
    }
    .bar.is-active {
      background: linear-gradient(180deg, var(--brand), var(--brand-deep));
    }
    .list-card { margin-top: 12px; }
    .list-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid #edf1f6;
    }
    .list-row:last-child { border-bottom: 0; }
    .student {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #dff4f8;
      color: var(--brand-deep);
      font-weight: 800;
      font-size: 11px;
      flex: 0 0 auto;
    }
    .student span {
      font-size: 12px;
      color: #415168;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .status {
      border-radius: 999px;
      padding: 4px 8px;
      font-size: 10px;
      font-weight: 700;
      white-space: nowrap;
    }

    .trust-band {
      padding: 72px 0;
      background: linear-gradient(145deg, #0f1f35, #162c47);
      color: #fff;
    }
    .trust-label {
      margin: 0 0 30px;
      color: #76cddb;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 12px;
      font-weight: 800;
      text-align: center;
    }
    .school-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px 18px;
      margin-bottom: 42px;
    }
    .school-strip span {
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.68);
      font-size: 13px;
      font-weight: 700;
    }
    .testimonial {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .testimonial blockquote {
      margin: 0 0 22px;
      font-size: 21px;
      line-height: 1.8;
      color: rgba(255,255,255,0.92);
      font-style: italic;
    }
    .testimonial-author {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-align: start;
    }
    .testimonial-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      color: #fff;
      font-weight: 800;
    }
    .testimonial-author strong {
      display: block;
      font-size: 14px;
    }
    .testimonial-author span {
      color: #76cddb;
      font-size: 13px;
    }

    .section {
      padding: 96px 0;
    }
    .section-alt { background: var(--surface-soft); }
    .section-head {
      max-width: 720px;
      margin: 0 auto 58px;
      text-align: center;
    }
    .section-head h2 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      white-space: pre-line;
    }
    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 28px;
      align-items: center;
    }
    .problem-list {
      display: grid;
      gap: 16px;
    }
    .problem-card {
      display: flex;
      align-items: start;
      gap: 16px;
      padding: 22px;
      border-radius: 20px;
      border: 1px solid #fde6b6;
      background: #fffaf0;
    }
    .problem-card .icon {
      font-size: 22px;
      flex: 0 0 auto;
    }
    .problem-card h3,
    .solution-card h3,
    .feature-card h3,
    .step h3 {
      margin: 0 0 8px;
      font-size: 18px;
      line-height: 1.4;
    }
    .problem-card p,
    .solution-card p,
    .feature-card p,
    .step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }
    .problem-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--brand-deep);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .problem-arrow span:last-child {
      font-size: 30px;
      letter-spacing: 0;
      text-transform: none;
      color: var(--accent);
    }
    .solution-card {
      padding: 30px;
      border-radius: 24px;
      background: linear-gradient(145deg, #e6f9fd, #f0f9ff);
      border: 2px solid #b3e8f5;
      box-shadow: var(--shadow-md);
    }
    .solution-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      font-weight: 800;
    }
    .solution-brand img { height: 28px; width: auto; }
    .solution-points {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }
    .solution-points li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
    }
    .solution-points li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      font-size: 12px;
      flex: 0 0 auto;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
    .feature-card {
      height: 100%;
      padding: 28px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid #e4eaf1;
      box-shadow: 0 10px 24px rgba(15, 31, 53, 0.04);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .feature-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 22px;
    }
    .feature-tag {
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.03em;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 42px;
      align-items: center;
    }
    .pricing-copy h2 {
      margin: 18px 0 16px;
      font-size: clamp(32px, 4vw, 50px);
      line-height: 1.12;
      letter-spacing: 0;
    }
    .pricing-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
    }
    .pricing-panel {
      padding: 28px;
      border-radius: 24px;
      border: 1px solid #dfe8f2;
      background: #fff;
      box-shadow: var(--shadow-md);
      display: grid;
      gap: 14px;
    }
    .pricing-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid #edf1f6;
      color: var(--muted);
      font-weight: 650;
    }
    .pricing-row strong {
      color: var(--ink);
      white-space: nowrap;
    }
    .pricing-panel .btn {
      margin-top: 8px;
    }

    .demo-stage {
      position: relative;
      overflow: hidden;
      padding: 40px;
      border-radius: 28px;
      min-height: 500px;
      background: linear-gradient(145deg, #0f1f35, #1d3b5f);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 32px 80px rgba(15, 31, 53, 0.25);
    }
    .demo-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0,182,216,0.12) 1px, transparent 1px);
      background-size: 26px 26px;
      opacity: 0.9;
    }
    .demo-note,
    .demo-content {
      position: relative;
      z-index: 1;
    }
    .demo-content {
      min-height: 360px;
      display: grid;
      place-items: center;
      text-align: center;
    }
    .play-button {
      width: 92px;
      height: 92px;
      border: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      color: #fff;
      box-shadow: 0 0 0 18px rgba(0,182,216,0.16);
    }
    .play-button svg { margin-inline-start: 4px; }
    .demo-play-label {
      margin-top: 24px;
      color: rgba(255,255,255,0.76);
      font-size: 15px;
      font-weight: 700;
    }
    .demo-opened {
      max-width: 640px;
      text-align: start;
      color: rgba(255,255,255,0.86);
    }
    .demo-opened h3 {
      margin: 0 0 14px;
      font-size: 28px;
    }
    .demo-opened p {
      margin: 0;
      line-height: 1.8;
      font-size: 16px;
    }
    .demo-opened ul {
      margin: 24px 0 0;
      padding-inline-start: 18px;
      line-height: 1.9;
    }
    .demo-note {
      color: rgba(255,255,255,0.4);
      font-size: 12px;
      text-align: end;
    }
    .demo-cta {
      margin-top: 34px;
      text-align: center;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      position: relative;
    }
    .steps::before {
      content: "";
      position: absolute;
      top: 44px;
      left: 16.5%;
      right: 16.5%;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand), var(--accent));
    }
    .step {
      position: relative;
      text-align: center;
      padding: 0 14px;
    }
    .step-badge {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      margin: 0 auto 22px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      border: 6px solid var(--surface-soft);
      box-shadow: 0 14px 30px rgba(15, 31, 53, 0.1);
    }

    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }
    .faq-item {
      padding: 24px;
      border: 1px solid #e4eaf1;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(15, 31, 53, 0.04);
    }
    .faq-item h3 {
      margin: 0 0 8px;
      font-size: 18px;
    }
    .faq-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
    }

    .cta-section {
      position: relative;
      overflow: hidden;
      padding: 104px 0;
      background: linear-gradient(135deg, #0f1f35 0%, #1a3a5c 100%);
      color: #fff;
    }
    .cta-section::before,
    .cta-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .cta-section::before {
      width: 320px;
      height: 320px;
      top: -90px;
      right: -90px;
      background: rgba(0,182,216,0.08);
    }
    .cta-section::after {
      width: 260px;
      height: 260px;
      bottom: -80px;
      left: -80px;
      background: rgba(255,159,28,0.08);
    }
    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .cta-content h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.12;
      letter-spacing: -0.04em;
    }
    .cta-content p {
      margin: 0 auto;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      font-size: 18px;
      max-width: 680px;
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin: 34px 0 20px;
    }
    .lead-form {
      margin: 34px auto 0;
      max-width: 860px;
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      text-align: start;
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .lead-form label {
      display: grid;
      gap: 8px;
      color: rgba(255,255,255,0.78);
      font-size: 13px;
      font-weight: 700;
    }
    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 14px;
      background: rgba(255,255,255,0.95);
      color: var(--ink);
      font: inherit;
      padding: 13px 14px;
      outline: none;
    }
    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 4px rgba(0,182,216,0.18);
    }
    .form-message {
      margin-top: 16px;
    }
    .lead-form .cta-actions {
      margin-bottom: 0;
    }
    .cta-actions .btn-secondary {
      color: #fff;
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.2);
    }
    .cta-footnote {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.45);
      font-size: 13px;
      font-weight: 600;
    }

    .site-footer {
      padding: 68px 0 34px;
      background: #091526;
      color: #fff;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 42px;
    }
    .footer-brand img {
      height: 30px;
      width: auto;
      filter: brightness(0) invert(1);
    }
    .footer-brand-top {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      font-weight: 800;
    }
    .footer-brand p,
    .footer-meta,
    .footer-contact span,
    .footer-contact a,
    .footer-links a {
      color: #8a97ab;
      font-size: 14px;
      line-height: 1.8;
    }
    .footer-heading {
      margin: 0 0 10px;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
    }
    .footer-links {
      display: grid;
      gap: 8px;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-meta {
      font-size: 12px;
    }

    [dir="rtl"] body,
    [dir="rtl"] .demo-opened,
    [dir="rtl"] .testimonial-author {
      text-align: right;
    }

    @media (max-width: 1000px) {
      .main-nav {
        position: fixed;
        top: 68px;
        left: 16px;
        right: 16px;
        padding: 18px;
        border-radius: 20px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,0.96);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
      }
      .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      .main-nav a,
      .main-nav .btn {
        justify-content: center;
      }
      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }
      .hero-grid,
      .problem-grid,
      .pricing-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .problem-arrow { display: none; }
      .feature-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .steps::before { display: none; }
    }

    @media (max-width: 720px) {
      .site-header .container {
        flex-wrap: wrap;
        padding: 10px 0;
      }
      .header-actions {
        width: 100%;
        justify-content: space-between;
      }
      .hero {
        padding-top: 32px;
      }
      .hero-proof,
      .stats,
      .feature-grid,
      .form-grid,
      .steps {
        grid-template-columns: 1fr;
      }
      .dashboard-shell,
      .demo-stage {
        padding: 18px;
      }
      .dashboard-body {
        grid-template-columns: 1fr;
      }
      .sidebar {
        grid-auto-flow: column;
        grid-template-columns: repeat(6, 1fr);
        justify-items: stretch;
        padding: 12px;
        border-inline-end: 0;
        border-bottom: 1px solid #e5ebf2;
      }
      .sidebar span {
        width: 100%;
        height: 36px;
      }
      .section,
      .cta-section,
      .trust-band {
        padding: 74px 0;
      }
      .footer-bottom {
        align-items: flex-start;
      }
    }
