:root {
  --bg: #040714;
  --bg-2: #071022;
  --panel: rgba(12, 23, 48, 0.78);
  --panel-solid: #0b1630;
  --panel-soft: #101f42;
  --text: #f8fbff;
  --text-soft: #cbd6ee;
  --muted: #8fa1c4;
  --line: rgba(141, 180, 255, 0.16);
  --line-strong: rgba(87, 203, 255, 0.38);
  --cyan: #20d9ff;
  --blue: #377cff;
  --violet: #8f4dff;
  --magenta: #d83dff;
  --green: #48e8b2;
  --orange: #ffad4d;
  --danger: #ff7f9b;
  --success: #6ff0b2;
  --gradient: linear-gradient(115deg, var(--cyan) 0%, var(--blue) 43%, var(--violet) 72%, var(--magenta) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(32, 217, 255, 0.12), rgba(143, 77, 255, 0.14), rgba(216, 61, 255, 0.08));
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 22px 70px rgba(20, 104, 255, 0.24);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1240px, calc(100vw - 48px));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -15%, rgba(55, 124, 255, 0.16), transparent 36rem),
    radial-gradient(circle at 95% 30%, rgba(143, 77, 255, 0.1), transparent 34rem),
    var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #03101a;
  background: var(--cyan);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 122px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-sprite symbol,
svg use {
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #041020;
  background: var(--cyan);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.page-ambient {
  position: fixed;
  z-index: -5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
}

.ambient-one {
  top: -170px;
  right: -170px;
  background: var(--blue);
  animation: ambientFloat 18s ease-in-out infinite;
}

.ambient-two {
  bottom: 6%;
  left: -300px;
  background: var(--violet);
  animation: ambientFloat 24s ease-in-out -8s infinite reverse;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(79, 133, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 133, 230, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

@keyframes ambientFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-50px, 45px, 0) scale(1.12); }
}

/* Shared headings and controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(32, 217, 255, 0.9);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(32, 217, 255, 0.55);
  border-radius: inherit;
  animation: pulseRing 2.3s ease-out infinite;
}

@keyframes pulseRing {
  0% { opacity: 1; transform: scale(0.45); }
  80%, 100% { opacity: 0; transform: scale(1.55); }
}

.section-heading {
  max-width: 810px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.product-copy h2,
.process-copy h2,
.why-intro h2,
.faq-copy h2,
.booking-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.9vw, 4.55rem);
  font-weight: 780;
  letter-spacing: -0.057em;
  line-height: 1;
}

.section-heading > p:not(.eyebrow),
.product-copy > p:not(.eyebrow),
.process-copy > p:not(.eyebrow),
.why-intro > p:not(.eyebrow),
.faq-copy > p:not(.eyebrow),
.booking-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 70px;
  max-width: none;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 5px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.2;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button svg,
.text-link svg,
.service-card > a svg,
.consultation-ribbon > a svg,
.footer-consult .button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 40px rgba(55, 124, 255, 0.25), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 54px rgba(55, 124, 255, 0.34), 0 0 34px rgba(32, 217, 255, 0.16), inset 0 1px rgba(255, 255, 255, 0.34);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(111, 163, 255, 0.35);
  background: rgba(8, 17, 38, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(32, 217, 255, 0.62);
  background: rgba(15, 32, 65, 0.86);
}

.button-large {
  min-height: 58px;
  padding: 16px 25px;
  font-size: 1rem;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.86rem;
}

.text-link,
.service-card > a,
.consultation-ribbon > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 780;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover,
.service-card > a:hover,
.consultation-ribbon > a:hover {
  color: #fff;
  gap: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(4, 7, 20, 0.18);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(91, 140, 228, 0.14);
  background: rgba(4, 7, 20, 0.86);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  min-height: 84px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(37, 117, 255, 0.28));
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 4px;
  color: #7f97c9;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: #b8c6e0;
  font-size: 0.89rem;
  font-weight: 690;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -11px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transition: left 0.22s ease, right 0.22s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 20, 43, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  border-top: 1px solid transparent;
  background: rgba(4, 7, 20, 0.98);
  transition: grid-template-rows 0.3s ease, border-color 0.3s ease;
}

.mobile-menu.open {
  grid-template-rows: 1fr;
  border-color: var(--line);
}

.mobile-menu nav {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: padding 0.3s ease;
}

.mobile-menu.open nav {
  padding-top: 14px;
  padding-bottom: 24px;
}

.mobile-menu nav > a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(132, 169, 235, 0.1);
  color: var(--text-soft);
  font-weight: 720;
}

.mobile-menu .button {
  margin-top: 12px;
}

/* Hero and animated spiral */
.hero {
  position: relative;
  min-height: 920px;
  padding: 148px 0 58px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -420px;
  right: -250px;
  width: 980px;
  height: 980px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 124, 255, 0.16), rgba(143, 77, 255, 0.06) 42%, transparent 69%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(590px, 1.12fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 34px 0 66px;
}

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 5.3vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.066em;
  line-height: 0.94;
}

.hero-copy h1 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 32px;
  color: #b9c7e3;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.78;
}

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

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #91a3c6;
  font-size: 0.86rem;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(72, 232, 178, 0.38);
  border-radius: 50%;
  color: var(--green);
  background: rgba(72, 232, 178, 0.08);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 900;
}

.spiral-wrap {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.spiral-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 36px 6px;
  color: #8194ba;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spiral-caption button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(105, 151, 235, 0.19);
  border-radius: 999px;
  color: #91a5ca;
  background: rgba(9, 18, 39, 0.66);
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spiral-caption button:hover {
  color: #fff;
  border-color: rgba(32, 217, 255, 0.38);
}

.spiral-caption button i {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: -0.18em;
}

.spiral-stage {
  position: relative;
  width: 100%;
  min-height: 660px;
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.spiral-stage::before {
  content: "";
  position: absolute;
  z-index: -4;
  top: 50%;
  left: 50%;
  width: 610px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27, 106, 255, 0.16), rgba(126, 53, 255, 0.08) 40%, transparent 72%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

.vortex {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(48, 167, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  pointer-events: none;
}

.vortex-one {
  width: 94%;
  height: 58%;
  border-color: rgba(32, 217, 255, 0.27);
  box-shadow:
    0 0 20px rgba(32, 217, 255, 0.22),
    inset 0 0 24px rgba(55, 124, 255, 0.14),
    0 0 0 6px rgba(55, 124, 255, 0.035),
    0 0 0 13px rgba(143, 77, 255, 0.026);
  animation: vortexPulse 5.2s ease-in-out infinite;
}

.vortex-two {
  width: 76%;
  height: 45%;
  border-color: rgba(182, 72, 255, 0.31);
  box-shadow: 0 0 22px rgba(182, 72, 255, 0.24), inset 0 0 22px rgba(32, 217, 255, 0.1);
  transform: translate(-50%, -50%) rotate(10deg);
  animation: vortexPulse 6.4s ease-in-out -2.3s infinite reverse;
}

.vortex-three {
  width: 55%;
  height: 31%;
  border-color: rgba(32, 217, 255, 0.34);
  box-shadow: 0 0 25px rgba(32, 217, 255, 0.23), 0 0 48px rgba(143, 77, 255, 0.13);
  transform: translate(-50%, -50%) rotate(-4deg);
  animation: vortexPulse 4.7s ease-in-out -1s infinite;
}

.vortex-stars {
  position: absolute;
  z-index: -3;
  inset: 6% 4%;
  opacity: 0.65;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(32,217,255,.8) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(196,75,255,.75) 0 1px, transparent 1.6px);
  background-size: 83px 81px, 123px 111px, 157px 139px;
  background-position: 12px 17px, 48px 31px, 83px 55px;
  mask-image: radial-gradient(ellipse, black 0%, transparent 72%);
  animation: starDrift 18s linear infinite;
}

@keyframes vortexPulse {
  0%, 100% { opacity: 0.72; filter: blur(0); }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(63, 128, 255, 0.24)); }
}

@keyframes starDrift {
  to { background-position: 95px 98px, -75px 142px, 240px -84px; }
}

.spiral-core {
  position: absolute;
  z-index: 60;
  top: 50%;
  left: 50%;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(90, 166, 255, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 31, 67, 0.98) 0%, rgba(5, 11, 28, 0.94) 68%, rgba(4, 7, 20, 0.72) 100%);
  box-shadow:
    0 0 0 10px rgba(35, 107, 255, 0.035),
    0 0 0 24px rgba(143, 77, 255, 0.025),
    0 0 62px rgba(30, 128, 255, 0.32),
    inset 0 0 36px rgba(68, 107, 255, 0.14);
  transform: translate(-50%, -50%);
}

.core-halo {
  position: absolute;
  inset: -36px;
  border: 1px solid rgba(32, 217, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(32, 217, 255, 0.1);
  animation: coreHalo 4.5s ease-in-out infinite;
}

@keyframes coreHalo {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

.spiral-core img {
  position: relative;
  z-index: 2;
  width: 176px;
  height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(19, 70, 255, 0.32));
  transform: translateY(-11px);
}

.core-label {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.core-label strong {
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-label small {
  margin-top: 4px;
  color: #7e94be;
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.spiral-node {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 184px;
  opacity: 0;
  will-change: transform, opacity;
}

.spiral-stage.is-ready .spiral-node {
  opacity: 1;
}

.node-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(96, 156, 255, 0.26);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(16, 35, 74, 0.93), rgba(7, 15, 34, 0.88));
  box-shadow: 0 13px 36px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.spiral-node:hover .node-card,
.spiral-node:focus-visible .node-card {
  transform: translateY(-6px) scale(1.035);
  border-color: rgba(32, 217, 255, 0.64);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 28px rgba(32, 217, 255, 0.16), inset 0 1px rgba(255, 255, 255, 0.09);
}

.node-featured .node-card {
  border-color: rgba(32, 217, 255, 0.54);
  background: linear-gradient(145deg, rgba(22, 61, 119, 0.96), rgba(33, 22, 82, 0.92));
  box-shadow: 0 18px 52px rgba(30, 111, 255, 0.27), 0 0 24px rgba(32, 217, 255, 0.16), inset 0 1px rgba(255, 255, 255, 0.12);
}

.node-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(93, 158, 255, 0.27);
  border-radius: 12px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(32, 217, 255, 0.14), rgba(143, 77, 255, 0.17));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.node-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.node-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.node-copy strong {
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.node-copy small {
  overflow: hidden;
  margin-top: 5px;
  color: #8fa2c6;
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.node-compact {
  width: 170px;
}

.node-compact .node-card {
  min-height: 62px;
  grid-template-columns: 36px minmax(0, 1fr);
  border-color: rgba(139, 102, 255, 0.25);
  background: linear-gradient(145deg, rgba(26, 29, 74, 0.88), rgba(8, 14, 33, 0.82));
}

.node-compact .node-icon {
  width: 36px;
  height: 36px;
}

.node-compact .node-icon svg {
  width: 18px;
  height: 18px;
}

.consultation-ribbon {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(94, 153, 255, 0.23);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(12, 26, 57, 0.9), rgba(20, 17, 56, 0.84));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.consultation-ribbon > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.ribbon-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(32, 217, 255, 0.28);
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(32, 217, 255, 0.09);
}

.ribbon-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-ribbon p {
  max-width: 830px;
  margin: 0;
  color: #aebeda;
  font-size: 0.94rem;
}

.consultation-ribbon strong {
  color: #fff;
}

.consultation-ribbon > a {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Services */
.services-section {
  border-top: 1px solid rgba(108, 151, 227, 0.08);
  background: linear-gradient(180deg, rgba(7, 14, 31, 0.36), rgba(5, 9, 22, 0.08));
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(14, 27, 56, 0.88), rgba(7, 14, 31, 0.82));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 124, 255, 0.13), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(32, 217, 255, 0.36);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 36px rgba(36, 115, 255, 0.07), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-7px);
}

.featured-service {
  border-color: rgba(32, 217, 255, 0.32);
  background: linear-gradient(150deg, rgba(16, 48, 89, 0.94), rgba(20, 15, 57, 0.88));
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}

.service-number {
  color: #667ba6;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(95, 158, 255, 0.24);
  border-radius: 16px;
  color: var(--cyan);
  background: var(--gradient-soft);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
  font-weight: 780;
  letter-spacing: -0.032em;
  line-height: 1.18;
}

.service-card > p {
  margin-bottom: 20px;
  color: #9eafcf;
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  color: #bdc9df;
  font-size: 0.84rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 19px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(32, 217, 255, 0.5);
  transform: translateY(-50%);
}

.service-card > a {
  margin-top: auto;
  font-size: 0.87rem;
}

/* Taskarize product section */
.taskarize-section {
  overflow: hidden;
  border-top: 1px solid rgba(94, 142, 225, 0.08);
  border-bottom: 1px solid rgba(94, 142, 225, 0.08);
  background:
    radial-gradient(circle at 12% 50%, rgba(32, 217, 255, 0.075), transparent 33rem),
    radial-gradient(circle at 90% 30%, rgba(143, 77, 255, 0.08), transparent 36rem),
    rgba(7, 13, 29, 0.62);
}

.taskarize-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: 78px;
}

.product-visual {
  position: relative;
  min-height: 570px;
}

.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(31, 122, 255, 0.25), rgba(139, 64, 255, 0.1) 45%, transparent 72%);
  filter: blur(22px);
  transform: translate(-52%, -48%);
}

.product-browser {
  position: absolute;
  z-index: 2;
  top: 47px;
  left: 0;
  width: 91%;
  overflow: hidden;
  border: 1px solid rgba(91, 156, 255, 0.3);
  border-radius: 25px;
  background: #071127;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45), 0 0 50px rgba(35, 117, 255, 0.14);
  transform: rotateY(4deg) rotateX(1deg) rotateZ(-1.4deg);
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 47px;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(100, 151, 237, 0.13);
  background: #0a1730;
  color: #8296ba;
  font-size: 0.66rem;
}

.browser-bar > span {
  display: flex;
  gap: 5px;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e426a;
}

.browser-bar p {
  margin: 0;
}

.browser-bar b {
  justify-self: end;
  padding: 4px 8px;
  border: 1px solid rgba(72, 232, 178, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(72, 232, 178, 0.07);
  font-weight: 750;
}

.product-app {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 390px;
}

.product-app aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 16px 0;
  border-right: 1px solid rgba(100, 151, 237, 0.11);
  background: #08142c;
}

.taskarize-mini-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 9px;
  color: #fff;
  background: var(--gradient);
}

.taskarize-mini-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-app aside > span {
  width: 22px;
  height: 5px;
  border-radius: 5px;
  background: #213354;
}

.product-app aside > span.active {
  width: 29px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(32, 217, 255, 0.55);
}

.product-main {
  padding: 20px;
  background:
    radial-gradient(circle at 85% 0%, rgba(55, 124, 255, 0.08), transparent 18rem),
    #071127;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 19px;
}

.product-header > div {
  display: flex;
  flex-direction: column;
}

.product-header small {
  color: var(--cyan);
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-header strong {
  margin-top: 4px;
  font-size: 1rem;
}

.product-header button {
  padding: 7px 11px;
  border: 1px solid rgba(93, 153, 255, 0.21);
  border-radius: 9px;
  color: #acbbd5;
  background: rgba(17, 34, 68, 0.72);
  font-size: 0.61rem;
}

.room-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 13px;
}

.room-status-row article {
  display: flex;
  min-height: 85px;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(82, 150, 236, 0.14);
  border-radius: 12px;
  background: rgba(12, 28, 57, 0.85);
}

.room-status-row small {
  color: #8397ba;
  font-size: 0.57rem;
}

.room-status-row strong {
  margin-top: 7px;
  color: var(--green);
  font-size: 0.78rem;
}

.room-status-row span {
  margin-top: auto;
  color: #7589ae;
  font-size: 0.53rem;
}

.room-status-row article.busy strong {
  color: #ff8cae;
}

.schedule-card {
  min-height: 194px;
  padding: 14px;
  border: 1px solid rgba(82, 150, 236, 0.14);
  border-radius: 14px;
  background: rgba(9, 21, 45, 0.95);
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 21px;
}

.schedule-days span {
  display: flex;
  height: 43px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  color: #94a6c6;
  font-size: 0.62rem;
  line-height: 1.1;
}

.schedule-days b {
  margin-bottom: 3px;
  color: #5f7297;
  font-size: 0.43rem;
  letter-spacing: 0.08em;
}

.schedule-days span.active {
  color: #fff;
  background: linear-gradient(145deg, rgba(32, 217, 255, 0.3), rgba(91, 76, 255, 0.34));
  box-shadow: inset 0 1px rgba(255,255,255,.12);
}

.schedule-days span.active b {
  color: #c4efff;
}

.schedule-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 5px;
  color: #5f7193;
  font-size: 0.46rem;
}

.schedule-line i {
  height: 1px;
  background: rgba(104, 145, 212, 0.13);
}

.schedule-events {
  position: relative;
  height: 52px;
  margin-top: 10px;
  border-top: 1px solid rgba(104, 145, 212, 0.09);
  border-bottom: 1px solid rgba(104, 145, 212, 0.09);
}

.schedule-events span {
  position: absolute;
  top: 8px;
  display: grid;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  font-size: 0.49rem;
  font-weight: 720;
}

.event-one {
  left: 4%;
  width: 25%;
  color: #b9edff;
  background: rgba(32, 217, 255, 0.18);
}

.event-two {
  left: 32%;
  width: 35%;
  color: #99f0ca;
  background: rgba(72, 232, 178, 0.13);
}

.event-three {
  left: 70%;
  width: 26%;
  color: #d9c4ff;
  background: rgba(143, 77, 255, 0.18);
}

.product-phone {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 10px;
  width: 188px;
  min-height: 365px;
  padding: 20px 16px 15px;
  border: 6px solid #121d38;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 124, 255, 0.2), transparent 11rem),
    linear-gradient(180deg, #0a1733, #070f25);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(91, 65, 255, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(4.5deg);
}

.phone-speaker {
  width: 46px;
  height: 5px;
  margin: 0 auto 25px;
  border-radius: 999px;
  background: #263656;
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.73rem;
}

.phone-logo svg {
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 7px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  background: var(--gradient);
}

.product-phone > small {
  display: block;
  margin-top: 31px;
  color: #7c91b6;
  font-size: 0.57rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.product-phone h3 {
  margin: 2px 0 10px;
  font-size: 1.9rem;
  line-height: 1;
}

.availability-pill {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(72, 232, 178, 0.25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(72, 232, 178, 0.08);
  font-size: 0.55rem;
  font-weight: 760;
}

.phone-time {
  display: flex;
  min-height: 91px;
  justify-content: center;
  flex-direction: column;
  margin: 21px 0 18px;
  padding: 12px;
  border: 1px solid rgba(84, 148, 235, 0.17);
  border-radius: 13px;
  background: rgba(16, 31, 63, 0.72);
}

.phone-time strong {
  font-size: 1.18rem;
}

.phone-time span {
  margin-top: 6px;
  color: #8296ba;
  font-size: 0.54rem;
}

.product-phone > button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--gradient);
  font-size: 0.68rem;
  font-weight: 780;
  box-shadow: 0 12px 28px rgba(55, 124, 255, 0.25);
}

.product-copy h2 {
  max-width: 610px;
  font-size: clamp(2.45rem, 4.25vw, 4.25rem);
}

.product-points {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
}

.product-points > span {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 2px 13px;
  min-height: 66px;
  padding: 10px 13px;
  border: 1px solid rgba(94, 148, 236, 0.15);
  border-radius: 15px;
  background: rgba(11, 23, 49, 0.58);
}

.product-points svg {
  grid-row: 1 / 3;
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-points b {
  font-size: 0.9rem;
}

.product-points small {
  color: #8497ba;
  font-size: 0.72rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.product-actions .text-link {
  font-size: 0.85rem;
}

/* Consultation outcomes */
.outcomes-section {
  background: rgba(4, 8, 19, 0.34);
}

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

.outcome-grid article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(14, 27, 56, 0.76), rgba(7, 14, 30, 0.76));
}

.outcome-grid article > span {
  position: absolute;
  top: 17px;
  right: 19px;
  color: rgba(110, 137, 188, 0.44);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.outcome-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 32px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-grid h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.outcome-grid p {
  margin: 0;
  color: #91a4c6;
  font-size: 0.86rem;
  line-height: 1.65;
}

/* Process */
.process-section {
  border-top: 1px solid rgba(94, 142, 225, 0.08);
  border-bottom: 1px solid rgba(94, 142, 225, 0.08);
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 217, 255, 0.06), transparent 28rem),
    rgba(7, 13, 28, 0.58);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.73fr) minmax(0, 1.27fr);
  align-items: start;
  gap: 88px;
}

.process-copy {
  position: sticky;
  top: 135px;
}

.process-copy .button {
  margin-top: 16px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  min-height: 155px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(101, 145, 222, 0.14);
}

.process-list li:first-child {
  padding-top: 3px;
}

.process-list li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(32, 217, 255, 0.28);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(32, 217, 255, 0.075);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.process-list p {
  max-width: 650px;
  margin: 0;
  color: #91a3c4;
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Why AppUp */
.why-grid {
  display: grid;
  grid-template-columns: 1.38fr repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  min-height: 265px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(14, 26, 54, 0.82), rgba(7, 14, 30, 0.78));
}

.why-intro {
  grid-row: span 2;
  min-height: 546px;
  padding: 35px;
  background:
    radial-gradient(circle at 90% 10%, rgba(55, 124, 255, 0.13), transparent 22rem),
    linear-gradient(145deg, rgba(14, 34, 69, 0.88), rgba(16, 13, 47, 0.82));
}

.why-intro h2 {
  font-size: clamp(2.4rem, 3.9vw, 4rem);
}

.mini-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(100, 148, 226, 0.15);
}

.mini-proof img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.mini-proof span {
  display: flex;
  flex-direction: column;
}

.mini-proof strong {
  font-size: 0.93rem;
}

.mini-proof small {
  margin-top: 5px;
  color: #7f93b8;
  font-size: 0.72rem;
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(90, 157, 255, 0.24);
  border-radius: 15px;
  color: var(--cyan);
  background: var(--gradient-soft);
}

.why-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin-bottom: 11px;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.why-card > p {
  margin: 0;
  color: #8fa2c3;
  font-size: 0.86rem;
  line-height: 1.65;
}

/* FAQ */
.faq-section {
  border-top: 1px solid rgba(94, 142, 225, 0.08);
  background: rgba(7, 13, 28, 0.5);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 86px;
}

.faq-copy {
  position: sticky;
  top: 135px;
}

.faq-copy .text-link {
  margin-top: 10px;
}

.accordion {
  border-top: 1px solid rgba(96, 144, 224, 0.16);
}

.accordion-item {
  border-bottom: 1px solid rgba(96, 144, 224, 0.16);
}

.accordion-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 25px 0;
  border: 0;
  color: #eaf0fb;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.04rem;
  font-weight: 740;
}

.accordion-item button i {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(96, 153, 241, 0.22);
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease;
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.open button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.accordion-panel > p {
  max-width: 680px;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: #91a4c5;
  line-height: 1.72;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel > p {
  padding-bottom: 25px;
}

/* Booking form */
.booking-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 60%, rgba(32, 217, 255, 0.07), transparent 31rem),
    radial-gradient(circle at 90% 40%, rgba(143, 77, 255, 0.09), transparent 35rem),
    #050a18;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.86fr) minmax(520px, 1.14fr);
  align-items: start;
  gap: 76px;
}

.booking-copy {
  position: sticky;
  top: 132px;
}

.booking-copy h2 {
  font-size: clamp(2.6rem, 4.65vw, 4.55rem);
}

.booking-expectations {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.booking-expectations article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(97, 145, 225, 0.12);
}

.booking-expectations article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(32, 217, 255, 0.25);
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(32, 217, 255, 0.07);
  font-size: 0.65rem;
  font-weight: 850;
}

.booking-expectations article > div {
  display: flex;
  flex-direction: column;
}

.booking-expectations strong {
  font-size: 0.9rem;
}

.booking-expectations small {
  margin-top: 4px;
  color: #8296b9;
  font-size: 0.72rem;
  line-height: 1.5;
}

.direct-email {
  margin-top: 30px;
  color: #7f94bb;
  font-size: 0.86rem;
}

.direct-email a {
  color: var(--cyan);
  font-weight: 730;
}

.booking-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(98, 155, 246, 0.25);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(15, 31, 64, 0.94), rgba(8, 14, 33, 0.94));
  box-shadow: 0 40px 95px rgba(0, 0, 0, 0.38), 0 0 65px rgba(50, 111, 255, 0.08), inset 0 1px rgba(255, 255, 255, 0.06);
}

.booking-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 55px;
  left: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  box-shadow: 0 0 15px rgba(32, 217, 255, 0.45);
}

.booking-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(101, 151, 232, 0.14);
}

.booking-card-top > div {
  display: flex;
  flex-direction: column;
}

.booking-card-top > div > span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card-top h3 {
  margin: 5px 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(72, 232, 178, 0.21);
  border-radius: 999px;
  color: var(--green);
  background: rgba(72, 232, 178, 0.06);
  font-size: 0.61rem;
  font-weight: 760;
  white-space: nowrap;
}

.secure-note svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.consultation-form {
  display: grid;
  gap: 17px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-field label {
  margin-bottom: 7px;
  color: #c8d4e8;
  font-size: 0.76rem;
  font-weight: 720;
}

.form-field label span,
.consent-row b {
  color: #ff89af;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(101, 151, 232, 0.18);
  border-radius: 13px;
  outline: 0;
  color: #f5f8ff;
  background: rgba(5, 12, 29, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.55;
}

.form-field select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, #8fa5cc 50%),
    linear-gradient(135deg, #8fa5cc 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 14px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #607397;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(32, 217, 255, 0.65);
  background-color: rgba(7, 17, 38, 0.95);
  box-shadow: 0 0 0 3px rgba(32, 217, 255, 0.09);
}

.field-help {
  margin-top: 6px;
  color: #677ba0;
  font-size: 0.65rem;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  color: #8498bb;
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-check {
  position: relative;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border: 1px solid rgba(111, 159, 235, 0.34);
  border-radius: 5px;
  background: rgba(5, 12, 29, 0.8);
}

.consent-row input:focus-visible + .custom-check {
  box-shadow: 0 0 0 3px rgba(32, 217, 255, 0.14);
}

.consent-row input:checked + .custom-check {
  border-color: transparent;
  background: var(--gradient);
}

.consent-row input:checked + .custom-check::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-row a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-button {
  width: 100%;
  min-height: 57px;
  margin-top: 3px;
  border: 0;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #9aaccb;
  font-size: 0.78rem;
  text-align: center;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.form-note {
  margin: -5px 0 0;
  color: #617499;
  font-size: 0.62rem;
  line-height: 1.5;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(97, 143, 222, 0.11);
  background: #030611;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.92fr 1.06fr;
  gap: 54px;
  padding-top: 65px;
  padding-bottom: 54px;
}

.footer-brand-block > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #788bad;
  font-size: 0.83rem;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: #e7edf8;
  font-size: 0.8rem;
}

.footer-column a,
.footer-column span {
  color: #7588aa;
  font-size: 0.76rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-consult {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px;
  border: 1px solid rgba(91, 150, 240, 0.17);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(12, 27, 57, 0.8), rgba(17, 13, 48, 0.78));
}

.footer-consult > span {
  color: #7c90b4;
  font-size: 0.67rem;
}

.footer-consult > strong {
  margin: 3px 0 15px;
  font-size: 0.93rem;
}

.footer-consult .button {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.73rem;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(97, 143, 222, 0.1);
  color: #5e7194;
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.mobile-book-cta {
  position: fixed;
  z-index: 950;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 30px rgba(55, 124, 255, 0.3), inset 0 1px rgba(255, 255, 255, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-book-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mobile-book-cta.hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

/* Legal pages */
.legal-page {
  background: var(--bg);
}

.legal-page .site-header {
  background: rgba(4, 7, 20, 0.93);
}

.legal-page .header-cta,
.legal-page .button-header {
  color: #fff;
  background: var(--gradient);
}

.legal-hero {
  padding: 160px 0 74px;
  border-bottom: 1px solid rgba(99, 148, 228, 0.12);
  background:
    radial-gradient(circle at 72% 20%, rgba(55, 124, 255, 0.12), transparent 31rem),
    rgba(6, 12, 27, 0.68);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 18px;
  color: #7186ab;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-meta span:first-child {
  color: var(--cyan);
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: #9aaccb;
  font-size: 1.07rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 75px;
  align-items: start;
  padding-top: 75px;
  padding-bottom: 110px;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: calc(100vh - 145px);
  overflow: auto;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 20, 42, 0.74);
}

.legal-nav strong {
  margin-bottom: 8px;
  font-size: 0.76rem;
}

.legal-nav a {
  color: #7589ad;
  font-size: 0.7rem;
  transition: color 0.2s ease;
}

.legal-nav a:hover {
  color: var(--cyan);
}

.legal-content {
  min-width: 0;
}

.legal-summary {
  margin: 0 0 42px;
  padding: 21px 23px;
  border: 1px solid rgba(32, 217, 255, 0.18);
  border-radius: 16px;
  color: #a9b9d3;
  background: rgba(32, 217, 255, 0.045);
}

.legal-content section {
  padding: 0 0 43px;
  scroll-margin-top: 115px;
}

.legal-content h2 {
  margin-bottom: 17px;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: #99abc9;
  font-size: 0.9rem;
  line-height: 1.78;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content strong {
  color: #dce5f4;
}

.legal-page .footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 36px;
}

.legal-page .footer-top > p {
  margin: 0;
  color: #788bad;
  font-size: 0.82rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 750;
}

.legal-page .footer-bottom {
  display: flex;
}

/* 404 */
.not-found-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 24px;
}

.not-found-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid rgba(98, 155, 246, 0.22);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(14, 30, 63, 0.92), rgba(8, 14, 32, 0.92));
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-brand {
  margin: 0 auto 34px;
}

.not-found-card .eyebrow,
.not-found-card .kicker {
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.not-found-title {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.not-found-copy {
  max-width: 500px;
  margin: 0 auto 28px;
  color: #91a4c5;
}

/* Responsive */
@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 5vw, 5.2rem);
  }

  .spiral-stage {
    min-height: 620px;
  }

  .taskarize-grid {
    gap: 44px;
  }

  .booking-grid {
    gap: 48px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.65fr 0.9fr;
  }

  .footer-consult {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-consult > span,
  .footer-consult > strong {
    grid-column: 1;
  }

  .footer-consult .button {
    grid-row: 1 / 3;
    grid-column: 2;
    width: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .section {
    padding: 96px 0;
  }

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

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 0;
    padding-top: 122px;
  }

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

  .hero-copy {
    padding-bottom: 28px;
    text-align: center;
  }

  .hero-copy h1,
  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .spiral-caption {
    margin-right: 15px;
    margin-left: 15px;
  }

  .spiral-stage {
    min-height: 650px;
  }

  .consultation-ribbon {
    margin-top: 10px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .taskarize-grid,
  .process-grid,
  .faq-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .taskarize-grid {
    gap: 55px;
  }

  .product-copy {
    max-width: 700px;
  }

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

  .process-grid,
  .faq-grid,
  .booking-grid {
    gap: 52px;
  }

  .process-copy,
  .faq-copy,
  .booking-copy {
    position: static;
  }

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

  .why-intro {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 34px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 700px) {
  /* Keep conversion content immediately visible on phones, even on direct #book visits. */
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  :root {
    --shell: calc(100vw - 28px);
  }

  body {
    padding-bottom: 76px;
  }

  .section {
    padding: 80px 0;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .brand strong {
    font-size: 1.03rem;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 {
    margin-left: 0;
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }

  .hero-lede {
    margin-left: 0;
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
    justify-content: start;
  }

  .spiral-caption {
    margin-top: 10px;
  }

  .spiral-caption > span {
    display: none;
  }

  .spiral-caption {
    justify-content: flex-end;
  }

  .spiral-stage {
    min-height: 515px;
    margin-top: -20px;
  }

  .spiral-stage::before {
    width: 420px;
    height: 320px;
  }

  .spiral-core {
    width: 154px;
    height: 154px;
  }

  .spiral-core img {
    width: 126px;
    height: 126px;
    transform: translateY(-7px);
  }

  .core-halo {
    inset: -22px;
  }

  .core-label {
    bottom: 8px;
  }

  .core-label strong {
    font-size: 0.7rem;
  }

  .core-label small {
    font-size: 0.46rem;
  }

  .spiral-node {
    width: 142px;
  }

  .node-card {
    grid-template-columns: 35px minmax(0, 1fr);
    min-height: 57px;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 14px;
  }

  .node-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }

  .node-icon svg {
    width: 17px;
    height: 17px;
  }

  .node-copy strong {
    font-size: 0.66rem;
  }

  .node-copy small {
    font-size: 0.5rem;
  }

  .vortex-one {
    width: 103%;
    height: 58%;
  }

  .vortex-two {
    width: 82%;
    height: 45%;
  }

  .vortex-three {
    width: 61%;
    height: 31%;
  }

  .consultation-ribbon {
    flex-direction: column;
    align-items: stretch;
    margin-top: -15px;
    padding: 18px;
  }

  .consultation-ribbon > div {
    align-items: flex-start;
  }

  .consultation-ribbon > a {
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid rgba(94, 153, 255, 0.15);
  }

  .section-heading h2,
  .product-copy h2,
  .process-copy h2,
  .why-intro h2,
  .faq-copy h2,
  .booking-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.35rem);
  }

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

  .service-card {
    min-height: 0;
  }

  .product-visual {
    min-height: 500px;
  }

  .product-browser {
    top: 20px;
    width: 100%;
    transform: rotateZ(-0.8deg);
  }

  .product-phone {
    right: 7px;
    bottom: 0;
    width: 153px;
    min-height: 315px;
    padding: 17px 12px 12px;
    border-width: 5px;
    border-radius: 25px;
  }

  .phone-speaker {
    margin-bottom: 18px;
  }

  .product-phone > small {
    margin-top: 22px;
  }

  .product-phone h3 {
    font-size: 1.45rem;
  }

  .phone-time {
    min-height: 75px;
    margin: 16px 0 14px;
  }

  .product-app {
    grid-template-columns: 45px 1fr;
    min-height: 350px;
  }

  .product-main {
    padding: 13px;
  }

  .room-status-row article:nth-child(3) {
    display: none;
  }

  .room-status-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-card {
    min-height: 175px;
  }

  .product-actions .button {
    width: 100%;
  }

  .outcome-grid article {
    min-height: 220px;
  }

  .process-list li {
    grid-template-columns: 55px 1fr;
    gap: 14px;
  }

  .process-list li > span {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .why-intro {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 21px 17px;
    border-radius: 23px;
  }

  .booking-card-top {
    flex-direction: column;
  }

  .secure-note {
    align-self: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-brand-block,
  .footer-consult {
    grid-column: 1 / -1;
  }

  .footer-consult {
    display: flex;
  }

  .footer-consult .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
    text-align: center;
  }

  .mobile-book-cta {
    display: flex;
  }

  .legal-hero {
    padding: 126px 0 58px;
  }

  .legal-layout {
    padding-top: 55px;
    padding-bottom: 80px;
  }

  .legal-page .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .not-found-card {
    padding: 36px 22px;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 2.72rem;
  }

  .spiral-stage {
    min-height: 470px;
  }

  .spiral-node {
    width: 132px;
  }

  .node-card {
    grid-template-columns: 31px minmax(0, 1fr);
    min-height: 52px;
    padding: 7px 8px;
  }

  .node-icon {
    width: 31px;
    height: 31px;
  }

  .node-copy small {
    display: none;
  }

  .product-visual {
    min-height: 450px;
  }

  .product-browser {
    height: 350px;
  }

  .product-phone {
    width: 137px;
    min-height: 288px;
  }

  .schedule-card {
    display: none;
  }

  .product-app {
    min-height: 300px;
  }

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

  .footer-column,
  .footer-brand-block,
  .footer-consult {
    grid-column: 1;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
