:root {
  --bg: #07070a;
  --bg-soft: #0c0c11;
  --panel: #111118;
  --panel-2: #171720;
  --text: #f8f7fb;
  --muted: #aaa8b4;
  --line: rgba(255, 255, 255, 0.09);
  --orange: #ff7a1a;
  --coral: #ff3f6c;
  --purple: #9b4dff;
  --blue: #5c73ff;
  --green: #4fdb9b;
  --gradient: linear-gradient(110deg, var(--orange) 0%, var(--coral) 43%, var(--purple) 78%, var(--blue) 100%);
  --shadow: 0 35px 100px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Heebo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; inset: 10px auto auto 10px; z-index: 200; padding: 10px 14px; color: #111; background: #fff; border-radius: 9px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.ambient { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(120px); opacity: 0.14; z-index: -1; }
.ambient-one { width: 420px; height: 420px; background: var(--purple); top: 8%; right: -260px; }
.ambient-two { width: 360px; height: 360px; background: var(--orange); top: 65%; left: -240px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; direction: ltr; align-items: center; gap: 11px; color: #fff; text-decoration: none; flex: 0 0 auto; }
.brand-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 25% 20%, #282139, #09090d 62%);
  box-shadow: 0 0 28px rgba(155, 77, 255, 0.18);
  font-weight: 900;
  letter-spacing: -7px;
}
.brand-mark::after { content: ""; position: absolute; inset: -3px; border: 2px solid transparent; border-top-color: var(--orange); border-right-color: var(--purple); border-radius: 50%; transform: rotate(-20deg); }
.brand-mark span:first-child { color: var(--orange); transform: translateX(-2px); }
.brand-mark span:last-child { color: var(--purple); }
.brand-word { font-size: 29px; font-weight: 800; letter-spacing: -1px; }
.brand-word > span { color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a { position: relative; color: #c3c0cb; font-size: 0.94rem; text-decoration: none; transition: color 0.2s ease; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -9px; width: 0; height: 2px; background: var(--gradient); transition: width 0.2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: #101015; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: #fff; border-radius: 9px; transition: 0.2s ease; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 38px rgba(190, 55, 142, 0.23);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 19px 46px rgba(190, 55, 142, 0.31); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(145, 113, 255, 0.48); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 18px; border-radius: 12px; font-size: 0.88rem; }
.button-ghost { border: 1px solid rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.04); box-shadow: none; }

.hero { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; min-height: 790px; padding-block: 82px 70px; }
.hero-copy { position: relative; z-index: 2; }
.kicker { display: inline-flex; align-items: center; gap: 9px; color: #beb9c9; font-size: 0.78rem; font-weight: 800; letter-spacing: 1.3px; }
.kicker > span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.1); }
.hero h1, .section-heading h2, .management-copy h2, .cta h2 { margin: 18px 0 22px; font-weight: 900; line-height: 0.99; letter-spacing: -2.8px; }
.hero h1 { font-size: clamp(3.7rem, 6.6vw, 6.2rem); }
.section-heading h2, .management-copy h2, .cta h2 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.gradient-text { color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
.lead, .section-heading > p, .management-copy > p, .cta-copy > p { margin: 0; max-width: 640px; color: var(--muted); font-size: 1.17rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 29px; color: #c7c4ce; font-size: 0.9rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(79, 219, 155, 0.09); }

.hero-stage { position: relative; height: 650px; direction: ltr; }
.stage-ring { position: absolute; top: 43%; left: 50%; width: 510px; height: 510px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%; transform: translate(-50%, -50%); }
.stage-ring::before, .stage-ring::after { content: ""; position: absolute; border-radius: 50%; }
.stage-ring::before { inset: 58px; border: 1px dashed rgba(255, 255, 255, 0.075); }
.stage-ring::after { inset: 110px; background: radial-gradient(circle, rgba(145, 57, 255, 0.2), rgba(255, 80, 66, 0.06) 45%, transparent 72%); filter: blur(15px); }
.phone {
  position: relative;
  width: 314px;
  aspect-ratio: 9 / 19.35;
  padding: 8px;
  border: 1px solid #3b3a43;
  border-radius: 48px;
  background: linear-gradient(145deg, #3c3c45 0%, #111116 16%, #050507 82%, #292930 100%);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.58), inset 0 0 0 1px rgba(255, 255, 255, 0.11);
}
.phone::after { content: ""; position: absolute; inset: 4px; pointer-events: none; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 44px; }
.phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 39px; direction: rtl; color: #17151b; background: #f6f6f8; }
.screen-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.dynamic-island { position: absolute; top: 11px; left: 50%; z-index: 10; width: 92px; height: 25px; border-radius: 999px; background: #050506; transform: translateX(-50%); }
.phone-button { position: absolute; right: -4px; z-index: -1; width: 4px; border-radius: 0 4px 4px 0; background: #25252b; }
.phone-button-one { top: 124px; height: 62px; }
.phone-button-two { top: 201px; height: 88px; }
.status-bar { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; height: 43px; padding: 8px 19px 0; font-size: 0.62rem; font-weight: 800; direction: ltr; }
.status-icons { font-size: 0.48rem; letter-spacing: 0.6px; }
.phone-main { position: absolute; z-index: 4; left: 36px; bottom: 0; transform: rotate(-5.5deg); }
.phone-secondary { position: absolute; z-index: 2; top: 27px; right: 6px; width: 264px; opacity: 0.92; transform: rotate(7deg); }
.float-note { position: absolute; z-index: 7; display: flex; align-items: center; gap: 10px; min-width: 145px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; color: #fff; background: rgba(16, 15, 21, 0.83); box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3); backdrop-filter: blur(16px); direction: rtl; }
.float-note b { color: var(--orange); font-size: 0.74rem; letter-spacing: 1px; }
.float-note span { font-size: 0.78rem; font-weight: 700; line-height: 1.35; }
.note-brand { top: 94px; left: -25px; }
.note-live { right: -20px; bottom: 117px; }
.note-live b { color: var(--green); }

.app-topbar { display: flex; align-items: center; justify-content: space-between; padding: 5px 18px 10px; }
.round-icon { width: 31px; height: 31px; padding: 8px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 5px 14px rgba(26, 20, 40, 0.08); }
.round-icon span { display: block; width: 14px; height: 1.5px; margin: 3px auto; border-radius: 9px; background: #16131c; }
.demo-logo { text-align: center; line-height: 1.08; }
.demo-logo small { display: block; color: #817b88; font-size: 0.46rem; font-weight: 700; }
.demo-logo strong { font-size: 0.76rem; letter-spacing: 1px; }
.avatar { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, var(--orange), var(--purple)); font-size: 0.7rem; font-weight: 900; }
.welcome-block { padding: 16px 18px 7px; }
.welcome-block small { color: #817c88; font-size: 0.64rem; }
.welcome-block h2 { margin: 4px 0; font-size: 1.34rem; line-height: 1.13; letter-spacing: -0.7px; }
.next-appointment { display: grid; grid-template-columns: 47px 1fr 12px; gap: 11px; align-items: center; margin: 13px 16px; padding: 12px; border-radius: 17px; color: #fff; background: linear-gradient(125deg, #15121b, #292037); box-shadow: 0 12px 24px rgba(36, 26, 55, 0.17); }
.date-cube { display: grid; height: 48px; place-content: center; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 13px; background: rgba(255, 255, 255, 0.075); text-align: center; }
.date-cube b { font-size: 1rem; line-height: 1; }
.date-cube span { color: #bbb4c6; font-size: 0.48rem; }
.next-appointment > div:nth-child(2) { display: grid; }
.next-appointment small { color: #b9b3c1; font-size: 0.53rem; }
.next-appointment strong { margin-block: 1px; font-size: 1.05rem; }
.next-appointment span { font-size: 0.54rem; }
.next-appointment .chevron { font-size: 1.2rem; }
.mock-primary { display: flex; width: calc(100% - 32px); height: 42px; align-items: center; justify-content: center; gap: 9px; margin: 15px 16px 18px; border: 0; border-radius: 13px; color: #fff; background: var(--gradient); font-size: 0.7rem; font-weight: 900; }
.screen-title { display: flex; align-items: center; justify-content: space-between; padding: 0 17px 10px; }
.screen-title strong { font-size: 0.76rem; }
.screen-title span { color: #8c5cf5; font-size: 0.53rem; font-weight: 700; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding-inline: 16px; }
.service-card { display: grid; min-height: 93px; align-content: center; justify-items: center; border: 1px solid #e5e2e9; border-radius: 15px; background: #fff; }
.service-card.active { border-color: #b57cff; box-shadow: 0 7px 18px rgba(144, 72, 255, 0.12); }
.service-icon { display: grid; width: 28px; height: 28px; place-items: center; margin-bottom: 5px; border-radius: 9px; color: #fff; background: linear-gradient(140deg, var(--orange), var(--purple)); font-size: 0.68rem; }
.service-card b { font-size: 0.66rem; }
.service-card small { color: #908a94; font-size: 0.5rem; }
.phone-nav { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); padding: 9px 10px 14px; border-top: 1px solid #ece9ef; background: rgba(255, 255, 255, 0.95); }
.phone-nav > span { display: grid; justify-items: center; color: #9d98a2; font-size: 0.76rem; }
.phone-nav > span.active { color: #8f46ef; }
.phone-nav small { margin-top: 1px; font-size: 0.44rem; }

.manager-mini { color: #efedf4; background: #0c0c11; }
.manager-head { padding: 13px 17px 6px; }
.manager-head small { color: #8f899a; font-size: 0.52rem; }
.manager-head h3 { margin: 2px 0 0; font-size: 1.1rem; }
.dashboard-card { position: relative; margin: 14px; padding: 15px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 17px; background: linear-gradient(135deg, #1b1722, #151421); }
.dashboard-card small { display: block; color: #aaa3b4; font-size: 0.52rem; }
.dashboard-card strong { font-size: 1.65rem; }
.dashboard-card .up { margin-right: 7px; color: var(--green); font-size: 0.54rem; }
.spark { position: absolute; right: 14px; bottom: 15px; left: 14px; display: flex; height: 29px; align-items: end; justify-content: flex-end; gap: 5px; opacity: 0.62; direction: ltr; }
.spark i { width: 7px; border-radius: 5px 5px 1px 1px; background: linear-gradient(var(--purple), var(--coral)); }
.spark i:nth-child(1) { height: 10px; }.spark i:nth-child(2) { height: 18px; }.spark i:nth-child(3) { height: 13px; }.spark i:nth-child(4) { height: 26px; }.spark i:nth-child(5) { height: 20px; }.spark i:nth-child(6) { height: 29px; }
.mini-heading { display: flex; justify-content: space-between; padding: 7px 15px 10px; }
.mini-heading b { font-size: 0.66rem; }.mini-heading span { color: #a66bff; font-size: 0.49rem; }
.mini-booking { display: grid; grid-template-columns: 39px 1fr 6px; gap: 8px; align-items: center; margin: 0 13px 8px; padding: 10px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 13px; background: #15151c; }
.mini-booking time { font-size: 0.65rem; font-weight: 800; }.mini-booking > span { display: grid; }.mini-booking b { font-size: 0.59rem; }.mini-booking small { color: #928d9a; font-size: 0.46rem; }.mini-booking > i { width: 5px; height: 30px; border-radius: 8px; background: var(--orange); }.mini-booking > i.violet { background: var(--purple); }.mini-booking > i.green { background: var(--green); }

.privacy-strip { border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); }
.privacy-inner { display: flex; min-height: 76px; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.privacy-inner p { margin: 0; color: #aaa6b2; font-size: 0.88rem; }
.privacy-inner strong { color: #fff; }
.privacy-icon { display: grid; flex: 0 0 auto; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(79, 219, 155, 0.24); border-radius: 50%; color: var(--green); background: rgba(79, 219, 155, 0.08); font-weight: 900; }

.section { padding-block: 120px; }
.section-heading { max-width: 850px; margin: 0 auto 60px; text-align: center; }
.section-heading > p { margin-inline: auto; }
.section-heading.compact { margin-bottom: 44px; }
.annotated-tour { display: grid; grid-template-columns: 1fr 350px 1fr; gap: 62px; align-items: center; direction: ltr; min-height: 720px; padding: 46px 28px; border: 1px solid var(--line); border-radius: 38px; background: radial-gradient(circle at 50% 50%, rgba(135, 63, 246, 0.14), transparent 42%), linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)); }
.phone-tour { width: 326px; justify-self: center; transform: rotate(0.8deg); }
.booking-screen { color: #17151b; background: #f7f7f9; }
.booking-head { display: grid; grid-template-columns: 35px 1fr 36px; align-items: center; padding: 9px 17px 10px; }
.booking-head button { width: 31px; height: 31px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(28, 21, 39, 0.08); font-weight: 900; }
.booking-head > div { display: grid; text-align: center; }.booking-head small { color: #8d8792; font-size: 0.5rem; }.booking-head strong { font-size: 0.75rem; }.booking-head .step { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: #8c51e6; background: #efe7fa; font-size: 0.55rem; font-weight: 800; }
.progress { height: 3px; margin-inline: 17px; overflow: hidden; border-radius: 8px; background: #e6e2e9; }.progress i { display: block; width: 74%; height: 100%; background: var(--gradient); }
.selection-summary { display: grid; grid-template-columns: 38px 1fr auto; gap: 9px; align-items: center; margin: 16px; padding: 11px; border: 1px solid #e5e0e9; border-radius: 15px; background: #fff; }
.summary-icon { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--orange), var(--purple)); }.selection-summary > div { display: grid; }.selection-summary strong { font-size: 0.65rem; }.selection-summary small { color: #8d8793; font-size: 0.48rem; }.selection-summary button { border: 0; color: #8d4ee8; background: none; font-size: 0.5rem; font-weight: 800; }
.mock-section-title { display: flex; align-items: center; justify-content: space-between; padding: 4px 17px 9px; }.mock-section-title strong { font-size: 0.72rem; }.mock-section-title small { display: flex; align-items: center; gap: 5px; color: #8c8791; font-size: 0.49rem; }.mock-section-title small i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.date-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; padding: 0 16px 17px; }.date-row span { display: grid; height: 50px; place-content: center; border: 1px solid #e5e2e8; border-radius: 13px; background: #fff; text-align: center; }.date-row span.selected { border-color: transparent; color: #fff; background: linear-gradient(145deg, #fe7540, #a449ec); box-shadow: 0 8px 18px rgba(161, 68, 233, 0.2); }.date-row small { color: #8b8690; font-size: 0.47rem; }.date-row .selected small { color: rgba(255, 255, 255, 0.75); }.date-row b { font-size: 0.73rem; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding-inline: 16px; }.time-grid button { height: 37px; border: 1px solid #dedbe2; border-radius: 10px; color: #3a3540; background: #fff; font-size: 0.62rem; font-weight: 800; }.time-grid button.selected { border-color: #9854ee; color: #8d4ae5; background: #f2eafa; }
.booking-confirm { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1.1fr; gap: 8px; align-items: center; padding: 12px 15px 17px; border-top: 1px solid #e7e4e9; background: rgba(255, 255, 255, 0.96); box-shadow: 0 -12px 28px rgba(45, 33, 62, 0.06); }.booking-confirm > span { display: grid; }.booking-confirm small { color: #8c8792; font-size: 0.47rem; }.booking-confirm strong { font-size: 0.66rem; }.booking-confirm button { height: 39px; border: 0; border-radius: 11px; color: #fff; background: var(--gradient); font-size: 0.58rem; font-weight: 900; }
.callout-column { display: grid; gap: 118px; direction: rtl; }
.callout-column.callout-left { padding-top: 48px; }.callout-column.callout-right { padding-bottom: 46px; }
.callout { position: relative; display: grid; grid-template-columns: 37px 1fr; gap: 13px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 19px; background: rgba(17, 17, 24, 0.76); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18); backdrop-filter: blur(12px); }
.callout > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(179, 106, 255, 0.24); border-radius: 10px; color: #c28bff; background: rgba(155, 77, 255, 0.08); font-size: 0.67rem; font-weight: 900; }
.callout h3 { margin: 1px 0 5px; font-size: 1rem; }.callout p { margin: 0; color: #9995a3; font-size: 0.84rem; line-height: 1.55; }
.callout::after { content: ""; position: absolute; top: 50%; width: 68px; height: 1px; background: linear-gradient(90deg, rgba(156, 89, 255, 0.1), rgba(255, 104, 75, 0.75)); }
.callout::before { content: ""; position: absolute; top: calc(50% - 4px); z-index: 2; width: 8px; height: 8px; border-top: 1px solid #ff6a49; border-right: 1px solid #ff6a49; }
.arrow-right::after { right: -68px; }.arrow-right::before { right: -68px; transform: rotate(45deg); }.arrow-left::after { left: -68px; transform: scaleX(-1); }.arrow-left::before { left: -68px; transform: rotate(-135deg); }

.client-experience { position: relative; }
.client-experience::before { content: ""; position: absolute; top: 170px; right: 50%; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(89, 103, 255, 0.13), transparent 68%); filter: blur(20px); transform: translateX(50%); pointer-events: none; }
.client-spotlight { position: relative; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 55px; align-items: center; min-height: 780px; padding: 54px; overflow: hidden; border: 1px solid var(--line); border-radius: 38px; background: radial-gradient(circle at 23% 34%, rgba(86, 111, 255, 0.16), transparent 34%), radial-gradient(circle at 88% 84%, rgba(255, 92, 47, 0.1), transparent 30%), linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)); }
.client-spotlight::after { content: ""; position: absolute; left: -90px; bottom: -155px; width: 390px; height: 390px; border: 1px solid rgba(255, 255, 255, 0.065); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.015), 0 0 0 130px rgba(255, 255, 255, 0.01); pointer-events: none; }
.spotlight-copy { position: relative; z-index: 2; }
.spotlight-label, .client-card-copy > span { color: #b580ff; font-size: 0.77rem; font-weight: 900; letter-spacing: 0.7px; }
.spotlight-copy h3 { margin: 10px 0 16px; font-size: clamp(2.35rem, 4vw, 3.85rem); line-height: 1.03; letter-spacing: -1.8px; }
.spotlight-copy > p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.journey-points { display: grid; gap: 4px; margin-top: 30px; }
.journey-points article { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 14px 0; border-top: 1px solid var(--line); }
.journey-points article > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(179, 106, 255, 0.23); border-radius: 10px; color: #c28bff; background: rgba(155, 77, 255, 0.08); font-size: 0.66rem; font-weight: 900; }
.journey-points h4 { margin: 0 0 2px; font-size: 1rem; }
.journey-points p { margin: 0; color: #918d99; font-size: 0.86rem; line-height: 1.55; }
.spotlight-device { position: relative; z-index: 2; display: grid; min-height: 690px; place-items: center; direction: ltr; }
.spotlight-device::before { content: ""; position: absolute; width: 500px; height: 500px; border: 1px dashed rgba(255, 255, 255, 0.08); border-radius: 50%; animation: orbit 28s linear infinite; }
.phone-client-focus { z-index: 3; width: 326px; transform: rotate(-1.4deg); }
.client-annotation { position: absolute; z-index: 6; display: flex; align-items: center; gap: 9px; color: #e2dee8; font-size: 0.74rem; font-weight: 800; direction: rtl; }
.client-annotation span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 11px; background: rgba(14, 14, 20, 0.9); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32); backdrop-filter: blur(12px); }
.client-annotation i { position: relative; width: 82px; height: 1px; background: linear-gradient(90deg, var(--orange), rgba(122, 100, 255, 0.25)); }
.client-annotation i::after { content: ""; position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-top: 1px solid var(--orange); border-right: 1px solid var(--orange); transform: rotate(45deg); }
.annotation-staff { top: 105px; right: -4px; flex-direction: row-reverse; }
.annotation-staff i, .annotation-time i { transform: scaleX(-1); }
.annotation-service { top: 293px; left: -8px; }
.annotation-time { right: -8px; bottom: 170px; flex-direction: row-reverse; }

.client-screen-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.client-screen-card { position: relative; display: grid; grid-template-columns: 1fr 218px; gap: 28px; align-items: start; min-height: 520px; padding: 34px 34px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)); }
.client-screen-card::before { content: ""; position: absolute; left: -40px; bottom: -90px; width: 290px; height: 290px; border-radius: 50%; background: radial-gradient(circle, rgba(103, 95, 255, 0.15), transparent 68%); }
.client-screen-card:nth-child(even) { grid-template-columns: 218px 1fr; }
.client-screen-card:nth-child(even) .client-card-copy { order: 2; }
.client-screen-card:nth-child(even) .client-mini-phone { order: 1; transform: rotate(2.2deg); }
.client-card-copy { position: relative; z-index: 2; padding-top: 8px; }
.client-card-copy h3 { margin: 8px 0 10px; font-size: 1.75rem; line-height: 1.12; letter-spacing: -0.6px; }
.client-card-copy p { margin: 0; color: #9d99a5; line-height: 1.7; }
.client-mini-phone { position: relative; z-index: 2; width: 218px; aspect-ratio: 9 / 19.35; justify-self: center; margin-bottom: -118px; padding: 6px; overflow: hidden; border: 1px solid #3c3b44; border-radius: 36px; background: linear-gradient(145deg, #45444d, #09090c 20%, #24242a); box-shadow: 0 30px 65px rgba(0, 0, 0, 0.48); transform: rotate(-2.2deg); }
.client-mini-phone::after { content: ""; position: absolute; inset: 2px; pointer-events: none; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 32px; }
.client-mini-phone img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 29px; }

@keyframes orbit { to { transform: rotate(360deg); } }

.management { overflow: hidden; border-block: 1px solid var(--line); background: radial-gradient(circle at 78% 35%, rgba(113, 49, 221, 0.15), transparent 32%), #0a0a0f; }
.management-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 80px; align-items: center; }
.management-copy > p { max-width: 520px; }
.management-points { display: grid; gap: 8px; margin-top: 35px; }
.management-points article { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.management-points article > span { color: #9a6df4; font-size: 0.72rem; font-weight: 900; }.management-points h3 { margin: 0 0 3px; font-size: 1.03rem; }.management-points p { margin: 0; color: #918d99; font-size: 0.87rem; }
.manager-demo { position: relative; display: grid; min-height: 710px; place-items: center; direction: ltr; }
.phone-manager { width: 330px; transform: rotate(-2deg); }
.schedule-screen { color: #efedf4; background: #0c0c11; }
.schedule-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 17px 13px; }.schedule-head small { color: #8e8995; font-size: 0.49rem; }.schedule-head h3 { margin: 0; font-size: 0.95rem; }.schedule-head button { width: 31px; height: 31px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; color: var(--orange); background: #18171e; font-size: 0.55rem; }
.team-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 0 15px 12px; }.team-tabs button { display: flex; height: 39px; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 11px; color: #87828e; background: #15151b; font-size: 0.56rem; font-weight: 800; }.team-tabs button.active { border-color: rgba(175, 101, 255, 0.4); color: #fff; background: rgba(144, 70, 234, 0.14); }.team-tabs i { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--orange), var(--purple)); font-style: normal; font-size: 0.48rem; }
.day-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; padding: 0 15px 14px; }.day-strip span { display: grid; height: 48px; place-content: center; border-radius: 11px; color: #8b8791; background: #15151b; text-align: center; }.day-strip span.active { color: #fff; background: linear-gradient(145deg, #ff7245, #9250ec); }.day-strip small { font-size: 0.45rem; }.day-strip b { font-size: 0.67rem; }
.schedule-list { padding: 0 14px; }.schedule-item { display: grid; grid-template-columns: 39px 1fr; gap: 8px; align-items: start; margin-bottom: 8px; direction: ltr; }.schedule-item time { padding-top: 11px; color: #8f8a97; font-size: 0.55rem; font-weight: 800; }.schedule-item article { position: relative; display: flex; min-height: 56px; align-items: center; justify-content: space-between; padding: 9px 10px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 12px; background: #17171e; direction: rtl; }.schedule-item article::before { content: ""; position: absolute; top: 8px; right: 0; bottom: 8px; width: 3px; border-radius: 3px; background: var(--orange); }.schedule-item article.accent::before { background: var(--purple); }.schedule-item.open article { border-style: dashed; border-color: rgba(79, 219, 155, 0.25); background: rgba(79, 219, 155, 0.045); }.schedule-item.open article::before { background: var(--green); }.schedule-item article > div { display: grid; padding-right: 5px; }.schedule-item b { font-size: 0.59rem; }.schedule-item small { color: #8f8a96; font-size: 0.45rem; }.tag { padding: 4px 7px; border-radius: 999px; font-size: 0.43rem; font-weight: 800; }.tag.done { color: var(--green); background: rgba(79, 219, 155, 0.09); }.tag.waiting { color: #ffc27b; background: rgba(255, 160, 59, 0.1); }.tag.free { color: var(--green); background: rgba(79, 219, 155, 0.1); }.more { border: 0; color: #aaa4b1; background: none; letter-spacing: 1px; }
.appointment-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: -2px 0 9px 47px; direction: ltr; }.appointment-actions button { display: grid; min-height: 40px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.065); border-radius: 9px; color: #ddd8e3; background: #13131a; font-size: 0.65rem; }.appointment-actions small { display: block; color: #837e8b; font-size: 0.41rem; }
.floating-add { position: absolute; right: 16px; bottom: 17px; display: grid; width: 43px; height: 43px; place-items: center; border: 0; border-radius: 14px; color: #fff; background: var(--gradient); box-shadow: 0 10px 24px rgba(162, 65, 205, 0.25); font-size: 1.2rem; }
.annotation { position: absolute; z-index: 8; display: flex; align-items: center; gap: 9px; color: #d9d5df; font-size: 0.76rem; font-weight: 700; direction: rtl; }.annotation span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 11px; background: rgba(17, 17, 24, 0.9); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28); }.annotation i { position: relative; width: 72px; height: 1px; background: linear-gradient(90deg, var(--orange), rgba(155, 77, 255, 0.25)); }.annotation i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--orange); border-right: 1px solid var(--orange); transform: rotate(45deg); }.annotation-top { top: 112px; left: -3px; }.annotation-middle { top: 355px; right: -8px; flex-direction: row-reverse; }.annotation-middle i { transform: scaleX(-1); }.annotation-bottom { left: 4px; bottom: 133px; }

.feature-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature-panel { display: flex; min-height: 545px; flex-direction: column; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)); }
.feature-copy > span { color: #b37cff; font-size: 0.77rem; font-weight: 800; }.feature-copy h3 { margin: 7px 0 8px; font-size: 1.56rem; line-height: 1.15; letter-spacing: -0.5px; }.feature-copy p { margin: 0; color: #9d99a5; line-height: 1.65; }
.feature-device { position: relative; width: 164px; aspect-ratio: 9 / 19.35; margin: 27px auto -105px; padding: 5px; overflow: hidden; border: 1px solid #3c3b44; border-radius: 29px; background: linear-gradient(145deg, #42414a, #09090c 22%, #24242a); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45); transform: rotate(-1.4deg); }
.feature-panel:nth-child(2) .feature-device { transform: rotate(1.4deg); }
.feature-device::after { content: ""; position: absolute; inset: 2px; pointer-events: none; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 26px; }
.feature-shot { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 23px; }
.ui-card { margin-top: auto; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 21px; background: #0e0e14; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }
.client-list { padding: 13px; }.fake-search { margin-bottom: 8px; padding: 11px 12px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 11px; color: #77727f; background: #16161e; font-size: 0.7rem; }.fake-search span { margin-right: 6px; }.fake-person { display: grid; grid-template-columns: 36px 1fr auto; gap: 9px; align-items: center; padding: 11px 5px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }.fake-person:last-child { border-bottom: 0; }.fake-person > i { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(145deg, #312438, #1a1923); font-style: normal; font-size: 0.62rem; font-weight: 800; }.fake-person > div { display: grid; }.fake-person b { font-size: 0.73rem; }.fake-person small { color: #85808d; font-size: 0.56rem; }.fake-person > span { color: #aa75f5; font-size: 0.56rem; font-weight: 700; }
.notification-card { padding: 25px 20px; text-align: center; }.bell { display: grid; width: 48px; height: 48px; place-items: center; margin: 0 auto 15px; border: 1px solid rgba(255, 122, 26, 0.2); border-radius: 15px; color: var(--orange); background: rgba(255, 122, 26, 0.08); }.notification-card > small { color: #8e8996; font-size: 0.66rem; }.notification-card h4 { margin: 7px 0 4px; font-size: 1rem; }.notification-card p { margin: 0 0 17px; color: #8e8996; font-size: 0.7rem; }.notification-card button { width: 100%; height: 40px; border: 0; border-radius: 11px; color: #fff; background: var(--gradient); font-size: 0.68rem; font-weight: 800; }
.stock-card { padding: 11px; }.stock-item { display: grid; grid-template-columns: 43px 1fr 33px; gap: 10px; align-items: center; padding: 11px 5px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }.stock-item:last-child { border-bottom: 0; }.product-shape { position: relative; display: block; width: 40px; height: 45px; border-radius: 9px 9px 13px 13px; }.product-shape::before { content: ""; position: absolute; top: -4px; left: 12px; width: 16px; height: 7px; border-radius: 3px 3px 0 0; background: #272630; }.product-shape.orange { background: linear-gradient(145deg, #ff9647, #d94a36); }.product-shape.violet { background: linear-gradient(145deg, #b57bff, #6131b8); }.product-shape.blue { background: linear-gradient(145deg, #7295ff, #3852be); }.stock-item > div { display: grid; }.stock-item b { font-size: 0.72rem; }.stock-item small { color: #8e8996; font-size: 0.59rem; }.stock-item > strong { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; color: var(--green); background: rgba(79, 219, 155, 0.08); font-size: 0.67rem; }.stock-item > strong.low { color: #ff9c75; background: rgba(255, 112, 77, 0.08); }
.capability-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 32px; }.capability-row span { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: #aaa6b2; background: rgba(255, 255, 255, 0.018); font-size: 0.82rem; }

.cta-section { padding-top: 45px; }
.cta { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 62px; align-items: center; overflow: hidden; padding: 58px; border: 1px solid rgba(173, 100, 255, 0.22); border-radius: 34px; background: radial-gradient(circle at 8% 20%, rgba(255, 111, 40, 0.14), transparent 35%), radial-gradient(circle at 92% 10%, rgba(139, 55, 239, 0.18), transparent 39%), #0d0d13; }
.cta::after { content: ""; position: absolute; left: -45px; bottom: -75px; width: 220px; height: 220px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 50%; }
.cta-copy { position: relative; z-index: 1; }.cta-proof { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: #b9b5c1; font-size: 0.82rem; }.cta-proof span { display: inline-flex; gap: 5px; }
.contact-form { position: relative; z-index: 2; display: grid; gap: 11px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(7, 7, 10, 0.55); backdrop-filter: blur(12px); }.contact-form label { display: grid; gap: 5px; }.contact-form label > span { color: #aca8b4; font-size: 0.72rem; font-weight: 700; }.contact-form input { width: 100%; height: 50px; padding: 0 14px; border: 1px solid #2b2932; border-radius: 12px; color: #fff; background: #111117; outline: none; }.contact-form input::placeholder { color: #696570; }.contact-form input:focus { border-color: #8b5bea; }.contact-form .button { width: 100%; margin-top: 3px; }.form-message { min-height: 21px; margin: 0; color: #bfb9ca; font-size: 0.76rem; line-height: 1.5; text-align: center; }
.footer { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; min-height: 145px; margin-top: 15px; border-top: 1px solid var(--line); color: #797582; font-size: 0.8rem; }.footer .brand-word { font-size: 1.45rem; }.footer .brand-mark { width: 37px; height: 37px; }.footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }.reveal.visible { opacity: 1; transform: none; }.delay-1 { transition-delay: 0.12s; }.delay-2 { transition-delay: 0.22s; }

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .hero { grid-template-columns: 0.94fr 1.06fr; gap: 22px; }
  .hero-stage { transform: scale(0.93); transform-origin: center; }
  .annotated-tour { grid-template-columns: 1fr 326px 1fr; gap: 38px; padding-inline: 18px; }
  .callout { padding: 16px; }
  .callout::after { width: 43px; }.arrow-right::after { right: -43px; }.arrow-right::before { right: -43px; }.arrow-left::after { left: -43px; }.arrow-left::before { left: -43px; }
  .client-spotlight { grid-template-columns: 0.9fr 1.1fr; gap: 24px; padding: 42px; }
  .spotlight-device { transform: scale(0.94); }
  .client-screen-card { grid-template-columns: 1fr 196px; gap: 20px; padding-inline: 27px; }
  .client-screen-card:nth-child(even) { grid-template-columns: 196px 1fr; }
  .client-mini-phone { width: 196px; }
  .management-grid { gap: 35px; }
  .annotation-top, .annotation-bottom { left: 0; }.annotation-middle { right: 0; }
}

@media (max-width: 880px) {
  .nav-links { position: absolute; top: 67px; right: 20px; left: 20px; display: none; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: rgba(13, 13, 18, 0.97); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45); }
  .nav-links.open { display: grid; }.nav-links a { padding: 11px 8px; }.nav-links a::after { display: none; }
  .menu-toggle { display: block; margin-right: auto; }.nav-cta { display: none; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 68px; text-align: center; }.hero-copy { max-width: 720px; margin-inline: auto; }.hero .lead { margin-inline: auto; }.hero-actions, .trust-row { justify-content: center; }.hero-stage { width: min(620px, 100%); margin-inline: auto; transform: none; }
  .client-spotlight { grid-template-columns: 1fr; gap: 10px; padding: 42px 28px 28px; }
  .spotlight-copy { max-width: 650px; margin-inline: auto; text-align: center; }
  .spotlight-copy > p { margin-inline: auto; }
  .journey-points { max-width: 580px; margin-inline: auto; margin-top: 28px; text-align: right; }
  .spotlight-device { width: min(630px, 100%); margin-inline: auto; transform: none; }
  .client-screen-grid { grid-template-columns: 1fr; }
  .client-screen-card, .client-screen-card:nth-child(even) { width: min(760px, 100%); grid-template-columns: 1fr 228px; margin-inline: auto; padding-inline: 38px; }
  .client-screen-card:nth-child(even) .client-card-copy, .client-screen-card:nth-child(even) .client-mini-phone { order: initial; }
  .client-mini-phone { width: 228px; }
  .annotated-tour { grid-template-columns: 1fr 340px 1fr; gap: 20px; padding-inline: 12px; }.callout { display: block; padding: 14px; text-align: center; }.callout > span { margin: 0 auto 8px; }.callout h3 { font-size: 0.88rem; }.callout p { font-size: 0.72rem; }.callout::after { width: 24px; }.arrow-right::after { right: -24px; }.arrow-right::before { right: -24px; }.arrow-left::after { left: -24px; }.arrow-left::before { left: -24px; }
  .management-grid { grid-template-columns: 1fr; }.management-copy { max-width: 690px; margin-inline: auto; text-align: center; }.management-copy > p { margin-inline: auto; }.management-points { max-width: 600px; margin-inline: auto; margin-top: 30px; text-align: right; }.manager-demo { width: min(640px, 100%); margin-inline: auto; }
  .feature-showcase { grid-template-columns: 1fr; }.feature-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; min-height: 0; align-items: center; }.ui-card { width: 100%; margin: 0; }
  .cta { grid-template-columns: 1fr; gap: 36px; }.cta-copy { text-align: center; }.cta-copy > p { margin-inline: auto; }.cta-proof { justify-content: center; }.contact-form { width: min(520px, 100%); margin-inline: auto; }
  .footer { grid-template-columns: 1fr; justify-items: center; gap: 11px; padding-block: 32px; text-align: center; }.footer .demo-note { text-align: center; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 24px, 1180px); }
  .nav { height: 67px; }.brand-word { font-size: 1.45rem; }.brand-mark { width: 38px; height: 38px; }
  .hero { min-height: auto; padding-block: 54px 35px; gap: 22px; }.hero h1 { font-size: clamp(3.1rem, 15vw, 4.2rem); letter-spacing: -2px; }.lead { font-size: 1.02rem; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.trust-row { gap: 12px 18px; font-size: 0.78rem; }
  .hero-stage { height: 535px; margin-top: 10px; }.stage-ring { width: 390px; height: 390px; }.phone-main { width: 252px; left: 2%; }.phone-secondary { width: 205px; right: 0; top: 24px; }.float-note { min-width: 123px; padding: 9px 11px; }.float-note span { font-size: 0.67rem; }.note-brand { top: 76px; left: -4px; }.note-live { right: -5px; bottom: 68px; }
  .phone-main .welcome-block { padding-top: 9px; }.phone-main .next-appointment { margin-block: 8px; }.phone-main .mock-primary { margin-block: 10px 13px; }.phone-main .service-card { min-height: 75px; }
  .privacy-inner { align-items: flex-start; padding-block: 18px; text-align: right; }.privacy-inner p { font-size: 0.78rem; line-height: 1.55; }
  .section { padding-block: 85px; }.section-heading { margin-bottom: 40px; }.section-heading h2, .management-copy h2, .cta h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); letter-spacing: -1.8px; }.section-heading > p, .management-copy > p, .cta-copy > p { font-size: 1rem; }
  .client-spotlight { min-height: 0; padding: 28px 16px 22px; border-radius: 28px; }
  .spotlight-copy { padding-inline: 5px; }
  .spotlight-copy h3 { font-size: clamp(2.15rem, 10vw, 2.9rem); }
  .spotlight-copy > p { font-size: 0.98rem; }
  .spotlight-device { min-height: 610px; }
  .spotlight-device::before { width: 360px; height: 360px; }
  .phone-client-focus { width: min(276px, 82vw); }
  .client-annotation { display: none; }
  .client-screen-card, .client-screen-card:nth-child(even) { display: flex; min-height: 520px; flex-direction: column; gap: 24px; padding: 25px 22px 0; }
  .client-card-copy { text-align: center; }
  .client-card-copy h3 { font-size: 1.55rem; }
  .client-mini-phone, .client-screen-card:nth-child(even) .client-mini-phone { width: 205px; margin-inline: auto; margin-bottom: -126px; transform: rotate(-1.4deg); }
  .annotated-tour { display: flex; min-height: 0; flex-direction: column; gap: 16px; padding: 26px 14px; border-radius: 27px; }.phone-tour { order: 1; width: min(292px, 88vw); }.callout-column { width: 100%; gap: 9px; padding: 0 !important; }.callout-left { order: 2; }.callout-right { order: 3; }.callout { display: grid; grid-template-columns: 35px 1fr; text-align: right; }.callout > span { margin: 0; }.callout::before, .callout::after { display: none; }
  .management { padding-block: 82px; }.manager-demo { min-height: 640px; }.phone-manager { width: min(292px, 88vw); }.annotation { font-size: 0.66rem; }.annotation i { width: 37px; }.annotation-top { top: 85px; left: -2px; }.annotation-middle { top: 322px; right: -2px; }.annotation-bottom { bottom: 105px; left: -2px; }
  .feature-panel { display: flex; gap: 26px; min-height: 0; padding: 23px; }.ui-card { margin-top: 0; }.feature-copy h3 { font-size: 1.4rem; }.feature-copy p { font-size: 0.94rem; }
  .cta-section { padding-top: 25px; }.cta { padding: 32px 18px; border-radius: 26px; }.cta-proof { gap: 8px 13px; font-size: 0.75rem; }.contact-form { padding: 16px; }
}

@media (max-width: 420px) {
  .hero-stage { height: 500px; }.phone-main { left: 0; width: 232px; }.phone-secondary { width: 183px; }.note-brand { top: 62px; }.note-live { bottom: 53px; }
  .phone-main .screen-title, .phone-main .service-grid { display: none; }.phone-main .mock-primary { margin-top: 15px; }.phone-main .phone-nav { padding-bottom: 10px; }
  .annotation span { padding: 7px 9px; }.annotation-top { left: -5px; }.annotation-middle { right: -5px; }.annotation-bottom { left: -5px; }
  .spotlight-device { min-height: 565px; }
  .phone-client-focus { width: min(254px, 82vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
