:root {
      --blue: #0b55ff;
      --blue-2: #0647df;
      --blue-soft: #eef5ff;
      --ink: #071735;
      --muted: #526174;
      --line: #dfe7f2;
      --card: #ffffff;
      --bg: #f7fbff;
      --shadow: 0 22px 60px rgba(7, 23, 53, .11);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: linear-gradient(180deg, #fff 0%, #f8fbff 48%, #fff 100%);
    }
    a { color: inherit; text-decoration: none; }
    .container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

    .password-control {
      position: relative;
      display: block;
      width: 100%;
      margin-top: 7px;
    }

    .password-control > input {
      width: 100% !important;
      margin-top: 0 !important;
      padding-right: 48px !important;
    }

    .password-visibility {
      position: absolute;
      top: 50%;
      right: 8px;
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      padding: 0;
      color: #78869a;
      border: 0;
      border-radius: 8px;
      background: transparent;
      cursor: pointer;
      transform: translateY(-50%);
      transition: color .16s ease, background .16s ease;
    }

    .password-visibility:hover,
    .password-visibility:focus-visible {
      color: var(--blue);
      outline: 0;
      background: var(--blue-soft);
    }

    .password-visibility svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .password-control.showing-password .password-visibility::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 1.5px;
      border-radius: 99px;
      background: currentColor;
      transform: rotate(-42deg);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .nav { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 28px; letter-spacing: -.04em; }
    .brand span span { color: var(--blue); }
    .logo-mark {
      width: 44px; height: 44px; border: 3px solid var(--ink); border-radius: 10px;
      display: grid; place-items: center; position: relative; background: white;
    }
    .logo-mark:before, .logo-mark:after { content: ""; position: absolute; top: -8px; width: 5px; height: 14px; background: var(--ink); border-radius: 3px; }
    .logo-mark:before { left: 11px; } .logo-mark:after { right: 11px; }
    .logo-mark svg { width: 24px; color: var(--blue); }
    .nav-links { display: flex; gap: 38px; font-weight: 700; font-size: 14px; align-items: center; }
    .nav-links a { white-space: nowrap; }
    .nav-actions { display: flex; align-items: center; gap: 18px; font-weight: 700; font-size: 14px; }
    .nav-divider { color: #9aa8bb; font-weight: 800; }
    .btn {
      border: 0; border-radius: 8px; padding: 15px 24px; font-weight: 800; cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center; gap: 9px; transition: .2s ease;
    }
    .btn-primary { color: white; background: linear-gradient(180deg, var(--blue), var(--blue-2)); box-shadow: 0 9px 20px rgba(11,85,255,.25); }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 25px rgba(11,85,255,.30); }
    .btn-light { background: white; color: var(--blue); box-shadow: inset 0 0 0 1px #cfe0ff; }

    .hero { padding: 62px 0 48px; }
    .hero-grid { display: grid; grid-template-columns: 1fr 1.08fr; align-items: center; gap: 36px; }
    h1 { font-size: clamp(46px, 5.2vw, 72px); line-height: .96; margin: 0 0 28px; letter-spacing: -.065em; }
    .blue-text { color: var(--blue); }
    .lead { font-size: 19px; line-height: 1.65; color: #13233f; max-width: 520px; margin: 0 0 28px; }
    .hero-actions { display: flex; align-items: center; gap: 24px; margin: 20px 0 32px; }
    .examples-link { color: var(--blue); font-weight: 900; display: inline-flex; align-items: center; gap: 10px; }
    .play { width: 27px; height: 27px; border: 3px solid var(--blue); border-radius: 50%; display: grid; place-items: center; font-size: 10px; }
    .checks { display: flex; flex-wrap: wrap; gap: 24px; font-size: 13px; color: #1a2944; font-weight: 600; }
    .check { display: inline-flex; align-items: center; gap: 8px; }
    .dotcheck { width: 17px; height: 17px; border-radius: 50%; background: var(--blue); color: white; display: grid; place-items: center; font-size: 11px; font-weight: 900; }

    .booking-preview { position: relative; }
    .booking-card {
      background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
      overflow: hidden; display: grid; grid-template-columns: 235px 1fr; min-height: 405px;
    }
    .studio-panel {
      color: white; padding: 38px 28px; display: flex; flex-direction: column; justify-content: space-between;
      background:
        linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.72)),
        radial-gradient(circle at 70% 10%, rgba(255,202,126,.35), transparent 30%),
        linear-gradient(135deg, #1f170f, #0d1118 58%, #07090d);
    }
    .studio-panel h2 { font-size: 25px; line-height: 1.2; margin: 0; letter-spacing: -.035em; }
    .studio-panel p { margin: 0; opacity: .92; font-size: 13px; line-height: 1.5; }
    .instrument-panel { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
    .instrument-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .instrument {
      min-height: 128px; border: 1px solid #e6edf6; border-radius: 10px; background: linear-gradient(180deg,#fff,#fbfdff);
      display: grid; place-items: center; text-align: center; font-weight: 900; box-shadow: 0 10px 22px rgba(7,23,53,.05);
    }
    .instrument .emoji { font-size: 39px; display: block; margin-bottom: 13px; }
    .instrument small { font-size: 13px; }
    .scribble { margin-top: 18px; color: var(--blue); font-family: "Patrick Hand", cursive; font-size: 28px; text-align: center; transform: rotate(-2deg); }
    .scribble:before { content: "↗"; display: inline-block; margin-right: 12px; font-family: Inter; transform: rotate(-45deg); }

    .logos { background: linear-gradient(90deg, #f4f9ff, #fff, #f4f9ff); padding: 44px 0; border-top: 1px solid #eef4fb; border-bottom: 1px solid #eef4fb; }
    .trusted { font-size: 12px; font-weight: 800; margin-bottom: 23px; color: #25324a; }
    .logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 34px; align-items: center; color: #1c2639; }
    .fake-logo { display: flex; align-items: center; gap: 13px; opacity: .88; font-size: 20px; font-weight: 700; letter-spacing: .01em; }
    .fake-logo small { display: block; font-size: 9px; letter-spacing: .22em; font-weight: 800; color: #58677c; }
    .fake-icon { font-size: 40px; line-height: 1; }

    .dashboard-section { padding: 30px 0 26px; }
    .dashboard-grid { display: grid; grid-template-columns: 330px 1fr; gap: 54px; align-items: center; }
    h3 { font-size: 30px; line-height: 1.05; margin: 0 0 28px; letter-spacing: -.05em; }
    .feature { display: grid; grid-template-columns: 48px 1fr; gap: 16px; margin: 26px 0; }
    .feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-soft); display: grid; place-items: center; color: var(--blue); font-size: 24px; }
    .feature b { display: block; margin-bottom: 8px; }
    .feature p { margin: 0; color: #273750; line-height: 1.55; font-size: 14px; }

    .app-window { background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
    .app-head { height: 54px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 18px; font-weight: 900; }
    .mini-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; }
    .mini-mark {
      width: 24px;
      height: 24px;
      border: 2px solid var(--ink);
      border-radius: 6px;
      display: grid;
      place-items: center;
      color: var(--blue);
      position: relative;
      background: white;
      font-size: 14px;
      line-height: 1;
    }
    .mini-mark:before,
    .mini-mark:after {
      content: "";
      position: absolute;
      top: -5px;
      width: 3px;
      height: 8px;
      background: var(--ink);
      border-radius: 3px;
    }
    .mini-mark:before { left: 6px; }
    .mini-mark:after { right: 6px; }
    .mini-brand span span { color: var(--blue); }
    .avatar { display: flex; align-items: center; gap: 10px; font-size: 12px; }
    .avatar .circle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #eaf2ff;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px #cfe0ff;
    }
    .avatar .circle:before {
      content: "";
      position: absolute;
      left: 9px;
      top: 6px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #0b55ff;
    }
    .avatar .circle:after {
      content: "";
      position: absolute;
      left: 6px;
      bottom: 4px;
      width: 16px;
      height: 9px;
      border-radius: 9px 9px 4px 4px;
      background: #0b55ff;
    }
    .app-body { display: grid; grid-template-columns: 145px 1fr; min-height: 360px; }
    .sidebar { border-right: 1px solid var(--line); background: #fbfdff; padding: 18px 12px; }
    .side-item { padding: 11px 13px; border-radius: 8px; font-size: 12px; font-weight: 800; color: #1d2d47; margin-bottom: 6px; }
    .side-item.active { background: #eaf2ff; color: var(--blue); }
    .main { padding: 24px; }
    .main h4 { margin: 0 0 4px; font-size: 18px; letter-spacing: -.03em; }
    .main > p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
    .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
    .stat { border: 1px solid var(--line); border-radius: 9px; padding: 15px 13px; background: white; }
    .stat small { color: var(--muted); font-weight: 800; font-size: 11px; }
    .stat strong { display: block; font-size: 26px; margin: 8px 0 3px; }
    .stat em { color: #0f9c4c; font-style: normal; font-size: 11px; font-weight: 800; }
    .lower-app { display: grid; grid-template-columns: 230px 1fr; gap: 18px; }
    .list, .calendar { border: 1px solid var(--line); border-radius: 10px; padding: 15px; background: white; }
    .booking-item { font-size: 12px; padding: 12px 0; border-bottom: 1px solid #edf2f7; }
    .booking-item:last-child { border-bottom: 0; }
    .tag { float: right; border-radius: 99px; padding: 3px 8px; font-size: 10px; font-weight: 900; background: #dcfce7; color: #178144; }
    .tag.pending { background: #fff2d8; color: #ae6b00; }
    .calendar { padding: 14px; }
    .calendar-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 12px; }
    .calendar-top b { letter-spacing: -.02em; }
    .cal-actions { display: inline-flex; gap: 5px; }
    .cal-actions span { width: 22px; height: 22px; border: 1px solid var(--line); border-radius: 6px; display: grid; place-items: center; color: #41516b; background: #fbfdff; line-height: 1; }
    .week-calendar {
      display: grid;
      grid-template-columns: 34px repeat(5, minmax(50px, 1fr));
      grid-template-rows: 26px repeat(5, 42px);
      margin-top: 12px;
      border: 1px solid #e9eff7;
      border-radius: 9px;
      overflow: hidden;
      background: #fff;
    }
    .week-calendar > div {
      border-right: 1px solid #edf2f7;
      border-bottom: 1px solid #edf2f7;
      min-width: 0;
    }
    .week-calendar > div:nth-child(6n) { border-right: 0; }
    .day-head {
      display: grid;
      place-items: center;
      color: #526174;
      background: #fbfdff;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .01em;
    }
    .time-head, .time-label {
      display: grid;
      align-items: start;
      justify-items: center;
      color: #8a97aa;
      background: #fbfdff;
      font-size: 9px;
      padding-top: 7px;
      font-weight: 800;
    }
    .slot { position: relative; background: linear-gradient(180deg, #fff, #fcfdff); }
    .lesson-block {
      position: absolute;
      left: 4px;
      right: 4px;
      top: 6px;
      min-height: 30px;
      border-radius: 7px;
      padding: 5px 6px 4px;
      color: #0b3fbd;
      background: #dbe9ff;
      border: 1px solid #bdd5ff;
      overflow: hidden;
      box-shadow: 0 4px 9px rgba(7, 23, 53, .04);
    }
    .lesson-block strong {
      display: block;
      font-size: 9px;
      line-height: 1.05;
      font-weight: 900;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .lesson-block span {
      display: block;
      margin-top: 2px;
      font-size: 8px;
      line-height: 1;
      font-weight: 800;
      opacity: .78;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .lesson-block.green { color: #137044; background: #dcfce7; border-color: #b7e7ca; }
    .lesson-block.red { color: #8a2d2d; background: #ffe5e5; border-color: #ffcaca; }

    .pricing { padding: 4px 0 28px; text-align: center; }
    .pricing h3 { margin-bottom: 12px; }
    .price-cards { display: grid; grid-template-columns: repeat(2, minmax(280px, 370px)); justify-content: center; gap: 22px; text-align: left; }
    .price-card { background: white; border: 1px solid var(--line); border-radius: 13px; padding: 26px; box-shadow: 0 15px 40px rgba(7,23,53,.06); position: relative; overflow: hidden; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
    .price-card.muted-plan { background: #f7f9fc; color: #5b687b; box-shadow: 0 10px 28px rgba(7,23,53,.04); }
    .price-card.muted-plan h4, .price-card.muted-plan .price { color: #263653; }
    .price-card.muted-plan li { color: #5b687b; }
    .price-card.muted-plan li:before { background: #9fb0c7; }
    .price-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(7,23,53,.10); }
    .price-card.premium { border-color: var(--blue); box-shadow: 0 18px 45px rgba(11,85,255,.13); }
    .price-card.selected { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,85,255,.14), 0 22px 55px rgba(11,85,255,.16); transform: translateY(-4px); }
    .price-card.selected:after {
      content: "Selected";
      position: absolute;
      right: 18px;
      top: 18px;
      border-radius: 999px;
      background: var(--blue-soft);
      color: var(--blue);
      padding: 6px 10px;
      font-size: 11px;
      font-weight: 900;
    }
    .price-card.premium.selected:after { top: 34px; }
    .ribbon { position: absolute; left: 0; top: 0; width: 100%; background: var(--blue); color: white; text-align: center; font-size: 10px; font-weight: 900; padding: 5px; }
    .price-card.premium { padding-top: 35px; }
    .price-card h4 { font-size: 23px; margin: 0 0 5px; }
    .price { font-size: 38px; font-weight: 900; margin: 12px 0 2px; letter-spacing: -.04em; }
    .price span { font-size: 14px; font-weight: 700; color: var(--muted); }
    .plan-note { margin-top: 16px; border-radius: 9px; padding: 11px 12px; background: #f4f8ff; color: #244061; font-size: 12px; font-weight: 800; line-height: 1.4; }
    .muted-plan .plan-note { background: #eef2f7; color: #66758a; }
    ul { list-style: none; padding: 0; margin: 18px 0 0; }
    li { margin: 9px 0; font-size: 13px; font-weight: 600; }
    li:before { content: "✓"; display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; background: var(--blue); color: white; font-size: 10px; margin-right: 8px; }

    .steps-wrap { padding: 25px 0 22px; }
    .steps-card { background: linear-gradient(180deg,#f5faff,#fff); border: 1px solid #e8f0fb; border-radius: 14px; padding: 28px 48px 36px; }
    .steps-card h3 { text-align: center; font-size: 24px; margin-bottom: 30px; }
    .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
    .step { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; position: relative; }
    .step:not(:last-child):after { content: "→"; position: absolute; right: -20px; top: 16px; color: var(--blue); font-size: 18px; opacity: .36; font-weight: 900; }
    .step .feature-icon { width: 52px; height: 52px; }
    .step b { display:block; margin-bottom: 7px; }
    .step p { margin:0; font-size: 13px; line-height:1.45; color:#263750; }

    .cta { padding-bottom: 34px; }
    .cta-card { background: linear-gradient(135deg, #0047e8, #075bff 70%, #003fc8); color: white; border-radius: 10px; padding: 34px 44px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 18px 45px rgba(11,85,255,.24); }
    .cta-left { display: flex; align-items: center; gap: 24px; }
    .cta .logo-mark { border-color: white; color: white; background: transparent; }
    .cta .logo-mark:before, .cta .logo-mark:after { background: white; }
    .cta h3 { margin: 0 0 8px; color: white; }
    .cta p { margin: 0; opacity: .92; }
    .cta-actions { text-align: center; }
    .cta-actions .btn { min-width: 235px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
    .cta-actions .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(0, 28, 110, .22);
      background: #f3f7ff;
    }
    .micro { font-size: 12px; margin-top: 14px; font-weight: 800; }
    .cta .logo-mark svg { color: white; }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero-grid, .dashboard-grid { grid-template-columns: 1fr; }
      .booking-card { grid-template-columns: 1fr; }
      .studio-panel { min-height: 260px; }
      .logo-row, .steps { grid-template-columns: repeat(2, 1fr); }
      .app-body, .lower-app { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .cta-card { flex-direction: column; gap: 28px; align-items: flex-start; }
    }
    @media (max-width: 640px) {
      .container { width: min(100% - 24px, 1160px); }
      .nav { height: 72px; }
      .brand { font-size: 22px; }
      .nav-actions a:not(.btn) { display:none; }
      .nav-divider { display: none; }
      .nav-actions .btn { padding: 12px 16px; }
      .hero { padding-top: 34px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .checks { display: grid; gap: 12px; }
      .instrument-grid, .logo-row, .price-cards, .steps { grid-template-columns: 1fr; }
      .booking-card { min-height: auto; }
      .stats { grid-template-columns: 1fr; }
      .app-window { font-size: 12px; }
      .calendar { display:none; }
      .steps-card { padding: 24px; }
      .step:not(:last-child):after { display:none; }
      .cta-card { padding: 28px 22px; }
      .cta-left { align-items: flex-start; }
    }
  
    .site-footer {
      background: #06142f;
      color: white;
      padding: 48px 0 22px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .8fr .8fr 1.3fr;
      gap: 44px;
      align-items: start;
    }
    .site-footer h4 {
      font-size: 26px;
      margin: 0 0 12px;
      letter-spacing: -.04em;
    }
    .site-footer h5 {
      font-size: 14px;
      margin: 0 0 14px;
      color: white;
    }
    .site-footer p {
      color: #b8c4d8;
      line-height: 1.6;
      font-size: 14px;
      margin: 0;
    }
    .site-footer a {
      display: block;
      color: #b8c4d8;
      font-size: 14px;
      margin: 10px 0;
    }
    .footer-form {
      display: flex;
      gap: 8px;
      margin-top: 16px;
    }
    .footer-form input {
      min-width: 0;
      flex: 1;
      border: 1px solid #2d4268;
      background: #0b1d42;
      color: white;
      border-radius: 8px;
      padding: 12px 13px;
    }
    .footer-form button {
      border: 0;
      background: var(--blue);
      color: white;
      border-radius: 8px;
      padding: 0 14px;
      font-weight: 900;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.10);
      margin-top: 34px;
      padding-top: 20px;
      color: #94a4bd;
      font-size: 13px;
      text-align: center;
    }

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

    @media (max-width: 640px) {
      .site-footer .footer-grid { grid-template-columns: 1fr; }
      .footer-form { flex-direction: column; }
    }

  

    /* CLEAN HOMEPAGE DEVICE + SPACING */
    .brand-image {
      min-width: 310px;
      display: flex;
      align-items: center;
    }

    .brand-image img {
      height: 66px;
      width: auto;
      display: block;
    }

    .hero-title-clean {
      font-size: clamp(46px, 5.2vw, 72px);
      line-height: .96;
      margin: 0 0 28px;
      letter-spacing: -.065em;
      display: block;
    }

    .hero-title-clean span {
      display: block;
    }

    .hero-title-clean span:nth-child(3) {
      white-space: nowrap;
    }

    .hero-title-clean .blue-text {
      color: var(--blue);
    }

    .hero-checks-locked {
      flex-wrap: nowrap;
      gap: 18px;
      white-space: nowrap;
    }

    .hero-laptop-demo {
      position: relative;
      min-height: 394px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      isolation: isolate;
      transform: translateX(-30px);
    }

    .hero-laptop-demo:before {
      content: none;
    }

    .clean-laptop {
      position: relative;
      width: min(100%, 660px);
      height: 384px;
      border: 12px solid #11151d;
      border-bottom-width: 24px;
      border-radius: 22px 22px 16px 16px;
      background: #11151d;
      box-shadow: 0 26px 70px rgba(7,23,53,.18);
      overflow: visible;
    }

    .clean-laptop-screen {
      width: 100%;
      height: 100%;
      border-radius: 9px;
      background: #f7faff;
      overflow: hidden !important;
      position: relative;
    }

    .clean-laptop-base {
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 108%;
      height: 16px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, #565b64, #20242b);
      border-radius: 0 0 42px 42px;
      box-shadow: 0 15px 22px rgba(7,23,53,.16);
    }

    .ir-demo-scale {
      --hero-booking-scale: .42;
      width: 1180px;
      height: 760px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(var(--hero-booking-scale));
      transform-origin: center;
      pointer-events: auto;
      margin: 0;
      overflow: hidden;
    }

    .ir-demo-scale #ir-booking-app {
      margin: 0 !important;
      max-width: 1180px !important;
      width: 1180px !important;
      min-height: 760px;
      padding: 22px !important;
      background: #f7f9fc !important;
      overflow: hidden !important;
    }

    .ir-demo-scale .ir-title {
      font-size: 24px !important;
      margin-bottom: 18px !important;
    }

    .ir-demo-scale .ir-step {
      margin-bottom: 14px !important;
      padding: 18px !important;
    }

    .ir-demo-scale .ir-step-label h2 {
      font-size: 24px !important;
    }

    .ir-demo-scale .ir-card {
      min-height: 128px !important;
    }

    .ir-demo-scale .ir-icon {
      font-size: 34px !important;
    }

    .steps-wrap {
      padding: 18px 0 24px;
    }

    .dashboard-section {
      padding: 22px 0 40px;
    }

    .pricing {
      padding: 28px 0 36px;
    }

    .cta {
      padding-top: 10px;
      padding-bottom: 40px;
    }

    @media (max-width: 980px) {
      .brand-image {
        min-width: auto;
      }

      .brand-image img {
        height: 48px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .hero-checks-locked {
        flex-wrap: wrap;
        white-space: normal;
      }

      .hero-laptop-demo {
        min-height: 365px;
        transform: none;
        justify-content: center;
      }

      .clean-laptop {
        width: min(100%, 640px);
        height: 350px;
      }

    }

    @media (max-width: 640px) {
      .brand-image img {
        height: 38px;
      }

      .hero-title-clean span:nth-child(3) {
        white-space: normal;
      }

      .hero-laptop-demo {
        min-height: 305px;
      }

      .clean-laptop {
        height: 285px;
        border-width: 8px;
        border-bottom-width: 18px;
      }

      .clean-laptop-base {
        bottom: -8px;
        height: 12px;
      }

      .steps-wrap,
      .dashboard-section,
      .pricing {
        padding-top: 30px;
        padding-bottom: 30px;
      }
    }


    .hero-booking-iframe {
      width: 100%;
      height: 760px;
      border: 0;
      display: block;
      background: #ffffff;
      overflow: hidden !important;
    }
@media (min-width: 981px) {
  .hero-laptop-demo {
    margin-left: 30px !important;
  }
}
