    :root {
      --accent: #003049;
      --accent-2: #16506a;
      --accent-3: #447890;
      --accent-soft: #7ca5b8;
      --accent-dark: #001b29;
      --accent-dark-2: #002538;
      --accent-rgb: 0, 48, 73;
      --accent-rgb-2: 22, 80, 106;
      --accent-rgb-3: 68, 120, 144;
      --accent-soft-rgb: 124, 165, 184;
      --accent-dark-rgb: 0, 27, 41;
      --accent-dark-rgb-2: 0, 37, 56;
      --bg: #edf4ff;
      --bg-2: #f7fbff;
      --surface: #ffffff;
      --surface-2: #eef5ff;
      --surface-3: #dfeeff;
      --surface-4: #f6faff;
      --ink: #10203a;
      --ink-soft: #3f5168;
      --ink-muted: #596d86;
      --blue: var(--accent);
      --blue-2: var(--accent-2);
      --blue-3: var(--accent-dark);
      --blue-4: #eef5ff;
      --line: rgba(16, 32, 58, 0.08);
      --line-strong: rgba(var(--accent-rgb), 0.18);
      --radius-xl: 36px;
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-pill: 999px;
      --shadow-xl: 0 44px 110px rgba(var(--accent-rgb), 0.12);
      --shadow-lg: 0 28px 60px rgba(16, 32, 58, 0.1);
      --shadow-md: 0 16px 34px rgba(16, 32, 58, 0.08);
      --container: 1220px;
      --font-sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      width: 100%;
      scroll-behavior: smooth;
      background: var(--bg);
      overflow-x: clip;
    }

    body {
      position: relative;
      width: 100%;
      margin: 0;
      font-family: var(--font-sans);
      color: var(--ink);
      background:
        radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 0.1), transparent 22%),
        radial-gradient(circle at 100% 12%, rgba(var(--accent-rgb-2), 0.12), transparent 20%),
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.84), transparent 28%),
        linear-gradient(180deg, #edf4ff 0%, #f8fbff 48%, #edf5ff 100%);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    main {
      overflow-x: clip;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      z-index: -1;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(10px);
    }

    body::before {
      top: 82px;
      right: -120px;
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(var(--accent-rgb-2), 0.18), rgba(var(--accent-rgb-2), 0));
    }

    body::after {
      left: -140px;
      top: 420px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14), rgba(var(--accent-rgb), 0));
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

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

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

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

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 140;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border-radius: 16px;
      background: #fff;
      color: var(--accent);
      border: 1px solid rgba(var(--accent-rgb), 0.18);
      box-shadow: 0 14px 28px rgba(16, 32, 58, 0.12);
      transform: translateY(-140%);
      transition: transform 0.2s ease;
    }

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

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid rgba(var(--accent-rgb), 0.45);
      outline-offset: 3px;
    }

    .page-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      z-index: 120;
      background: rgba(255, 255, 255, 0.24);
      pointer-events: none;
    }

    .page-progress-bar {
      display: block;
      width: 0;
      height: 100%;
      border-radius: 0 999px 999px 0;
      background: linear-gradient(90deg, var(--accent-2), var(--accent));
      box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.38);
      transition: width 0.18s ease;
    }

    .topbar {
      display: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(16px);
    }

    .topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--ink-muted);
      font-size: 0.76rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .topbar-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
    }

    .topbar a {
      color: var(--blue);
      font-weight: 700;
    }

    .site-header {
      position: relative;
      top: auto;
      z-index: 30;
      padding-top: 18px;
    }

    .hero-nav-shell {
      position: absolute;
      top: 30px;
      left: 30px;
      right: 30px;
      z-index: 6;
      display: none;
    }

    .hero-nav-list {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      padding: 6px 10px;
      border-radius: 22px;
      border: 1px solid rgba(var(--accent-rgb), 0.06);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(246, 249, 255, 0.74));
      box-shadow: 0 14px 34px rgba(31, 55, 96, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .hero-nav-list .nav-link {
      min-height: 42px;
      height: 42px;
      padding: 0 16px;
      border: 0;
      border-radius: 16px;
      background: transparent;
      box-shadow: none;
      font-size: 0.88rem;
      overflow: hidden;
      white-space: nowrap;
    }

    .hero-nav-list .nav-link:hover,
    .hero-nav-list .nav-link:focus-visible {
      background: rgba(var(--accent-rgb), 0.08);
      box-shadow: none;
      transform: none;
    }

    .hero-nav-list .nav-link::after {
      display: none;
    }

    .header-shell {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
      min-height: 82px;
      padding: 0 22px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.88);
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(18px);
      box-shadow: 0 22px 48px rgba(16, 32, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
      box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .brand-mark img {
      width: 78%;
      height: 78%;
      object-fit: contain;
    }

    .brand-copy {
      display: grid;
      gap: 4px;
    }

    .brand-copy strong {
      color: var(--accent);
      font-size: 1.04rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }

    .brand-copy span {
      color: var(--ink-muted);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      gap: 0;
      flex-wrap: wrap;
      padding: 7px 12px;
      margin-top: 0;
      border-radius: 22px;
      border: 1px solid rgba(var(--accent-rgb), 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.78)),
        radial-gradient(circle at 50% -40%, rgba(var(--accent-rgb), 0.05), rgba(var(--accent-rgb), 0) 58%);
      box-shadow:
        0 18px 42px rgba(31, 55, 96, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        inset 0 -1px 0 rgba(16, 32, 58, 0.03);
    }

    .nav-link {
      position: relative;
      min-height: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 16px;
      border-radius: 16px;
      border: 0;
      color: var(--ink);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      background: transparent;
      overflow: hidden;
      white-space: nowrap;
      box-shadow: none;
      transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-link + .nav-link {
      margin-left: 6px;
    }

    .nav-link + .nav-link::before {
      content: "";
      position: absolute;
      left: -3px;
      top: 10px;
      bottom: 10px;
      width: 1px;
      background: linear-gradient(180deg, rgba(var(--accent-rgb), 0), rgba(var(--accent-rgb), 0.14), rgba(var(--accent-rgb), 0));
    }

    .nav-link svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: var(--blue);
      opacity: 0.84;
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--blue);
      background: rgba(var(--accent-rgb), 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    }

    .nav-link[aria-current="page"] {
      color: var(--blue);
      background: rgba(var(--accent-rgb), 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    }

    @media (min-width: 761px) {
      .header-actions .btn {
        position: relative;
        min-height: 56px;
        padding: 0 24px;
        border-color: rgba(var(--accent-rgb), 0.26);
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
          linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
        box-shadow:
          0 22px 42px rgba(var(--accent-rgb), 0.22),
          inset 0 1px 0 rgba(255, 255, 255, 0.34),
          inset 0 -1px 0 rgba(16, 32, 58, 0.14);
      }

      .header-actions .btn .btn-icon {
        opacity: 0.92;
      }

      .header-actions .btn::before {
        content: "";
        width: 1px;
        height: 18px;
        margin-right: 2px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
      }
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-meta {
      display: grid;
      gap: 2px;
      text-align: right;
    }

    .header-meta strong {
      font-size: 0.84rem;
      letter-spacing: -0.02em;
    }

    .header-meta span {
      color: var(--ink-muted);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .btn,
    .btn-secondary,
    .btn-light {
      appearance: none;
      -webkit-appearance: none;
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 20px;
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      font-weight: 700;
      letter-spacing: -0.01em;
      white-space: nowrap;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .btn:hover,
    .btn-secondary:hover,
    .btn-light:hover,
    .btn:focus-visible,
    .btn-secondary:focus-visible,
    .btn-light:focus-visible {
      transform: translateY(-1px);
    }

    .btn {
      color: #fff;
      background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
      border-color: rgba(var(--accent-rgb), 0.22);
      box-shadow: 0 20px 38px rgba(var(--accent-rgb), 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    .btn-secondary {
      color: var(--blue);
      background: rgba(255, 255, 255, 0.82);
      border-color: rgba(255, 255, 255, 0.28);
      box-shadow: 0 12px 26px rgba(16, 32, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .btn-light {
      color: var(--blue);
      background: #fff;
      border-color: rgba(var(--accent-rgb), 0.12);
      box-shadow: 0 14px 24px rgba(var(--accent-rgb), 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .btn-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .mobile-toggle,
    .mobile-panel,
    .mobile-sheet-backdrop {
      display: none;
    }

    .mobile-panel-top,
    .mobile-panel-handle {
      display: none;
    }

    .mobile-toggle {
      width: 52px;
      height: 52px;
      padding: 0;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      background: rgba(var(--accent-rgb), 0.06);
      color: var(--blue);
      cursor: pointer;
    }

    .mobile-toggle-line,
    .mobile-toggle-line::before,
    .mobile-toggle-line::after {
      display: block;
      width: 18px;
      height: 2px;
      margin: 0 auto;
      background: currentColor;
      content: "";
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-toggle-line::before {
      transform: translateY(-6px);
    }

    .mobile-toggle-line::after {
      transform: translateY(4px);
    }

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

    .hero {
      padding: 26px 0 0;
    }

    .hero-shell {
      position: relative;
      overflow: visible;
      padding: 0;
      isolation: isolate;
    }

    .hero-clip {
      position: relative;
      overflow: hidden;
      z-index: 1;
      border-radius: 44px;
      border: 1px solid rgba(255, 255, 255, 0.88);
      background:
        radial-gradient(circle at 0% 10%, rgba(18, 87, 223, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.98));
      box-shadow: 0 16px 28px rgba(18, 87, 223, 0.014), inset 0 1px 0 rgba(255, 255, 255, 0.74);
    }

    .hero-clip::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(18, 87, 223, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 87, 223, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58) 54%, rgba(0, 0, 0, 0.26));
      pointer-events: none;
    }

    .hero-clip::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -150px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(67, 126, 255, 0.14), rgba(67, 126, 255, 0));
      pointer-events: none;
    }

    .hero-track {
      position: relative;
      min-height: 760px;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .hero-copy {
      position: absolute;
      left: 36px;
      bottom: 36px;
      z-index: 4;
      width: min(620px, calc(100% - 180px));
      padding: 0;
    }

    .hero-topline {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
      color: #fff;
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .hero-topline::before {
      content: "";
      width: 31px;
      height: 2px;
      background: rgba(255, 255, 255, 0.62);
    }

    .hero-copy > div:first-child {
      position: relative;
      display: grid;
      padding: 34px;
      border-radius: 34px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(8, 27, 67, 0.24), rgba(8, 27, 67, 0.08));
      box-shadow: 0 14px 26px rgba(5, 17, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(3px);
    }

    .hero-copy > div:first-child::after {
      content: "";
      position: absolute;
      right: -42px;
      bottom: -30px;
      width: 160px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(115, 167, 255, 0.2), rgba(115, 167, 255, 0));
      pointer-events: none;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 12px;
      margin-top: 0;
      padding: 12px;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .hero-actions .btn,
    .hero-actions .btn-secondary {
      width: 100%;
      min-height: 58px;
      justify-content: center;
    }

    .hero-actions .hero-topline {
      grid-column: 1 / -1;
      width: 100%;
      margin: 0;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-proof-item {
      min-height: 66px;
      display: grid;
      align-content: center;
      gap: 4px;
      padding: 14px 16px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    .hero-proof-item strong {
      color: #fff;
      font-size: 0.96rem;
      letter-spacing: -0.03em;
    }

    .hero-proof-item span {
      color: rgba(232, 240, 255, 0.74);
      font-size: 0.78rem;
      line-height: 1.45;
    }

    .hero-visual {
      position: relative;
      z-index: 1;
      min-height: 100%;
      display: flex;
      align-items: stretch;
    }

    .hero-frame {
      position: relative;
      flex: 1 1 auto;
      overflow: hidden;
      border-radius: inherit;
    }

    .hero-label {
      display: none;
    }

    .hero-stage {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border-radius: inherit;
      background: #dce9ff;
    }

    .hero-picture {
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10, 31, 68, 0.08), rgba(10, 31, 68, 0.16) 34%, rgba(10, 31, 68, 0.7) 100%),
        linear-gradient(90deg, rgba(10, 31, 68, 0.42), rgba(10, 31, 68, 0.08) 52%, rgba(10, 31, 68, 0.12)),
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .hero-photo {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .hero-photo.photo-focus-left {
      object-position: 38% center;
    }

    .hero-photo.photo-focus-center {
      object-position: center center;
    }

    .hero-photo.photo-focus-right {
      object-position: 62% center;
    }

    .slider-rail {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(3px);
    }

    .slider-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.88rem;
    }

    .slider-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .slider-dot {
      width: 26px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.32);
      cursor: pointer;
      transition: background-color 0.2s ease, width 0.2s ease;
    }

    .slider-dot.is-active {
      background: #fff;
      width: 34px;
    }

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

    .slider-button {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 18px;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .slider-button:hover,
    .slider-button:focus-visible {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.24);
    }

    .section {
      position: relative;
      padding: 24px 0 34px;
      content-visibility: auto;
      contain-intrinsic-size: 1px 960px;
    }

    .section-services {
      padding: 13px 0 14px;
    }

    .section-services::before {
      display: none;
    }

    .section::before {
      content: "";
      position: absolute;
      inset: 6px 0 auto;
      height: 1px;
      background: linear-gradient(90deg, rgba(var(--accent-rgb), 0), rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0));
      pointer-events: none;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--blue);
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .section-kicker.section-kicker-heading {
      margin: 0;
      font-size: clamp(1.7rem, 3vw, 2.8rem);
      letter-spacing: -0.05em;
      text-transform: none;
      font-weight: 800;
      line-height: 0.98;
      gap: 16px;
    }

    .section-kicker__icon {
      width: 1.1em;
      height: 1.1em;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(var(--accent-rgb), 0.95);
      flex: 0 0 auto;
    }

    .section-kicker__icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .section-kicker::before {
      content: "";
      width: 52px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.9), rgba(var(--accent-rgb), 0.12));
    }

    .section-title {
      margin: 8px 0 0;
      font-size: clamp(1.95rem, 4vw, 3.6rem);
      line-height: 0.96;
      letter-spacing: -0.07em;
      text-wrap: balance;
    }

    .section-intro {
      margin: 0;
      max-width: 48rem;
      color: var(--ink-soft);
      line-height: 1.85;
      font-size: 0.98rem;
    }

    .section-link {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(var(--accent-rgb), 0.08);
      background: rgba(255, 255, 255, 0.6);
      color: var(--ink-muted);
      font-size: 0.84rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    }

    @media (min-width: 1181px) {
      body:not(.home-page) .site-header {
        display: block;
      }

      body:not(.home-page) .site-header {
        padding-top: 18px;
      }

      body:not(.home-page) .desktop-nav {
        display: flex;
        margin-top: 0;
        align-self: center;
      }

      body:not(.home-page) .header-actions {
        display: flex;
        align-self: center;
      }

      body:not(.home-page) .mobile-toggle,
      body:not(.home-page) .mobile-panel,
      body:not(.home-page) .mobile-sheet-backdrop {
        display: none;
      }

      body:not(.home-page) .header-shell {
        min-height: 82px;
        align-items: center;
      }

      body:not(.home-page) .brand {
        align-self: center;
      }

      body:not(.home-page) .brand-copy {
        gap: 4px;
      }

      body:not(.home-page) .desktop-nav .nav-link {
        min-height: 44px;
        height: 44px;
      }

      .header-shell {
        padding: 0 24px;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 249, 255, 0.78)),
          radial-gradient(circle at 12% -40%, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0) 34%);
        box-shadow: 0 26px 58px rgba(16, 32, 58, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.86);
      }

      .desktop-nav,
      .hero-nav-list {
        border-color: rgba(var(--accent-rgb), 0.1);
        box-shadow: 0 18px 46px rgba(31, 55, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
      }

      .nav-link {
        min-height: 44px;
        height: 44px;
        padding: 0 18px;
      }

      .service-card,
      .feature-card,
      .step-card,
      .testimonial-card,
      .testimonial-side,
      .cta-panel,
      .quick-form,
      .footer-callout {
        box-shadow: 0 24px 52px rgba(16, 32, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
      }

      .service-card:hover,
      .feature-card:hover,
      .step-card:hover {
        transform: translateY(-4px);
      }
    }

    .subpage-main {
      padding-top: 8px;
    }

    .subpage-hero {
      padding: 28px 0 12px;
    }

    .subpage-hero-shell {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-radius: 42px;
      border: 1px solid rgba(255, 255, 255, 0.88);
      background:
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.14), rgba(var(--accent-rgb-2), 0) 28%),
        linear-gradient(180deg, rgba(var(--accent-dark-rgb), 0.94), rgba(var(--accent-dark-rgb-2), 0.92));
      box-shadow: 0 38px 92px rgba(var(--accent-rgb), 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      isolation: isolate;
    }

    .subpage-hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.24));
      pointer-events: none;
      z-index: 0;
    }

    .subpage-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: 22px;
      align-items: end;
    }

    .subpage-hero-copy {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .subpage-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(232, 240, 255, 0.82);
      font-size: 0.74rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .subpage-title {
      margin: 0;
      color: #fff;
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      line-height: 0.94;
      letter-spacing: -0.07em;
      text-wrap: balance;
    }

    .subpage-intro {
      margin: 0;
      max-width: 44rem;
      color: rgba(232, 240, 255, 0.74);
      font-size: 1rem;
      line-height: 1.82;
    }

    .subpage-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .subpage-actions .btn,
    .subpage-actions .btn-secondary {
      min-width: 220px;
    }

    .subpage-actions .btn span {
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }

    .subpage-stat-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .subpage-stat {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(232, 240, 255, 0.84);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .subpage-hero-media {
      position: relative;
      min-height: 320px;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .subpage-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7, 21, 47, 0.06), rgba(7, 21, 47, 0.16) 46%, rgba(7, 21, 47, 0.44)),
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .subpage-hero-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .subpage-panel {
      display: grid;
      gap: 12px;
      padding: 24px;
      border-radius: 30px;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.84)),
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.08), transparent 36%);
      box-shadow: 0 22px 46px rgba(16, 32, 58, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .subpage-detail-stack {
      display: grid;
      gap: 30px;
    }

    .subpage-detail-panel {
      gap: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
      box-shadow: 0 14px 28px rgba(16, 32, 58, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .subpage-detail-panel .section-kicker {
      min-height: auto;
      width: fit-content;
      color: rgba(var(--accent-rgb), 0.86);
      border-color: transparent;
      background: transparent;
      box-shadow: none;
      padding: 0;
      font-size: 0.74rem;
      letter-spacing: 0.14em;
    }

    .subpage-detail-panel h2 {
      font-size: clamp(1.72rem, 2.5vw, 2.3rem);
      line-height: 1.06;
    }

    .region-detail-panel h2 {
      font-size: clamp(1.38rem, 2vw, 1.72rem);
      line-height: 1.12;
    }

    .region-detail-panel .section-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
    }

    .subpage-panel h2,
    .subpage-panel h3 {
      margin: 0;
      color: var(--ink);
      letter-spacing: -0.04em;
    }

    .subpage-panel p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.76;
    }

    .subpage-richtext {
      display: grid;
      gap: 16px;
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.8;
    }

    .subpage-richtext p {
      margin: 0;
    }

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

    .subpage-list li {
      display: grid;
      gap: 4px;
      padding: 14px 16px;
      border-radius: 20px;
      border: 1px solid rgba(var(--accent-rgb), 0.08);
      background: rgba(255, 255, 255, 0.64);
    }

    .subpage-list strong {
      color: var(--ink);
      font-size: 0.98rem;
      letter-spacing: -0.03em;
    }

    .subpage-list span {
      color: var(--ink-soft);
      font-size: 0.88rem;
      line-height: 1.62;
    }

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

    .subpage-faq-grid,
    .subpage-contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
      gap: 12px;
    }

    .contact-quick-grid {
      display: grid;
      gap: 12px;
    }

    .contact-quick-link {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 60px;
      padding: 0 18px;
      border-radius: 20px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(255, 255, 255, 0.82);
      color: var(--ink);
      font-weight: 700;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .contact-quick-link svg {
      width: 20px;
      height: 20px;
      color: var(--blue);
      flex-shrink: 0;
    }

    .contact-map-panel {
      align-content: start;
    }

    .contact-map-frame {
      min-height: 420px;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(255,255,255,0.74);
    }

    .contact-map-frame iframe {
      width: 100%;
      min-height: 420px;
      border: 0;
      display: block;
    }

    .contact-map-placeholder {
      min-height: 420px;
      display: grid;
      place-items: center;
      padding: 28px;
      border-radius: 24px;
      border: 1px dashed rgba(var(--accent-rgb), 0.2);
      background: rgba(255,255,255,0.7);
      color: var(--ink-soft);
      text-align: center;
      line-height: 1.7;
    }

    @media (max-width: 1180px) {
      .subpage-hero-grid,
      .subpage-faq-grid,
      .subpage-contact-grid {
        grid-template-columns: 1fr;
      }

      .subpage-hero-media {
        min-height: 280px;
      }

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

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

    .trust-card {
      position: relative;
      overflow: hidden;
      min-height: 132px;
      padding: 24px;
      border-radius: 30px;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.78)),
        linear-gradient(135deg, rgba(var(--accent-rgb), 0.03), rgba(255, 255, 255, 0));
      box-shadow: 0 20px 40px rgba(16, 32, 58, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .trust-card strong {
      display: block;
      color: var(--blue);
      font-size: 1.8rem;
      letter-spacing: -0.05em;
    }

    .trust-card span {
      display: block;
      margin-top: 8px;
      color: var(--ink-soft);
      font-size: 0.9rem;
      line-height: 1.6;
    }

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

    .service-card {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 280px;
      padding: 26px;
      border-radius: 34px;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 255, 0.9)),
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.028), transparent 42%);
      box-shadow: 0 14px 26px rgba(16, 32, 58, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .service-grid .service-card {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.92)),
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.018), transparent 46%);
      box-shadow: 0 10px 18px rgba(16, 32, 58, 0.022), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .service-chip {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: var(--radius-pill);
      color: var(--blue);
      border: 1px solid rgba(var(--accent-rgb), 0.08);
      background: rgba(var(--accent-rgb), 0.06);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .service-card h3 {
      margin: 22px 0 12px;
      font-size: 1.24rem;
      letter-spacing: -0.04em;
    }

    .card-title-link {
      color: inherit;
      text-decoration: none;
    }

    .card-title-link:hover,
    .card-title-link:focus-visible {
      color: inherit;
      text-decoration: none;
    }

    .service-card p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.8;
      font-size: 0.92rem;
    }

    .service-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(var(--accent-rgb), 0.08);
    }

    .service-card-meta {
      color: var(--ink-muted);
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .service-card-link {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(var(--accent-rgb), 0.06);
      color: var(--blue);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

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

    .feature-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 420px;
      padding: 14px;
      border-radius: 34px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.88)),
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.08), transparent 34%);
      box-shadow: 0 24px 46px rgba(16, 32, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .feature-media {
      position: relative;
      min-height: 220px;
      border-radius: 24px;
      overflow: hidden;
      background: #dce7f7;
      box-shadow: 0 20px 40px rgba(16, 32, 58, 0.12);
    }

    .feature-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10, 31, 68, 0.02), rgba(10, 31, 68, 0.12) 58%, rgba(10, 31, 68, 0.42)),
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .feature-card:hover .feature-media img {
      transform: scale(1.04);
    }

    .feature-media.photo-left img {
      object-position: 34% center;
    }

    .feature-media.photo-center img {
      object-position: center center;
    }

    .feature-media.photo-right img {
      object-position: 66% center;
    }

    .feature-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 1;
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(8, 27, 67, 0.38);
      backdrop-filter: blur(14px);
      color: #fff;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .feature-body {
      display: grid;
      align-content: start;
      gap: 12px;
      padding: 22px 18px 16px;
    }

    .feature-card h3 {
      margin: 0;
      font-size: 1.22rem;
      letter-spacing: -0.04em;
    }

    .feature-card p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.78;
      font-size: 0.95rem;
    }

    .feature-meta {
      display: flex;
      align-items: center;
      justify-content: stretch;
      gap: 0;
      margin-top: 8px;
      padding-top: 16px;
      border-top: 1px solid rgba(var(--accent-rgb), 0.08);
    }

    .feature-meta-action {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      gap: 0;
      justify-content: center;
      width: 100%;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(var(--accent-rgb), 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
      color: var(--blue);
    }

    .feature-meta-action strong {
      color: var(--blue);
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      font-weight: 700;
    }

    .feature-meta-action svg {
      display: none;
    }

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

    .step-card {
      position: relative;
      overflow: hidden;
      min-height: 228px;
      display: grid;
      align-content: start;
      padding: 24px;
      border-radius: 32px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 255, 0.82));
      box-shadow: 0 20px 40px rgba(16, 32, 58, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .step-index {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
      font-weight: 700;
      font-size: 0.84rem;
      letter-spacing: 0.08em;
    }

    .step-card h3 {
      margin: 0 0 12px;
      font-size: 1.06rem;
      letter-spacing: -0.04em;
    }

    .step-card p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.68;
      font-size: 0.88rem;
    }

    .step-card-footer {
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid rgba(var(--accent-rgb), 0.08);
    }

    .step-card-link {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(var(--accent-rgb), 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
      color: var(--blue);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .steps-more {
      display: flex;
      justify-content: center;
      margin-top: 14px;
    }

    .steps-more-button {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      width: 100%;
      max-width: 260px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(var(--accent-rgb), 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
      color: var(--blue);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
    }

    .district-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .district-pill {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      padding: 0 12px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(var(--accent-rgb), 0.06);
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .testimonial-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 12px;
    }

    .testimonial-card,
    .testimonial-side {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 34px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.84));
      box-shadow: 0 22px 42px rgba(16, 32, 58, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .testimonial-side {
      border-color: rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.22), transparent 30%),
        linear-gradient(180deg, rgba(var(--accent-dark-rgb-2), 0.98), rgba(var(--accent-dark-rgb), 0.96));
      box-shadow: 0 24px 46px rgba(8, 23, 56, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .testimonial-card {
      display: grid;
      grid-template-rows: minmax(0, 1fr) auto;
      gap: 20px;
      min-height: 328px;
    }

    .testimonial-slide {
      display: none;
    }

    .testimonial-slide.is-active {
      display: block;
    }

    .testimonial-top {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
    }

    .testimonial-avatar {
      width: 74px;
      height: 74px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
      color: #fff;
      font-size: 1.08rem;
      font-weight: 700;
    }

    .testimonial-name {
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .testimonial-role {
      margin-top: 6px;
      color: var(--ink-muted);
      font-size: 0.9rem;
    }

    .testimonial-score {
      margin-top: 8px;
      color: var(--blue);
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .testimonial-card p,
    .testimonial-side p,
    .testimonial-side span {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.9;
      font-size: 0.95rem;
    }

    .testimonial-side p,
    .testimonial-side span {
      color: rgba(232, 240, 255, 0.76);
    }

    .testimonial-side h3 {
      margin: 12px 0 0;
      color: #fff;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .testimonial-side-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(240, 246, 255, 0.92);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .testimonial-rail {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid rgba(var(--accent-rgb), 0.08);
    }

    .testimonial-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .testimonial-dot {
      width: 24px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(var(--accent-rgb), 0.18);
      cursor: pointer;
      transition: width 0.2s ease, background-color 0.2s ease;
    }

    .testimonial-dot.is-active {
      width: 34px;
      background: var(--accent);
    }

    .testimonial-controls {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .testimonial-control {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 16px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(var(--accent-rgb), 0.06);
      color: var(--blue);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .testimonial-control:hover,
    .testimonial-control:focus-visible {
      transform: translateY(-1px);
      background: rgba(var(--accent-rgb), 0.1);
    }

    .rating-stars {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
    }

    .rating-star {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.34);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      cursor: pointer;
      transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .rating-star svg {
      width: 22px;
      height: 22px;
    }

    .rating-star.is-active {
      color: #fff;
      border-color: rgba(var(--accent-rgb-2), 0.42);
      background: linear-gradient(180deg, rgba(var(--accent-rgb-2), 0.92), rgba(var(--accent-rgb), 0.96));
    }

    .rating-star:hover,
    .rating-star:focus-visible {
      transform: translateY(-1px);
      color: rgba(255, 255, 255, 0.88);
    }

    .rating-stars.is-locked .rating-star {
      cursor: default;
    }

    .rating-stars.is-locked .rating-star:hover,
    .rating-stars.is-locked .rating-star:focus-visible {
      transform: none;
    }

    .rating-note {
      margin-top: 14px;
      color: rgba(232, 240, 255, 0.72);
      font-size: 0.88rem;
      line-height: 1.7;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      pointer-events: none;
    }

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

    .rating-panel {
      display: grid;
      align-content: start;
    }

    .rating-panel-intro {
      max-width: 32ch;
    }

    .rating-summary {
      display: grid;
      gap: 8px;
      margin-top: 14px;
    }

    .rating-average {
      display: none;
      color: rgba(255, 255, 255, 0.84);
      font-size: 0.88rem;
      line-height: 1.7;
      letter-spacing: 0.01em;
    }

    .rating-average strong {
      color: #fff;
      font-size: 1rem;
    }

    .rating-average.is-visible {
      display: block;
    }

    .rating-panel-full {
      gap: 0;
    }

    .rating-feedback {
      display: none;
      align-items: center;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 247, 0.96));
      border: 1px solid rgba(30, 153, 93, 0.16);
      color: #236846;
      font-size: 0.86rem;
      font-weight: 700;
      line-height: 1.5;
      box-shadow:
        0 10px 24px rgba(19, 71, 52, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .rating-feedback.is-visible {
      display: inline-flex;
    }

    .subpage-panel .rating-panel {
      min-height: 100%;
      gap: 6px;
    }

    .subpage-panel .rating-panel .rating-panel-kicker {
      color: rgba(var(--accent-rgb), 0.72);
      border-color: rgba(var(--accent-rgb), 0.06);
      background: rgba(var(--accent-rgb), 0.018);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .subpage-panel .rating-panel-title {
      margin: 8px 0 0;
      color: var(--ink);
      font-size: clamp(1.46rem, 2.45vw, 1.88rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
    }

    .subpage-panel .rating-panel-intro {
      color: var(--ink-soft);
      max-width: 48ch;
      font-size: 0.98rem;
    }

    .subpage-panel .rating-stars {
      margin-top: 12px;
    }

    .subpage-panel .rating-star {
      border-color: rgba(var(--accent-rgb), 0.12);
      background: rgba(var(--accent-rgb), 0.045);
      color: rgba(var(--accent-rgb), 0.22);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .subpage-panel .rating-star svg {
      transition: transform 0.18s ease;
    }

    .subpage-panel .rating-star.is-active {
      color: #fff;
      border-color: rgba(var(--accent-rgb), 0.26);
      background: linear-gradient(180deg, rgba(var(--accent-rgb-2), 0.86), rgba(var(--accent-rgb), 0.92));
    }

    .subpage-panel .rating-star.is-average {
      color: rgba(var(--accent-rgb), 0.92);
      border-color: rgba(var(--accent-rgb), 0.16);
      background: rgba(var(--accent-rgb), 0.08);
    }

    .subpage-panel .rating-star:hover,
    .subpage-panel .rating-star:focus-visible {
      color: rgba(var(--accent-rgb), 0.92);
      border-color: rgba(var(--accent-rgb), 0.24);
      background: rgba(var(--accent-rgb), 0.1);
    }

    .subpage-panel .rating-star:hover svg,
    .subpage-panel .rating-star:focus-visible svg {
      transform: scale(1.08) translateY(-1px);
      animation: ratingStarLift 0.26s ease;
    }

    .subpage-panel .rating-star.is-active:hover,
    .subpage-panel .rating-star.is-active:focus-visible {
      color: #fff;
      background: linear-gradient(180deg, rgba(var(--accent-rgb-2), 0.94), rgba(var(--accent-rgb), 0.98));
    }

    @keyframes ratingStarLift {
      0% {
        transform: scale(0.96) translateY(1px);
      }
      100% {
        transform: scale(1.08) translateY(-1px);
      }
    }

    .subpage-panel .rating-note,
    .subpage-panel .rating-average {
      color: var(--ink-soft);
    }

    .subpage-panel .rating-average strong {
      color: var(--blue);
    }

    .subpage-panel .rating-feedback {
      color: #236846;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 247, 0.96));
      border-color: rgba(34, 170, 103, 0.16);
    }

    .rating-detail-panel {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.04), transparent 34%);
    }

    .cta-band {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 12px;
      align-items: stretch;
    }

    .cta-band.is-single {
      grid-template-columns: minmax(0, 1fr);
    }

    .cta-panel,
    .quick-form {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 36px;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.86));
      box-shadow: 0 24px 46px rgba(16, 32, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .cta-panel {
      border-color: rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.2), transparent 30%),
        linear-gradient(180deg, rgba(var(--accent-dark-rgb), 0.98), rgba(var(--accent-dark-rgb-2), 0.96));
      box-shadow: 0 28px 52px rgba(8, 23, 56, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .cta-panel h3,
    .quick-form h3 {
      margin: 0 0 10px;
      font-size: 1.32rem;
      letter-spacing: -0.04em;
    }

    .cta-panel-kicker,
    .quick-form-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      margin-bottom: 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(232, 240, 255, 0.82);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .quick-form-kicker {
      border-color: rgba(var(--accent-rgb), 0.08);
      background: rgba(var(--accent-rgb), 0.05);
      color: var(--blue);
    }

    .cta-panel h3 {
      color: #fff;
    }

    .cta-panel p,
    .quick-form p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.76;
      font-size: 0.94rem;
    }

    .cta-panel p {
      color: rgba(232, 240, 255, 0.76);
    }

    .gallery-panel h3,
    .gallery-side h3 {
      text-wrap: balance;
    }

    .gallery-panel {
      position: relative;
    }

    .gallery-panel-badge {
      position: absolute;
      top: 20px;
      right: 8px;
      width: min(240px, 24vw);
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border: 0;
      border-radius: 0;
      background: none;
      box-shadow: none;
      pointer-events: none;
    }

    .gallery-panel-badge img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: right top;
      opacity: 0.18;
      filter: saturate(0.9) contrast(1.02);
      mix-blend-mode: screen;
    }

    .gallery-panel p,
    .gallery-side p {
      max-width: 42rem;
    }

    .gallery-about-actions {
      display: flex;
      justify-content: center;
      margin-top: 16px;
    }

    .gallery-about-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 14px;
      width: 100%;
      max-width: 260px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      color: rgba(232, 240, 255, 0.88);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-decoration: none;
      text-transform: uppercase;
      transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .gallery-about-link:hover,
    .gallery-about-link:focus-visible {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.18);
      color: #fff;
      transform: translateY(-1px);
    }

    .gallery-panel .cta-panel-kicker,
    .gallery-panel h3,
    .gallery-panel p {
      max-width: calc(100% - 164px);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .gallery-tile,
    .gallery-side-media,
    .gallery-side-thumb {
      position: relative;
      overflow: hidden;
      display: block;
      width: 100%;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
      cursor: pointer;
      isolation: isolate;
    }

    .gallery-tile {
      aspect-ratio: 1 / 1;
    }

    .gallery-side {
      display: grid;
      align-content: start;
      gap: 16px;
    }

    .faq-stack {
      display: grid;
      gap: 12px;
      margin-top: 4px;
    }

    .faq-item {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: rgba(255, 255, 255, 0.7);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .faq-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 66px;
      padding: 0 18px;
      color: var(--ink);
      font-size: 0.94rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      cursor: pointer;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(var(--accent-rgb), 0.08);
      color: var(--blue);
      font-size: 1rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-answer {
      padding: 0 18px 18px;
      color: var(--ink-soft);
      font-size: 0.92rem;
      line-height: 1.72;
    }

    .gallery-side-media {
      aspect-ratio: 1.05 / 1;
      margin-top: 6px;
    }

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

    .gallery-side-thumb {
      aspect-ratio: 1 / 1;
    }

    .gallery-tile img,
    .gallery-side-media img,
    .gallery-side-thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .gallery-tile:hover img,
    .gallery-tile:focus-visible img,
    .gallery-side-media:hover img,
    .gallery-side-media:focus-visible img,
    .gallery-side-thumb:hover img,
    .gallery-side-thumb:focus-visible img {
      transform: scale(1.05);
    }

    .gallery-tile::after,
    .gallery-side-media::after,
    .gallery-side-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7, 21, 47, 0.02), rgba(7, 21, 47, 0.18) 60%, rgba(7, 21, 47, 0.58)),
        radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
      z-index: 0;
      pointer-events: none;
    }

    .gallery-tile-caption,
    .gallery-side-caption {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      background: rgba(7, 21, 47, 0.38);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      color: #fff;
      font-size: 0.76rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .gallery-grid .gallery-tile-caption {
      justify-content: center;
    }

    .gallery-side-caption {
      min-height: 46px;
    }

    .gallery-tile-caption strong,
    .gallery-side-caption strong {
      color: #fff;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 110;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(4, 12, 26, 0.72);
      backdrop-filter: blur(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .gallery-lightbox[hidden] {
      display: none;
    }

    body.gallery-open {
      overflow: hidden;
    }

    body.gallery-open .gallery-lightbox {
      opacity: 1;
      pointer-events: auto;
    }

    .gallery-lightbox-dialog {
      position: relative;
      width: min(980px, 100%);
      padding: 18px;
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.18), transparent 28%),
        linear-gradient(180deg, rgba(var(--accent-dark-rgb), 0.98), rgba(var(--accent-dark-rgb-2), 0.98));
      box-shadow: 0 28px 68px rgba(4, 14, 32, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .gallery-lightbox-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      cursor: pointer;
    }

    .gallery-lightbox-figure {
      margin: 0;
      overflow: hidden;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.06);
    }

    .gallery-lightbox-figure img {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .gallery-lightbox-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 16px;
    }

    .gallery-lightbox-copy strong {
      display: block;
      color: #fff;
      font-size: 1rem;
      letter-spacing: -0.03em;
    }

    .gallery-lightbox-copy span {
      display: block;
      margin-top: 6px;
      color: rgba(232, 240, 255, 0.7);
      font-size: 0.9rem;
    }

    .gallery-lightbox-copy[hidden] {
      display: none;
    }

    .gallery-lightbox-copy[hidden] + .gallery-lightbox-actions {
      margin-left: auto;
    }

    .gallery-lightbox-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .gallery-lightbox-nav {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      cursor: pointer;
    }

    .attached-gallery-panel {
      margin-top: 30px;
    }

    .detail-gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .detail-gallery-tile {
      position: relative;
      overflow: hidden;
      display: block;
      width: 100%;
      padding: 0;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: 0 16px 32px rgba(11, 31, 60, 0.08);
      cursor: pointer;
    }

    .detail-gallery-tile img {
      width: 100%;
      height: 100%;
      display: block;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      transition: transform 220ms ease, filter 220ms ease;
    }

    .detail-gallery-tile:hover img,
    .detail-gallery-tile:focus-visible img {
      transform: scale(1.03);
      filter: saturate(1.02);
    }

    .cta-buttons {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 22px;
    }

    .cta-micro-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 20px;
    }

    .cta-micro-card {
      min-height: 88px;
      display: grid;
      align-content: center;
      gap: 6px;
      padding: 16px 18px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .cta-micro-card strong {
      color: #fff;
      font-size: 1.28rem;
      letter-spacing: -0.05em;
    }

    .cta-micro-card span {
      color: rgba(232, 240, 255, 0.72);
      font-size: 0.82rem;
      line-height: 1.45;
    }

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

    .input,
    .textarea {
      width: 100%;
      border: 1px solid rgba(var(--accent-rgb), 0.12);
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
      color: var(--ink);
      padding: 0 14px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    }

    .input {
      height: 50px;
    }

    .textarea {
      min-height: 120px;
      padding-top: 14px;
      resize: vertical;
    }

    .form-note {
      margin-top: 12px;
      color: var(--ink-muted);
      font-size: 0.84rem;
      line-height: 1.7;
    }

    .footer {
      position: relative;
      padding: 0 0 18px;
      margin-top: 40px;
      background: transparent;
      content-visibility: auto;
      contain-intrinsic-size: 1px 760px;
    }

    .footer-callout {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) auto;
      align-items: center;
      gap: 20px;
      padding: 28px 30px 26px;
      grid-column: 1 / -1;
      margin: 0 0 22px;
      border-radius: 34px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 18% 0%, rgba(var(--accent-rgb-2), 0.16), rgba(var(--accent-rgb-2), 0)),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .footer-callout::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: auto, 54px 54px, 54px 54px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18));
      pointer-events: none;
    }

    .footer-callout-copy h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(1.85rem, 3.5vw, 3.15rem);
      line-height: 1;
      letter-spacing: -0.05em;
      text-wrap: balance;
    }

    .footer-callout-copy p {
      margin: 12px 0 0;
      color: rgba(225, 236, 255, 0.78);
      font-size: 0.94rem;
      line-height: 1.6;
    }

    .footer-callout-actions {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 82px;
      gap: 12px;
      align-items: center;
      min-width: min(500px, 100%);
    }

    .footer-callout-phone,
    .footer-callout-wa {
      min-height: 74px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 22px;
      box-shadow: 0 14px 24px rgba(10, 34, 22, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .footer-callout-phone {
      gap: 14px;
      padding: 0 22px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.96);
      color: var(--blue);
      font-size: 0.96rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .footer-callout-wa {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(236, 244, 255, 0.96);
      backdrop-filter: blur(10px);
    }

    .footer-callout-phone svg,
    .footer-callout-wa svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .footer-shell {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      gap: 24px;
      padding: 28px 34px 34px;
      margin-top: 0;
      border-radius: 38px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb-2), 0.18), transparent 26%),
        linear-gradient(180deg, rgba(var(--accent-dark-rgb), 0.96), rgba(var(--accent-dark-rgb-2), 0.96));
      box-shadow: 0 28px 60px rgba(8, 23, 56, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .footer-shell::after {
      content: "";
      position: absolute;
      right: -6px;
      bottom: -6px;
      width: min(460px, 46vw);
      aspect-ratio: 1 / 1;
      background:
        linear-gradient(180deg, rgba(var(--accent-dark-rgb), 0.02), rgba(var(--accent-dark-rgb), 0.14)),
        url("../images/footer2.png") right bottom / contain no-repeat;
      opacity: 0.4;
      filter: saturate(1) contrast(1.08);
      pointer-events: none;
      z-index: 0;
    }

    .footer-shell > * {
      position: relative;
      z-index: 1;
    }

    .footer-brand {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .footer-brand .brand-copy strong {
      color: #fff;
    }

    .footer-brand .brand-copy span {
      color: rgba(232, 240, 255, 0.64);
    }

    .footer-brand .brand-mark {
      box-shadow: none;
    }

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

    .contact-pill {
      min-height: 46px;
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(232, 240, 255, 0.84);
      font-size: 0.9rem;
    }

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

    .footer-links > div {
      min-width: 0;
    }

    .footer-links h3 {
      margin: 0 0 14px;
      color: #fff;
      font-size: 0.92rem;
      letter-spacing: -0.02em;
    }

    .footer-links a,
    .footer-links p {
      display: block;
      margin: 0 0 10px;
      color: rgba(232, 240, 255, 0.72);
      line-height: 1.54;
      font-size: 0.88rem;
    }

    .footer-signature {
      display: flex;
      justify-content: center;
      margin-top: 18px;
    }

    .footer-signature-chip {
      position: relative;
      overflow: hidden;
      min-height: 58px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 0 26px 0 20px;
      border-radius: 26px;
      border: 1px solid rgba(16, 32, 58, 0.06);
      background:
        radial-gradient(circle at 10% 50%, rgba(var(--accent-rgb), 0.05), rgba(var(--accent-rgb), 0) 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 250, 254, 0.96));
      box-shadow:
        0 14px 34px rgba(8, 23, 56, 0.08),
        0 2px 8px rgba(var(--accent-rgb), 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
      color: #111;
    }

    .signature-chip-logo {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .signature-chip-logo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .footer-signature-chip::after {
      content: "";
      width: 1px;
      height: 18px;
      align-self: center;
      background: linear-gradient(180deg, rgba(16, 32, 58, 0), rgba(16, 32, 58, 0.14), rgba(16, 32, 58, 0));
    }

    .footer-signature-chip em {
      color: rgba(17, 17, 17, 0.46);
      font-style: normal;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .footer-signature-chip a {
      color: #111;
      font-size: 1.02rem;
      font-weight: 800;
      letter-spacing: -0.035em;
      transition: color 0.2s ease, opacity 0.2s ease, text-shadow 0.2s ease;
    }

    .footer-signature-chip a:hover,
    .footer-signature-chip a:focus-visible {
      color: rgba(17, 17, 17, 0.78);
      text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.12);
    }

    .trust-card::before,
    .service-card::before,
    .feature-card::before,
    .step-card::before,
    .testimonial-card::before,
    .testimonial-side::before,
    .cta-panel::before,
    .quick-form::before,
    .footer-shell::before {
      content: "";
      position: absolute;
      top: -56px;
      right: -18px;
      width: 170px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(var(--accent-rgb-2), 0.12), rgba(var(--accent-rgb-2), 0));
      pointer-events: none;
    }

    .service-grid .service-card::before {
      top: -34px;
      right: -10px;
      width: 118px;
      height: 88px;
      background: radial-gradient(circle, rgba(var(--accent-rgb-2), 0.032), rgba(var(--accent-rgb-2), 0));
    }

    .mobile-panel,
    .mobile-link,
    .mobile-toggle {
      border-radius: 24px;
    }

    .trust-card,
    .service-card,
    .feature-card,
    .step-card,
    .testimonial-card,
    .testimonial-side,
    .cta-panel,
    .quick-form,
    .footer-shell,
    .section-link,
    .contact-pill,
    .input,
    .textarea {
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
    }

    .trust-card:hover,
    .service-card:hover,
    .feature-card:hover,
    .step-card:hover,
    .testimonial-card:hover,
    .testimonial-side:hover,
    .cta-panel:hover,
    .quick-form:hover {
      transform: translateY(-3px);
      box-shadow: 0 28px 54px rgba(16, 32, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
      border-color: rgba(var(--accent-rgb), 0.16);
    }

    .section-link:hover,
    .section-link:focus-visible,
    .contact-pill:hover,
    .contact-pill:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(var(--accent-rgb), 0.18);
    }

    .input:focus,
    .textarea:focus {
      outline: none;
      border-color: rgba(var(--accent-rgb), 0.26);
      box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
    }

    .floating-call {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 40;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 20px;
      background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
      color: #fff;
      box-shadow: 0 20px 38px rgba(var(--accent-rgb), 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    .mobile-bottom-bar {
      display: none;
    }

    .theme-dock {
      position: fixed;
      right: 16px;
      bottom: 88px;
      z-index: 70;
      display: grid;
      justify-items: end;
      gap: 12px;
    }

    .theme-toggle {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 20px;
      border: 1px solid rgba(var(--accent-rgb), 0.14);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.94));
      color: var(--blue);
      box-shadow: 0 20px 42px rgba(16, 32, 58, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.88);
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .theme-toggle:hover,
    .theme-toggle:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(var(--accent-rgb), 0.24);
      box-shadow: 0 24px 48px rgba(16, 32, 58, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .theme-panel {
      width: 256px;
      padding: 16px;
      border-radius: 24px;
      border: 1px solid rgba(var(--accent-rgb), 0.1);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 255, 0.95));
      backdrop-filter: none;
      box-shadow: 0 18px 34px rgba(16, 32, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(8px) translateY(4px) scale(0.985);
      transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.2s ease;
    }

    body.theme-palette-open .theme-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(0) scale(1);
    }

    .theme-panel-head {
      display: grid;
      gap: 3px;
      margin-bottom: 12px;
    }

    .theme-panel-kicker {
      color: var(--blue);
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .theme-panel-title {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .theme-panel-note {
      color: var(--ink-muted);
      font-size: 0.78rem;
      line-height: 1.48;
    }

    .theme-swatches {
      display: grid;
      gap: 8px;
      margin-top: 12px;
    }

    .theme-swatch {
      width: 100%;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      padding: 11px;
      border-radius: 18px;
      border: 1px solid rgba(var(--accent-rgb), 0.08);
      background: rgba(248, 250, 255, 0.88);
      color: var(--ink);
      text-align: left;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .theme-swatch:hover,
    .theme-swatch:focus-visible,
    .theme-swatch.is-active {
      transform: translateY(-1px);
      border-color: rgba(var(--accent-rgb), 0.14);
      background: rgba(255, 255, 255, 0.96);
    }

    .theme-swatch-mark {
      width: 30px;
      height: 30px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.54);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
    }

    .theme-swatch-copy {
      display: grid;
      gap: 2px;
    }

    .theme-swatch-copy strong {
      font-size: 0.9rem;
      letter-spacing: -0.02em;
    }

    .theme-swatch-copy span,
    .theme-swatch-code {
      color: var(--ink-muted);
      font-size: 0.76rem;
    }

    @media (min-width: 1181px) {
      .home-page .topbar,
      .home-page .site-header {
        display: none;
      }

      .home-page .hero-nav-shell {
        display: block;
      }

      .home-page .hero-nav-shell .header-shell {
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 26px 54px rgba(16, 32, 58, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      }
    }

    @media (max-width: 1180px) {
      .topbar {
        display: none;
      }

      .site-header {
        position: fixed;
        top: 12px;
        left: 16px;
        right: 16px;
        z-index: 90;
        padding-top: 0;
        isolation: isolate;
      }

      .site-header .header-shell {
        position: relative;
        width: 100%;
        margin: 0;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 78px;
        padding: 0 12px 0 14px;
        z-index: 93;
        border-radius: 28px;
        background: #ffffff;
        backdrop-filter: none;
        box-shadow: 0 18px 40px rgba(16, 32, 58, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
      }

      .desktop-nav,
      .header-actions {
        display: none;
      }

      .mobile-toggle,
      .mobile-panel,
      .mobile-sheet-backdrop {
        display: block;
      }

      .brand {
        min-width: 0;
        width: 100%;
        gap: 12px;
        overflow: hidden;
      }

      .brand-copy {
        min-width: 0;
        overflow: hidden;
      }

      .brand-copy strong,
      .brand-copy span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        flex-shrink: 0;
      }

      .brand-copy strong {
        font-size: 0.96rem;
      }

      .brand-copy span {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
      }

      .mobile-toggle {
        position: relative;
        justify-self: end;
        z-index: 94;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        border-radius: 18px;
        border-color: rgba(var(--accent-rgb), 0.12);
        background: linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(236, 243, 252, 0.88));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
      }

      body.mobile-menu-open .mobile-toggle-line {
        transform: rotate(45deg);
      }

      body.mobile-menu-open .mobile-toggle-line::before {
        transform: translateY(0);
        opacity: 0;
      }

      body.mobile-menu-open .mobile-toggle-line::after {
        transform: translateY(-2px) rotate(-90deg);
      }

      .mobile-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        max-height: calc(100dvh - 118px);
        overflow: auto;
        padding: 16px;
        z-index: 92;
        border: 1px solid rgba(var(--accent-rgb), 0.12);
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.92)),
          radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0));
        box-shadow: 0 28px 54px rgba(16, 32, 58, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        border-radius: 32px;
        backdrop-filter: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(46px) scale(0.985);
        transform-origin: center bottom;
        transition: opacity 0.26s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.26s ease;
      }

      .mobile-panel[hidden],
      .mobile-sheet-backdrop[hidden] {
        display: none;
      }

      body.mobile-menu-open .mobile-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
      }

      .mobile-sheet-backdrop {
        position: fixed;
        inset: 0;
        z-index: 91;
        border: 0;
        padding: 0;
        background: linear-gradient(180deg, rgba(10, 20, 40, 0.04), rgba(10, 20, 40, 0.14));
        backdrop-filter: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
      }

      body.mobile-menu-open .mobile-sheet-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .floating-call {
        z-index: 24;
      }

      .theme-dock {
        right: 14px;
        bottom: 86px;
      }

      .theme-panel {
        width: 230px;
      }

      body.mobile-menu-open .floating-call {
        opacity: 0;
        pointer-events: none;
      }

      .mobile-panel-top {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
        padding-top: 2px;
        touch-action: none;
        user-select: none;
        cursor: grab;
      }

      .mobile-panel-handle {
        width: 68px;
        height: 6px;
        display: block;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.12));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
        touch-action: none;
      }

      body.mobile-menu-dragging .mobile-panel-top {
        cursor: grabbing;
      }

      .mobile-panel nav {
        display: grid;
        gap: 10px;
        margin-top: 0;
      }

      .mobile-link {
        min-height: 62px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 18px;
        border: 1px solid rgba(var(--accent-rgb), 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.84));
        border-radius: 24px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
      }

      .mobile-link[aria-current="page"] {
        background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
        border-color: rgba(var(--accent-rgb), 0.14);
      }

      .mobile-link-main {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }

      .mobile-link-icon {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 14px;
        border: 1px solid rgba(var(--accent-rgb), 0.08);
        background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.04));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
      }

      .mobile-link-main svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--blue);
      }

      .mobile-link-main > span:last-child {
        min-width: 0;
      }

      /* Legacy inner-page mobile nav markup compatibility */
      .mobile-link > .mobile-link-icon {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 14px;
        border: 1px solid rgba(var(--accent-rgb), 0.08);
        background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.04));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
      }

      .mobile-link > .mobile-link-icon svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--blue);
      }

      .mobile-link > .mobile-link-text {
        min-width: 0;
      }

      .mobile-cta {
        display: grid;
        gap: 12px;
        margin-top: 14px;
      }

      .mobile-cta .btn,
      .mobile-cta .btn-light {
        min-height: 60px;
        justify-content: center;
        border-radius: 24px;
      }

      .mobile-cta .btn {
        position: relative;
        overflow: hidden;
        animation: mobile-call-pulse 2.8s ease-in-out infinite;
      }

      .mobile-cta .btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(255,255,255,0) 18%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 82%);
        transform: translateX(-130%);
        animation: mobile-call-shine 3.2s ease-in-out infinite;
        pointer-events: none;
      }

      .mobile-note {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(var(--accent-rgb), 0.1);
        display: flex;
        justify-content: center;
      }

      .subpage-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 62px;
        align-items: stretch;
        gap: 10px;
      }

      .subpage-actions > * {
        min-width: 0;
      }

      .subpage-actions .btn,
      .subpage-actions .btn-secondary {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        padding: 0 12px;
        justify-content: center;
      }

      .subpage-actions .btn {
        gap: 10px;
        justify-content: center;
      }

      .subpage-actions .btn span {
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.92rem;
        letter-spacing: -0.01em;
      }

      .subpage-actions .btn-secondary {
        padding: 0;
        min-width: 58px;
      }

      .subpage-actions .btn-secondary span {
        display: none;
      }

      .mobile-signature-chip {
        min-height: 34px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0 12px 0 10px;
        border-radius: 14px;
        border: 1px solid rgba(var(--accent-rgb), 0.08);
        background: rgba(255, 255, 255, 0.68);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
      }

      .mobile-signature-chip .signature-chip-logo {
        width: 16px;
        height: 16px;
      }

      .mobile-signature-chip em {
        color: var(--ink-muted);
        font-style: normal;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .mobile-signature-chip a {
        color: var(--ink);
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .hero-shell {
        padding: 0;
      }

      .hero-track {
        min-height: 760px;
      }

      .hero-slide {
        display: block;
      }

      .hero-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
        width: auto;
      }

      .hero-visual {
        min-height: 100%;
      }

      .trust-band,
      .service-grid,
      .steps-grid,
      .testimonial-shell,
      .cta-band,
      .footer-shell {
        grid-template-columns: 1fr;
      }

      .footer-callout {
        grid-template-columns: 1fr;
      }

      .footer-callout-actions {
        min-width: 0;
      }

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

    @media (min-width: 761px) and (max-width: 1180px) {
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-track {
        min-height: 820px;
      }

      .hero-copy {
        top: 148px;
        bottom: auto;
        right: auto;
        width: min(860px, calc(100% - 44px));
      }

      .hero-copy > div:first-child {
        padding: 26px;
        border-radius: 30px;
      }

      .hero-topline {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
      }

      .hero-actions {
        gap: 10px;
        padding: 10px;
      }

      .hero-actions .btn,
      .hero-actions .btn-secondary {
        min-height: 54px;
      }

      .hero-proof {
        gap: 10px;
      }

      .hero-proof-item {
        min-height: 74px;
        padding: 14px 15px;
      }

      .hero-proof-item strong {
        font-size: 0.92rem;
      }

      .hero-proof-item span {
        font-size: 0.76rem;
      }

      .slider-rail {
        left: 50%;
        right: auto;
        bottom: 22px;
        width: min(344px, calc(100% - 44px));
        transform: translateX(-50%);
        justify-content: center;
      }
    }

    @media (max-width: 760px) {
      body::before,
      body::after {
        display: none;
      }

      body {
        padding-bottom: 84px;
      }

      .subpage-main {
        padding-top: 0;
      }

      .subpage-hero {
        padding: 20px 0 10px;
      }

      .subpage-hero-shell {
        padding: 22px 18px;
        border-radius: 30px;
      }

      body:not(.home-page) .subpage-hero-copy {
        padding-top: 80px;
      }

      .subpage-title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
      }

      .subpage-intro {
        font-size: 0.94rem;
      }

      .subpage-hero-media {
        min-height: 220px;
        border-radius: 24px;
      }

      .subpage-panel {
        padding: 18px;
        border-radius: 24px;
      }

      .subpage-detail-stack {
        gap: 30px;
      }

      .subpage-region-grid {
        grid-template-columns: 1fr;
      }

      .container {
        width: calc(100% - 10px);
      }

      .topbar-inner,
      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-signature-chip {
        min-height: 40px;
        gap: 10px;
        padding: 0 15px;
        border-radius: 18px;
      }

      .site-header {
        top: 12px;
        left: 5px;
        right: 5px;
        overflow: visible;
      }

      .hero-shell {
        margin-top: -18px;
      }

      .site-header .header-shell {
        min-height: 72px;
        padding: 0 10px 0 11px;
        gap: 10px;
        border-radius: 24px;
        backdrop-filter: none;
      }

      .brand {
        gap: 10px;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
      }

      .brand-copy strong {
        font-size: 0.94rem;
      }

      .brand-copy span {
        font-size: 0.64rem;
        letter-spacing: 0.14em;
      }

      .mobile-toggle {
        width: 44px;
        height: 44px;
        border-radius: 15px;
      }

      .mobile-panel {
        position: fixed;
        top: auto;
        left: 5px;
        right: 5px;
        bottom: 0;
        max-height: min(calc(100dvh - 88px), 720px);
        padding: 16px 10px calc(12px + env(safe-area-inset-bottom));
        border-radius: 30px 30px 0 0;
        border-bottom: 0;
        box-shadow: 0 -24px 56px rgba(16, 32, 58, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transform: translateY(56px) scale(0.985);
        z-index: 92;
      }

      body.mobile-menu-open .mobile-panel {
        transform: translateY(0) scale(1);
      }

      .hero-clip {
        padding-top: 18px;
        border-radius: 32px;
      }

      .hero-clip::before,
      .hero-copy > div:first-child::after {
        display: none;
      }

      .hero-proof {
        display: none;
      }

      .hero-copy > div:first-child,
      .slider-rail,
      .mobile-bottom-call,
      .mobile-bottom-whatsapp {
        backdrop-filter: none;
      }

      .theme-dock {
        display: none;
      }

      .theme-toggle {
        width: 52px;
        height: 52px;
        border-radius: 18px;
      }

      .theme-panel {
        width: min(220px, calc(100vw - 10px));
        padding: 14px;
        border-radius: 24px;
      }

      .floating-call {
        display: none;
      }

      .mobile-bottom-bar {
        position: fixed;
        left: 5px;
        right: 5px;
        bottom: 12px;
        z-index: 85;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 56px;
        gap: 10px;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
        transition: opacity 0.22s ease, transform 0.22s ease;
      }

      body.mobile-bottom-visible .mobile-bottom-bar {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .hero-clip,
      .service-card,
      .feature-card,
      .footer-shell,
      .footer-callout,
      .mobile-panel {
        max-width: 100%;
      }

      .mobile-bottom-call,
      .mobile-bottom-whatsapp {
        min-height: 54px;
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border-radius: 18px;
        border: 1px solid rgba(var(--accent-rgb), 0.12);
        box-shadow: 0 16px 32px rgba(16, 32, 58, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.74);
      }

      .mobile-bottom-call {
        gap: 10px;
        background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
        color: #fff;
        font-size: 0.98rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        animation: mobile-call-pulse 2.8s ease-in-out infinite;
      }

      .mobile-bottom-call::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(255,255,255,0) 18%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 82%);
        transform: translateX(-130%);
        animation: mobile-call-shine 3.2s ease-in-out infinite;
        pointer-events: none;
      }

      .mobile-bottom-whatsapp {
        background: linear-gradient(180deg, #29d56f 0%, #14b85c 100%);
        border-color: rgba(20, 184, 92, 0.2);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .mobile-bottom-call span {
        white-space: nowrap;
      }

      @keyframes mobile-call-pulse {
        0%, 100% {
          box-shadow: 0 16px 32px rgba(16, 32, 58, 0.14), 0 0 0 0 rgba(var(--accent-rgb), 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.74);
        }
        50% {
          box-shadow: 0 18px 36px rgba(16, 32, 58, 0.18), 0 0 0 6px rgba(var(--accent-rgb), 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.74);
        }
      }

      @keyframes mobile-call-shine {
        0%, 18% {
          transform: translateX(-130%);
        }
        42%, 100% {
          transform: translateX(130%);
        }
      }

      body.mobile-menu-open .mobile-bottom-bar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
      }

      .theme-swatch {
        padding: 10px;
        gap: 10px;
      }

      .theme-swatch-mark {
        width: 30px;
        height: 30px;
        border-radius: 12px;
      }

      .hero-track {
        min-height: 688px;
      }

      .hero-copy {
        left: 8px;
        right: 8px;
        top: 104px;
        bottom: auto;
      }

      .hero-copy > div:first-child {
        padding: 18px;
        border-radius: 24px;
      }

      .hero-copy > div:first-child::after {
        display: none;
      }

      .hero-topline {
        min-height: 40px;
        gap: 13px;
        padding: 0 16px;
        margin: 0 0 10px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
      }

      .hero-topline::before {
        width: 25px;
      }

      .hero-copy h1 {
        max-width: 7ch;
        font-size: clamp(1.88rem, 8.1vw, 3rem);
        line-height: 0.96;
      }

      .hero-actions,
      .cta-buttons,
      .feature-grid,
      .footer-links {
        grid-template-columns: 1fr;
      }

      .footer {
        margin-top: 28px;
      }

      .footer-callout {
        padding: 18px 18px 16px;
        margin: 0 0 18px;
        border-radius: 28px;
      }

      .footer-shell {
        padding: 18px 22px 18px;
        margin-top: 0;
      }

      .footer-callout-copy h2 {
        font-size: clamp(1.5rem, 7vw, 2.15rem);
      }

      .footer-callout-copy p {
        margin-top: 10px;
        font-size: 0.86rem;
      }

      .footer-callout-actions {
        grid-template-columns: minmax(0, 1fr) 62px;
        gap: 10px;
      }

      .footer-callout-phone,
      .footer-callout-wa {
        min-height: 56px;
        border-radius: 18px;
      }

      .footer-callout-phone {
        gap: 10px;
        padding: 0 16px;
        font-size: 0.86rem;
      }

      .footer-callout-phone svg,
      .footer-callout-wa svg {
        width: 22px;
        height: 22px;
      }

      .footer-signature {
        margin-top: 6px;
      }

      .hero-actions,
      .cta-buttons {
        display: grid;
      }

      .hero-copy {
        inset: auto 5px 96px;
        top: auto;
      }

      .hero-actions {
        margin-top: 0;
        gap: 10px;
        padding: 12px 10px 10px;
        border-radius: 22px;
      }

      .hero-actions .hero-topline {
        grid-column: 1 / -1;
        width: 100%;
      }

      .hero-actions .btn,
      .hero-actions .btn-secondary {
        width: 100%;
        min-height: 50px;
      }

      .hero-proof {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 14px;
        padding-top: 14px;
      }

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

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

      .step-card {
        min-height: 184px;
        padding: 16px;
        border-radius: 24px;
      }

      .step-card-footer {
        padding-top: 14px;
      }

      .step-card-link {
        width: 100%;
      }

      .hero-label {
        top: 14px;
        left: 5px;
        min-height: 38px;
        padding: 0 16px;
        font-size: 0.68rem;
      }

      .hero-stage {
        inset: 0;
      }

      .slider-meta,
      .slider-actions {
        width: auto;
        align-items: center;
      }

      .slider-rail {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 12px;
        width: min(270px, calc(100% - 10px));
        max-width: none;
        transform: translateX(-50%);
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 9px 12px;
        border-radius: 24px;
      }

      .slider-actions {
        display: flex;
        grid-template-columns: none;
      }

      .slider-meta span {
        display: inline;
        font-size: 0.82rem;
      }

      .slider-button {
        width: 40px;
        height: 40px;
        border-radius: 16px;
      }

      .slider-dot {
        width: 22px;
        height: 7px;
      }

      .slider-dot.is-active {
        width: 32px;
      }

      .testimonial-card,
      .testimonial-side {
        padding: 24px 22px;
      }

      .gallery-panel-badge {
        display: none;
      }

      .gallery-panel .cta-panel-kicker,
      .gallery-panel h3,
      .gallery-panel p {
        max-width: 100%;
      }

      .gallery-grid,
      .gallery-side-stack {
        gap: 10px;
      }

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

      .gallery-panel-badge {
        top: 22px;
        right: 22px;
        width: 132px;
      }

      .gallery-panel .cta-panel-kicker,
      .gallery-panel h3,
      .gallery-panel p {
        max-width: 100%;
      }

      .gallery-lightbox {
        padding: 16px;
      }

      .gallery-lightbox-dialog {
        padding: 14px;
        border-radius: 24px;
      }

      .gallery-lightbox-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      .testimonial-rail {
        gap: 10px;
        padding-top: 14px;
      }

      .rating-stars {
        flex-wrap: wrap;
        gap: 8px;
      }

      .rating-summary {
        gap: 6px;
      }

      .rating-star {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .subpage-panel .rating-panel-title {
        font-size: 1.54rem;
      }

      .subpage-panel .rating-panel-intro {
        max-width: 100%;
      }

      .service-card-footer {
        display: grid;
        justify-content: stretch;
      }

      .service-card-link {
        width: 100%;
        justify-content: center;
      }

      .feature-meta-action {
        width: 100%;
        justify-content: center;
      }

      .cta-micro-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }
