:root {
  --bg: #f6efeb;
  --surface: #ffffff;
  --text: #1e1e1e;
  --text-muted: #5a5a5a;
  --line: rgba(30, 30, 30, 0.08);
  --line-strong: rgba(30, 30, 30, 0.14);
  --shadow-soft: 0 24px 60px rgba(27, 27, 27, 0.08);
  --shadow-strong: 0 26px 80px rgba(28, 28, 28, 0.12);
  --blue: #c0cafb;
  --yellow: #eadb95;
  --orange: #f2d4b6;
  --mint: #cbe5d9;
  --pink: #f5c2d5;
  --dark-pill: #161616;
  --dark-pill-strong: #0d0d0d;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --content-width: 1180px;
  --feedback-success-bg: linear-gradient(180deg, rgba(232, 244, 237, 0.98), rgba(245, 249, 247, 0.98));
  --feedback-error-bg: linear-gradient(180deg, rgba(245, 194, 213, 0.94), rgba(255, 255, 255, 0.96));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(192, 202, 251, 0.34), transparent 25%),
    radial-gradient(circle at 90% 0%, rgba(245, 194, 213, 0.26), transparent 20%),
    radial-gradient(circle at 20% 100%, rgba(203, 229, 217, 0.22), transparent 26%),
    linear-gradient(180deg, #fcf6f3 0%, var(--bg) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(252, 246, 243, 0), rgba(252, 246, 243, 0.82));
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.page-shell {
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

body.has-page-transitions:not(.is-ready) .page-shell {
  opacity: 0;
  transform: translateY(18px);
}

body.is-leaving .page-shell {
  opacity: 0;
  transform: translateY(14px) scale(0.992);
}

body.is-leaving::after {
  opacity: 1;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.utility-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

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

.brand-picture,
.footer-brand-picture {
  display: block;
  flex: 0 0 auto;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-current,
.site-nav a[aria-current] {
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(180deg, #2a2a2a 0%, var(--dark-pill-strong) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 26px rgba(22, 22, 22, 0.2);
}

.site-nav a[aria-current]:hover,
.site-nav a[aria-current]:focus-visible,
.site-nav a.is-current:hover,
.site-nav a.is-current:focus-visible {
  color: #fff !important;
}

.nav-link-alt,
.nav-link-switch {
  color: var(--text) !important;
  font-weight: 600 !important;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(242, 212, 182, 0.44);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(30, 30, 30, 0.06);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.lang-option.is-active {
  background: var(--dark-pill);
  color: #fff;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 16px;
  background: var(--dark-pill);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(22, 22, 22, 0.16);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--dark-pill);
  color: #fff;
}

.header-quick-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(30, 30, 30, 0.08);
}

main {
  display: grid;
  gap: 34px;
  padding-top: 28px;
}

section[id] {
  scroll-margin-top: 132px;
}

.hero-section,
.qualify-section,
.pain-solution-section,
.how-section,
.feature-section,
.trust-section,
.faq-section,
.lead-section,
.legal-page,
.contact-page {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  min-height: 720px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}

.hero-bg-shape-one {
  top: 24px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 194, 213, 0.6), transparent 70%);
}

.hero-bg-shape-two {
  bottom: -20px;
  left: 38%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(192, 202, 251, 0.56), transparent 68%);
  animation-duration: 14s;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-kicker {
  max-width: 42ch;
  margin-top: 6px;
  padding-left: 16px;
  border-left: 4px solid rgba(192, 202, 251, 0.9);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
}

.hero-text,
.comparison-card p,
.pain-card p,
.practice-card p,
.feature-card p,
.security-card p,
.faq-list p,
.site-footer p,
.legal-page p,
.legal-page li,
.contact-page p,
.contact-page li,
.lead-copy p,
.trust-card li {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.hero-text {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.04);
}

.button:active {
  transform: translateY(0);
}

.button-dark {
  background: linear-gradient(180deg, #232323 0%, var(--dark-pill) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(22, 22, 22, 0.22);
}

.button-accent {
  background: linear-gradient(180deg, rgba(211, 218, 252, 0.9), rgba(192, 202, 251, 0.78));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 16px 30px rgba(192, 202, 251, 0.28);
}

.button-light {
  border: 0;
  background: linear-gradient(180deg, rgba(220, 239, 230, 0.98), rgba(203, 229, 217, 0.9));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 24px rgba(111, 164, 141, 0.12);
}

.hero-proof,
.lead-notes,
.trust-card ul,
.qualify-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.hero-proof li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px 0 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(192, 202, 251, 0.92);
  box-shadow: 0 0 0 6px rgba(192, 202, 251, 0.18);
}

.comparison-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-stage {
  position: relative;
  min-height: 580px;
  padding: 12px 48px 24px;
}

.hero-phone {
  position: relative;
  width: min(100%, 368px);
  margin: 28px auto 0;
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f4ece7 100%);
  box-shadow: var(--shadow-strong);
  animation: floatY 6.2s ease-in-out infinite;
  z-index: 2;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-phone-screenshot {
  padding: 10px;
}

.hero-phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.phone-screen {
  padding: 20px 20px 18px;
  border-radius: 28px;
  background: #efe9e4;
}

.phone-app-header {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.phone-app-icon,
.phone-app-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--textPrimary, var(--text));
  font-size: 0.92rem;
  font-weight: 700;
}

.phone-app-icon {
  border: 1px solid rgba(30, 30, 30, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.phone-app-avatar {
  background: rgba(30, 30, 30, 0.1);
}

.phone-app-icon::before,
.phone-app-icon::after,
.phone-app-avatar::before,
.phone-app-avatar::after,
.phone-panel-icon::before,
.phone-panel-icon::after,
.phone-tile-icon::before,
.phone-tile-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.phone-icon-help::before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(30, 30, 30, 0.86);
  border-radius: 999px;
}

.phone-icon-help::after {
  content: "?";
  position: absolute;
  color: rgba(30, 30, 30, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.phone-icon-gallery::before {
  width: 16px;
  height: 12px;
  border: 2px solid rgba(30, 30, 30, 0.82);
  border-radius: 3px;
  top: 10px;
  left: 9px;
}

.phone-icon-gallery::after {
  width: 8px;
  height: 6px;
  left: 13px;
  top: 15px;
  border-left: 2px solid rgba(30, 30, 30, 0.82);
  border-bottom: 2px solid rgba(30, 30, 30, 0.82);
  transform: skew(-28deg) rotate(-45deg);
}

.phone-icon-share::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(30, 30, 30, 0.84);
  border-right: 2px solid rgba(30, 30, 30, 0.84);
  transform: rotate(45deg);
  top: 8px;
  left: 13px;
}

.phone-icon-share::after {
  width: 2px;
  height: 12px;
  background: rgba(30, 30, 30, 0.84);
  transform: rotate(45deg);
  top: 14px;
  left: 16px;
}

.phone-icon-user::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.88);
  top: 8px;
  left: 12px;
}

.phone-icon-user::after {
  width: 16px;
  height: 8px;
  border: 2px solid rgba(30, 30, 30, 0.88);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: 18px;
  left: 9px;
}

.phone-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.18);
}

.phone-greeting {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.phone-title {
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1;
}

.phone-title-home {
  max-width: none;
  margin-top: 10px;
  font-size: 1.88rem;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.phone-title-home-line {
  display: block;
  white-space: nowrap;
}

.phone-chip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.phone-control-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.phone-control {
  display: grid;
  gap: 4px;
  padding: 12px 12px 11px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.06);
}

.phone-control-label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-control-value {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.phone-chip {
  padding: 12px 12px;
  border-radius: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.05);
}

.phone-chip.pink {
  background: rgba(245, 194, 213, 0.92);
}

.phone-chip.orange {
  background: rgba(242, 212, 182, 0.9);
}

.phone-progress {
  margin-top: 12px;
  padding: 16px;
  border-radius: 22px;
  background: var(--yellow);
}

.phone-progress-panel {
  margin-top: 20px;
  padding: 14px 14px 12px;
  border-radius: 28px;
}

.phone-panel-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.phone-panel-control {
  position: relative;
  padding: 10px 12px 11px;
  border-radius: 18px;
  background: rgba(255, 248, 220, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.phone-panel-control-labeled {
  padding-top: 14px;
}

.phone-panel-caption {
  position: absolute;
  top: -7px;
  left: 14px;
  display: inline-block;
  margin: 0;
  padding: 0 5px;
  background: var(--yellow);
  color: rgba(30, 30, 30, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-panel-main {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  font-size: 0.95rem;
}

.phone-panel-main strong {
  font-size: 0.98rem;
}

.phone-panel-icon,
.phone-panel-caret {
  position: relative;
  color: rgba(30, 30, 30, 0.72);
  font-size: 0.9rem;
  line-height: 1;
}

.phone-panel-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.phone-panel-icon-calendar::before {
  width: 12px;
  height: 11px;
  border: 1.7px solid rgba(30, 30, 30, 0.72);
  border-radius: 3px;
  top: 1px;
  left: 1px;
}

.phone-panel-icon-calendar::after {
  width: 8px;
  height: 2px;
  top: 4px;
  left: 3px;
  background: rgba(30, 30, 30, 0.72);
  box-shadow:
    -3px -4px 0 -0.5px rgba(30, 30, 30, 0.72),
    3px -4px 0 -0.5px rgba(30, 30, 30, 0.72);
}

.phone-panel-icon-updates::before {
  width: 12px;
  height: 10px;
  border: 1.7px solid rgba(30, 30, 30, 0.72);
  border-radius: 2px;
  top: 2px;
  left: 1px;
}

.phone-panel-icon-updates::after {
  width: 6px;
  height: 4px;
  border-left: 1.7px solid rgba(30, 30, 30, 0.72);
  border-bottom: 1.7px solid rgba(30, 30, 30, 0.72);
  transform: skew(-24deg) rotate(-45deg);
  top: 5px;
  left: 4px;
}

.phone-panel-caret {
  margin-left: auto;
  width: 10px;
  height: 10px;
}

.phone-panel-caret::before {
  width: 6px;
  height: 6px;
  border-right: 1.7px solid rgba(30, 30, 30, 0.72);
  border-bottom: 1.7px solid rgba(30, 30, 30, 0.72);
  transform: rotate(45deg);
  top: 1px;
  left: 1px;
}

.phone-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.phone-progress-copy {
  margin: 5px 0 0;
  color: rgba(30, 30, 30, 0.56);
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.phone-progress-bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.phone-progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--dark-pill);
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.phone-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 126px;
  padding: 16px 14px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.05);
}

.phone-tile.blue {
  background: rgba(192, 202, 251, 0.9);
}

.phone-tile.yellow {
  background: rgba(234, 219, 149, 0.86);
}

.phone-tile.pink {
  background: rgba(245, 194, 213, 0.84);
}

.phone-tile.mint {
  background: rgba(203, 229, 217, 0.9);
}

.phone-tile-text {
  display: block;
  max-width: 8ch;
  font-size: 0.98rem;
  line-height: 1.04;
}

.phone-tile-badge,
.phone-tile-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(30, 30, 30, 0.58);
  font-size: 0.96rem;
  font-weight: 700;
}

.phone-tile-badge {
  left: 14px;
  bottom: 12px;
}

.phone-tile-arrow {
  right: 14px;
  bottom: 12px;
  width: auto;
  height: auto;
  background: transparent;
  font-size: 1.16rem;
}

.phone-tile-icon {
  position: absolute;
}

.phone-tile-icon-profile::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.58);
  top: 9px;
  left: 15px;
}

.phone-tile-icon-profile::after {
  width: 14px;
  height: 7px;
  border: 1.8px solid rgba(30, 30, 30, 0.58);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: 19px;
  left: 12px;
}

.phone-tile-icon-checklist::before {
  width: 14px;
  height: 18px;
  border: 1.8px solid rgba(30, 30, 30, 0.56);
  border-radius: 4px;
  top: 8px;
  left: 13px;
}

.phone-tile-icon-checklist::after {
  width: 10px;
  height: 7px;
  border-left: 1.8px solid rgba(30, 30, 30, 0.56);
  border-bottom: 1.8px solid rgba(30, 30, 30, 0.56);
  transform: skew(-20deg) rotate(-45deg);
  top: 15px;
  left: 16px;
}

.phone-tile-icon-learn::before {
  width: 16px;
  height: 12px;
  border: 1.8px solid rgba(30, 30, 30, 0.56);
  border-radius: 3px;
  top: 11px;
  left: 12px;
}

.phone-tile-icon-learn::after {
  width: 12px;
  height: 2px;
  background: rgba(30, 30, 30, 0.56);
  top: 17px;
  left: 14px;
  box-shadow: 0 4px 0 rgba(30, 30, 30, 0.56);
}

.phone-tile-icon-accountant::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1.8px solid rgba(30, 30, 30, 0.56);
  top: 8px;
  left: 15px;
}

.phone-tile-icon-accountant::after {
  width: 14px;
  height: 8px;
  border: 1.8px solid rgba(30, 30, 30, 0.56);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: 20px;
  left: 12px;
}

.hero-float-card {
  position: absolute;
  width: 218px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.12);
  animation: floatCard 8.4s ease-in-out infinite;
  z-index: 3;
}

.hero-float-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-float-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.hero-float-card-top {
  top: -10px;
  left: -46px;
  width: 232px;
}

.hero-float-card-bottom {
  width: 228px;
  right: -52px;
  bottom: 22px;
  animation-delay: -3s;
}

.hero-stage-dashboard {
  min-height: 580px;
  padding: 18px 12px 12px;
}

.dashboard-shell {
  position: relative;
  width: min(100%, 418px);
  margin: 12px auto 0;
  padding: 16px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f4ece7 100%);
  box-shadow: var(--shadow-strong);
  animation: floatY 6.2s ease-in-out infinite;
  z-index: 2;
}

.dashboard-screen {
  display: grid;
  gap: 12px;
  padding: 18px 16px 20px;
  border-radius: 28px;
  background: #fbf5f2;
}

.dashboard-topbar {
  display: flex;
  gap: 6px;
}

.dashboard-greeting {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.dashboard-title {
  font-size: 1.84rem;
  line-height: 0.98;
}

.dashboard-primary-card,
.dashboard-summary-card,
.dashboard-list-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.05);
}

.dashboard-primary-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(203, 229, 217, 0.94);
}

.dashboard-primary-card strong,
.dashboard-summary-card strong,
.dashboard-list-card strong {
  display: block;
  font-size: 1rem;
}

.dashboard-primary-card p,
.dashboard-summary-card p,
.dashboard-list-card p,
.dashboard-list-meta {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.dashboard-primary-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 1.45rem;
}

.dashboard-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dashboard-action-chip {
  display: grid;
  justify-items: start;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.05);
}

.dashboard-action-chip span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-action-chip strong {
  font-size: 0.95rem;
}

.dashboard-action-chip.blue {
  background: rgba(192, 202, 251, 0.9);
}

.dashboard-action-chip.orange {
  background: rgba(242, 212, 182, 0.9);
}

.dashboard-summary-card {
  padding: 14px;
}

.dashboard-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.dashboard-pill.blue {
  background: rgba(192, 202, 251, 0.82);
}

.dashboard-pill.yellow {
  background: rgba(234, 219, 149, 0.84);
}

.dashboard-pill.red {
  background: rgba(255, 218, 218, 0.9);
}

.dashboard-pill.orange {
  background: rgba(242, 212, 182, 0.92);
}

.dashboard-lists {
  display: grid;
  gap: 10px;
}

.dashboard-list-card {
  padding: 14px;
}

.dashboard-list-items {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.dashboard-list-item {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--bg);
}

.dashboard-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dashboard-list-head strong {
  font-size: 0.88rem;
}

.dashboard-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dashboard-mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.dashboard-mini-pill.blue {
  background: rgba(192, 202, 251, 0.9);
}

.dashboard-mini-pill.yellow {
  background: rgba(234, 219, 149, 0.82);
}

.dashboard-mini-pill.pink {
  background: rgba(245, 194, 213, 0.82);
}

.dashboard-mini-pill.red {
  background: rgba(255, 218, 218, 0.9);
}

.dashboard-mini-pill.mint {
  background: rgba(203, 229, 217, 0.9);
}

.float-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualify-grid,
.trust-grid,
.pain-grid,
.practice-grid,
.feature-grid,
.security-grid,
.lead-layout {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.qualify-grid,
.trust-grid {
  grid-template-columns: 1fr 1fr;
}

.pain-grid,
.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.practice-grid,
.security-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lead-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 28px;
}

.lead-section {
  overflow: visible;
  z-index: 3;
}

.qualify-card,
.pain-card,
.practice-card,
.feature-card,
.security-card,
.trust-card,
.lead-form {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 180ms ease,
    background 220ms ease;
}

.qualify-card.yes {
  background: linear-gradient(180deg, rgba(203, 229, 217, 0.66), rgba(255, 255, 255, 0.9));
}

.qualify-card.no {
  background: linear-gradient(180deg, rgba(245, 194, 213, 0.46), rgba(255, 255, 255, 0.92));
}

.pain-card {
  min-height: 220px;
}

.pain-card h3,
.practice-card h3,
.feature-card h3,
.security-card h3,
.trust-card h3,
.qualify-card h3 {
  margin-top: 10px;
  font-size: 1.34rem;
}

.practice-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 235, 0.95));
}

@media (hover: hover) and (pointer: fine) {
  .hero-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 74px rgba(28, 28, 28, 0.14);
  }

  .qualify-card:hover,
  .pain-card:hover,
  .practice-card:hover,
  .feature-card:hover,
  .security-card:hover,
  .trust-card:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 30, 30, 0.12);
    box-shadow:
      0 20px 38px rgba(31, 31, 31, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  }

  .qualify-card.yes:hover {
    box-shadow:
      0 20px 42px rgba(111, 164, 141, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .qualify-card.no:hover {
    box-shadow:
      0 20px 42px rgba(197, 123, 149, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .pain-card:hover {
    box-shadow:
      0 20px 40px rgba(192, 202, 251, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .practice-card:hover,
  .feature-card:hover,
  .security-card:hover,
  .trust-card:hover {
    box-shadow:
      0 20px 40px rgba(30, 30, 30, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .feature-card.mint:hover {
    box-shadow:
      0 22px 42px rgba(111, 164, 141, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .feature-card.blue:hover {
    box-shadow:
      0 22px 42px rgba(127, 145, 233, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .feature-card.orange:hover {
    box-shadow:
      0 22px 42px rgba(214, 161, 110, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .feature-card.pink:hover {
    box-shadow:
      0 22px 42px rgba(206, 128, 160, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .feature-card.yellow:hover {
    box-shadow:
      0 22px 42px rgba(198, 173, 81, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  }

  .lead-action-card:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 30, 30, 0.12);
    box-shadow: 0 22px 42px rgba(31, 31, 31, 0.09);
  }
}

.feature-grid-expanded {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card.mint {
  background: rgba(203, 229, 217, 0.84);
}

.feature-card.blue {
  background: rgba(192, 202, 251, 0.8);
}

.feature-card.orange {
  background: rgba(242, 212, 182, 0.82);
}

.feature-card.pink {
  background: rgba(245, 194, 213, 0.84);
}

.feature-card.yellow {
  background: rgba(234, 219, 149, 0.78);
}

.feature-grid-triple {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card ul,
.qualify-card ul,
.lead-notes {
  display: grid;
  gap: 10px;
}

.trust-card li,
.qualify-card li,
.lead-notes li {
  position: relative;
  padding-left: 18px;
}

.trust-card li::before,
.qualify-card li::before,
.lead-notes li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dark-pill);
}

.trust-card.dont-card li::before {
  background: rgba(30, 30, 30, 0.42);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

details {
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

summary {
  position: relative;
  cursor: pointer;
  padding-right: 34px;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
  transition: color 180ms ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(30, 30, 30, 0.34);
  border-bottom: 1.5px solid rgba(30, 30, 30, 0.34);
  transform: translateY(-65%) rotate(45deg);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

details p {
  margin: 12px 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    margin-top 180ms ease;
}

details[open] {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(30, 30, 30, 0.12);
  box-shadow: 0 16px 28px rgba(30, 30, 30, 0.04);
}

details[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
  border-color: rgba(30, 30, 30, 0.46);
}

details[open] p {
  max-height: 180px;
  opacity: 1;
}

details:hover {
  border-color: rgba(30, 30, 30, 0.12);
  box-shadow: 0 12px 24px rgba(30, 30, 30, 0.04);
}

details:hover summary,
details:focus-within summary {
  color: var(--text);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 6px 0 6px 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lead-copy {
  padding-right: 12px;
}

.lead-actions-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.lead-action-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 200ms ease,
    border-color 180ms ease;
}

.lead-action-card p {
  margin: 0;
}

.lead-action-card strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.lead-action-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

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

.field-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.field-control {
  position: relative;
}

.lead-form input,
.lead-form select,
.custom-select-trigger {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 243, 0.98));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 22px rgba(30, 30, 30, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.lead-form input::placeholder {
  color: rgba(90, 90, 90, 0.78);
}

.lead-form input:hover,
.lead-form select:hover,
.custom-select-trigger:hover {
  border-color: rgba(30, 30, 30, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 22px rgba(30, 30, 30, 0.06);
  transform: translateY(-1px);
}

.lead-form input:focus,
.lead-form select:focus,
.custom-select-trigger:focus {
  outline: 2px solid rgba(192, 202, 251, 0.8);
  outline-offset: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 26px rgba(192, 202, 251, 0.24);
  transform: translateY(-1px);
}

.form-field-select .field-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(30, 30, 30, 0.46);
  border-bottom: 2px solid rgba(30, 30, 30, 0.46);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.form-field-select:focus-within .field-control::after {
  border-color: var(--text);
  transform: translateY(-40%) rotate(225deg);
}

.custom-select {
  position: relative;
  display: block;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  padding-right: 54px;
  text-align: left;
  cursor: pointer;
  color: var(--text-muted);
}

.custom-select.has-value .custom-select-trigger {
  color: var(--text);
}

.custom-select.is-open .custom-select-trigger {
  border-color: rgba(30, 30, 30, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 28px rgba(192, 202, 251, 0.16);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0;
  padding: 8px;
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 42px rgba(30, 30, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.custom-select-menu[hidden] {
  display: none !important;
}

.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0 12px 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.custom-select-option + .custom-select-option {
  margin-top: 2px;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: rgba(30, 30, 30, 0.028);
  transform: translateY(-1px);
}

.custom-select-option::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.custom-select-option.is-selected {
  background: rgba(30, 30, 30, 0.04);
  color: var(--text);
  font-weight: 600;
}

.custom-select-option.is-selected:hover,
.custom-select-option.is-selected:focus-visible {
  background: rgba(30, 30, 30, 0.05);
}

.custom-select-option.is-selected::after {
  content: "\2713";
  display: grid;
  place-items: center;
  background: rgba(30, 30, 30, 0.035);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 1;
  transform: scale(1);
}

.lead-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 54px;
}

.lead-form select:required:invalid {
  color: var(--text-muted);
}

.lead-form option {
  color: var(--text);
  background: #fffaf8;
}

.lead-form.is-submitting .button-dark {
  position: relative;
  pointer-events: none;
  cursor: wait;
  opacity: 0.92;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(22, 22, 22, 0.28);
}

.lead-form.is-submitting .button-dark::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: lead-button-spin 0.8s linear infinite;
}

@keyframes lead-button-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-feedback {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(30, 30, 30, 0.05);
}

.form-feedback.is-visible {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
}

.form-feedback.is-visible::before {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 30, 30, 0.06);
  font-size: 1rem;
  font-weight: 800;
}

.form-feedback.is-success {
  color: #1e4334;
  border-color: rgba(53, 116, 84, 0.18);
  background: var(--feedback-success-bg);
}

.form-feedback.is-success::before {
  content: "\2713";
  color: #1e4334;
}

.form-feedback.is-error {
  color: #5e2130;
  border-color: rgba(158, 71, 96, 0.22);
  background: var(--feedback-error-bg);
}

.form-feedback.is-error::before {
  content: "!";
  color: #5e2130;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 26px;
  margin-top: 18px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(27, 27, 27, 0.08);
}

.footer-brand {
  display: grid;
  gap: 10px;
  padding-right: 18px;
}

.footer-brand strong,
.footer-brand p {
  margin: 0;
}

.footer-brand-logo {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  align-content: start;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 30, 30, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(30, 30, 30, 0.04);
  color: var(--text-muted);
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  animation: footerLinkIn 440ms ease both;
}

.footer-links a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(30, 30, 30, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 30px rgba(30, 30, 30, 0.08);
}

.footer-links a:nth-child(1) {
  animation-delay: 40ms;
}

.footer-links a:nth-child(2) {
  animation-delay: 90ms;
}

.footer-links a:nth-child(3) {
  animation-delay: 140ms;
}

.footer-links a:nth-child(4) {
  animation-delay: 190ms;
}

.footer-links a:nth-child(5) {
  animation-delay: 240ms;
}

.legal-layout {
  min-height: calc(100vh - 120px);
}

.legal-page,
.contact-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.legal-page h1,
.contact-page h1 {
  max-width: none;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.legal-page h2,
.contact-page h2 {
  margin-top: 28px;
  font-size: 1.55rem;
}

.legal-page ul,
.contact-page ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-meta {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  min-height: 46px;
  padding: 0 18px 0 16px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(30, 30, 30, 0.06);
  color: var(--text);
  font-weight: 600;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.back-link::before {
  content: "\2190";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.05);
  color: var(--text);
  font-size: 0.95rem;
}

.back-link:hover,
.back-link:focus-visible {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(30, 30, 30, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 30px rgba(30, 30, 30, 0.08);
  transform: translateY(-1px);
}

.back-link:active {
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-section.is-visible .reveal-card {
  animation: riseIn 520ms ease forwards;
}

.reveal-section.is-visible .reveal-card:nth-child(1) {
  animation-delay: 80ms;
}

.reveal-section.is-visible .reveal-card:nth-child(2) {
  animation-delay: 180ms;
}

.reveal-section.is-visible .reveal-card:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(2px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -12px, 0);
  }
}

@keyframes footerLinkIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-bg-shape,
  .hero-phone,
  .hero-float-card,
  .reveal-section,
  .reveal-card,
  .site-header,
  .button,
  .page-shell,
  body::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1280px) {
  html {
    scroll-padding-top: 124px;
  }

  section[id] {
    scroll-margin-top: 124px;
  }

  .page-shell {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  main {
    gap: 30px;
    padding-top: 24px;
  }

  .hero-section {
    gap: 28px;
    min-height: 660px;
  }

  .hero-stage {
    padding: 8px 28px 18px;
  }

  .hero-phone {
    width: min(100%, 336px);
  }

  .hero-float-card {
    width: 200px;
    padding: 16px;
  }

  .hero-float-card-bottom {
    width: 208px;
    right: -22px;
    bottom: 28px;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 110px;
  }

  section[id] {
    scroll-margin-top: 110px;
  }

  .page-shell {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .hero-stage {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 0 12px 12px;
  }

  .hero-float-card {
    position: static;
    width: auto;
    max-width: none;
  }

  .hero-phone {
    margin: 0 auto;
    width: min(100%, 340px);
  }

  .pain-grid,
  .feature-grid,
  .feature-grid-expanded,
  .feature-grid-triple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lead-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lead-copy {
    padding-right: 0;
  }

  .lead-form {
    padding: 0;
    border-left: 0;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 92px;
  }

  section[id] {
    scroll-margin-top: 92px;
  }

  .page-shell {
    width: min(calc(100% - 18px), var(--content-width));
    padding: 16px 0 44px;
  }

  .utility-bar {
    justify-content: center;
    margin-bottom: 8px;
  }

  .site-header {
    top: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
  }

  .brand-lockup {
    min-width: 0;
    max-width: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 44px;
    margin-left: 0;
    padding: 0 14px;
  }

  .header-quick-cta {
    display: inline-flex;
  }

  .site-nav {
    display: flex;
    grid-column: 1 / -1;
    margin-left: 0;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      transform 220ms ease,
      padding-top 220ms ease,
      border-top-color 220ms ease;
  }

  .site-nav.is-open {
    max-height: 640px;
    padding-top: 12px;
    border-top-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: transparent;
    transition:
      background 160ms ease,
      color 160ms ease,
      transform 160ms ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.52);
    transform: translateX(2px);
  }

  .site-nav a[aria-current],
  .site-nav a.is-current {
    background: linear-gradient(180deg, #242424 0%, var(--dark-pill-strong) 100%);
  }

  .site-nav a[href^="#"] {
    min-height: 40px;
    padding: 0 8px;
    border-radius: 10px;
    font-weight: 600;
  }

  .site-nav .nav-link-switch,
  .site-nav .nav-link-alt {
    background: rgba(242, 212, 182, 0.46);
    font-weight: 700 !important;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .lang-switch {
    justify-content: center;
  }

  main {
    gap: 20px;
    padding-top: 20px;
  }

  .hero-section,
  .qualify-section,
  .pain-solution-section,
  .how-section,
  .feature-section,
  .trust-section,
  .faq-section,
  .lead-section,
  .legal-page,
  .contact-page {
    padding: 22px;
  }

  h1 {
    max-width: none;
    margin-top: 14px;
    font-size: clamp(2.5rem, 10vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-kicker {
    padding-left: 12px;
    font-size: 0.96rem;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > .hero-kicker {
    order: 2;
  }

  .hero-copy > h1 {
    order: 3;
  }

  .hero-copy > .hero-text {
    order: 4;
  }

  .hero-copy > .hero-actions {
    order: 5;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-stage {
    order: 6;
    margin-top: 2px;
  }

  .hero-proof {
    order: 7;
    display: grid;
    gap: 10px;
    margin-top: 2px;
  }

  .hero-bg-shape,
  .hero-float-card {
    display: none;
  }

  .hero-stage {
    padding: 0;
    gap: 12px;
  }

  .hero-phone {
    width: min(100%, 350px);
    padding: 12px;
    border-radius: 34px;
  }

  .phone-screen {
    padding: 18px 18px 18px;
    border-radius: 26px;
  }

  .phone-title {
    font-size: 1.6rem;
  }

  .phone-title-home {
    max-width: none;
    margin-top: 8px;
    font-size: 1.74rem;
  }

  .phone-app-header {
    margin-bottom: 14px;
  }

  .phone-chip-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phone-control-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phone-progress {
    padding: 14px;
  }

  .phone-progress-panel {
    padding: 14px 12px 12px;
  }

  .phone-panel-controls {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .phone-grid {
    gap: 10px;
  }

  .dashboard-shell {
    width: min(100%, 360px);
    padding: 12px;
    border-radius: 30px;
  }

  .dashboard-screen {
    padding: 16px 14px 18px;
    border-radius: 24px;
  }

  .dashboard-title {
    font-size: 1.56rem;
  }

  .dashboard-primary-card,
  .dashboard-summary-card,
  .dashboard-list-card {
    border-radius: 20px;
  }

  .dashboard-primary-card {
    grid-template-columns: 1fr;
  }

  .phone-tile {
    min-height: 108px;
    padding: 14px;
    border-radius: 22px;
    font-size: 0.92rem;
  }

  .phone-tile-badge {
    left: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
  }

  .phone-tile-arrow {
    right: 12px;
    bottom: 12px;
    font-size: 1.16rem;
  }

  .qualify-grid,
  .trust-grid,
  .pain-grid,
  .practice-grid,
  .feature-grid,
  .feature-grid-expanded,
  .feature-grid-triple,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .qualify-card,
  .pain-card,
  .practice-card,
  .feature-card,
  .security-card,
  .trust-card,
  .lead-action-card {
    padding: 20px;
  }

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

  .site-footer {
    margin-top: 14px;
    padding: 22px 18px 20px;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(27, 27, 27, 0.07);
  }

  .footer-brand {
    gap: 10px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.08);
  }

  .footer-brand-logo {
    width: 50px;
    height: 50px;
  }

  .footer-brand strong {
    font-size: 1.1rem;
  }

  .footer-brand p {
    max-width: 32ch;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 4px 0 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(30, 30, 30, 0.06);
    box-shadow: none;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    transform: none;
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(30, 30, 30, 0.08);
    box-shadow: none;
  }

  .footer-links a::before {
    display: none;
  }

  .legal-page,
  .contact-page {
    padding: 24px;
    border-radius: 28px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 44px rgba(27, 27, 27, 0.07);
  }

  .legal-page h1,
  .contact-page h1 {
    margin-top: 10px;
    font-size: clamp(2.3rem, 8vw, 3.1rem);
  }

  .legal-page h2,
  .contact-page h2 {
    margin-top: 26px;
    font-size: 1.34rem;
  }

  .legal-meta {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .legal-page p,
  .legal-page li,
  .contact-page p,
  .contact-page li {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .legal-page ul,
  .contact-page ul {
    margin-top: 14px;
    padding-left: 20px;
  }

  .legal-page a,
  .contact-page a {
    overflow-wrap: anywhere;
  }

  .back-link {
    margin-top: 28px;
    min-height: 48px;
    padding: 0 18px 0 14px;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 84px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  .page-shell {
    width: min(calc(100% - 14px), var(--content-width));
  }

  .site-header {
    top: 6px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 9px 10px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .menu-toggle {
    min-height: 42px;
  }

  .header-quick-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-section,
  .qualify-section,
  .pain-solution-section,
  .how-section,
  .feature-section,
  .trust-section,
  .faq-section,
  .lead-section,
  .legal-page,
  .contact-page {
    padding: 20px 18px;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-kicker {
    font-size: 0.92rem;
  }

  .hero-text,
  .pain-card p,
  .practice-card p,
  .feature-card p,
  .security-card p,
  .faq-list p,
  .site-footer p,
  .lead-copy p {
    font-size: 0.96rem;
  }

  .phone-title {
    font-size: 1.4rem;
  }

  .phone-title-home {
    font-size: 1.62rem;
  }

  .dashboard-title {
    font-size: 1.34rem;
  }

  .phone-progress-top {
    font-size: 0.84rem;
  }

  .phone-grid {
    gap: 8px;
  }

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

  .phone-tile {
    min-height: 102px;
    padding: 12px;
    font-size: 0.86rem;
  }

  .phone-app-icon,
  .phone-app-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.92rem;
  }

  .phone-panel-main {
    font-size: 0.88rem;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .site-nav a[href^="#"] {
    min-height: 38px;
    padding: 0 6px;
  }

  .footer-links {
    gap: 7px;
  }

  .footer-brand {
    gap: 8px;
    padding-bottom: 12px;
  }

  .footer-brand strong {
    font-size: 1.02rem;
  }

  .site-footer {
    margin-top: 16px;
    padding: 18px 14px 16px;
    border-radius: 24px;
  }

  .footer-links a {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 0.94rem;
  }

  .legal-page,
  .contact-page {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 34px rgba(27, 27, 27, 0.06);
  }

  .legal-page h1,
  .contact-page h1 {
    margin-top: 8px;
    font-size: clamp(2rem, 11vw, 2.7rem);
    line-height: 0.98;
  }

  .legal-page h2,
  .contact-page h2 {
    margin-top: 24px;
    font-size: 1.2rem;
  }

  .legal-meta {
    font-size: 0.88rem;
  }

  .legal-page p,
  .legal-page li,
  .contact-page p,
  .contact-page li {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .back-link {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    min-height: 46px;
    padding: 0 16px;
  }

  .back-link::before {
    width: 26px;
    height: 26px;
  }
}
