﻿:root {
      --ink: #070b12;
      --ink-soft: #0e1621;
      --charcoal: #111a26;
      --body: #526178;
      --muted: #7f8da3;
      --line: rgba(14, 22, 33, 0.14);
      --line-dark: rgba(120, 160, 190, 0.25);
      --paper: #f5f7fb;
      --cream: #edf2f7;
      --white: #f8fafc;
      --teal: #36bdf2;
      --teal-dark: #1d4f8f;
      --amber: #36bdf2;
      --amber-soft: #d7f2ff;
      --green: #5d7898;
      --steel: #5d7898;
      --ice: #d7f2ff;
      --shadow: 0 22px 60px rgba(7, 11, 18, 0.18);
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-width: 320px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
      letter-spacing: 0;
      overflow-x: hidden;
    }

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

    img,
    iframe,
    video {
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 12px;
      z-index: 999;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--ink);
      color: var(--white);
    }

    .skip-link:focus {
      left: 12px;
    }

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

    .section {
      padding-block: 72px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(126, 206, 231, 0.16);
      background: rgba(9, 12, 15, 0.9);
      color: var(--white);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
    }

    .nav-wrap {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
    }

    .nav-wrap > nav {
      display: contents;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      gap: 12px;
      padding: 5px 10px 5px 8px;
      border: 1px solid rgba(126, 206, 231, 0.2);
      border-radius: 7px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(54, 189, 242, 0.06));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.18);
      overflow: visible;
    }

    .brand-logo {
      display: block;
      width: auto;
      height: 52px;
      object-fit: contain;
      background: transparent;
      transform: scale(1.65);
    }

    .brand-support {
      display: none;
      max-width: 132px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.68rem;
      font-weight: 800;
      line-height: 1.12;
      text-transform: uppercase;
    }

    .nav-links {
      display: none;
      position: absolute;
      left: 16px;
      right: 16px;
      top: 82px;
      padding: 12px;
      list-style: none;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(16, 18, 20, 0.98);
      box-shadow: var(--shadow);
    }

    .nav-links.open {
      display: grid;
      gap: 4px;
    }

    .nav-links a {
      display: block;
      padding: 11px 12px;
      border-radius: 6px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 0.94rem;
      font-weight: 760;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--white);
      background: rgba(54, 189, 242, 0.12);
      outline: none;
    }

    .nav-cta {
      display: none;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 14px;
      border-radius: 8px;
      background: linear-gradient(135deg, #1d4f8f, #36bdf2);
      color: #f8fafc;
      font-weight: 850;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      background: linear-gradient(135deg, #245fa8, #7edcf7);
      outline: none;
    }

    .menu-toggle {
      margin-left: auto;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
      cursor: pointer;
      display: grid;
      place-items: center;
      gap: 4px;
    }

    .menu-toggle span {
      width: 18px;
      height: 2px;
      display: block;
      background: currentColor;
    }

    .hero {
      position: relative;
      background:
        radial-gradient(circle at 76% 18%, rgba(54, 189, 242, 0.28), transparent 31%),
        radial-gradient(circle at 22% 78%, rgba(93, 120, 152, 0.18), transparent 26%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #070b12 0%, #0e1621 45%, #111a26 100%);
      background-size: auto, auto, 56px 56px, 56px 56px, auto;
      color: var(--white);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 78%, rgba(54, 189, 242, 0.08)),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 32%);
      opacity: 0.8;
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 45%;
      background: linear-gradient(180deg, rgba(16, 18, 20, 0), rgba(5, 7, 9, 0.88));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 34px;
      padding-block: 64px 56px;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      padding: 7px 10px;
      border: 1px solid rgba(126, 206, 231, 0.28);
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(6, 16, 20, 0.72);
      font-size: 0.78rem;
      font-weight: 850;
      text-transform: uppercase;
      box-shadow: 0 12px 32px rgba(54, 189, 242, 0.08);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      display: inline-block;
      border-radius: 50%;
      background: var(--teal);
    }

    h1,
    h2,
    h3 {
      line-height: 1.05;
      letter-spacing: 0;
      overflow-wrap: break-word;
    }

    h1 {
      max-width: 880px;
      font-size: 2.6rem;
      font-weight: 900;
      text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    }

    h1 span {
      display: block;
    }

    h2 {
      font-size: 2.12rem;
      font-weight: 900;
    }

    h3 {
      font-size: 1.15rem;
      font-weight: 850;
    }

    .hero-lede {
      max-width: 34ch;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.03rem;
    }

    .hero-brand-line {
      max-width: 34ch;
      margin-top: 12px;
      color: rgba(170, 232, 244, 0.82);
      font-size: 0.92rem;
      font-weight: 760;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 17px;
      border: 1px solid transparent;
      border-radius: 8px;
      font-weight: 850;
      line-height: 1.1;
      cursor: pointer;
      transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-1px);
      outline: none;
    }

    .button-primary {
      background: linear-gradient(135deg, #1d4f8f, #36bdf2);
      color: #f8fafc;
      box-shadow: 0 18px 42px rgba(54, 189, 242, 0.24);
    }

    .button-primary:hover,
    .button-primary:focus-visible {
      background: linear-gradient(135deg, #245fa8, #7edcf7);
    }

    .button-secondary {
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
    }

    .button-secondary:hover,
    .button-secondary:focus-visible {
      border-color: rgba(255, 255, 255, 0.44);
      background: rgba(255, 255, 255, 0.14);
    }

    .button-light {
      border-color: var(--line);
      background: var(--white);
      color: var(--ink);
    }

    .button-light:hover,
    .button-light:focus-visible {
      border-color: rgba(54, 189, 242, 0.48);
      color: var(--teal-dark);
    }

    .positioning-line {
      max-width: 34ch;
      margin-top: 26px;
      padding: 16px 17px;
      border: 1px solid rgba(126, 206, 231, 0.2);
      border-left: 3px solid var(--teal);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.065);
      color: rgba(255, 255, 255, 0.84);
      font-weight: 760;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    }

    .hero-preview {
      position: relative;
      isolation: isolate;
      border: 1px solid rgba(126, 206, 231, 0.3);
      border-radius: 12px;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(4, 8, 12, 0.58)),
        rgba(7, 11, 18, 0.74);
      box-shadow: 0 44px 96px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.045);
      backdrop-filter: blur(14px);
    }

    .hero-preview::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: 2;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(54, 189, 242, 0.16));
      pointer-events: none;
    }

    .preview-topbar {
      position: relative;
      z-index: 1;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(126, 206, 231, 0.18);
      color: rgba(255, 255, 255, 0.82);
      background:
        linear-gradient(90deg, rgba(54, 189, 242, 0.1), transparent 58%),
        rgba(6, 10, 14, 0.78);
      font-size: 0.82rem;
      font-weight: 780;
    }

    .preview-topbar strong,
    .preview-topbar span {
      display: block;
    }

    .tour-label {
      width: fit-content;
      margin-bottom: 7px;
      padding: 4px 7px;
      border: 1px solid rgba(54, 189, 242, 0.34);
      border-radius: 6px;
      background: rgba(54, 189, 242, 0.12);
      color: var(--amber-soft);
      font-size: 0.68rem;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
    }

    .preview-topbar > div span {
      margin-top: 3px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.76rem;
      font-weight: 720;
    }

    .tour-embed-frame {
      position: relative;
      z-index: 1;
      padding: 8px;
      background:
        linear-gradient(135deg, rgba(54, 189, 242, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(5, 9, 14, 0.56);
    }

    #YUgtahgSc,
    #Lj3AkRcCm,
    #bfmdzXVCv,
    [id="8M7zTKyk-"] {
      width: 100%;
      height: clamp(280px, 70vw, 500px);
      overflow: hidden;
      border: 1px solid rgba(126, 206, 231, 0.24);
      border-radius: 8px;
      background: #070b12;
      box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    }

    #YUgtahgSc iframe,
    #Lj3AkRcCm iframe,
    #bfmdzXVCv iframe,
    [id="8M7zTKyk-"] iframe {
      display: block;
      width: 100% !important;
      height: 100% !important;
      border: 0;
    }

    .tour-open-actions {
      position: relative;
      z-index: 3;
      display: grid;
      gap: 8px;
      padding: 14px 16px 16px;
      border-top: 1px solid rgba(126, 206, 231, 0.16);
      background: rgba(6, 10, 14, 0.72);
    }

    .tour-open-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 48px;
      padding: 12px 16px;
      border: 1px solid rgba(54, 189, 242, 0.48);
      border-radius: 8px;
      background: rgba(54, 189, 242, 0.11);
      color: var(--white);
      font-weight: 850;
      line-height: 1.1;
      text-align: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    .tour-open-button:hover,
    .tour-open-button:focus-visible {
      border-color: rgba(126, 220, 247, 0.72);
      background: rgba(54, 189, 242, 0.18);
      outline: none;
      transform: translateY(-1px);
    }

    .tour-open-actions p {
      color: rgba(255, 255, 255, 0.66);
      font-size: 0.82rem;
      font-weight: 720;
      text-align: center;
    }

    .intro-band {
      padding-block: 22px;
      background: linear-gradient(180deg, #0b1014, #12181c);
      border-bottom: 1px solid rgba(126, 206, 231, 0.12);
    }

    .intro-grid {
      display: grid;
      gap: 14px;
    }

    .intro-item {
      display: grid;
      gap: 4px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .intro-item:last-child {
      border-bottom: 0;
    }

    .intro-item strong {
      font-size: 0.82rem;
      color: rgba(119, 224, 242, 0.9);
      text-transform: uppercase;
    }

    .intro-item span {
      color: rgba(255, 255, 255, 0.84);
      font-weight: 720;
    }

    .section-heading {
      max-width: 790px;
      margin-bottom: 30px;
    }

    .kicker {
      margin-bottom: 10px;
      color: var(--teal-dark);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .section-heading p,
    .lead {
      margin-top: 14px;
      color: var(--body);
      font-size: 1.04rem;
    }

    .dark-section {
      background: var(--ink);
      color: var(--white);
    }

    .dark-section .kicker {
      color: var(--amber-soft);
    }

    .dark-section .section-heading p,
    .dark-section .lead {
      color: rgba(255, 255, 255, 0.76);
    }

    .dark-section .card,
    .dark-section .service-card,
    .dark-section .feature-panel {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
    }

    .dark-section .card p,
    .dark-section .service-card p,
    .dark-section .feature-panel p,
    .dark-section .feature-list li {
      color: rgba(255, 255, 255, 0.72);
    }

    .three-grid,
    .process-grid,
    .service-grid,
    .pricing-grid {
      display: grid;
      gap: 16px;
    }

    .card,
    .process-card,
    .service-card,
    .price-card,
    .feature-panel,
    .about-panel,
    .contact-form {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 14px 42px rgba(16, 18, 20, 0.07);
    }

    .card,
    .process-card,
    .service-card,
    .feature-panel,
    .about-panel {
      padding: 22px;
    }

    .card-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 32px;
      margin-bottom: 18px;
      border-radius: 8px;
      background: rgba(54, 189, 242, 0.1);
      color: var(--teal-dark);
      font-size: 0.78rem;
      font-weight: 900;
    }

    .card p,
    .process-card p,
    .service-card p,
    .feature-panel p,
    .about-panel p,
    .price-card p {
      margin-top: 10px;
      color: var(--body);
    }

    .how-it-works {
      background:
        linear-gradient(180deg, #f7fbff 0%, var(--paper) 100%);
    }

    .process-card {
      position: relative;
      overflow: hidden;
      min-height: 100%;
    }

    .process-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg, var(--teal), var(--steel));
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin-bottom: 16px;
      border-radius: 999px;
      background: rgba(54, 189, 242, 0.12);
      color: var(--teal-dark);
      font-weight: 900;
    }

    .feature-layout {
      display: grid;
      gap: 24px;
      align-items: start;
    }

    .feature-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
      list-style: none;
    }

    .feature-list li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      color: var(--charcoal);
      font-weight: 700;
    }

    .feature-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--teal);
    }

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

    .benefit-card {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 15px;
      border: 1px solid rgba(126, 206, 231, 0.22);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(54, 189, 242, 0.08), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    }

    .benefit-icon,
    .space-symbol {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(54, 189, 242, 0.42);
      border-radius: 8px;
      background: rgba(54, 189, 242, 0.12);
      color: var(--amber-soft);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0;
    }

    .benefit-card h4 {
      color: var(--white);
      font-size: 1rem;
    }

    .benefit-card p {
      grid-column: 2;
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.92rem;
    }

    .showcase {
      background:
        linear-gradient(90deg, rgba(16, 18, 20, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
      background-size: 46px 46px, auto;
    }

    .showcase-grid {
      display: grid;
      gap: 24px;
      align-items: start;
    }

    .showcase-list {
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .showcase-list li {
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.76);
      color: var(--charcoal);
      font-weight: 720;
    }

    .boundary-note {
      margin-top: 22px;
      padding: 18px;
      border-left: 4px solid var(--teal);
      border-radius: 8px;
      background: #eef8ff;
      color: var(--charcoal);
      font-weight: 720;
    }

    .service-card {
      display: grid;
      align-content: start;
      min-height: 100%;
      border-top: 4px solid var(--teal);
    }

    .service-card:nth-child(2n) {
      border-top-color: var(--steel);
    }

    .service-card:nth-child(3n) {
      border-top-color: var(--green);
    }

    .best-fit {
      background:
        linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
    }

    .space-grid {
      display: grid;
      gap: 12px;
    }

    .space-card {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 76px;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 12px 32px rgba(16, 18, 20, 0.055);
    }

    .space-symbol {
      flex: 0 0 auto;
      background: rgba(29, 79, 143, 0.08);
      color: var(--teal-dark);
    }

    .space-card h3 {
      color: var(--charcoal);
      font-size: 1rem;
    }

    .pricing {
      background: var(--cream);
    }

    .price-card {
      display: grid;
      align-content: start;
      padding: 22px;
    }

    .price-card.featured {
      border-color: rgba(54, 189, 242, 0.42);
      box-shadow: 0 22px 56px rgba(54, 189, 242, 0.12);
    }

    .badge {
      width: fit-content;
      margin-bottom: 14px;
      padding: 6px 9px;
      border-radius: 6px;
      background: rgba(54, 189, 242, 0.1);
      color: var(--teal-dark);
      font-size: 0.76rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .price {
      margin-top: 18px;
      color: var(--ink);
      font-size: 1.9rem;
      line-height: 1;
      font-weight: 900;
    }

    .price span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 760;
    }

    .pricing-note {
      margin-top: 22px;
      padding: 18px;
      border: 1px solid rgba(54, 189, 242, 0.35);
      border-radius: 8px;
      background: #eef8ff;
      color: var(--charcoal);
      font-weight: 720;
    }

    .included-panel {
      display: grid;
      gap: 18px;
      margin-top: 22px;
      padding: 22px;
      border: 1px solid rgba(29, 79, 143, 0.18);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 255, 0.8)),
        var(--white);
      box-shadow: 0 18px 48px rgba(16, 18, 20, 0.07);
    }

    .included-panel h3 {
      color: var(--ink);
      font-size: 1.25rem;
    }

    .included-list {
      display: grid;
      gap: 11px;
      list-style: none;
    }

    .included-list li {
      position: relative;
      padding-left: 28px;
      color: var(--charcoal);
      font-weight: 760;
    }

    .included-list li::before {
      content: "";
      position: absolute;
      top: 0.28em;
      left: 2px;
      width: 11px;
      height: 6px;
      border-left: 2px solid var(--teal-dark);
      border-bottom: 2px solid var(--teal-dark);
      transform: rotate(-45deg);
    }

    .privacy-note {
      margin-top: 14px;
      padding: 16px 18px;
      border: 1px solid rgba(54, 189, 242, 0.24);
      border-left: 4px solid var(--teal);
      border-radius: 8px;
      background: rgba(238, 248, 255, 0.76);
      color: var(--charcoal);
      font-weight: 720;
    }

    .pricing-factors {
      margin-top: 22px;
      padding: 22px;
      border: 1px solid rgba(54, 189, 242, 0.3);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(54, 189, 242, 0.12), rgba(255, 255, 255, 0.74)),
        var(--white);
      box-shadow: 0 18px 48px rgba(16, 18, 20, 0.07);
    }

    .pricing-factors h3 {
      color: var(--ink);
      font-size: 1.25rem;
    }

    .pricing-factors h4 {
      margin-top: 22px;
      color: var(--ink);
      font-size: 1.05rem;
    }

    .pricing-factors p {
      max-width: 920px;
      margin-top: 10px;
      color: var(--body);
      font-weight: 680;
    }

    .pricing-factor-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
      list-style: none;
    }

    .pricing-factor-list li {
      position: relative;
      padding-left: 22px;
      color: var(--charcoal);
      font-weight: 740;
    }

    .pricing-factor-list li::before {
      content: "";
      position: absolute;
      top: 0.68em;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--teal);
      box-shadow: 0 0 0 4px rgba(54, 189, 242, 0.12);
    }

    .about {
      background: var(--paper);
    }

    .about-grid {
      display: grid;
      gap: 24px;
      align-items: start;
    }

    .about-panel {
      display: grid;
      gap: 14px;
    }

    .about-list {
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .about-list li {
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      color: var(--charcoal);
      font-weight: 720;
    }

    .about-list li:last-child {
      border-bottom: 0;
    }

    .special-project {
      display: grid;
      gap: 22px;
      margin-bottom: 28px;
      padding: 20px;
      border: 1px solid rgba(126, 206, 231, 0.26);
      border-radius: 12px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(4, 8, 12, 0.5)),
        rgba(7, 11, 18, 0.72);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
    }

    .special-project-copy h2 {
      color: var(--white);
    }

    .special-project-copy p {
      margin-top: 12px;
      color: rgba(255, 255, 255, 0.76);
    }

    .proof-strip {
      display: grid;
      gap: 14px;
      margin-bottom: 32px;
      padding: 20px;
      border: 1px solid rgba(126, 206, 231, 0.24);
      border-radius: 12px;
      background:
        linear-gradient(135deg, rgba(54, 189, 242, 0.12), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    }

    .proof-strip h2 {
      color: var(--white);
      font-size: clamp(1.75rem, 4vw, 2.55rem);
    }

    .proof-strip p:last-child {
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.02rem;
      font-weight: 680;
    }

    .tour-proof-badge {
      display: inline-flex;
      width: fit-content;
      padding: 8px 10px;
      border: 1px solid rgba(54, 189, 242, 0.34);
      border-radius: 8px;
      background: rgba(54, 189, 242, 0.12);
      color: var(--amber-soft) !important;
      font-size: 0.86rem;
      font-weight: 900;
    }

    .special-project-support {
      padding: 14px 16px;
      border: 1px solid rgba(126, 206, 231, 0.2);
      border-left: 3px solid var(--teal);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.055);
      font-weight: 740;
    }

    .special-tour-card {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border: 1px solid rgba(126, 206, 231, 0.3);
      border-radius: 12px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(4, 8, 12, 0.58)),
        rgba(7, 11, 18, 0.74);
      box-shadow: 0 36px 82px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.045);
      backdrop-filter: blur(14px);
    }

    .special-tour-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: 2;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(54, 189, 242, 0.16));
      pointer-events: none;
    }

    .cta-section {
      background: var(--ink);
      color: var(--white);
    }

    .cta-box {
      display: grid;
      gap: 18px;
      align-items: center;
    }

    .cta-box p {
      max-width: 760px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.05rem;
    }

    .contact {
      background: var(--paper);
    }

    .contact-grid {
      display: grid;
      gap: 28px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 26px;
      list-style: none;
    }

    .contact-list li {
      display: grid;
      gap: 4px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .contact-list strong {
      color: var(--teal-dark);
      font-size: 0.78rem;
      text-transform: uppercase;
    }

    .contact-list a {
      color: var(--ink);
      font-weight: 800;
    }

    .contact-list span {
      color: var(--body);
    }

    .contact-form {
      padding: 20px;
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    label {
      color: var(--charcoal);
      font-size: 0.9rem;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(16, 18, 20, 0.2);
      border-radius: 8px;
      background: #ffffff;
      color: var(--ink);
    }

    input,
    select {
      min-height: 46px;
      padding: 10px 12px;
    }

    textarea {
      min-height: 132px;
      resize: vertical;
      padding: 12px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--teal);
      outline: 3px solid rgba(54, 189, 242, 0.18);
    }

    .checkbox-field {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 10px;
      align-items: start;
      padding: 4px 0;
    }

    .checkbox-field input {
      width: 18px;
      height: 18px;
      min-height: 0;
      margin-top: 3px;
      accent-color: var(--teal-dark);
    }

    .submit-button {
      width: 100%;
      margin-top: 18px;
      border: 0;
    }

    .form-status {
      margin-top: 14px;
      padding: 13px 14px;
      border: 1px solid rgba(54, 189, 242, 0.34);
      border-radius: 8px;
      background: rgba(54, 189, 242, 0.1);
      color: var(--charcoal);
      font-weight: 760;
    }

    .form-status.is-error {
      border-color: rgba(190, 50, 50, 0.36);
      background: rgba(190, 50, 50, 0.08);
    }

    .site-footer {
      padding-block: 34px;
      border-top: 1px solid var(--line);
      background: var(--ink);
      color: rgba(255, 255, 255, 0.76);
    }

    .footer-grid {
      display: grid;
      gap: 22px;
    }

    .footer-logo {
      width: 112px;
      height: auto;
      display: block;
      border-radius: 0;
      background: transparent;
    }

    .footer-grid p {
      max-width: 610px;
      margin-top: 12px;
    }

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

    .footer-links a {
      padding: 8px 10px;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.84);
      font-weight: 760;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
      outline: none;
    }

    @media (min-width: 620px) {
      h1 {
        font-size: 2.75rem;
      }

      .hero-lede {
        max-width: 760px;
      }

      .hero-brand-line {
        max-width: 760px;
      }

      .positioning-line {
        max-width: 760px;
      }

      .benefit-card-grid,
      .space-grid,
      .included-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .field.full,
      .checkbox-field {
        grid-column: 1 / -1;
      }

      .tour-open-actions {
        align-items: center;
        grid-template-columns: auto minmax(0, 1fr);
      }

      .tour-open-button {
        width: auto;
      }

      .tour-open-actions p {
        text-align: left;
      }

    }

    @media (min-width: 760px) {
      .section {
        padding-block: 88px;
      }

      .brand {
        padding: 5px 9px;
      }

      .brand-logo {
        height: 58px;
        transform: scale(1.72);
      }

      .brand-support {
        display: block;
      }

      h1 {
        font-size: 3.2rem;
      }

      h2 {
        font-size: 2.85rem;
      }

      .hero-inner,
      .feature-layout,
      .showcase-grid,
      .about-grid,
      .contact-grid,
      .cta-box {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .hero-inner {
        align-items: center;
        padding-block: 72px 62px;
      }

      .intro-grid,
      .three-grid,
      .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

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

      .included-panel,
      .proof-strip {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: center;
      }

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

      .tour-embed-frame {
        padding: 10px;
      }

      #YUgtahgSc,
      #Lj3AkRcCm,
      #bfmdzXVCv,
      [id="8M7zTKyk-"] {
        height: clamp(460px, calc(100vh - 220px), 540px);
      }

    }

    @media (min-width: 1120px) {
      h1 {
        font-size: 3.6rem;
      }
    }

    @media (min-width: 980px) {
      .nav-wrap {
        justify-content: space-between;
      }

      .nav-wrap > nav {
        display: block;
      }

      .menu-toggle {
        display: none;
      }

      .nav-links {
        position: static;
        display: flex;
        align-items: center;
        gap: 2px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .nav-links a {
        padding: 9px 10px;
        font-size: 0.9rem;
      }

      .nav-cta {
        display: inline-flex;
      }

      .service-grid,
      .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

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

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

      .special-project {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        align-items: center;
      }
    }

    @media (min-width: 1160px) {
      .nav-links a {
        padding-inline: 12px;
      }
    }

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

      *,
      *::before,
      *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
      }
    }
