    :root {
      --teal: #3a9a9e;
      --teal-d: #2a7a8a;
      --green: #6b8f3e;
      --coral: #e8754a;
      --lav: #9a9bb5;
      --blue: #1a4a7a;
      --blue-l: #2a6aaa;
      --bg: #f2f4f7;
      --white: #ffffff;
      --text: #1a2a3a;
      --muted: #6a7a8a;
      --border: rgba(26, 74, 122, 0.10);
    }

    * { box-sizing: border-box; }
    html, body { width: 100%; height: 100%; margin: 0; }
    body {
      overflow: hidden;
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    :root {
      --nav-height: 64px;
    }

    .top-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-height);
      z-index: 220;
      display: flex;
      align-items: center;
      border-bottom: 1px solid transparent;
      transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      background: transparent;
    }

    .top-nav.is-scrolled {
      background: rgba(242, 244, 247, 0.96);
      border-color: var(--border);
      box-shadow: 0 8px 24px rgba(20, 44, 74, 0.08);
      backdrop-filter: blur(6px);
    }

    .top-nav-inner {
      width: min(1420px, calc(100% - 36px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--blue);
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .nav-logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .nav-menu {
      margin-left: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-item,
    .nav-link {
      min-height: 44px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      border-radius: 8px;
      border: 0;
      background: transparent;
      color: #284f79;
      text-decoration: none;
      font: 500 14px/1 "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      cursor: pointer;
      position: relative;
    }

    .nav-item:hover,
    .nav-link:hover {
      background: rgba(26, 74, 122, 0.08);
    }

    .nav-active {
      color: var(--blue);
    }

    .nav-active::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 6px;
      height: 2px;
      border-radius: 999px;
      background: var(--blue);
      opacity: 0.8;
    }

    .nav-spacer {
      margin-left: auto;
    }

    .nav-cta {
      text-decoration: none;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 10px 16px;
      background: var(--blue);
      color: #fff;
      font: 500 14px/1 "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      white-space: nowrap;
    }

    .nav-cta:hover { background: #163f6b; }

    .services-dropdown {
      position: relative;
      padding-bottom: 8px;
      margin-bottom: -8px;
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% - 1px);
      left: 0;
      min-width: 250px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      box-shadow: 0 12px 30px rgba(20, 44, 74, 0.14);
      padding: 8px;
      display: grid;
      gap: 2px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(4px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .services-dropdown:hover .dropdown-menu,
    .services-dropdown:focus-within .dropdown-menu,
    .services-dropdown.is-open .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .dropdown-link {
      min-height: 44px;
      padding: 0 12px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      color: #284f79;
      text-decoration: none;
      font: 500 14px/1.2 "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      position: relative;
    }

    .dropdown-link:hover {
      background: rgba(26, 74, 122, 0.08);
    }

    .mobile-nav-toggle {
      display: none;
      margin-left: auto;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: var(--blue);
      cursor: pointer;
      position: relative;
    }

    .mobile-nav-toggle span,
    .mobile-nav-toggle::before,
    .mobile-nav-toggle::after {
      content: "";
      position: absolute;
      left: 9px;
      right: 9px;
      height: 2px;
      background: var(--blue);
      border-radius: 999px;
      transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    }

    .mobile-nav-toggle::before { top: 12px; }
    .mobile-nav-toggle span { top: 19px; }
    .mobile-nav-toggle::after { top: 26px; }

    .mobile-nav-toggle.is-open::before {
      top: 19px;
      transform: rotate(45deg);
    }
    .mobile-nav-toggle.is-open span { opacity: 0; }
    .mobile-nav-toggle.is-open::after {
      top: 19px;
      transform: rotate(-45deg);
    }

    .mobile-nav-panel {
      position: fixed;
      inset: 0;
      z-index: 210;
      background: rgba(242, 244, 247, 0.98);
      transform: translateX(100%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
      padding: calc(var(--nav-height) + 18px) 24px 24px;
      display: grid;
      align-content: start;
      gap: 8px;
    }

    .mobile-nav-panel.is-open {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav-link {
      min-height: 52px;
      display: flex;
      align-items: center;
      padding: 0 4px;
      color: var(--blue);
      text-decoration: none;
      font: 600 21px/1.2 "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .mobile-nav-link.nav-active::after {
      left: 4px;
      right: auto;
      width: 48px;
      bottom: 8px;
    }

    .mobile-nav-panel .nav-cta {
      margin-top: 12px;
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    #app {
      width: 100vw;
      height: calc(100vh - var(--nav-height));
      overflow: hidden;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: var(--nav-height);
      background: radial-gradient(120% 90% at 50% 100%, #e9edf3 0%, var(--bg) 62%);
      cursor: grab;
      touch-action: none;
      perspective: 1400px;
      transform-style: preserve-3d;
    }

    #app.is-dragging { cursor: grabbing; }

    #bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .scene {
      position: absolute;
      inset: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 74px 62px 82px;
      opacity: 0;
      transform: translateY(40px);
      transform-origin: center center;
      will-change: transform, opacity;
      pointer-events: none;
      transition: opacity 0.22s linear, transform 0.22s linear;
    }

    .scene-inner {
      width: min(1420px, 100%);
      display: grid;
      gap: 24px;
      max-height: 100%;
      transform: translateY(var(--scene-pan, 0px));
      transition: transform 0.32s ease;
    }

    .scene h1 {
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: clamp(38px, 4.2vw, 58px);
      font-weight: 800;
      line-height: 1.07;
      letter-spacing: 0;
      margin: 0;
      color: var(--blue);
      text-wrap: balance;
    }

    .scene h2 {
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.003em;
      margin: 0;
      color: var(--blue);
      text-wrap: balance;
    }

    .scene p {
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: clamp(15px, 1.4vw, 18px);
      font-weight: 400;
      line-height: 1.72;
      margin: 0;
      color: #4e6074;
    }

    .scene .tag {
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #4f6f8f;
      margin: 0;
    }

    .scene .stat-n {
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 800;
      line-height: 1;
      color: var(--blue);
    }

    .subhead {
      max-width: 66ch;
      margin-top: -8px;
    }

    .two-col {
      display: flex;
      gap: 44px;
      align-items: stretch;
    }

    .three-col {
      display: flex;
      gap: 20px;
      align-items: stretch;
    }

    .hero-copy { flex: 1 1 45%; max-width: 680px; }
    .hero-copy h1 { white-space: pre-line; }
    .hero-copy h1 .coral { color: var(--coral); }

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

    .btn {
      appearance: none;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 12px 18px;
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
    }
    .btn-primary:hover { background: #163f6b; }

    .btn-ghost {
      border-color: rgba(26, 74, 122, 0.24);
      background: transparent;
      color: #274f79;
    }
    .btn-ghost:hover { border-color: rgba(26, 74, 122, 0.42); }

    .illustration {
      flex: 1 1 45%;
      min-width: 320px;
      border-radius: 12px;
      background: var(--blue);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 42px rgba(18, 43, 74, 0.22);
      padding: 18px 20px;
      color: #d9e8ff;
      font: 500 14px/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      align-self: center;
    }

    .term-top {
      display: flex;
      gap: 6px;
      margin-bottom: 14px;
    }
    .term-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); }

    .typing-line {
      overflow: hidden;
      white-space: nowrap;
      width: 0;
      border-right: 1px solid rgba(255, 255, 255, 0.25);
      animation: typeLine 2.8s steps(36, end) forwards;
    }
    .typing-line.l2 { animation-delay: 0.6s; }
    .typing-line.l3 { animation-delay: 1.2s; }
    .typing-line.l4 { animation-delay: 1.8s; }
    .typing-line.l5 { animation-delay: 2.4s; }

    @keyframes typeLine {
      from { width: 0; }
      to { width: 100%; }
    }

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: 0 10px 28px rgba(20, 44, 74, 0.08);
      min-height: 280px;
      display: grid;
      align-content: start;
      gap: 12px;
      flex: 1 1 0;
    }

    .card-line {
      height: 3px;
      border-radius: 999px;
      width: 56px;
    }

    .card .icon { font-size: 32px; line-height: 1; }
    .card h3 { margin: 0; font-size: 23px; font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif; color: var(--blue); line-height: 1.2; }

    .service-col {
      flex: 1 1 50%;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px;
      box-shadow: 0 10px 28px rgba(20, 44, 74, 0.08);
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .service-wrap {
      align-items: stretch;
      position: relative;
      transform: translateY(var(--scene2-pan, 0px));
      transition: transform 0.28s ease;
    }

    .service-wrap::before {
      content: "";
      position: absolute;
      left: calc(50% - 0.5px);
      top: 4px;
      bottom: 4px;
      width: 1px;
      background: var(--border);
    }

    .nr {
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: 36px;
      color: var(--blue);
      line-height: 1;
    }

    .service-sub {
      font-size: 14px;
      font-weight: 500;
      color: var(--teal-d);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

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

    .tag-pill {
      background: rgba(58, 154, 158, 0.08);
      border: 1px solid rgba(58, 154, 158, 0.2);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 12px;
      color: var(--teal-d);
      font-weight: 500;
    }

    .project {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 10px 28px rgba(20, 44, 74, 0.08);
      display: grid;
      gap: 14px;
      flex: 1 1 0;
    }

.scene[data-scene="4"] {
      align-items: center;
      padding-top: 76px;
      padding-bottom: 76px;
    }

.scene[data-scene="4"] .scene-inner {
      gap: 16px;
      align-content: start;
    }

.scene[data-scene="4"] .subhead {
      margin-top: -4px;
    }

.scene[data-scene="4"] .two-col {
      gap: 16px;
      align-items: stretch;
      transform: translateY(var(--scene3-pan, 0px));
      transition: transform 0.28s ease;
    }

.scene[data-scene="4"] .project {
      padding: 18px;
      gap: 10px;
    }

.scene[data-scene="4"] .project h3 {
      font-size: 24px;
      line-height: 1.16;
    }

.scene[data-scene="4"] .project p {
      font-size: 15px;
      line-height: 1.5;
      display: -webkit-box;
      line-clamp: 4;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

.scene[data-scene="4"] .stats-grid {
      margin-top: 2px;
      gap: 8px;
    }

.scene[data-scene="4"] .stat {
      min-height: 74px;
      padding: 8px;
    }

.scene[data-scene="4"] .stat-n {
      font-size: clamp(24px, 2.2vw, 34px);
    }

    .badge {
      display: inline-flex;
      width: fit-content;
      border-radius: 999px;
      padding: 5px 11px;
      font-size: 12px;
      color: var(--blue);
      border: 1px solid rgba(26, 74, 122, 0.18);
      background: rgba(42, 106, 170, 0.08);
      font-weight: 500;
    }

    .project h3 {
      margin: 0;
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      color: var(--blue);
      line-height: 1.2;
      font-size: 28px;
    }

    .stats-grid {
      margin-top: 6px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .stat {
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fbfcfe;
      padding: 10px;
      min-height: 86px;
      display: grid;
      align-content: center;
      text-align: center;
      gap: 4px;
    }

    .stat-label {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.3;
      font-weight: 400;
    }

    .contact-col-left { flex: 1 1 46%; }
    .contact-col-right {
      flex: 1 1 54%;
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .promises {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .promises li {
      color: var(--text);
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.6;
      font-weight: 400;
    }

    .promises li::before {
      content: "✓";
      color: var(--green);
      margin-right: 10px;
      font-weight: 700;
    }

    .contact-btn {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .contact-btn:hover {
      border-color: rgba(26, 74, 122, 0.35);
      box-shadow: 0 8px 20px rgba(20, 44, 74, 0.12);
      transform: translateY(-1px);
    }

    .contact-form {
      display: grid;
      gap: 10px;
    }

    .contact-input,
    .contact-textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 14px;
      font: 500 14px/1.4 "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      color: var(--text);
      background: var(--white);
      outline: none;
    }

    .contact-input:focus,
    .contact-textarea:focus {
      border-color: rgba(26, 74, 122, 0.35);
      box-shadow: 0 0 0 3px rgba(26, 74, 122, 0.08);
    }

    .contact-textarea {
      min-height: 112px;
      resize: vertical;
    }

    .calendly-link {
      display: inline-block;
      margin-top: 6px;
      text-decoration: none;
      color: var(--blue);
      font-size: 14px;
      font-weight: 500;
    }

    .calendly-link:hover {
      text-decoration: underline;
    }

    .wa-wrap {
      margin-top: 10px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 14px;
      color: var(--muted);
      font-size: 14px;
    }

    .wa-btn {
      padding: 10px 14px;
      border: 1px solid rgba(107, 143, 62, 0.35);
      border-radius: 999px;
      text-decoration: none;
      color: #47682a;
      background: rgba(107, 143, 62, 0.08);
      font-size: 13px;
      font-weight: 500;
    }

.scene[data-scene="5"],
.scene[data-scene="6"] {
      align-items: center;
      padding-top: 76px;
      padding-bottom: 76px;
    }

.scene[data-scene="5"] .scene-inner,
.scene[data-scene="6"] .scene-inner {
      gap: 16px;
      align-content: start;
      width: min(1360px, 100%);
    }

.scene[data-scene="5"] .two-col,
.scene[data-scene="6"] .two-col {
      gap: 28px;
      align-items: start;
    }

.scene[data-scene="5"] .contact-col-right,
.scene[data-scene="6"] .contact-col-right {
      gap: 8px;
    }

.scene[data-scene="5"] .promises,
.scene[data-scene="6"] .promises {
      margin-top: 12px;
      gap: 8px;
    }

.scene[data-scene="5"] .promises li,
.scene[data-scene="6"] .promises li {
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.45;
    }

.scene[data-scene="5"] .contact-btn,
.scene[data-scene="6"] .contact-btn {
      padding: 13px 16px;
      font-size: 13px;
    }

    #logo-fixed {
      position: fixed;
      top: 24px;
      left: 32px;
      z-index: 100;
      pointer-events: none;
      display: flex;
      align-items: center;
    }

    #logo-fixed img { height: 52px; }
    .top-nav ~ #app #logo-fixed { display: none; }

    #dots {
      position: fixed;
      right: 28px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    #dots button {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 0;
      padding: 0;
      background: rgba(26, 74, 122, 0.18);
      cursor: pointer;
      transition: transform 0.2s, background-color 0.2s;
    }

    #dots button.is-active {
      background: var(--blue);
      transform: scale(1.5);
    }

    #scene-counter {
      position: fixed;
      bottom: 28px;
      left: 32px;
      z-index: 100;
      font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    #scroll-hint {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 10px;
      transition: opacity 0.22s;
      pointer-events: none;
    }

    #scroll-hint .hint-line {
      width: 1px;
      height: 24px;
      background: linear-gradient(to bottom, var(--teal), transparent);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: translateY(0); opacity: 0.35; }
      50% { transform: translateY(5px); opacity: 1; }
    }

    @media (max-width: 768px) {
      :root {
        --nav-height: 56px;
      }

      .top-nav {
        height: var(--nav-height);
      }

      .top-nav-inner {
        width: calc(100% - 24px);
      }

      .nav-logo img {
        height: 34px;
      }

      .nav-menu,
      .nav-spacer,
      .top-nav .nav-cta {
        display: none;
      }

      .mobile-nav-toggle {
        display: inline-flex;
      }

      #app { cursor: default; }
      .scene {
        padding: 52px 16px 48px;
        align-items: flex-start;
        overflow: hidden;
      }
      .scene-inner {
        gap: 16px;
        width: 100%;
        max-height: 100%;
        overflow: hidden;
      }
      .scene .two-col { flex-direction: column; gap: 32px; }
      .scene .three-col { flex-direction: column; gap: 10px; }
      .scene h1 {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.1;
        letter-spacing: -0.005em;
        text-wrap: pretty;
      }
      .scene h2 { font-size: clamp(24px, 7vw, 36px); }
      .scene p { font-size: 16px; }
      #logo-fixed { top: 14px; left: 18px; }
      #logo-fixed img { height: 38px; }
      #dots {
        right: auto;
        top: auto;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 6px;
      }
      #dots button {
        width: 6px;
        height: 6px;
      }
      #scroll-hint {
        display: none;
      }
      .scene[data-scene="0"] .illustration { display: none; }
      .scene[data-scene="0"] .two-col { flex-direction: column; }
      .hero-copy { max-width: 100%; }
      .hero-actions {
        margin-top: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      .btn {
        font-size: 14px;
        padding: 12px 18px;
      }
      .service-wrap::before { display: none; }
      .card {
        min-height: 0;
        padding: 18px 16px;
        gap: 8px;
      }
      .card h3 {
        font-size: 15px;
        line-height: 1.3;
      }
      .card p {
        font-size: 14px;
        line-height: 1.6;
        display: -webkit-box;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .scene[data-scene="1"] .scene-inner {
        gap: 10px;
        grid-template-rows: auto auto auto 1fr;
      }
      .scene[data-scene="1"] .subhead {
        font-size: 13px;
        line-height: 1.45;
      }
      .scene[data-scene="1"] .three-col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .scene[data-scene="1"] .card {
        display: block;
        padding: 12px 14px;
        min-height: auto;
        border-radius: 10px;
      }
      .scene[data-scene="1"] .card-line {
        width: 34px;
        height: 2px;
      }
      .scene[data-scene="1"] .card .icon {
        font-size: 18px;
      }
      .scene[data-scene="1"] .card h3 {
        font-size: 14px;
        line-height: 1.25;
      }
      .scene[data-scene="1"] .card p {
        font-size: 12px;
        line-height: 1.4;
        display: block;
        line-clamp: unset;
        -webkit-line-clamp: unset;
        -webkit-box-orient: initial;
        overflow: visible;
      }
  .scene[data-scene="4"] .two-col {
        flex-direction: column;
        gap: 16px;
      }
  .scene[data-scene="4"] {
        align-items: flex-start;
        padding-top: 62px;
        padding-bottom: 58px;
      }
  .scene[data-scene="4"] .scene-inner {
        gap: 8px;
        align-content: start;
      }
  .scene[data-scene="4"] .subhead {
        display: none;
      }
  .scene[data-scene="4"] .tag {
        font-size: 9px;
        letter-spacing: 0.16em;
      }
  .scene[data-scene="4"] h2 {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.08;
      }
      .scene[data-scene="2"] .two-col {
        flex-direction: column;
        gap: 14px;
      }
      .service-col {
        padding: 16px 14px;
        gap: 8px;
      }
      .service-col h3 {
        font-size: 16px !important;
        line-height: 1.2 !important;
      }
      .nr {
        font-size: 24px;
      }
      .service-sub {
        font-size: 10px;
        letter-spacing: 0.03em;
      }
      .service-col p {
        font-size: 13px;
        line-height: 1.45;
        display: -webkit-box;
        line-clamp: 4;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .tag-pill {
        padding: 3px 8px;
        font-size: 10px;
      }
      .project {
        padding: 10px 10px;
        gap: 6px;
      }
      .project h3 {
        font-size: 12px;
        line-height: 1.22;
        letter-spacing: 0;
      }
      .project p {
        font-size: 11px;
        line-height: 1.3;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .badge {
        font-size: 9px;
        padding: 3px 6px;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
      }
      .stat {
        min-height: 46px;
        padding: 6px 5px;
      }
      .stat-n { font-size: clamp(16px, 4.7vw, 22px); }
      .stat-label {
        font-size: 9px;
        line-height: 1.1;
      }
  .scene[data-scene="5"] .two-col,
  .scene[data-scene="6"] .two-col {
        flex-direction: column;
        gap: 14px;
      }
  .scene[data-scene="5"],
  .scene[data-scene="6"] {
        align-items: flex-start;
        padding-top: 72px;
        padding-bottom: 58px;
      }
  .scene[data-scene="5"] .scene-inner,
  .scene[data-scene="6"] .scene-inner {
        align-content: start;
      }
  .scene[data-scene="5"] .promises,
  .scene[data-scene="6"] .promises {
        margin-top: 8px;
        gap: 6px;
      }
  .scene[data-scene="5"] .promises li,
  .scene[data-scene="6"] .promises li {
        font-size: 13px;
        line-height: 1.35;
      }
      .contact-btn {
        width: 100%;
        padding: 11px 12px;
        font-size: 12px;
        gap: 8px;
      }
      .wa-wrap {
        margin-top: 6px;
        padding-top: 10px;
        gap: 8px;
        font-size: 12px;
      }
      .wa-btn {
        font-size: 11px;
        padding: 8px 10px;
      }
      #scene-counter { display: none; }
    }

    @media (max-width: 768px) and (max-height: 760px) {
      .scene {
        padding-top: 40px;
        padding-bottom: 36px;
      }
      .scene-inner { gap: 12px; }
      .scene h1 { line-height: 1.02; font-size: clamp(28px, 7.2vw, 36px); }
      .scene h2 { font-size: clamp(22px, 6.2vw, 30px); }
      .hero-actions { margin-top: 12px; }
      .scene[data-scene="2"] .tag-list,
  .scene[data-scene="4"] .stats-grid {
        gap: 6px;
      }
    }
  
