:root {
  --bg: #f4f4f4;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --surface-ink: #121826;
  --surface-border: rgba(18, 24, 38, 0.1);
  --ink: #121826;
  --muted: #5d6472;
  --line: rgba(18, 24, 38, 0.12);
  --accent: #ff7a59;
  --accent-deep: #db5938;
  --accent-soft: rgba(255, 122, 89, 0.14);
  --accent-cool: #2f6df6;
  --shadow: 0 24px 60px rgba(18, 24, 38, 0.12);
  --maxw: 1180px;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page-pad: 24px;
  --home-section-gap: 56px;
  --home-section-gap-mobile: 36px;
  --home-shell-radius: 24px;
  --home-card-radius: 20px;
  --home-shell-pad: 32px;
  --home-shell-pad-mobile: 20px;
  --home-card-pad: 24px;
  --home-line-color: #e5e7eb;
  --home-rail-line: #d1d5db;
  --home-surface: #ffffff;
  --home-surface-soft: #fafafa;
  --home-shadow-soft:
    0 16px 40px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px var(--home-line-color);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  line-height: 1.5;
}

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

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

.page-shell {
  min-height: 100vh;
  padding: 22px var(--page-pad) 36px;
}

.frame {
  max-width: var(--maxw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-bottom: 18px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(18, 24, 38, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-lockup__logo {
  height: 24px;
  width: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav--mobile {
  display: grid;
  justify-content: stretch;
  gap: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 4px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.site-menu {
  display: none;
  position: relative;
}

.site-menu[open] {
  z-index: 30;
}

.site-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  list-style: none;
}

.site-menu__toggle::-webkit-details-marker {
  display: none;
}

.site-menu__toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.site-menu__toggle span:first-child {
  transform: translateY(-4px);
}

.site-menu__toggle span:last-child {
  transform: translateY(4px);
}

.site-menu[open] .site-menu__toggle span:first-child {
  transform: rotate(45deg);
}

.site-menu[open] .site-menu__toggle span:last-child {
  transform: rotate(-45deg);
}

.site-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(320px, calc(100vw - 32px));
  padding: 4px 14px 6px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(18, 24, 38, 0.16);
}

.site-nav--mobile a {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(18, 24, 38, 0.08);
}

.site-nav--mobile a::after {
  display: none;
}

.site-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--ink) 0%, #273145 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 24, 38, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(18, 24, 38, 0.12);
  color: var(--ink);
}

.hero-card,
.section-card,
.pricing-card,
.pillars-card,
.metric-card,
.cta-card {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 28px;
  overflow: hidden;
}

.hero-copy {
  padding: 12px 6px 12px 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title,
.section-title,
.card-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.05em;
}

.display-title {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
}

.display-title__accent {
  color: var(--accent-deep);
}

.lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 16px;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(160deg, rgba(47, 109, 246, 0.12), rgba(255, 122, 89, 0.16)),
    rgba(255, 253, 249, 0.92);
}

.visual-stack {
  position: relative;
  height: 100%;
}

.hero-shot-card {
  position: absolute;
  inset: 22px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.12);
}

.hero-shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.floating-note {
  position: absolute;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(18, 24, 38, 0.08);
  box-shadow: 0 12px 24px rgba(18, 24, 38, 0.12);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 14px;
}

.floating-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.floating-note--top {
  top: 34px;
  right: 14px;
}

.floating-note--bottom {
  left: 0;
  bottom: 32px;
}

.visual-panel {
  position: absolute;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.12);
}

.visual-panel--main {
  inset: 18px 26px 40px 10px;
  padding: 22px;
}

.visual-panel--accent {
  right: 0;
  bottom: 0;
  width: 44%;
  padding: 18px;
}

.visual-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-headline {
  margin: 12px 0 18px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.visual-flow {
  display: grid;
  gap: 14px;
}

.visual-flow__row,
.mini-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(245, 241, 234, 0.95);
}

.visual-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.1);
}

.visual-flow__row strong,
.mini-line strong {
  display: block;
  font-size: 15px;
}

.visual-flow__row span,
.mini-line span {
  color: var(--muted);
  font-size: 13px;
}

.mini-badge {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.1);
  color: var(--accent-cool);
  font-size: 13px;
  font-weight: 700;
}

.metrics-grid,
.section-grid,
.pricing-grid,
.pillars-grid,
.principles-grid {
  display: grid;
  gap: 18px;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.metric-card,
.section-card,
.pricing-card,
.pillars-card {
  padding: 22px;
}

.metric-value,
.plan-price {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric-label,
.plan-note,
.card-copy,
.section-copy,
.page-copy {
  color: var(--muted);
}

.section-block {
  margin-top: 22px;
}

.section-block__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-copy {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
}

.home-inline-links a,
.pricing-guides-copy a,
.enterprise-inline-links a {
  color: var(--surface-ink);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

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

.section-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.preview-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(245, 241, 234, 0.82);
  border: 1px solid rgba(18, 24, 38, 0.08);
}

.preview-row,
.preview-service {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.preview-row + .preview-row {
  border-top: 1px solid rgba(18, 24, 38, 0.08);
}

.preview-chip {
  position: relative;
  width: 22px;
  height: 12px;
  border-radius: 999px;
  background: #111;
}

.preview-chip::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.preview-row.is-off .preview-chip {
  background: rgba(18, 24, 38, 0.2);
}

.preview-row.is-off .preview-chip::after {
  left: 2px;
}

.preview-row strong,
.preview-service strong {
  font-size: 14px;
}

.preview-row span,
.preview-service span {
  color: var(--muted);
  font-size: 13px;
}

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

.preview-row span {
  justify-self: end;
  text-align: right;
}

.preview-service {
  position: relative;
  grid-template-columns: 1fr auto;
  padding-left: 14px;
}

.preview-service + .preview-service {
  border-top: 1px solid rgba(18, 24, 38, 0.08);
}

.preview-service__meta {
  display: grid;
  gap: 4px;
}

.preview-service__dot {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: var(--service-accent, #111);
}

.preview-service em {
  color: var(--surface-ink);
  font-style: normal;
  font-weight: 600;
}

.designer-window {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 24, 38, 0.08);
}

.designer-window__dots {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 24, 38, 0.06);
}

.designer-window__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.15);
}

.designer-window__canvas {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 16px;
}

.canvas-sidebar,
.canvas-preview {
  display: grid;
  gap: 10px;
}

.canvas-line,
.canvas-card {
  border-radius: 14px;
  background: rgba(18, 24, 38, 0.08);
}

.canvas-line {
  height: 12px;
}

.w-90 {
  width: 90%;
}

.w-70 {
  width: 70%;
}

.w-55 {
  width: 55%;
}

.canvas-card--hero {
  min-height: 86px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(255, 255, 255, 0.96)),
    rgba(18, 24, 38, 0.08);
}

.canvas-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.canvas-card {
  min-height: 58px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.phone-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  min-height: 420px;
  padding: 28px 28px 0;
  overflow: hidden;
}

.phone-stack__shot {
  position: relative;
  width: min(44%, 220px);
  max-width: 220px;
  filter: drop-shadow(0 20px 34px rgba(18, 24, 38, 0.16));
  opacity: 0;
  transform: translateY(132px);
  will-change: transform, opacity;
}

.phone-stack.is-visible .phone-stack__shot {
  animation: phoneSlideUp 2.8s cubic-bezier(0.05, 0.88, 0.14, 1) both;
}

.phone-stack__shot--left {
  left: auto;
  top: auto;
}

.phone-stack.is-visible .phone-stack__shot--left {
  animation-delay: 0.16s;
}

.phone-stack__shot--right {
  right: auto;
  bottom: auto;
}

.phone-stack.is-visible .phone-stack__shot--right {
  animation-delay: 0.48s;
}

.editor-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.12);
}

.editor-frame img {
  width: 100%;
  height: auto;
}

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

.testimonial-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.08);
}

.testimonial-quote {
  margin: 0 0 20px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.home-outcome-card {
  align-content: start;
}

.home-outcome-title {
  margin-bottom: 14px;
  font-size: 22px;
}

.home-outcome-copy {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.1);
  color: var(--accent-cool);
  font-weight: 700;
}

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

.faq-item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding-right: 24px;
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 24, 38, 0.08);
}

.store-badge img {
  height: 38px;
  width: auto;
}

.store-badge--text {
  min-width: 152px;
  padding-inline: 18px;
  color: #111;
  font-weight: 700;
  white-space: nowrap;
}

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

.pricing-grid--plans {
  align-items: stretch;
}

.pricing-headline {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 24, 38, 0.08);
  color: var(--muted);
}

.benefit-pill__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.1);
  color: var(--accent-cool);
  font-weight: 800;
}

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

.card-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.06;
}

.card-copy {
  margin: 0 0 18px;
  font-size: 15px;
}

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

.feature-list li,
.plan-list li {
  position: relative;
  padding-left: 18px;
  color: var(--surface-ink);
}

.feature-list li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(255, 122, 89, 0.12), rgba(255, 255, 255, 0.88));
  transform: translateY(-8px);
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.94);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.1);
  color: var(--accent-cool);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-card {
  margin-top: 22px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cta-card h2,
.page-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-header {
  padding: 28px 0 6px;
}

.page-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.page-copy {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
}

.page-copy--wide {
  max-width: 780px;
}

.page-stack {
  display: grid;
  gap: 18px;
}

.footer-card {
  margin-top: 22px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

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

.button--full {
  width: 100%;
}

.plan-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section-stack {
  display: grid;
  gap: 24px;
}

.faq-group {
  display: grid;
  gap: 14px;
}

.faq-group__title {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
}

.enterprise-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: start;
  margin-top: 12px;
}

.enterprise-copy {
  padding: 28px 6px 0 2px;
}

.enterprise-form-card {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 24px;
}

.enterprise-form__grid,
.enterprise-form__row {
  display: grid;
  gap: 14px;
}

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

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

.enterprise-form label span {
  font-size: 14px;
  font-weight: 600;
}

.enterprise-form input,
.enterprise-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 38, 0.12);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.enterprise-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-page {
  padding: 28px 0 12px;
}

.pricing-intro {
  padding: 12px 0 2px;
}

.pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  margin: 0 auto 18px;
  border: 1px solid #d8dde6;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.28s ease,
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-billing-toggle__option {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.24s ease,
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-billing-toggle__option.is-active {
  background: #705cff;
  color: #fff;
  box-shadow: 0 10px 22px rgba(112, 92, 255, 0.24);
}

.pricing-benefits {
  justify-content: center;
}

.benefit-pill__check svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.pricing-plans-section {
  padding: 12px 0 4px;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-plan-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 18px;
  height: 100%;
  padding: 24px;
  border-radius: var(--home-card-radius);
  border: 1px solid var(--home-line-color);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
}

.pricing-plan-card--featured {
  background: linear-gradient(180deg, rgba(255, 122, 89, 0.1), rgba(255, 255, 255, 0.96));
  border-color: rgba(255, 122, 89, 0.22);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(255, 122, 89, 0.12);
  transform: translateY(-6px);
}

.pricing-plan-head,
.pricing-plan-meta {
  display: grid;
  gap: 8px;
}

.pricing-plan-meta {
  animation: pricingPlanMetaIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center top;
}

.pricing-plan-card .plan-title {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.06;
}

.pricing-plan-capacity {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.pricing-plan-sub {
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.65;
}

.pricing-plan-list {
  gap: 12px;
}

.pricing-plan-list li {
  color: #111;
  font-size: 14px;
  line-height: 1.55;
  padding-left: 22px;
}

.pricing-plan-list li::before {
  top: 0.18em;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23705cff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.pricing-plan-price {
  color: #111;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-plan-note {
  color: #6b7280;
  font-size: 15px;
}

.pricing-plan-cta {
  align-self: stretch;
  justify-content: center;
}

.pricing-plan-footnote {
  margin-top: auto;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

@keyframes pricingPlanMetaIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-faq-section {
  padding-block: 18px 28px;
}

.pricing-links-section {
  padding-top: 0;
}

.pricing-guides-shell {
  padding: 22px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.06),
    inset 0 0 0 1px #e5e7eb;
}

.pricing-guides-copy,
.enterprise-inline-links {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.marketing-enterprise .page-shell {
  padding-top: 0;
}

.enterprise-page {
  display: grid;
  gap: 24px;
  padding: 28px 0 12px;
}

.enterprise-intro {
  padding: 12px 0 2px;
}

.enterprise-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.98fr);
  gap: 28px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px #e5e7eb;
}

.enterprise-shell__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}

.enterprise-shell__title {
  margin: 0;
  color: #111;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.08;
}

.enterprise-shell__body {
  margin: 0;
  color: #6b6b6b;
  font-size: 17px;
  line-height: 1.7;
}

.enterprise-points {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.enterprise-point {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fafafa;
  box-shadow: inset 0 0 0 1px #ececec;
}

.enterprise-point p {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.55;
}

.enterprise-inline-links {
  margin-top: 2px;
}

.enterprise-form-shell {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #ececec;
  background: #fafafa;
}

.enterprise-form-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.enterprise-form-intro__title {
  margin: 0;
  color: #111;
  font-size: 24px;
  line-height: 1.12;
}

.enterprise-form-intro__copy {
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.65;
}

.enterprise-form-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.enterprise-form-benefit {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
}

.enterprise-form {
  display: grid;
}

.enterprise-form__grid,
.enterprise-form__row {
  display: grid;
  gap: 14px;
}

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

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

.enterprise-form label span {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.enterprise-form input,
.enterprise-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #d8dde6;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.enterprise-form__submit {
  justify-self: start;
  margin-top: 6px;
}

.enterprise-status {
  margin-bottom: 0;
}

.enterprise-form__note {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.about-hero-intro {
  margin-bottom: 18px;
}

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

.about-page {
  display: grid;
  gap: 24px;
  padding: 28px 0 12px;
}

.about-intro {
  padding: 14px 0 4px;
}

.about-intro-actions {
  margin-bottom: 0;
}

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

.about-story-card,
.about-value-card {
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(18, 24, 38, 0.08);
}

.about-story-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.about-story-card h2,
.about-value-card h3,
.about-cta-copy h2 {
  margin: 0;
  color: #111;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.about-story-card h2 {
  font-size: 28px;
  line-height: 1.04;
}

.about-story-card p,
.about-value-card p,
.about-cta-copy p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.about-values-section {
  padding-top: 12px;
}

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

.about-value-card {
  padding: 22px;
}

.about-value-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.about-cta-shell {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 34px 28px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(18, 24, 38, 0.08);
  text-align: center;
}

.about-cta-copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 620px;
}

.about-cta-logo {
  width: 88px;
  height: auto;
  display: block;
}

.about-cta-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.legal-page {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.legal-title {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-block {
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.08);
}

.legal-block__title,
.legal-subtitle {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.legal-block__title {
  font-size: 26px;
}

.legal-subtitle {
  font-size: 20px;
}

.legal-block__body p,
.legal-block__body ul {
  margin: 0 0 16px;
  color: var(--surface-ink);
  font-size: 17px;
  line-height: 1.72;
}

.legal-block__body ul {
  padding-left: 22px;
}

.legal-meta {
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-meta--compact {
  margin-top: 16px;
  line-height: 1.6;
}

.legal-page--imprint {
  gap: 10px;
}

.legal-page--plain {
  gap: 10px;
}

.legal-page--imprint .legal-block {
  padding: 18px 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-page--imprint .legal-block:last-child {
  border-bottom: 0;
}

.legal-page--plain .legal-block {
  padding: 18px 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-page--plain .legal-block:last-child {
  border-bottom: 0;
}

.legal-page--imprint .legal-block__title {
  font-size: 22px;
}

.legal-page--plain .legal-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.legal-page--imprint .legal-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.delete-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: start;
  margin-top: 12px;
}

.delete-copy,
.delete-card {
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(18, 24, 38, 0.08);
}

.delete-copy {
  padding: 28px 28px 26px;
}

.delete-card {
  padding: 24px;
  position: sticky;
  top: 24px;
}

.delete-notes {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.delete-note {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(250, 250, 250, 0.84);
}

.delete-note h2,
.delete-card h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
}

.delete-note p,
.delete-note li,
.delete-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.delete-note ul {
  margin: 0;
  padding-left: 18px;
}

.delete-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.delete-field label {
  font-size: 14px;
  font-weight: 700;
}

.delete-field input,
.delete-field select,
.delete-field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 38, 0.14);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.delete-field textarea {
  min-height: 132px;
  resize: vertical;
}

.delete-field input:focus,
.delete-field select:focus,
.delete-field textarea:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.delete-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.delete-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(250, 250, 250, 0.84);
}

.delete-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.delete-checkbox label {
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.delete-danger,
.delete-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.delete-danger {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
}

.delete-status {
  display: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
}

.delete-status.is-visible {
  display: block;
}

.delete-status.is-error {
  display: block;
  border-color: #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
}

.delete-status.is-success {
  display: block;
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

@media (max-width: 1024px) {
  .hero-card,
  .section-grid,
  .pricing-grid,
  .metrics-grid,
  .pillars-grid,
  .principles-grid,
  .split-section,
  .enterprise-hero,
  .delete-hero,
  .about-story-grid,
  .values-grid,
  .testimonials-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .phone-stack {
    min-height: 340px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .enterprise-copy {
    padding-top: 8px;
  }

  .enterprise-shell {
    grid-template-columns: 1fr;
  }

  .pricing-plan-grid {
    grid-template-columns: 1fr;
  }

  .delete-card {
    position: static;
  }

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

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .section-block__header,
  .cta-card,
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-stack__shot {
    width: min(46%, 210px);
  }

  .enterprise-form__row {
    grid-template-columns: 1fr;
  }

  .enterprise-shell {
    padding: 24px 20px;
  }

  .enterprise-form-shell {
    padding: 18px;
  }

  .pricing-plans-section,
  .pricing-faq-shell {
    padding: 24px 20px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-shell {
    padding: 26px 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 16px;
    --radius-xl: 28px;
  }

  .page-shell {
    padding-top: 16px;
  }

  .site-header__inner,
  .hero-card,
  .metric-card,
  .section-card,
  .pricing-card,
  .pillars-card,
  .cta-card {
    padding: 18px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-shot-card {
    inset: 12px;
  }

  .floating-note {
    max-width: 170px;
    padding: 12px 14px;
  }

  .split-section {
    padding: 20px;
  }

  .phone-stack {
    min-height: 236px;
    padding: 8px 18px 0;
  }

  .legal-block,
  .delete-copy,
  .delete-card {
    padding: 20px;
  }
}

body.marketing-home {
  background: #f4f4f4;
  --home-rail-gutter: 28px;
}

body.marketing-home::before,
body.marketing-home::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--home-rail-line);
  pointer-events: none;
  z-index: 0;
}

body.marketing-home::before {
  left: max(16px, calc((100vw - min(1200px, calc(100vw - 48px))) / 2));
}

body.marketing-home::after {
  right: max(16px, calc((100vw - min(1200px, calc(100vw - 48px))) / 2));
}

.marketing-home .page-shell--home {
  position: relative;
  padding-top: 0;
}

.marketing-home .page-shell--home > * {
  position: relative;
  z-index: 1;
}

.marketing-home .frame {
  max-width: calc(1200px - (var(--home-rail-gutter) * 2));
}

.marketing-home .frame--home {
  max-width: calc(1200px - (var(--home-rail-gutter) * 2));
}

.marketing-home .site-header--home {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: var(--page-pad);
  background-color: #f4f4f4;
  border-bottom: 1px solid #d1d5db;
  box-shadow: none;
}

.marketing-home .site-header__inner--home {
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background-color: #f4f4f4;
  backdrop-filter: none;
  box-shadow: none;
}

.marketing-home .brand-lockup__logo {
  height: 22px;
}

.marketing-home .site-nav {
  gap: 20px;
}

.marketing-home .site-nav a {
  padding: 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.marketing-home .site-nav a::after {
  bottom: -6px;
  background: #111;
}

.marketing-home .site-nav a:hover,
.marketing-home .site-nav a[aria-current="page"] {
  color: #111;
}

.marketing-home .header-actions {
  gap: 12px;
}

.button--home-login,
.button--home-cta,
.button--home-outline {
  min-height: 42px;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transform: none;
}

.marketing-home .button--home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.marketing-home .header-start-cta {
  min-width: 176px;
  padding-inline: 26px;
}

.button--home-login,
.button--home-cta {
  border: 1px solid #2f2f2f;
  background: linear-gradient(180deg, #242424, #171717);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.button--home-outline {
  border: 1px solid #d8dde6;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.button--home-login:hover,
.button--home-cta:hover,
.button--home-outline:hover {
  transform: none;
}

.home-page {
  padding-bottom: 0;
}

.home-separator {
  position: relative;
  width: 100vw;
  height: 1px;
  margin: var(--home-section-gap) 0;
  left: 50%;
  transform: translateX(-50%);
}

.home-separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--home-rail-line);
}

.home-hero-card,
.home-section-card,
.home-final-cta {
  border: 1px solid var(--home-line-color);
  border-radius: var(--home-shell-radius);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: none;
}

.home-hero-card {
  margin-top: var(--home-section-gap);
  margin-bottom: 0;
  padding: 48px 40px 44px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0;
}

.home-display-title,
.marketing-home .section-title,
.marketing-home .card-title {
  font-family: "Inter", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.home-display-title {
  margin: 0;
  color: #111;
  font-size: clamp(2.3rem, 4.1vw, 4rem);
  line-height: 1.04;
}

.marketing-home .display-title__accent {
  color: #111;
}

.home-lede,
.marketing-home .section-copy,
.marketing-home .card-copy {
  color: #6b6b6b;
  font-size: 18px;
  line-height: 1.65;
}

.home-hero-actions {
  align-items: center;
  gap: 16px;
}

.home-store-badges {
  margin-top: 0;
  gap: 8px;
  align-self: auto;
  align-items: center;
}

.home-store-badges .store-badge {
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-store-badges .store-badge img {
  height: 36px;
  width: auto;
}

.marketing-home .hero-visual {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.marketing-home .visual-stack {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  overflow: visible;
}

.marketing-home .hero-shot-card {
  position: relative;
  inset: auto;
  overflow: hidden;
  width: min(100%, 680px);
  border: 1px solid var(--home-line-color);
  border-radius: var(--home-shell-radius);
  background: var(--home-surface);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.marketing-home .hero-shot-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.marketing-home .floating-note {
  display: none;
}

.home-section-card {
  padding: var(--home-shell-pad);
}

.home-section {
  display: grid;
  gap: 0;
}

.home-section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.home-section .home-section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-section-title {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.home-section-copy {
  max-width: 700px;
  margin: 0;
}

.home-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-section-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
}

.home-section-grid {
  gap: 24px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.home-feature-grid-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-faq-shell {
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px #e5e7eb;
}

.home-feature-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: var(--home-card-pad);
  border-radius: var(--home-card-radius);
  border: 1px solid var(--home-line-color);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
  height: 100%;
  min-height: 376px;
}

.marketing-home .section-number {
  color: #6b7280;
}

.marketing-home .preview-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 196px;
  margin-top: auto;
  padding: 16px;
  border-radius: calc(var(--home-card-radius) - 2px);
  border: 1px solid #e6e8ee;
  background: var(--home-surface);
  box-shadow: none;
}

.marketing-home .preview-block--availability {
  padding-top: 6px;
  padding-bottom: 6px;
}

.marketing-home .preview-block--services {
  min-height: 196px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.marketing-home .preview-block--services .preview-service {
  padding-top: 8px;
  padding-bottom: 8px;
}

.marketing-home .preview-block--services .preview-service__meta {
  gap: 2px;
}

.marketing-home .designer-window--feature {
  width: 100%;
  min-height: 196px;
  margin-top: auto;
  box-shadow: none;
}

.marketing-home .designer-window--feature .designer-window__canvas {
  min-height: 150px;
  align-items: stretch;
}

.marketing-home .preview-row,
.marketing-home .preview-service {
  border-color: #eef1f5;
}

.home-split-card {
  align-items: center;
  gap: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-split-copy {
  max-width: 540px;
}

.home-split-badges .store-badge {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-booking-section {
  padding-block: 0;
}

.home-booking-actions {
  margin-bottom: 32px;
}

.home-booking-actions .hero-actions {
  justify-content: center;
}

.home-booking-shell {
  padding: var(--home-shell-pad);
  border: 1px solid var(--home-line-color);
  border-radius: var(--home-shell-radius);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
}

.home-booking-frame {
  overflow: hidden;
  border-radius: var(--home-card-radius);
}

.home-booking-frame--tilt {
  --dashboard-tilt-x: 0deg;
  --dashboard-tilt-y: 0deg;
  transform-style: preserve-3d;
  transform:
    perspective(1400px)
    rotateX(var(--dashboard-tilt-x))
    rotateY(var(--dashboard-tilt-y));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-booking-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.marketing-home .eyebrow {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #6b7280;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.marketing-home .phone-stack {
  min-height: 420px;
  border-radius: var(--home-shell-radius);
  background:
    linear-gradient(180deg, rgba(247, 247, 247, 0.95), rgba(240, 240, 240, 0.92)),
    #f7f7f7;
  border: 1px solid var(--home-line-color);
}

.marketing-home .editor-frame {
  border-radius: calc(var(--home-card-radius) - 2px);
  border: 1px solid var(--home-line-color);
  background: var(--home-surface-soft);
  box-shadow: none;
}

.home-testimonials-section {
  padding-block: 0;
}

.home-testimonials-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-testimonials-track {
  --testimonial-gap: 20px;
  display: flex;
  gap: var(--testimonial-gap);
  width: max-content;
  animation: homeTestimonialsMarquee 34s linear infinite;
  will-change: transform;
}

.home-testimonials-group {
  display: flex;
  gap: var(--testimonial-gap);
}

.home-testimonial-card {
  flex: 0 0 clamp(280px, 31vw, 360px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--home-card-radius);
  border: 1px solid var(--home-line-color);
  background: var(--home-surface);
  box-shadow: none;
}

.marketing-home .testimonial-quote {
  color: #111;
}

.marketing-home .testimonial-meta {
  color: #6b7280;
}

.marketing-home .testimonial-avatar {
  background: #111;
  color: #fff;
}

.home-faq-section {
  padding-block: 0;
}

.home-faq-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-faq-list {
  gap: 16px;
}

.marketing-home .home-faq-item {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--home-line-color);
  border-radius: var(--home-card-radius);
  background: var(--home-surface);
  box-shadow: none;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.marketing-home .home-faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #111;
  cursor: pointer;
  list-style: none;
  transition: color 0.24s ease;
}

.marketing-home .home-faq-trigger::-webkit-details-marker {
  display: none;
}

.marketing-home .home-faq-trigger span {
  flex: 1 1 auto;
}

.marketing-home .home-faq-chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke: #6b7280;
  transition:
    transform 0.24s ease,
    stroke 0.24s ease;
}

.marketing-home .home-faq-item[open] .home-faq-chevron {
  transform: rotate(180deg);
  stroke: #111;
}

.marketing-home .home-faq-item[open] {
  border-color: #d8dde6;
  background: #fcfcfc;
}

.marketing-home .home-faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.marketing-home .home-faq-item[open] .home-faq-answer-wrap {
  grid-template-rows: 1fr;
}

.marketing-home .home-faq-answer {
  box-sizing: border-box;
  min-height: 0;
  overflow: hidden;
  padding: 0 24px 0;
  border-top: 1px solid transparent;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.26s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.marketing-home .home-faq-item[open] .home-faq-answer {
  padding: 18px 24px 24px;
  border-top-color: #f0f0f0;
  opacity: 1;
  transform: translateY(0);
}

.home-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
  margin-block: 0;
  padding: 44px 40px 40px;
  text-align: center;
}

.home-final-cta h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.home-final-cta__copy {
  max-width: 720px;
  text-align: center;
}

.home-final-cta .section-copy {
  margin-inline: auto;
  text-align: center;
}

.home-final-cta__logo {
  width: 132px;
  max-width: 100%;
}

.home-final-cta .final-cta-btn {
  align-self: center;
}

.not-found-page {
  display: grid;
}

.not-found-hero {
  align-items: center;
}

.not-found-visual {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 18px;
  min-height: 320px;
  padding: var(--home-shell-pad);
  border: 1px solid var(--home-line-color);
  border-radius: var(--home-shell-radius);
  background:
    radial-gradient(circle at top, rgba(108, 96, 238, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 248, 0.96));
}

.not-found-code {
  color: #111;
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.not-found-lines {
  display: grid;
  gap: 10px;
  width: min(100%, 260px);
}

.not-found-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.not-found-lines span:nth-child(1) {
  width: 100%;
}

.not-found-lines span:nth-child(2) {
  width: 82%;
}

.not-found-lines span:nth-child(3) {
  width: 66%;
}

.home-footer {
  padding: 36px 0 32px;
}

.home-footer__top {
  display: grid;
  gap: 28px;
}

.home-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-footer__logo {
  width: 110px;
  height: auto;
}

.home-footer__note {
  margin: 0;
  max-width: 420px;
  color: #6b7280;
  font-size: 16px;
}

.home-footer__form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
}

.home-footer__input {
  flex: 1 1 auto;
  height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 12px;
  background: #f8fafc;
  color: #111;
  font-size: 16px;
}

.home-footer__button {
  height: 48px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.home-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.home-footer__heading {
  margin-bottom: 14px;
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

.home-footer__list {
  display: grid;
  gap: 12px;
  color: #6b7280;
  font-size: 16px;
}

.home-footer__list a:hover,
.home-footer__social a:hover {
  color: #111;
}

.home-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.home-footer__copy {
  color: #6b7280;
  font-size: 15px;
}

.home-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #6b7280;
  font-size: 14px;
}

.footer-wrap {
  background: transparent;
  color: #111;
  padding: 46px 0 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.marketing-home .footer-inner {
  max-width: calc(1200px - (var(--home-rail-gutter) * 2));
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-img {
  width: 110px;
  height: auto;
  display: block;
  border-radius: 0;
}

.footer-note {
  max-width: 420px;
  color: #6b7280;
  font-size: 16px;
}

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

.footer-store-badges .store-badge {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.footer-store-badges .store-badge img {
  height: 38px;
  width: auto;
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
}

.footer-input {
  flex: 1 1 auto;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
  color: #111;
  font-size: 16px;
}

.footer-btn {
  height: 48px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

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

.footer-heading {
  margin-bottom: 14px;
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: #6b7280;
  font-size: 16px;
}

.footer-links a {
  color: inherit;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #111;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  color: #6b7280;
}

.footer-copy-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-copy {
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
}

.footer-origin,
.footer-origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-origin-flag,
.footer-origin-badge-flag {
  width: auto;
  height: 14px;
  object-fit: contain;
  display: block;
}

.footer-social {
  display: flex;
  gap: 14px;
  color: #6b7280;
}

.footer-social a {
  color: inherit;
}

@media (min-width: 900px) {
  .home-footer__top {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }

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

  .home-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 960px) {
  .home-hero-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 28px 36px;
  }

  .marketing-home .hero-visual {
    margin-right: 0;
  }

  .marketing-home .visual-stack {
    justify-content: center;
  }

  .marketing-home .hero-shot-card {
    width: min(100%, 720px);
  }
}

@media (min-width: 961px) {
  .home-hero-card {
    margin-top: calc(var(--home-section-gap) + 8px);
    margin-bottom: 0;
  }
}

@media (max-width: 860px) {
  body.marketing-home {
    --home-rail-gutter: 18px;
  }

  .marketing-home .site-header--home {
    padding-top: calc(env(safe-area-inset-top) + 8px);
  }

  body.marketing-home::before {
    left: 10px;
  }

  body.marketing-home::after {
    right: 10px;
  }

  .marketing-home .site-header__inner--home {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 12px 0;
    align-items: center;
  }

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

  .site-menu {
    display: flex;
    align-items: center;
    justify-self: end;
    margin-left: auto;
    height: 100%;
  }

  .site-menu__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-hero-card {
    margin-top: var(--home-section-gap-mobile);
    margin-bottom: 0;
  }

  .home-section-card,
  .home-booking-shell,
  .home-final-cta {
    padding-left: var(--home-shell-pad-mobile);
    padding-right: var(--home-shell-pad-mobile);
  }

  .home-section-card,
  .home-final-cta {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-booking-shell {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 680px) {
  .home-separator {
    margin: var(--home-section-gap-mobile) 0;
  }

  .home-hero-card {
    padding: 28px var(--home-shell-pad-mobile) 32px;
    gap: 24px;
  }

  .marketing-home .hero-shot-card {
    width: calc(100% + 8px);
    max-width: none;
  }

  .home-hero-actions,
  .home-section-actions,
  .marketing-home .hero-actions,
  .home-footer__form,
  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .button--home-login,
  .button--home-cta,
  .button--home-outline {
    width: 100%;
  }

  .home-footer__links {
    grid-template-columns: 1fr;
  }

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

  .home-testimonial-card {
    flex-basis: min(84vw, 320px);
    min-height: 200px;
  }

  .pricing-plan-cta {
    align-self: stretch;
  }

  .pricing-plan-card .plan-sub {
    min-height: 0;
  }

  .enterprise-form__submit {
    justify-self: stretch;
  }

}

.marketing-home .icon-swap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 0;
}

.marketing-home .icon-swap svg {
  position: absolute;
  inset: 0;
  margin: auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marketing-home .icon-swap .icon-chevron {
  opacity: 1;
  transform: translateX(0);
}

.marketing-home .icon-swap .icon-arrow {
  opacity: 0;
  transform: translateX(-2px);
}

.marketing-home .button:hover .icon-chevron {
  opacity: 0;
  transform: translateX(2px);
}

.marketing-home .button:hover .icon-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.marketing-home .hero-animate {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp 0.6s ease-out both;
}

.marketing-home .delay-2 {
  animation-delay: 0.16s;
}

.marketing-home .delay-3 {
  animation-delay: 0.24s;
}

.marketing-home .delay-4 {
  animation-delay: 0.32s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeTestimonialsMarquee {
  from {
    transform: translateX(calc(-50% - (var(--testimonial-gap) / 2)));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes phoneRiseIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phoneSlideUp {
  from {
    opacity: 0;
    transform: translateY(132px);
  }

  84% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-booking-frame--tilt {
    transform: none;
    transition: none;
  }

  .phone-stack__shot {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .home-testimonials-track {
    animation: none;
    transform: none;
  }
}

.marketing-home .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@media (min-width: 960px) {
  .home-hero-card {
    overflow: visible;
  }

  .marketing-home .hero-visual {
    margin-right: -18%;
  }

  .marketing-home .hero-shot-card {
    width: min(820px, 152%);
  }

  .marketing-home .hero-shot-card img {
    transition: transform 0.6s ease;
  }

  .marketing-home .hero-shot-card:hover img {
    transform: scale(1.015);
  }
}

.marketing-home .features-section {
  padding: 22px 0 34px;
}

.marketing-home .features-section > :not(.features-grid) {
  padding-left: 16px;
  padding-right: 16px;
}

.marketing-home .features-title,
.marketing-home .analytics-title,
.marketing-home .reviews-title,
.marketing-home .deep-title,
.marketing-home .faq-title,
.marketing-home .final-cta-title {
  color: #111;
  letter-spacing: -0.6px;
}

.marketing-home .features-sub,
.marketing-home .analytics-text,
.marketing-home .reviews-sub,
.marketing-home .deep-sub,
.marketing-home .final-cta-sub {
  color: #6b7280;
}

.marketing-home .features-actions {
  justify-content: center;
  margin-bottom: 52px;
}

.marketing-home .features-actions .button--home-outline,
.marketing-home .analytics-actions .button--home-outline,
.marketing-home .deep-actions .button--home-outline {
  background: #fff;
}

.marketing-home .features-grid {
  margin-top: 14px;
  gap: 22px;
  --illus-h: 180px;
}

.marketing-home .feature-card {
  min-height: 180px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.marketing-home .feature-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.marketing-home .feature-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.marketing-home .feature-text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.marketing-home .mini-workingtime,
.marketing-home .mini-services {
  margin-top: auto;
  min-height: var(--illus-h);
  background: #fff;
}

.marketing-home .mini-workingtime {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.marketing-home .mw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.marketing-home .mw-day {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.marketing-home .mw-toggle {
  width: 36px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  padding: 2px;
  background: #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: default;
  transition: background-color 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.marketing-home .mw-toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transform: translateX(0) scale(0.94);
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.marketing-home .mw-toggle.on {
  background: #111;
}

.marketing-home .mw-toggle.on::after {
  transform: translateX(16px) scale(1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}

.marketing-home .mw-times {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.marketing-home .mw-pill {
  padding: 4px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
  color: #111;
  font-weight: 600;
}

.marketing-home .mw-row.disabled {
  opacity: 0.45;
}

.marketing-home .mini-services {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.marketing-home .ms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.marketing-home .ms-row:last-child {
  border-bottom: 0;
}

.marketing-home .ms-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.marketing-home .ms-dot {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  flex: 0 0 12px;
}

.marketing-home .ms-name {
  position: relative;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.marketing-home .ms-name.typing::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: #111;
  transform: translateY(-50%);
  animation: ms-caret 1.1s step-end infinite;
}

@keyframes ms-caret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.marketing-home .ms-meta {
  color: #6b7280;
  font-size: 12px;
}

.marketing-home .ms-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.marketing-home .ms-price {
  padding: 3px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.marketing-home .ms-status {
  min-width: 74px;
  padding: 5px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.marketing-home .ms-status.off {
  background: #f3f4f6;
  color: #9ca3af;
}

.marketing-home .mini-editor {
  width: 100%;
  min-height: var(--illus-h);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.marketing-home .mini-editor-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid #eef2f7;
  background: #f8fafc;
}

.marketing-home .mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 12px;
  background: #ef4444;
}

.marketing-home .mini-dot:nth-child(2) {
  background: #f59e0b;
}

.marketing-home .mini-dot:nth-child(3) {
  background: #22c55e;
}

.marketing-home .mini-editor-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  padding: 10px;
}

.marketing-home .mini-preview,
.marketing-home .mini-setting {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.marketing-home .mini-preview {
  padding: 8px;
}

.marketing-home .mini-site {
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.marketing-home .mini-site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.marketing-home .mini-site-brand {
  width: 38%;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
}

.marketing-home .mini-site-nav {
  width: 30%;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
}

.marketing-home .mini-site-hero,
.marketing-home .mini-site-card {
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: #fff;
}

.marketing-home .mini-site-hero {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.marketing-home .mini-line {
  height: 6px;
  border-radius: 999px;
  background: #d1d5db;
}

.marketing-home .mini-line.w-90 {
  width: 90%;
}

.marketing-home .mini-line.w-70 {
  width: 70%;
}

.marketing-home .mini-line.w-55 {
  width: 55%;
}

.marketing-home .mini-site-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.marketing-home .mini-site-card {
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 56px;
  transform-origin: left center;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.35s ease,
    padding 0.35s ease,
    margin 0.35s ease,
    border-color 0.35s ease;
}

.marketing-home .mini-site-card.is-hidden {
  opacity: 0;
  transform: scale(0.92);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-color: transparent;
  overflow: hidden;
}

.marketing-home .mini-settings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.marketing-home .mini-setting {
  padding: 8px;
  gap: 6px;
}

.marketing-home .mini-label {
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.marketing-home .mini-input {
  height: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
}

.marketing-home .mini-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #111;
  font-size: 11px;
  font-weight: 600;
}

.marketing-home .mini-switch {
  width: 30px;
  height: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #e5e7eb;
  position: relative;
  padding: 0;
  appearance: none;
  cursor: pointer;
}

.marketing-home .mini-switch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.marketing-home .mini-switch.on {
  background: #10b981;
  border-color: #10b981;
}

.marketing-home .mini-switch.on::after {
  transform: translate(14px, -50%);
}

.marketing-home .analytics-section {
  padding: 40px 32px;
}

.marketing-home .analytics-title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
}

.marketing-home .analytics-text {
  font-size: 19px;
  line-height: 1.62;
  max-width: 500px;
  margin: 0 0 34px;
}

.marketing-home .analytics-actions,
.marketing-home .deep-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.marketing-home .app-previews {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: transparent;
  border: 0;
  min-height: 0;
}

.marketing-home .app-shot {
  width: 42%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

.marketing-home .testimonials-section {
  background: transparent;
  padding: 78px 32px 88px;
  text-align: center;
  border: 0;
  box-shadow: none;
}

.marketing-home .reviews-sub {
  margin: 0 0 82px;
  font-size: 16px;
}

.marketing-home .reviews-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.marketing-home .reviews-grid::before {
  content: "";
  position: absolute;
  inset: -16px 0 -16px;
  background:
    linear-gradient(
      90deg,
      transparent calc(33.333% - 0.5px),
      #d1d5db calc(33.333% - 0.5px),
      #d1d5db calc(33.333% + 0.5px),
      transparent calc(33.333% + 0.5px)
    ),
    linear-gradient(
      90deg,
      transparent calc(66.666% - 0.5px),
      #d1d5db calc(66.666% - 0.5px),
      #d1d5db calc(66.666% + 0.5px),
      transparent calc(66.666% + 0.5px)
    ),
    linear-gradient(
      transparent calc(0% + 0.5px),
      #d1d5db calc(0% + 0.5px),
      #d1d5db calc(0% + 1.5px),
      transparent calc(0% + 1.5px)
    ),
    linear-gradient(
      transparent calc(100% - 1.5px),
      #d1d5db calc(100% - 1.5px),
      #d1d5db calc(100% - 0.5px),
      transparent calc(100% - 0.5px)
    );
  pointer-events: none;
  z-index: 0;
}

.marketing-home .review-cross {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  color: #d1d5db;
  background: #f4f4f4;
  padding: 5px;
  box-sizing: content-box;
  z-index: 1;
}

.marketing-home .review-cross svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 980px) {
  .marketing-home .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.marketing-home .review-card {
  opacity: 0.5;
  text-align: left;
  position: relative;
  z-index: 2;
}

.marketing-home .review-card.center {
  opacity: 1;
}

.marketing-home .review-quote {
  margin: 0 0 24px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.marketing-home .review-meta {
  margin-top: auto;
  padding-top: 4px;
  font-size: 16px;
}

.marketing-home .review-avatar {
  background: #e5e7eb;
  color: #6b7280;
  font-size: 12px;
}

.marketing-home .deep-section {
  padding: 72px 0 78px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

.marketing-home .deep-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.marketing-home .deep-chart {
  position: absolute;
  left: 75%;
  top: 180px;
  width: 420px;
  height: 260px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.marketing-home .deep-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.marketing-home .deep-text {
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.marketing-home .deep-title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
}

.marketing-home .deep-sub {
  max-width: 440px;
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.62;
}

@media (min-width: 900px) {
  .marketing-home .deep-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.marketing-home .faq-section {
  background: transparent;
  padding: 52px 32px 68px;
  max-width: 920px;
  border: 0;
  box-shadow: none;
}

.marketing-home .faq-card.section-card {
  padding: 8px 24px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.marketing-home .faq-header {
  text-align: center;
  margin-bottom: 44px;
}

.marketing-home .faq-title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

.marketing-home .faq-question {
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: none;
  color: #0f172a;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  column-gap: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.marketing-home .faq-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.marketing-home .faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.marketing-home .faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
  border-color: #0f172a;
}

.marketing-home .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  transition:
    max-height 0.45s ease,
    opacity 0.45s ease,
    padding 0.45s ease;
}

.marketing-home .faq-answer.is-open {
  opacity: 1;
  padding: 2px 0 34px;
}

.marketing-home .final-cta-section {
  padding: 96px 32px 88px;
  text-align: center;
  position: relative;
}

.marketing-home .final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.6) 75%, rgba(255, 255, 255, 0.95) 100%),
    linear-gradient(#e5e7eb 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px) 0 1px / 42px 42px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px) 1px 0 / 42px 42px;
  opacity: 0.55;
  pointer-events: none;
}

.marketing-home .final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.95));
  pointer-events: none;
}

.marketing-home .final-cta-section > * {
  position: relative;
  z-index: 1;
}

.marketing-home .final-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.marketing-home .final-cta-title {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 700;
}

.marketing-home .final-cta-sub {
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.65;
  color: #475569;
}

.marketing-home .final-cta-btn {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  padding: 0 24px;
}

@media (max-width: 960px) {
  .marketing-home .mini-editor-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .marketing-home .reviews-grid::before,
  .marketing-home .review-cross,
  .marketing-home .deep-chart {
    display: none;
  }
}

@media (max-width: 680px) {
  .marketing-home .features-section {
    padding: 22px 0 34px;
  }

  .marketing-home .phone-stack {
    min-height: 212px;
    padding: 6px 16px 0;
  }

  .marketing-home .features-title,
  .marketing-home .analytics-title,
  .marketing-home .reviews-title,
  .marketing-home .deep-title,
  .marketing-home .faq-title,
  .marketing-home .final-cta-title {
    font-size: 29px;
  }

  .marketing-home .features-sub,
  .marketing-home .analytics-text,
  .marketing-home .deep-sub,
  .marketing-home .final-cta-sub {
    font-size: 15px;
  }

  .marketing-home .features-grid {
    gap: 14px;
    --illus-h: 160px;
  }

  .marketing-home .mini-workingtime {
    padding: 10px;
    gap: 8px;
  }

  .marketing-home .mw-day {
    gap: 6px;
    font-size: 12px;
  }

  .marketing-home .mw-times,
  .marketing-home .mw-pill,
  .marketing-home .feature-text {
    font-size: 11px;
  }

  .marketing-home .analytics-section {
    padding: 26px 16px;
  }

  .marketing-home .analytics-actions,
  .marketing-home .deep-actions,
  .marketing-home .features-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .marketing-home .testimonials-section {
    padding: 58px 16px 66px;
  }

  .marketing-home .reviews-sub {
    margin-bottom: 48px;
  }

  .marketing-home .deep-section {
    padding: 58px 0 66px;
  }

  .marketing-home .deep-text {
    padding: 28px 24px;
  }

  .marketing-home .faq-section {
    padding: 40px 0 58px;
  }

  .marketing-home .faq-header {
    padding: 0 16px;
  }

  .marketing-home .faq-card.section-card {
    padding: 8px 16px;
  }

  .marketing-home .faq-question {
    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 20px;
    padding: 20px 0;
  }

  .marketing-home .final-cta-section {
    padding: 68px 16px;
  }

  .marketing-home .final-cta-btn {
    width: 100%;
  }
}

.marketing-home .home-page {
  position: relative;
  padding-bottom: 0;
}

.marketing-home .home-page > * {
  position: relative;
  z-index: 1;
}

.marketing-home .header {
  position: static;
  background: transparent;
  border-bottom: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.marketing-home .bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 0;
}

.marketing-home .logo img {
  height: 22px;
  width: auto;
  display: block;
}

.marketing-home .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #111;
  font-weight: 500;
}

.marketing-home .menu a {
  position: relative;
  padding: 0;
}

.marketing-home .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.marketing-home .menu a:hover::after {
  transform: scaleX(1);
}

.marketing-home .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.marketing-home .btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2f2f2f, #232323);
  font-weight: 600;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.45rem 1.2rem;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #3a3a3a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.marketing-home .btn-primary:hover {
  background: linear-gradient(180deg, #333, #262626);
}

.marketing-home .menu-toggle,
.marketing-home .menu-toggle *,
.marketing-home .menu a,
.marketing-home .mobile-drawer a {
  -webkit-tap-highlight-color: transparent;
}

.marketing-home .menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  position: relative;
}

.marketing-home .menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}

.marketing-home .menu-toggle span::before,
.marketing-home .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.marketing-home .menu-toggle span::before {
  transform: translateY(-6px);
}

.marketing-home .menu-toggle span::after {
  transform: translateY(6px);
}

.marketing-home .drawer-backdrop {
  position: fixed;
  inset: var(--drawer-offset, 72px) 0 0 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.marketing-home .mobile-drawer {
  position: fixed;
  top: var(--drawer-offset, 72px);
  left: 0;
  right: 0;
  width: 100vw;
  height: calc(100vh - var(--drawer-offset, 72px));
  padding: calc(env(safe-area-inset-top) + 12px) 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f4f4f4;
  border-top: 1px solid #d1d5db;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  overflow-y: auto;
  pointer-events: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.marketing-home .mobile-drawer::before,
.marketing-home .mobile-drawer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d1d5db;
}

.marketing-home .mobile-drawer::before {
  left: var(--rail-left-offset, calc(10px + env(safe-area-inset-left)));
}

.marketing-home .mobile-drawer::after {
  left: var(--rail-right-offset, calc(100% - 10px - env(safe-area-inset-right)));
}

.marketing-home .mobile-drawer a {
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
  color: #111;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-8px);
}

.marketing-home .mobile-drawer a:last-child {
  border-bottom: 0;
}

body.nav-open .mobile-drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

body.nav-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .header {
  position: relative;
  z-index: 10002;
  background: #f4f4f4;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  transform: translateY(0) rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  transform: translateY(0) rotate(-45deg);
}

.marketing-home .section-separator {
  position: relative;
  height: 32px;
  width: 100vw;
  margin: 22px 0;
  left: 50%;
  transform: translateX(-50%);
}

.marketing-home .section-separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #d1d5db;
  transform: translateY(-50%);
}

.marketing-home .header-separator {
  height: 4px;
  margin: 28px 0;
}

.marketing-home .plus {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  transform: translateY(-50%);
}

.marketing-home .plus.left {
  left: max(16px, calc((100vw - min(1200px, calc(100vw - 48px))) / 2));
  transform: translate(-50%, -50%);
}

.marketing-home .plus.right {
  left: calc(100vw - max(16px, calc((100vw - min(1200px, calc(100vw - 48px))) / 2)));
  transform: translate(-50%, -50%);
}

.marketing-home .plus svg {
  width: 20px;
  height: 20px;
}

.marketing-home .footer-wrap {
  background: transparent;
  color: #111;
  padding: 0 0 var(--home-section-gap);
}

.marketing-home .footer-inner {
  max-width: calc(1200px - (var(--home-rail-gutter) * 2));
  margin: 0 auto;
  padding: var(--home-shell-pad);
}

.marketing-home .footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.marketing-home .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marketing-home .footer-logo-img {
  width: 110px;
  height: auto;
  display: block;
  border-radius: 0;
}

.marketing-home .footer-note {
  max-width: 420px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.marketing-home .footer-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
}

.marketing-home .footer-input {
  flex: 1 1 auto;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
  color: #111;
  font-size: 16px;
}

.marketing-home .footer-btn {
  height: 48px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.marketing-home .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.marketing-home .footer-heading {
  margin-bottom: 12px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.marketing-home .footer-links {
  display: grid;
  gap: 10px;
  color: #6b7280;
  font-size: 15px;
}

.marketing-home .footer-links a {
  color: inherit;
}

.marketing-home .footer-links a:hover {
  color: #111;
}

.marketing-home .footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--home-line-color);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  color: #6b7280;
}

.marketing-home .footer-copy {
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
}

.marketing-home .footer-social {
  display: flex;
  gap: 14px;
  color: #6b7280;
}

.marketing-home .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: inherit;
  transition:
    color 0.22s ease,
    background-color 0.22s ease;
}

.marketing-home .footer-social a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.marketing-home .footer-social a:hover {
  color: #111;
  background: rgba(17, 17, 17, 0.04);
}

.marketing-home .footer-copy-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.marketing-home .footer-origin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.marketing-home .footer-origin-flag {
  width: auto;
  height: 14px;
  object-fit: contain;
  display: block;
}

@media (min-width: 1024px) {
  .marketing-home .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 900px) {
  .marketing-home .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-home .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 860px) {
  .marketing-home .footer-wrap {
    padding-bottom: var(--home-section-gap-mobile);
  }

  .marketing-home .footer-inner {
    padding: 24px var(--home-shell-pad-mobile);
  }

  .marketing-home .bar {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .marketing-home .menu {
    display: none;
  }

  .marketing-home .menu-toggle {
    display: inline-flex;
  }

  .marketing-home .plus.left {
    left: 10px;
  }

  .marketing-home .plus.right {
    left: calc(100vw - 10px);
  }
}

@media (max-width: 640px) {
  .marketing-home .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .marketing-home .footer-btn {
    width: 100%;
    height: 46px;
    font-size: 15px;
  }
}
