@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300..900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Custom Thin Mint Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f3f8f6;
}
::-webkit-scrollbar-thumb {
  background: rgba(7, 134, 111, 0.25);
  border-radius: 99px;
  border: 2px solid #f3f8f6;
}
::-webkit-scrollbar-thumb:hover {
  background: #07866f;
}

:root {
  color-scheme: light;
  --bg: #f3f8f6;
  --panel: #ffffff;
  --panel-strong: #f8faf9;
  --ink: #10201c;
  --muted: #5d6d66;
  --line: #d9e7e2;
  --accent: #07866f;
  --accent-dark: #064c42;
  --accent-soft: #dbf5ed;
  --coral: #df654f;
  --gold: #ecb84f;
  --green: #20845d;
  --blue: #3768b6;
  --violet: #6d5bd0;
  --cream: #fff7e6;
  --cyan: #27c4bd;
  --shadow: 0 10px 30px -10px rgba(16, 32, 28, 0.06), 0 1px 2px rgba(16, 32, 28, 0.04);
  --hover-shadow: 0 20px 40px -15px rgba(7, 134, 111, 0.12), 0 1px 3px rgba(7, 134, 111, 0.04);
  --glow-shadow: 0 14px 32px rgba(7, 134, 111, 0.26);
  --panel-radius: 16px;
  --transition-spring: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "kern";
}


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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(420px, 1fr) 330px;
  grid-template-rows: 76px calc(100vh - 76px);
  min-height: 100vh;
}

.topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  background: #fbfcfd;
  border-bottom: 1px solid var(--line);
}

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

.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(6, 76, 66, 0.86);
  background:
    linear-gradient(145deg, #0c2f29 0%, #07866f 58%, #0f7a67 100%);
  border-radius: 8px;
  box-shadow:
    0 12px 26px rgba(7, 134, 111, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.30) inset;
}

.logo-mark::before {
  content: "";
  width: 19px;
  height: 19px;
  border-radius: 11px 11px 3px 11px;
  background: #e8fff6;
  box-shadow: 0 7px 18px rgba(3, 54, 47, 0.20);
  transform: rotate(-18deg);
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.mini-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(7, 134, 111, 0.18);
}

.mini-logo::before {
  width: 13px;
  height: 13px;
  border-radius: 8px 8px 3px 8px;
}

.mini-logo::after {
  right: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
}

.eyebrow,
.canvas-label,
.section-heading span {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
}

.field-label,
.fee-grid span,
.time-row span {
  margin: 12px 0 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
}

h1 {
  margin: 1px 0 0;
  font-size: 1.18rem;
  line-height: 1.15;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.plan-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(7, 134, 111, 0.22);
  border-radius: 10px;
  color: var(--accent-dark);
  white-space: nowrap;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(7, 134, 111, 0.05);
}

.plan-pill span {
  font-size: 0.78rem;
}

.primary-button,
.ghost-button,
.icon-button {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, #064c42 0%, #07866f 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 134, 111, 0.2), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.primary-button:hover {
  background: linear-gradient(135deg, #085a4f 0%, #0b7f6b 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(7, 134, 111, 0.35);
}

.primary-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 12px rgba(7, 134, 111, 0.15);
}

.ghost-button,
.icon-button {
  background: #fff;
  color: var(--ink);
  border-color: rgba(16, 24, 32, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.ghost-button:hover,
.icon-button:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 15px rgba(7, 134, 111, 0.08);
}

.ghost-button:active,
.icon-button:active {
  transform: translateY(0) scale(0.98);
}

.full-width {
  width: 100%;
}

.hero-brand-chip,
.section-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-soft);
  padding: 5px 12px 5px 6px;
  border-radius: 999px;
  border: 1px solid rgba(7, 134, 111, 0.18);
  box-shadow: 0 4px 15px rgba(7, 134, 111, 0.06);
}

.hero-brand-chip {
  margin-bottom: 16px;
}

.section-brand-line {
  margin-top: 10px;
  margin-bottom: 6px;
}

.sidebar {
  min-height: 0;
  overflow: auto;
  padding: 16px;
  background: var(--panel-strong);
}

.left-panel {
  border-right: 1px solid var(--line);
}

.right-panel {
  border-left: 1px solid var(--line);
}

.panel-section + .panel-section {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.section-heading p {
  margin: 0;
  font-weight: 900;
}

.template-list,
.block-list,
.service-editor {
  display: grid;
  gap: 10px;
}

.template-card,
.block-card {
  display: grid;
  width: 100%;
  min-height: 92px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  color: inherit;
  text-align: left;
  box-shadow: 0 6px 16px rgba(29, 37, 44, 0.05);
}

.template-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.template-thumb {
  height: 86px;
  background-position: center;
  background-size: cover;
}

.template-meta {
  padding: 10px;
}

.template-meta strong,
.block-card strong {
  display: block;
  font-size: 0.92rem;
}

.template-meta span,
.block-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.block-card {
  min-height: 68px;
  padding: 11px 12px;
}

.block-card:hover,
.template-card:hover {
  border-color: #aebbc4;
}

.stage {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: 64px 1fr;
  overflow: hidden;
}

.stage-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.stage-toolbar strong {
  display: block;
  margin-top: 2px;
}

.toolbar-group {
  display: flex;
  gap: 8px;
}

.icon-button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--muted);
}

.icon-button.active {
  color: #fff;
  background: #1d252c;
  border-color: #1d252c;
}

.canvas-frame {
  position: relative;
  min-height: 0;
  overflow: auto;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(20, 108, 116, 0.10), rgba(201, 93, 75, 0.05)),
    #e7ecee;
}

.website-canvas {
  container-type: inline-size;
  width: min(100%, 1060px);
  min-height: 760px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #c9d2d8;
  box-shadow: var(--shadow);
  transition: width 180ms ease;
}

.exported-body {
  background: #fff;
}

.exported-body .website-canvas {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  border: 0;
  box-shadow: none;
}

.exported-body .preview-section {
  border: 0;
}

.exported-body .section-tools {
  display: none;
}

.canvas-frame.mobile .website-canvas {
  width: min(390px, 100%);
}

.drop-hint {
  position: sticky;
  top: 0;
  z-index: 5;
  width: max-content;
  margin: 0 auto 10px;
  padding: 7px 10px;
  background: rgba(29, 37, 44, 0.88);
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.canvas-frame.dragging .drop-hint {
  opacity: 1;
  transform: translateY(0);
}

.preview-section {
  position: relative;
  border: 2px solid transparent;
}

.preview-section.selected {
  border-color: var(--accent);
}

.preview-section.drop-before {
  border-top-color: var(--coral);
}

.section-tools {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 8;
  display: flex;
  gap: 7px;
  opacity: 0;
  transition: opacity 150ms ease;
}

.preview-section:hover .section-tools,
.preview-section.selected .section-tools {
  opacity: 1;
}

.tool-chip {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(29, 37, 44, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.delete-chip {
  color: #943829;
}

[contenteditable="true"] {
  outline: none;
  border-radius: 4px;
}

[contenteditable="true"]:focus {
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 950;
}

.site-logo span {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  background:
    linear-gradient(145deg, #0c2f29 0%, var(--accent) 62%, #0f7a67 100%);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(11, 119, 117, 0.24);
}

.site-logo span::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #51616b;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.site-button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid #b9dfe2;
}

.site-button:disabled,
.site-button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.hero-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(36px, 6vw, 72px) clamp(22px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 119, 117, 0.08), rgba(215, 90, 61, 0.06)),
    #ffffff;
}

.hero-copy {
  min-width: 0;
}

.site-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, #ffffff);
}

.hero-block h2,
.split-block h2,
.text-band h2,
.section-title,
.pricing-card h3,
.booking-card h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-block h2 {
  max-width: 760px;
  font-size: 3.85rem;
}

.hero-block p,
.split-block p,
.text-band p,
.section-intro {
  color: #51616b;
  line-height: 1.65;
}

.hero-block p {
  max-width: 610px;
  margin: 18px 0 24px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-media {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #edf4f6;
  box-shadow: 0 24px 64px rgba(16, 24, 32, 0.16);
}

.hero-media img,
.gallery-tile img,
.template-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 24, 32, 0.08);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: #101820;
  color: #fff;
}

.trust-item {
  padding: 20px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: #c9d5d8;
  font-size: 0.88rem;
}

.content-section {
  padding: clamp(38px, 6vw, 72px) clamp(22px, 5vw, 64px);
}

.section-title {
  font-size: 2.65rem;
}

.section-intro {
  max-width: 650px;
  margin: 12px 0 0;
}

.service-grid,
.pricing-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.service-card,
.pricing-card,
.testimonial-card,
.booking-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.07);
}

.service-card {
  border-top: 4px solid var(--accent);
}

.service-card strong {
  display: block;
  font-size: 1.08rem;
}

.service-card p,
.testimonial-card p,
.booking-card p {
  color: #51616b;
  line-height: 1.55;
}

.service-price {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-dark);
  font-weight: 950;
}

.pricing-section {
  background:
    linear-gradient(135deg, rgba(49, 95, 190, 0.07), rgba(11, 119, 117, 0.08)),
    #f5f8fa;
}

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

.pricing-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, #101820, #183741);
  border-color: #101820;
}

.pricing-card .price {
  display: block;
  margin: 12px 0 4px;
  font-size: 2.85rem;
  font-weight: 950;
}

.pricing-card.featured p,
.pricing-card.featured li {
  color: #dce6e8;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-1px);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.slot {
  padding: 9px 11px;
  border: 0;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

button.slot:hover,
button.slot.active {
  background: var(--accent);
  color: #fff;
}

.empty-slot {
  background: #eef1f4;
  color: #65717b;
}

.slot-count {
  margin: 8px 0 0;
  color: #65717b;
  font-size: 0.84rem;
  font-weight: 750;
}

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

.booking-field,
.booking-field-grid {
  display: grid;
  gap: 7px;
}

.booking-field-grid {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.booking-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.text-input,
.text-area,
select.text-input,
.flow-fields input,
.flow-fields textarea,
.dashboard-card input,
.dashboard-card textarea,
.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(24, 35, 42, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.94rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form textarea,
.text-area,
.flow-fields textarea,
.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.text-input:focus,
.text-area:focus,
select.text-input:focus,
.flow-fields input:focus,
.flow-fields textarea:focus,
.dashboard-card input:focus,
.dashboard-card textarea:focus,
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(7, 134, 111, 0.14), 0 2px 12px rgba(7, 134, 111, 0.06);
}

.booking-status {
  min-height: 20px;
  margin: 0;
  color: #53636c;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.4;
}

.booking-status:empty {
  display: none;
}

.booking-status[data-status="success"] {
  color: #28785f;
}

.booking-status[data-status="error"] {
  color: #943829;
}

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

.testimonial-card strong {
  display: block;
  color: var(--accent-dark);
}

.gallery-grid {
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  align-items: stretch;
}

.gallery-tile {
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #dde4e9;
  background: #eef1f4;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
  padding: clamp(38px, 6vw, 72px) clamp(22px, 5vw, 64px);
  background: #fbfcfd;
}

.split-visual {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dde4e9;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-band {
  padding: clamp(34px, 5vw, 58px) clamp(22px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(135deg, var(--accent-dark), #101820 72%),
    var(--accent-dark);
}

.text-band p {
  color: #dff1f2;
  max-width: 720px;
}

.text-band .site-button {
  background: #fff;
  color: var(--accent-dark);
}

.field-label {
  display: block;
  margin: 12px 0 6px;
}

.text-input,
.text-area,
select.text-input {
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid #cbd5dc;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.text-area {
  resize: vertical;
  min-height: 78px;
}

.text-input:focus,
.text-area:focus {
  outline: 3px solid var(--accent-soft);
  border-color: var(--accent);
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.swatch {
  width: 100%;
  height: 32px;
  border: 1px solid rgba(29, 37, 44, 0.25);
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.swatch.active {
  outline: 3px solid #1d252c;
}

.fee-grid,
.time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fee-grid label,
.time-row label {
  display: grid;
  gap: 6px;
}

.service-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-row .row-actions {
  display: flex;
  justify-content: flex-end;
}

.mini-button {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid #e0b5ab;
  border-radius: 8px;
  background: #fff7f5;
  color: #943829;
  font-weight: 800;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 8px 0 12px;
}

.day-toggle {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #65717b;
  font-size: 0.78rem;
  font-weight: 900;
}

.day-toggle.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: 8px;
  background: #1d252c;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.preview-exit-button {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
  display: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.92);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.22);
}

.preview-mode {
  background: #fff;
}

.preview-mode .app-shell {
  display: block;
  min-height: 100vh;
}

.preview-mode .topbar,
.preview-mode .sidebar,
.preview-mode .stage-toolbar {
  display: none;
}

.preview-mode .stage {
  display: block;
  min-height: 100vh;
  overflow: visible;
}

.preview-mode .canvas-frame {
  min-height: 100vh;
  padding: 0;
  overflow: visible;
  background: #fff;
}

.preview-mode .website-canvas {
  width: 100%;
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.preview-mode .preview-section,
.preview-mode .preview-section.selected {
  border-color: transparent;
}

.preview-mode .section-tools,
.preview-mode .drop-hint {
  display: none;
}

.preview-mode .preview-exit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preview-mode [contenteditable="true"]:focus {
  box-shadow: none;
}

.marketing-page {
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, #f7fbf8 0%, #eef7f3 48%, #fbfaf5 100%);
  overflow-x: hidden;
}

.marketing-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(24px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(7, 134, 111, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(16, 32, 28, 0.02);
}

.marketing-nav .brand-lockup strong {
  display: block;
  color: #10201c;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.marketing-nav .brand-lockup:hover strong {
  color: var(--accent);
}

.marketing-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2b3a42;
  font-size: 0.92rem;
  font-weight: 700;
}

.marketing-links a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.client-nav-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 999px;
  background: #f7fcfa;
  color: #0f735e;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.marketing-nav > .client-nav-link {
  justify-self: end;
}

.marketing-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marketing-links a:hover {
  color: var(--accent);
}

.marketing-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dash-booking-link {
  color: var(--accent) !important;
  font-weight: 800;
}

.dash-booking-link::after {
  background: var(--accent) !important;
}

.scale-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  gap: clamp(20px, 3.5vw, 48px);
  align-items: center;
  min-height: 680px;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 74px);
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    linear-gradient(116deg, #f8fcf8 0%, #e7f7ef 52%, #f8efd9 100%);
}

.scale-hero::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(32, 198, 149, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.scale-hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 184, 79, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.scale-hero .hero-message {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  min-width: 0;
}

.scale-hero .eyebrow,
.business-system .eyebrow,
.scale-process .eyebrow,
.package-section .eyebrow,
.growth-section .eyebrow,
.plans-section .eyebrow,
.book-section .eyebrow,
.example-tabs .eyebrow {
  color: #b84228;
}

.scale-hero .eyebrow,
.business-system .eyebrow,
.package-section .eyebrow,
.example-tabs .eyebrow {
  color: var(--accent);
}

.scale-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(2.8rem, 4.9vw, 4.15rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  font-weight: 900;
  color: #0f735e;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.scale-hero .hero-message > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3e4f59;
  font-size: 1.22rem;
  line-height: 1.65;
}

.scale-hero .hero-actions {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.scale-hero .primary-button,
.book-section .primary-button {
  min-height: 50px;
  padding-inline: 24px;
}

.scale-hero .ghost-button {
  min-height: 50px;
  padding-inline: 24px;
  background: #fff;
}

.scale-hero .analyzer-outline-button {
  border-color: rgba(7, 134, 111, 0.34);
  box-shadow:
    0 0 0 3px rgba(7, 134, 111, 0.08),
    0 10px 24px rgba(7, 134, 111, 0.10);
  color: #064c42;
}

.scale-hero .analyzer-outline-button:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px rgba(7, 134, 111, 0.12),
    0 14px 32px rgba(7, 134, 111, 0.16);
}

.examples-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 74px) clamp(30px, 4vw, 50px);
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    linear-gradient(116deg, #f8fcf8 0%, #e7f7ef 52%, #f8efd9 100%);
}

.examples-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 30%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(7, 134, 111, 0.14) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.examples-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 16px auto 0;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #ffffff;
  text-wrap: balance;
}

.examples-hero p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 20px auto 0;
  color: #3e4f59;
  font-size: 1.22rem;
  line-height: 1.65;
}

.scale-hero .hero-proof span {
  background: #fff;
  color: #293942;
  border-color: rgba(16, 24, 32, 0.12);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08);
}

.scale-hero .hero-proof strong {
  color: var(--accent-dark);
}

.growth-visual {
  position: relative;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #10201c;
  box-shadow:
    0 34px 80px rgba(16, 32, 28, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 70px rgba(32, 198, 149, 0.20);
}

.growth-visual img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.05) contrast(1.08);
}

.growth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 32, 28, 0.03), rgba(16, 32, 28, 0.68)),
    linear-gradient(135deg, rgba(7, 134, 111, 0.24), rgba(236, 184, 79, 0.18));
}

.visual-card,
.visual-cta {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
}

.visual-card {
  max-width: 280px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 249, 0.90));
  border: 1px solid rgba(255, 255, 255, 0.80);
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.20);
  backdrop-filter: blur(12px);
}

.visual-card span {
  color: #586874;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.visual-card.main {
  top: 22px;
  left: 22px;
}

.visual-card.metric {
  right: 22px;
  bottom: 86px;
}

.visual-card.metric strong {
  color: var(--accent-dark);
}

.visual-cta {
  right: 22px;
  bottom: 22px;
  min-height: 46px;
  padding: 0 16px;
  background: #e8fff6;
  color: #064c42;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.26);
}

.scale-statement {
  padding: clamp(34px, 5vw, 62px) clamp(20px, 6vw, 74px);
  background: #101820;
  color: #fff;
}

.scale-statement p {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(135deg, #10201c 0%, #123d36 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(16, 24, 32, 0.12);
}

.proof-strip article {
  position: relative;
  min-height: 150px;
  padding: 26px clamp(20px, 4vw, 42px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #0f7a67, var(--gold));
  opacity: 0.9;
}

.proof-strip span {
  color: #f3c15f;
  font-size: 0.78rem;
  font-weight: 950;
}

.proof-strip strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.proof-strip p {
  max-width: 30ch;
  margin: 9px 0 0;
  color: #cddde0;
  line-height: 1.48;
}

.business-system,
.scale-process,
.package-section,
.growth-section,
.plans-section,
.book-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 74px);
}

.business-system {
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #ffffff, #f4faf7);
}

.tight-copy {
  max-width: 720px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.system-grid article,
.system-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--panel-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 249, 0.88)) padding-box,
    linear-gradient(135deg, rgba(11, 119, 117, 0.80), rgba(255, 255, 255, 0.28) 42%, rgba(16, 24, 32, 0.18)) border-box;
  box-shadow: var(--shadow);
  transition: var(--transition-spring);
}

.system-grid article:hover,
.system-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(11, 119, 117, 0.35);
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(11, 119, 117, 0.72), transparent 48%) top left / 100% 3px no-repeat;
  pointer-events: none;
}

.website-card::before {
  background:
    linear-gradient(90deg, rgba(215, 90, 61, 0.78), transparent 48%) top left / 100% 3px no-repeat;
}

.marketing-card::before {
  background:
    linear-gradient(90deg, rgba(49, 95, 190, 0.78), transparent 48%) top left / 100% 3px no-repeat;
}

.management-card::before {
  background:
    linear-gradient(90deg, rgba(230, 169, 63, 0.92), transparent 48%) top left / 100% 3px no-repeat;
}

.card-light {
  position: absolute;
  width: auto;
  height: auto;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(11, 119, 117, 0.13), transparent 32%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.92), transparent 36%);
  filter: none;
  pointer-events: none;
}

.website-card .card-light {
  background:
    linear-gradient(135deg, rgba(215, 90, 61, 0.13), transparent 32%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.92), transparent 36%);
}

.marketing-card .card-light {
  background:
    linear-gradient(135deg, rgba(49, 95, 190, 0.13), transparent 32%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.92), transparent 36%);
}

.management-card .card-light {
  background:
    linear-gradient(135deg, rgba(230, 169, 63, 0.18), transparent 32%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.92), transparent 36%);
}

.system-grid span {
  position: relative;
  color: #7a8790;
  font-weight: 950;
}

.system-grid h3 {
  position: relative;
  margin: 46px 0 10px;
  font-size: 1.85rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.system-grid p,
.plan-grid p,
.book-section p,
.growth-section p {
  color: #54656f;
  line-height: 1.62;
}

.system-card p {
  position: relative;
  max-width: 28ch;
  margin-bottom: 0;
}

.scale-process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 58px,
    linear-gradient(135deg, rgba(7, 134, 111, 0.18), transparent 58%),
    #10201c;
  color: #fff;
}

.scale-process .eyebrow {
  color: #f3c15f;
}

.scale-process h2,
.package-section h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(32, 198, 149, 0.05), rgba(32, 198, 149, 0.72), rgba(236, 184, 79, 0.68), rgba(32, 198, 149, 0.05));
}

.process-track article {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--panel-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)) padding-box,
    linear-gradient(135deg, rgba(39, 196, 189, 0.50), rgba(255, 255, 255, 0.12), rgba(230, 169, 63, 0.34)) border-box;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition: var(--transition-spring);
}

.process-track article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(39, 196, 189, 0.24);
  border-color: rgba(39, 196, 189, 0.5);
}

.process-track article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(32, 198, 149, 0.18), transparent 64%);
}

.process-track span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #f3c15f;
  font-weight: 950;
}

.process-track strong {
  display: block;
  margin-top: 62px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1;
}

.process-track p {
  max-width: 26ch;
  margin: 12px 0 0;
  color: #cddde0;
  line-height: 1.52;
}

.package-section {
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.package-section .section-copy {
  margin-inline: auto;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
  max-width: 1120px;
}

.package-grid article {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.28);
  border-radius: var(--panel-radius);
  background: #ffffff;
  box-shadow:
    0 20px 46px rgba(17, 58, 50, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  transition: var(--transition-spring);
}

.package-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: var(--accent);
}

.package-grid article > * {
  position: relative;
  z-index: 1;
}

.package-grid .featured-package {
  border: 2px solid #0aa587;
  box-shadow: 0 14px 32px rgba(7, 134, 111, 0.18);
}

.package-grid .featured-package:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(7, 134, 111, 0.26);
  border-color: #07866f;
}

.package-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 999px;
  background: #f4f7f6;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-package .package-tag {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.package-tag-mint {
  border-color: rgba(32, 198, 149, 0.25);
  background: rgba(32, 198, 149, 0.10);
  color: #07866f;
}

.package-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.popular-tag {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #064c42 0%, #07866f 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(7, 134, 111, 0.26);
}

.package-grid h3 {
  margin: 42px 0 0;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 0.98;
  color: var(--ink);
}

.package-lead {
  max-width: 30ch;
  margin: 12px 0 0;
  color: #54656f;
  line-height: 1.52;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 26px;
}

.package-price {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: normal;
}

.price-note {
  color: #64737c;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.monthly-subtle {
  margin: 6px 0 0 0;
  color: #5d6d66;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 10px;
  background: #f4f7f6;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

.package-grid ul {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #485b65;
  font-weight: 850;
  line-height: 1.35;
}

.package-grid li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(215, 90, 61, 0.10);
}

.featured-package li::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(7, 134, 111, 0.12);
}

.featured-package .primary-button {
  background: linear-gradient(135deg, #064c42 0%, #07866f 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 134, 111, 0.24), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.featured-package .primary-button:hover {
  background: linear-gradient(135deg, #075a4e 0%, #0b7f6b 100%);
  box-shadow: 0 12px 30px rgba(7, 134, 111, 0.35);
}

.package-grid .monthly-note {
  margin-top: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #5d6d66;
  font-size: 0.92rem;
  font-weight: 750;
}

.package-grid .monthly-note::before {
  opacity: 0.5;
}

.package-link {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: #596873;
  font-weight: 750;
  line-height: 1.52;
  text-align: center;
}

.preview-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 6vw, 74px);
  background: #10201c;
  color: #fff;
}

.preview-teaser h2 {
  margin: 8px 0 0;
  max-width: 660px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.02;
}

.growth-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 119, 117, 0.08), rgba(230, 169, 63, 0.10)),
    #f5f8fa;
}

.growth-section figure {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  box-shadow: 0 26px 70px rgba(16, 24, 32, 0.16);
}

.growth-section img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.growth-section h2,
.plans-section h2,
.book-section h2,
.business-system h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.growth-section > div > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.plans-section {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  margin-top: 30px;
}

.plan-grid article {
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #f8fbfb;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.07);
}

.plan-grid span {
  color: var(--accent-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.plan-grid h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.plan-grid .link-button {
  margin-top: 16px;
}

.featured-plan {
  color: #fff;
  background:
    linear-gradient(145deg, #101820, #173843) !important;
}

.featured-plan span,
.featured-plan p {
  color: #dbe7e9;
}

.featured-plan h3 {
  color: #fff;
}

.book-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(135deg, rgba(16, 32, 28, 0.98), rgba(7, 54, 48, 0.96)),
    #10201c;
  color: #fff;
}

.scale-hero > *,
.growth-section > *,
.book-section > * {
  min-width: 0;
}

.book-section p {
  max-width: 680px;
  color: #d5e2e5;
  font-size: 1.08rem;
}

.booking-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin-top: 28px;
}

.booking-proof article {
  padding: 18px;
  border: 1px solid rgba(57, 220, 174, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.booking-proof span {
  color: #f3c15f;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-proof strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.book-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)) padding-box,
    linear-gradient(135deg, rgba(32, 198, 149, 0.72), rgba(255, 255, 255, 0.14), rgba(236, 184, 79, 0.50)) border-box;
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.26),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  backdrop-filter: blur(12px);
}

.book-card > strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.book-kicker {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3c15f;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.lead-form span {
  color: #d5e2e5;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #101820;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.26) inset;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}

.lead-status {
  min-height: 20px;
  margin: 0;
  font-size: 0.9rem !important;
}

.lead-status:empty {
  display: none;
}

.lead-status[data-status="success"] {
  color: #8fe1c6;
}

.lead-status[data-status="error"] {
  color: #ffc4b8;
}

.analyzer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 74px);
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #f9fdfb 0%, #e9f8f1 58%, #fff7e5 100%);
}

.analyzer-copy {
  max-width: 800px;
}

.analyzer-copy h1 {
  margin: 12px 0 0;
  color: #10201c;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.analyzer-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #42545e;
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.62;
}

.analyzer-proof,
.momentum-investment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analyzer-proof {
  margin-top: 24px;
}

.momentum-investment-pills {
  margin-top: 16px;
}

.analyzer-proof span,
.momentum-investment-pills span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 134, 111, 0.10);
  color: #064c42;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.analyzer-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(7, 134, 111, 0.18);
  border-radius: 8px;
  background: rgba(16, 32, 28, 0.96);
  box-shadow: 0 24px 68px rgba(16, 24, 32, 0.18);
}

.analyzer-card > strong {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.analyzer-card > .book-kicker {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9ecbc2;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.analyzer-tools {
  display: grid;
  gap: 8px;
  margin: 2px 0 4px;
}

.analyzer-tools label {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.analyzer-tools label:has(input:checked) {
  border-color: rgba(32, 198, 149, 0.52);
  background: rgba(32, 198, 149, 0.13);
}

.analyzer-tools input {
  grid-row: span 2;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #0f7a67;
}

.analyzer-card .analyzer-tools span {
  color: #effaf6;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.analyzer-tools small {
  color: #a4c0ba;
  font-size: 0.76rem;
  line-height: 1.35;
}

.analyzer-card label {
  display: grid;
  gap: 7px;
}

.analyzer-card label span {
  color: #d5e2e5;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.analyzer-card input:not([type="checkbox"]) {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #101820;
}

.analyzer-consent-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.analyzer-consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0f7a67;
}

.analyzer-card .analyzer-consent-check span {
  color: #d5e2e5;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
  text-transform: none;
}

.analyzer-consent {
  margin: -2px 0 0;
  color: #a4c0ba;
  font-size: 0.82rem;
  line-height: 1.45;
}

.analysis-lead-card {
  padding: 18px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.06);
}

.analysis-lead-card p {
  color: #52636d;
  line-height: 1.5;
}

.analysis-lead-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .analyzer-hero {
    grid-template-columns: 1fr;
  }
}

.sticky-start {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #064c42, #0f7a67);
  color: #fff;
  font-weight: 950;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  box-shadow:
    0 20px 46px rgba(11, 119, 117, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sticky-start.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.marketing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 6vw, 74px);
  background: #0c1714;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.marketing-footer .brand-lockup strong {
  display: block;
  max-width: 260px;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.marketing-footer .eyebrow {
  color: #f3c15f;
}

.marketing-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #cddde0;
  font-size: 0.9rem;
  font-weight: 850;
}

.marketing-footer nav a {
  text-decoration: none;
}

.footer-copyright {
  margin: 0;
  color: #91aaa4;
  font-size: 0.82rem;
  font-weight: 750;
}

.site-footer {
  display: grid;
  align-items: stretch;
  gap: 28px;
  padding: clamp(38px, 7vw, 76px) clamp(20px, 6vw, 74px) 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(7, 134, 111, 0.28), transparent 34%),
    linear-gradient(135deg, #07110f 0%, #0c1714 48%, #10201c 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(140px, 0.58fr));
  gap: clamp(24px, 5vw, 54px);
  width: 100%;
}

.footer-brand-section {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.footer-brand-section > p {
  max-width: 500px;
  margin: 0;
  color: #c9d8d3;
  line-height: 1.62;
}

.footer-contact-list {
  display: grid;
  gap: 9px;
}

.footer-contact-list span {
  color: #aec5bf;
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-contact-list a {
  color: #ffffff;
  font-weight: 900;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: #f3c15f;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: #dfe9e6;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-column a:hover,
.footer-contact-list a:hover,
.marketing-footer nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #91aaa4;
  font-size: 0.86rem;
  font-weight: 750;
}

.footer-bottom .primary-button {
  min-height: 42px;
  padding: 0 16px;
}

.policy-page {
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, #f7fcfa 0%, #ffffff 52%, #eef6f2 100%);
}

.policy-hero {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 74px) clamp(24px, 4vw, 42px);
}

.policy-hero h1 {
  max-width: 900px;
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.94;
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #52665f;
  font-size: 1.08rem;
  line-height: 1.62;
}

.policy-layout {
  padding: 0 clamp(20px, 6vw, 74px) clamp(62px, 9vw, 110px);
}

.policy-card {
  max-width: 940px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(16, 32, 28, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(17, 58, 50, 0.10);
}

.policy-card h2 {
  margin: 30px 0 0;
  color: #10201c;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  margin: 10px 0 0;
  color: #52665f;
  line-height: 1.68;
}

.policy-card a {
  color: #0b776f;
  font-weight: 900;
}

.policy-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.policy-contact-grid div {
  padding: 18px;
  border: 1px solid rgba(7, 134, 111, 0.14);
  border-radius: 8px;
  background: #f7fcfa;
}

.policy-contact-grid span {
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-contact-grid strong {
  display: block;
  margin-top: 8px;
  color: #10201c;
  font-size: 1rem;
}

.inline-contact-email {
  width: max-content;
  max-width: 100%;
}

.examples-page {
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, #eaf7f1 0%, #f8faf7 42%, #edf3f0 100%);
}

.examples-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 82px) clamp(20px, 6vw, 74px) clamp(30px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #10201c 0%, #123d36 52%, #165346 100%);
}

.examples-hero .eyebrow {
  color: #ffca28 !important;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.examples-hero h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 0.92;
  color: #ffffff;
  text-wrap: balance;
}

.examples-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: #d7e6e9;
  font-size: 1.08rem;
  line-height: 1.62;
}

.example-tabs {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(26px, 4vw, 42px) clamp(20px, 6vw, 74px) 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(248, 250, 247, 0.38));
}

.example-tabs h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
  line-height: 1;
  text-wrap: balance;
}

.tab-list {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.08);
}

.tab-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #3e4f59;
  font-weight: 900;
}

.tab-button:hover,
.tab-button.active {
  color: #fff;
  background: #101820;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.18);
}

.example-showcase {
  display: grid;
  gap: 26px;
  padding: 20px clamp(20px, 6vw, 74px) clamp(44px, 7vw, 80px);
}

.example-card[hidden] {
  display: none;
}

.example-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.62fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  min-height: 430px;
  padding: clamp(20px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--panel-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.90)) padding-box,
    linear-gradient(135deg, rgba(11, 119, 117, 0.45), rgba(255, 255, 255, 0.24), rgba(230, 169, 63, 0.35)) border-box;
  box-shadow: var(--shadow);
  transition: var(--transition-spring);
}

.example-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(11, 119, 117, 0.25);
}

.example-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 240, 0.88)) padding-box,
    linear-gradient(135deg, rgba(215, 90, 61, 0.38), rgba(255, 255, 255, 0.24), rgba(230, 169, 63, 0.46)) border-box;
}

.example-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.88)) padding-box,
    linear-gradient(135deg, rgba(49, 95, 190, 0.44), rgba(255, 255, 255, 0.24), rgba(109, 91, 208, 0.38)) border-box;
}

.example-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.92fr);
}

.example-card:nth-child(even) .example-browser {
  order: 2;
}

.example-card h2 {
  margin: 10px 0 0;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.example-card p {
  max-width: 430px;
  color: #536672;
  line-height: 1.58;
}

.example-label {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.example-browser {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.15);
  border-radius: 12px;
  background: #101820;
  box-shadow:
    0 24px 60px rgba(16, 24, 32, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 48px rgba(11, 119, 117, 0.1);
}

.example-topbar {
  display: flex;
  gap: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.example-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.example-screen {
  min-height: 330px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-screen {
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(32, 198, 149, 0.16) 0%, transparent 50%),
    linear-gradient(135deg, #091312 0%, #122b27 100%);
}

.wellness-screen {
  color: #101820;
  background:
    radial-gradient(circle at 0% 0%, rgba(230, 169, 63, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #fdfbfa 0%, #edf1f2 100%);
}

.creator-screen {
  color: #101820;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 193, 95, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #f7f9fc 0%, #ecf1f7 100%);
}

.mini-nav {
  width: 54%;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.wellness-screen .mini-nav,
.creator-screen .mini-nav {
  background: rgba(16, 24, 32, 0.08);
}

.mini-hero {
  position: relative;
  z-index: 2;
  width: min(360px, 78%);
  margin-top: 54px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #101820;
  box-shadow: 0 20px 48px rgba(16, 24, 32, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.service-screen .mini-hero {
  background: rgba(18, 38, 34, 0.88);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.mini-hero strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mini-hero p {
  margin: 6px 0 14px;
  color: #51616b;
  font-size: 0.96rem;
  line-height: 1.4;
}

.service-screen .mini-hero p {
  color: #a4c0ba;
}

.mini-hero span {
  display: block;
  width: 118px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
}

.service-screen .mini-hero span {
  background: #0f7a67;
}

.mini-cards {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 12px;
}

.mini-cards i {
  width: 78px;
  height: 92px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 245, 0.88));
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.12);
  border: 1px solid rgba(7, 134, 111, 0.08);
  position: relative;
  overflow: hidden;
}

.mini-cards i::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, #064c42 0%, #07866f 100%);
  opacity: 0.18;
}

.mini-cards i::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 8px;
  right: 8px;
  height: 6px;
  border-radius: 3px;
  background: rgba(16, 32, 28, 0.24);
  box-shadow: 0 8px 0 rgba(16, 32, 28, 0.14);
}

.creator-screen .mini-cards i::before {
  background: linear-gradient(135deg, #f3c15f 0%, #27c4bd 100%);
  opacity: 0.22;
}

.wellness-screen .mini-photo {
  position: absolute;
  z-index: 1;
  right: 24px;
  top: 24px;
  width: 180px;
  height: 190px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e5cfbe 0%, #c1a99a 100%);
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.wellness-screen .mini-photo::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.85;
}

.wellness-screen .mini-photo::after {
  content: "Mind & Body";
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: #5d4637;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(93, 70, 55, 0.08);
}

.creator-screen .mini-grid {
  position: absolute;
  z-index: 1;
  right: 24px;
  top: 24px;
  width: 180px;
  height: 190px;
  border-radius: 12px;
  background: linear-gradient(135deg, #101c24 0%, #1b2f3d 100%);
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.creator-screen .mini-grid::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3c15f 0%, #ff8c00 100%);
  box-shadow: 0 0 16px rgba(243, 193, 95, 0.4);
}

.creator-screen .mini-grid::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: 
    linear-gradient(90deg, #27c4bd 0 4px, transparent 4px 12px) 0 0 / 12px 100%,
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 8px);
  border-radius: 6px;
  opacity: 0.88;
}

.mini-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.wellness-screen .mini-strip {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.wellness-screen .mini-strip::before {
  content: "Reserve Your Spot";
  color: #101820;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wellness-screen .mini-strip::after {
  content: "";
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #b84228;
  box-shadow: 0 2px 6px rgba(184, 66, 40, 0.2);
}

.example-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 clamp(20px, 6vw, 74px) clamp(48px, 7vw, 84px);
  padding: 24px;
  border-radius: 8px;
  background: #101820;
  color: #fff;
}

.example-close h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.example-close .eyebrow {
  color: #f3c15f;
}

.example-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.example-close .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.marketing-hero {
  position: relative;
  min-height: min(620px, calc(76vh - 72px));
  display: flex;
  align-items: center;
  padding: 50px clamp(20px, 6vw, 74px) 52px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 19, 26, 0.98) 0%, rgba(9, 19, 26, 0.94) 38%, rgba(9, 19, 26, 0.52) 72%),
    linear-gradient(135deg, rgba(11, 119, 117, 0.46), rgba(215, 90, 61, 0.24)),
    url("/assets/hero-workspace.png") center right / cover;
}

.marketing-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 6vw, 74px) 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.04));
}

.hero-message {
  width: min(760px, 100%);
}

.marketing-hero .eyebrow {
  color: #f2c96b;
}

.marketing-hero h1 {
  margin: 14px 0 0;
  max-width: 720px;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.96;
  text-wrap: balance;
}

.marketing-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #edf4f5;
  font-size: 1.16rem;
  line-height: 1.7;
}

.marketing-hero .hero-actions {
  margin-top: 28px;
}

.marketing-hero .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #edf5f5;
  backdrop-filter: blur(8px);
}

.hero-proof strong {
  color: #fff;
}

.launch-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #101820;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
}

.launch-strip div {
  min-height: 146px;
  padding: 24px clamp(20px, 5vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.launch-strip div:last-child {
  border-right: 0;
}

.launch-strip span {
  color: var(--gold);
  font-weight: 950;
}

.launch-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
}

.launch-strip p {
  margin: 8px 0 0;
  color: #c7d6d8;
  line-height: 1.55;
}

.feature-band,
.split-feature,
.payment-section,
.pricing-showcase,
.final-cta {
  padding: 78px clamp(20px, 6vw, 74px);
}

.feature-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.feature-band,
.payment-section {
  position: relative;
  overflow: hidden;
}

.feature-band::before,
.payment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 24, 32, 0.045) 1px, transparent 1px);
  background-size: 100% 72px;
}

.feature-band > *,
.payment-section > * {
  position: relative;
}

.section-copy {
  max-width: 780px;
}

.section-copy h2,
.split-feature h2,
.pricing-showcase h2,
.final-cta h2 {
  margin: 10px 0 0;
  max-width: 780px;
  font-size: 3rem;
  line-height: 1.04;
}

.section-copy p:not(.eyebrow),
.split-feature p,
.pricing-showcase p {
  color: #53636c;
  font-size: 1.04rem;
  line-height: 1.7;
}

.feature-grid,
.payment-grid,
.pricing-cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.feature-grid article,
.payment-grid article,
.pricing-cards article,
.schedule-showcase {
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
}

.feature-grid article {
  padding: 28px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e6f4f2;
  color: var(--accent-dark);
  font-weight: 950;
}

.feature-grid article:nth-child(2) .feature-icon {
  background: #eef2ff;
  color: var(--blue);
}

.feature-grid article:nth-child(3) .feature-icon {
  background: #fff2e3;
  color: #9a5b00;
}

.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.feature-grid p,
.payment-grid span,
.pricing-cards p {
  color: #596871;
  line-height: 1.58;
}

.split-feature,
.pricing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 119, 117, 0.08), rgba(49, 95, 190, 0.08)),
    #eef5f6;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #25343c;
  font-weight: 850;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.schedule-showcase {
  padding: 28px;
}

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

.showcase-header strong {
  font-size: 1.45rem;
}

.showcase-header span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #e4f1f1;
  color: #0e4f55;
  font-weight: 900;
}

.mini-form-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-form-lines span {
  height: 44px;
  border: 1px solid #d7e0e2;
  border-radius: 8px;
  background: #f8faf9;
}

.mini-form-lines .short {
  width: 58%;
  background: #18232a;
}

.payment-section {
  background: #fff;
}

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

.payment-grid article {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--accent);
}

.payment-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.payment-grid article:nth-child(3) {
  border-top-color: var(--blue);
}

.payment-grid article:nth-child(4) {
  border-top-color: var(--gold);
}

.payment-grid strong {
  font-size: 1.18rem;
}

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

.pricing-cards article {
  padding: 28px;
}

.pricing-cards span {
  color: #5c6870;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-cards strong {
  display: block;
  margin-top: 12px;
  font-size: 3.2rem;
}

.pricing-cards .featured-price {
  background:
    linear-gradient(145deg, #101820, #193944);
  color: #fff;
}

.pricing-cards .featured-price span,
.pricing-cards .featured-price p {
  color: #dce7e7;
}

.final-cta {
  min-height: 390px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 19, 26, 0.90), rgba(9, 19, 26, 0.72)),
    linear-gradient(135deg, rgba(11, 119, 117, 0.34), rgba(215, 90, 61, 0.22)),
    url("/assets/brand-board.png") center / cover;
}

.final-cta .eyebrow {
  color: #f1c36a;
}

.final-cta h2 {
  margin-bottom: 24px;
}

.business-system .section-copy h2,
.plans-section .section-copy h2,
.growth-section h2,
.book-section h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.builder-page {
  background: #dfece8;
}

.builder-page .topbar {
  background: #10201c;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.builder-page .topbar .eyebrow,
.builder-page .plan-pill span {
  color: #c6d4d8;
}

.builder-page .plan-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.builder-page .ghost-button {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.builder-page .primary-button {
  background: #e8fff6;
  color: #064c42;
  box-shadow: none;
}

.builder-page .sidebar {
  background: #eef3f4;
}

.builder-page .panel-section {
  padding: 16px;
  border: 1px solid rgba(24, 35, 42, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(24, 35, 42, 0.04);
}

.builder-page .launch-note {
  background: #10201c;
  color: #fff;
}

.builder-page .launch-note .eyebrow {
  color: #f1c36a;
}

.builder-page .stage-toolbar {
  background: #f9fbfa;
}

.builder-page .website-canvas {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 35, 42, 0.20);
}

.template-card,
.block-card,
.service-row,
.text-input,
.text-area,
select.text-input,
.day-toggle {
  border-color: rgba(24, 35, 42, 0.12);
}

.block-card {
  position: relative;
  min-height: 74px;
  padding-left: 18px;
}

.block-card::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.template-card,
.block-card {
  border-radius: 10px;
  border: 1px solid rgba(24, 35, 42, 0.10);
  background: #fff;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  cursor: pointer;
}

.template-card:hover,
.block-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 35, 42, 0.08);
  border-color: var(--accent);
}

.template-card.active,
.block-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.payment-note {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #c7dfe0;
  border-radius: 8px;
  background: #eef8f7;
}

.payment-note strong {
  color: var(--accent-dark);
}

.payment-note span,
.helper-copy {
  color: #53636c;
  line-height: 1.45;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 12px;
  font-weight: 850;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.helper-copy {
  margin: 10px 0 0;
  font-size: 0.88rem;
}

@container (max-width: 760px) {
  .site-nav {
    flex-wrap: wrap;
  }

  .site-nav .site-button {
    min-height: 38px;
  }

  .hero-block,
  .split-block,
  .pricing-grid,
  .booking-layout,
  .service-grid,
  .testimonial-grid,
  .gallery-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-block,
  .split-block,
  .content-section,
  .text-band {
    padding: 34px 24px;
  }

  .hero-block h2,
  .section-title,
  .split-block h2,
  .text-band h2 {
    font-size: 2.25rem;
  }

  .hero-media,
  .split-visual {
    min-height: 250px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 250px minmax(360px, 1fr);
    grid-template-rows: 76px minmax(0, 1fr) auto;
  }

  .right-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 16px;
  }

  .right-panel .panel-section + .panel-section {
    margin-top: 0;
  }

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

  .scale-hero,
  .growth-section,
  .book-section,
  .example-card,
  .example-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .example-card:nth-child(even) .example-browser {
    order: 0;
  }

  .growth-visual {
    min-height: 460px;
  }

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

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

@media (max-width: 860px) {
  .app-shell {
    display: block;
  }

  .topbar,
  .topbar-actions,
  .stage-toolbar {
    flex-wrap: wrap;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .left-panel,
  .right-panel {
    border: 0;
  }

  .right-panel {
    display: block;
  }

  .stage {
    min-height: 680px;
  }

  .hero-block,
  .split-block,
  .pricing-grid,
  .booking-layout,
  .service-grid,
  .testimonial-grid,
  .gallery-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .split-visual {
    min-height: 280px;
  }

  .nav-links {
    display: none;
  }

  .marketing-nav {
    position: static;
    align-items: center;
    gap: 12px;
  }

  .marketing-links {
    display: none;
  }

  .marketing-nav .brand-lockup {
    flex: 1 1 0;
  }

  .marketing-nav .brand-lockup strong {
    font-size: 1.22rem;
  }

  .marketing-nav > .primary-button {
    display: none;
  }

  .scale-hero {
    min-height: auto;
    padding-top: 38px;
    grid-template-columns: 1fr;
    gap: 26px;
    overflow: hidden;
  }

  .scale-hero h1 {
    font-size: 3.1rem;
  }

  .scale-hero .hero-message,
  .scale-hero .hero-message > p:not(.eyebrow),
  .scale-hero .hero-proof {
    max-width: calc(100vw - 56px);
  }

  .scale-hero .hero-message > p:not(.eyebrow) {
    max-width: 31ch;
  }

  .scale-hero .hero-message > p:not(.eyebrow),
  .book-section p,
  .growth-section > div > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .growth-visual {
    min-height: 260px;
  }

  .visual-card {
    max-width: min(250px, calc(100% - 44px));
  }

  .visual-card.metric {
    display: none;
  }

  .visual-cta {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .scale-hero .hero-proof {
    display: none;
  }

  .business-system,
  .scale-process,
  .package-section,
  .growth-section,
  .plans-section,
  .book-section,
  .examples-hero,
  .example-tabs,
  .example-showcase {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .system-grid,
  .plan-grid,
  .process-track,
  .package-grid,
  .proof-strip,
  .booking-proof {
    grid-template-columns: 1fr;
  }

  .preview-teaser,
  .example-close,
  .example-tabs,
  .marketing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .process-track::before {
    display: none;
  }

  .process-track strong,
  .package-grid h3 {
    margin-top: 36px;
  }

  .tab-list {
    width: 100%;
    overflow-x: auto;
  }

  .tab-button {
    flex: 1 0 auto;
  }

  .example-card {
    min-height: 0;
    padding: 14px;
  }

  .examples-hero h1 {
    font-size: 2.65rem;
  }

  .examples-hero::after {
    display: none;
  }

  .examples-hero p:not(.eyebrow) {
    max-width: 31ch;
  }

  .example-showcase {
    padding-left: 16px;
    padding-right: 16px;
  }

  .example-browser {
    width: 100%;
    min-width: 0;
  }

  .sticky-start {
    left: auto;
    right: 18px;
    bottom: 16px;
    min-width: 156px;
  }

  .example-screen {
    min-height: 300px;
    padding: 14px;
  }

  .mini-hero {
    width: min(260px, 82%);
    margin-top: 44px;
    padding: 16px;
  }

  .mini-hero strong {
    font-size: 1.18rem;
  }

  .mini-hero p {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .mini-cards {
    right: 18px;
    bottom: 18px;
    z-index: 1;
  }

  .mini-cards i {
    width: 48px;
    height: 64px;
  }
  
  .mini-cards i::before {
    top: 4px;
    left: 4px;
    right: 4px;
    height: 32px;
  }
  
  .mini-cards i::after {
    bottom: 8px;
    left: 4px;
    right: 4px;
    height: 4px;
    box-shadow: 0 5px 0 rgba(16, 32, 28, 0.14);
  }

  .wellness-screen .mini-photo,
  .creator-screen .mini-grid {
    width: 112px;
    height: 120px;
    right: 18px;
    top: 18px;
    opacity: 0.72;
  }

  .system-grid article,
  .plan-grid article {
    min-height: auto;
  }

  .marketing-hero {
    min-height: 560px;
    padding-top: 46px;
    padding-bottom: 42px;
    background:
      linear-gradient(rgba(16, 29, 35, 0.82), rgba(16, 29, 35, 0.88)),
      url("/assets/hero-workspace.png") center / cover;
  }

  .marketing-hero h1 {
    font-size: 3.15rem;
  }

  .section-copy h2,
  .split-feature h2,
  .pricing-showcase h2,
  .final-cta h2,
  .hero-block h2,
  .section-title {
    font-size: 2.15rem;
  }

  .feature-grid,
  .payment-grid,
  .pricing-cards,
  .launch-strip,
  .split-feature,
  .pricing-showcase {
    grid-template-columns: 1fr;
  }

  .launch-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .launch-strip div:last-child {
    border-bottom: 0;
  }

  .pricing-cards strong,
  .pricing-card .price {
    font-size: 2.3rem;
  }
}

/* Sitemint polish pass */
.logo-mark {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.logo-mark::before {
  position: absolute;
  inset: 5px 7px 7px 5px;
  width: auto;
  height: auto;
  border-radius: 18px 18px 6px 18px;
  background:
    linear-gradient(145deg, #0b5e4f 0%, #0b8f75 58%, #2fd3a3 100%);
  box-shadow:
    0 16px 28px rgba(7, 134, 111, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
  transform: rotate(-14deg);
}

.logo-mark::after {
  right: 5px;
  top: 6px;
  width: 10px;
  height: 10px;
  box-shadow: 0 8px 16px rgba(230, 169, 63, 0.24);
}

.mini-logo {
  width: 30px;
  height: 30px;
}

.mini-logo::before {
  inset: 4px 5px 5px 4px;
  border-radius: 11px 11px 4px 11px;
}

.mini-logo::after {
  right: 3px;
  top: 4px;
  width: 7px;
  height: 7px;
}

.marketing-page {
  background:
    linear-gradient(180deg, #f8fcf8 0%, #eef7f3 48%, #fbfaf5 100%);
}

.scale-hero {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 249, 243, 0.94) 55%, rgba(250, 240, 217, 0.92) 100%);
}

.business-system,
.package-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.94));
}

.section-brand-line {
  margin-inline: auto;
}

.blog-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 74px);
  background:
    linear-gradient(180deg, #10201c 0%, #0b1714 100%);
  color: #fff;
}

.blog-section .section-copy {
  margin-inline: auto;
  text-align: center;
}

.blog-section .eyebrow {
  color: #f3c15f;
}

.blog-section h2 {
  margin: 10px 0 0;
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  line-height: 0.98;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.blog-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  transition: var(--transition-spring);
}

.blog-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(32, 198, 149, 0.18);
  border-color: rgba(32, 198, 149, 0.4);
}

.blog-grid span {
  color: #f3c15f;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: 18px 0 0;
  font-size: 1.42rem;
  line-height: 1.08;
}

.blog-grid p {
  margin: 14px 0 0;
  color: #d8e6e4;
  line-height: 1.58;
}

body.modal-open {
  overflow: hidden;
}

.flow-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(9, 16, 18, 0.62);
  backdrop-filter: blur(10px);
}

.flow-modal[hidden] {
  display: none;
}

.flow-panel {
  width: min(980px, 100%);
  max-height: min(820px, calc(100vh - 44px));
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f3faf6 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  color: #10201c;
}

.flow-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.flow-panel h2,
.flow-panel h3,
.flow-panel label,
.flow-panel span,
.flow-panel p,
.flow-panel strong {
  color: #10201c;
}

/* Except inside the dark-themed summary panel */
.flow-summary,
.flow-summary h2,
.flow-summary h3,
.flow-summary label,
.flow-summary span,
.flow-summary p,
.flow-summary strong {
  color: #ffffff;
}

.flow-summary p {
  color: #dce9eb;
}

.flow-plan-details p {
  color: #a4c0ba;
}

.flow-plan-details li {
  color: #dce9eb;
}

.flow-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #10201c;
  font-size: 0;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.10);
  cursor: pointer;
}

.flow-close::before,
.flow-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #10201c;
}

.flow-close::before {
  transform: rotate(45deg);
}

.flow-close::after {
  transform: rotate(-45deg);
}

.flow-close:hover {
  border-color: rgba(15, 115, 94, 0.28);
  background: #f7fcfa;
}

.flow-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 44px;
}

.flow-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.flow-summary {
  display: flex;
  min-height: 100%;
  padding: 22px;
  flex-direction: column;
  border-radius: 8px;
  background: #10201c;
  color: #fff;
}

.flow-summary span,
.flow-label {
  color: #f3c15f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.flow-summary strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 0.98;
}

.flow-summary p {
  color: #dce9eb;
  line-height: 1.58;
}

.flow-plan-details {
  flex: 1;
  margin-top: 16px;
  color: #a4c0ba;
  font-size: 0.96rem;
  line-height: 1.52;
}

.flow-plan-details p {
  color: #a4c0ba;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.flow-plan-details ul {
  margin: 12px 0 0;
  padding-left: 19px;
  color: #dce9eb;
  list-style-type: disc;
}

.flow-plan-details li {
  margin-top: 9px;
  font-size: 0.94rem;
  line-height: 1.38;
}

.flow-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.34rem;
  font-weight: 950;
}

.flow-maintenance {
  margin-top: 8px;
  color: rgba(220, 233, 235, 0.76);
  font-size: 0.94rem;
  line-height: 1.42;
}

.flow-form {
  display: grid;
  gap: 12px;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.slot-button {
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #10201c;
  font-weight: 850;
  text-align: left;
}

.slot-button.active {
  border-color: rgba(11, 119, 117, 0.56);
  background: #e9f8f3;
  color: #064c42;
}

.slot-empty {
  margin: 0;
  color: #52636d;
  line-height: 1.5;
}

.flow-fields {
  display: grid;
  gap: 10px;
}

.flow-fields label,
.dashboard-card label {
  display: grid;
  gap: 7px;
  color: #485b65;
  font-weight: 850;
}

.flow-fields input,
.flow-fields textarea,
.dashboard-card input,
.dashboard-card textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #10201c;
  font: inherit;
}

.flow-fields input,
.dashboard-card input {
  min-height: 42px;
  padding: 0 12px;
}

.dashboard-card textarea {
  min-height: 88px;
  padding: 10px 12px;
  resize: vertical;
}

.flow-fields textarea {
  min-height: 92px;
  padding: 12px;
  resize: vertical;
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-shell {
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 74px);
}

.dashboard-login,
.dashboard-workspace {
  max-width: 1180px;
  margin: 0 auto;
}

.dashboard-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.dashboard-login h1,
.dashboard-heading h1 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.dashboard-login p,
.dashboard-card p {
  color: #52636d;
  line-height: 1.58;
}

.dashboard-card {
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 64px rgba(16, 24, 32, 0.10);
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.dashboard-security {
  max-width: 340px;
  color: #52636d;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: right;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.analytics-card {
  grid-column: 1 / -1;
}

.analytics-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.analytics-summary article {
  padding: 14px;
  border: 1px solid rgba(7, 134, 111, 0.14);
  border-radius: 8px;
  background: #f7fcfa;
}

.analytics-summary span,
.analytics-source-card span {
  display: block;
  color: #60717a;
  font-size: 0.78rem;
  font-weight: 850;
}

.analytics-summary strong {
  display: block;
  margin-top: 5px;
  color: #0b776f;
  font-size: 1.35rem;
  line-height: 1;
}

.analytics-source-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.analytics-source-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 8px;
  background: #fff;
}

.analytics-source-card strong {
  display: block;
  margin-bottom: 4px;
  color: #10201c;
}

.analytics-source-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.analytics-source-metrics span,
.analytics-source-metrics b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eaf6f2;
  color: #064c42;
  font-size: 0.78rem;
}

.dashboard-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.day-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  border: 0;
}

.day-checks legend {
  width: 100%;
  margin-bottom: 4px;
  color: #485b65;
  font-weight: 950;
}

.day-checks label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #fff;
}

.dashboard-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 22px;
}

.dashboard-fields.single {
  grid-template-columns: 1fr;
}

.availability-manager {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #f7fcfa;
}

.availability-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.availability-preview-head span {
  display: block;
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-preview-head strong {
  display: block;
  margin-top: 3px;
  color: #10201c;
}

.dashboard-calendar-preview {
  min-height: 250px;
}

.dashboard-month-preview,
.dashboard-time-preview {
  display: grid;
  gap: 10px;
}

.dashboard-month-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.dashboard-weekdays,
.dashboard-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.dashboard-weekdays span {
  color: #6b7d75;
  font-size: 0.68rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.dashboard-date-empty,
.dashboard-date-button {
  min-height: 38px;
  border-radius: 8px;
}

.dashboard-date-button {
  border: 1px solid rgba(16, 24, 32, 0.10);
  background: rgba(255, 255, 255, 0.72);
  color: #a5b1ac;
  font-weight: 900;
}

.dashboard-date-button.available {
  background: #e8f8f3;
  color: #0f735e;
  cursor: pointer;
}

.dashboard-date-button.available:hover {
  border-color: rgba(15, 115, 94, 0.35);
  background: #d8f2ea;
}

.dashboard-date-button:disabled {
  cursor: default;
  opacity: 0.58;
}

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

.dashboard-time-preview span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(15, 115, 94, 0.16);
  border-radius: 8px;
  background: #fff;
  color: #0f735e;
  font-size: 0.86rem;
  font-weight: 900;
}

.requests-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.request-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  max-height: 620px;
  overflow: auto;
}

.request-card {
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #fff;
}

.request-card span,
.request-card small {
  color: #0f735e;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.request-card strong {
  display: block;
  margin-top: 7px;
  font-size: 1.08rem;
}

.request-card p {
  margin: 7px 0 0;
  color: #52636d;
}

.request-empty {
  color: #52636d;
}

@media (max-width: 900px) {
  .blog-grid,
  .flow-layout,
  .dashboard-login,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .slot-list,
  .dashboard-fields,
  .analytics-summary {
    grid-template-columns: 1fr;
  }

  .analytics-source-card {
    display: grid;
  }

  .analytics-source-metrics {
    justify-content: flex-start;
  }

  .dashboard-heading {
    align-items: start;
    flex-direction: column;
  }

  .dashboard-security {
    text-align: left;
  }
}
/* UI cleanup pass: lighter premium card, calmer sections */
.marketing-page {
  background:
    linear-gradient(180deg, #fbfdfb 0%, #f2f8f5 42%, #fbfaf5 100%);
}

.marketing-nav {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(16, 24, 32, 0.06);
}

.scale-hero {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 247, 0.96) 58%, rgba(251, 244, 229, 0.94) 100%);
}

.business-system,
.package-section,
.book-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.96));
}

.package-section {
  border-top: 1px solid rgba(16, 24, 32, 0.06);
  border-bottom: 1px solid rgba(16, 24, 32, 0.06);
}

.package-grid {
  gap: clamp(18px, 2.5vw, 28px);
}

.package-grid article {
  min-height: 640px;
  border-color: transparent;
  background:
    linear-gradient(145deg, rgba(253, 255, 254, 0.99), rgba(232, 248, 241, 0.94)) padding-box,
    linear-gradient(135deg, rgba(7, 134, 111, 0.58), rgba(32, 198, 149, 0.34)) border-box;
  box-shadow:
    0 22px 58px rgba(7, 134, 111, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.system-grid article,
.system-card,
.book-card,
.flow-panel,
.dashboard-card {
  box-shadow:
    0 20px 54px rgba(16, 24, 32, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.blog-section {
  background:
    linear-gradient(180deg, #f7fbf8 0%, #eef7f3 100%);
  color: #10201c;
  border-top: 1px solid rgba(16, 24, 32, 0.06);
}

.blog-section .eyebrow {
  color: #0f735e;
}

.blog-grid article {
  border-color: rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 249, 0.92));
  box-shadow:
    0 20px 54px rgba(16, 24, 32, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.blog-grid span {
  color: #0f735e;
}

.blog-grid p {
  color: #52636d;
}

.flow-summary {
  background:
    linear-gradient(145deg, #10201c, #0f3e37);
}

.slot-button,
.flow-fields input,
.flow-fields textarea,
.dashboard-card input,
.dashboard-card textarea,
.lead-form input,
.lead-form textarea {
  border-color: rgba(16, 24, 32, 0.11);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.80) inset;
}

.primary-button,
.ghost-button,
.package-link,
.visual-cta,
.sticky-start {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.primary-button:hover,
.ghost-button:hover,
.package-link:hover,
.visual-cta:hover,
.sticky-start:hover {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .package-grid .featured-package {
    transform: none;
  }
}
/* Contrast repair: light sections must use dark readable text */
.book-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 244, 0.96) 58%, rgba(250, 241, 220, 0.92));
  color: #10201c;
}

.book-section .eyebrow {
  color: #b84228;
}

.book-section h2,
.book-card > strong,
.booking-proof strong,
.blog-section h2,
.blog-grid h3 {
  color: #10201c;
}

.book-section p,
.book-card p,
.blog-section p,
.blog-grid p {
  color: #52636d;
}

.booking-proof article {
  border-color: rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 249, 0.90));
  box-shadow:
    0 18px 44px rgba(16, 24, 32, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.booking-proof span,
.book-kicker {
  color: #0f735e;
}

.book-card {
  border-color: rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.94)) padding-box,
    linear-gradient(135deg, rgba(11, 119, 117, 0.24), rgba(230, 169, 63, 0.24)) border-box;
  box-shadow:
    0 26px 70px rgba(16, 24, 32, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.90) inset;
  backdrop-filter: none;
}

.book-kicker {
  border-color: rgba(11, 119, 117, 0.14);
  background: rgba(231, 248, 241, 0.88);
}

.lead-form label,
.lead-form span {
  color: #485b65;
}

.lead-form input,
.lead-form textarea {
  border-color: rgba(16, 24, 32, 0.14);
  background: #fff;
  color: #10201c;
}

.lead-form .ghost-button {
  color: #10201c;
  background: #fff;
  border-color: rgba(16, 24, 32, 0.12);
}

.lead-status[data-status="success"] {
  color: #0f735e;
}

.lead-status[data-status="error"] {
  color: #b84228;
}

.blog-section,
.blog-grid article {
  color: #10201c;
}

.blog-grid span {
  color: #0f735e;
}
/* Marketing additions: process, idea-stage positioning, and launch kit */
.process-section,
.performance-section,
.idea-section,
.launch-kit-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 74px);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 248, 0.96));
}

.process-section .section-copy,
.performance-copy,
.launch-kit-section .section-copy {
  margin-inline: auto;
  text-align: center;
}

.process-grid,
.performance-grid,
.launch-kit-grid,
.deliverables-grid {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.process-grid,
.performance-grid,
.launch-kit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.process-grid article,
.performance-grid article,
.launch-kit-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.93));
  box-shadow:
    0 20px 54px rgba(16, 24, 32, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.process-grid article::before,
.performance-grid article::before,
.launch-kit-grid article::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-top: 3px solid rgba(11, 119, 117, 0.46);
  border-radius: 8px;
  pointer-events: none;
}

.process-grid span,
.performance-grid span,
.launch-kit-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(231, 248, 241, 0.92);
  color: #064c42;
  font-size: 0.76rem;
  font-weight: 950;
}

.process-grid h3,
.performance-grid h3,
.launch-kit-grid h3 {
  margin: 42px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.04;
}

.process-grid p,
.performance-grid p,
.launch-kit-grid p,
.performance-copy > p,
.launch-kit-section .section-copy > p,
.idea-summary p {
  color: #52636d;
  line-height: 1.58;
}

.performance-section {
  background:
    linear-gradient(180deg, #f7fbf8 0%, #edf7f2 100%);
  border-top: 1px solid rgba(16, 24, 32, 0.06);
  border-bottom: 1px solid rgba(16, 24, 32, 0.06);
}

.performance-copy {
  max-width: 900px;
}

.performance-copy h2 {
  margin: 10px auto 0;
  max-width: 860px;
  color: #10201c;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 0.98;
}

.performance-copy > p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 1.08rem;
}

.performance-grid article {
  min-height: 300px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.93)) padding-box,
    linear-gradient(135deg, rgba(11, 119, 117, 0.22), rgba(230, 169, 63, 0.18)) border-box;
  box-shadow:
    0 22px 58px rgba(16, 24, 32, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.90) inset;
}

.performance-grid article:nth-child(2)::before {
  border-top-color: rgba(230, 169, 63, 0.50);
}

.performance-grid article:nth-child(3)::before {
  border-top-color: rgba(55, 104, 182, 0.38);
}

.performance-grid h3 {
  color: #10201c;
}

.idea-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background:
    linear-gradient(135deg, #10201c 0%, #0f3e37 62%, #173843 100%);
  color: #fff;
}

.idea-section .eyebrow {
  color: #f3c15f;
}

.idea-section h2 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1;
}

.idea-summary p {
  max-width: 680px;
  margin: 0;
  color: #f5fffb;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 800;
  line-height: 1.55;
}

.idea-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.idea-outcomes span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(57, 220, 174, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d5e2e5;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.idea-outcomes strong {
  color: #f3c15f;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-kit-section {
  background:
    linear-gradient(180deg, #fbfdfb 0%, #f1f8f5 100%);
  border-top: 1px solid rgba(16, 24, 32, 0.06);
}

.launch-kit-section h2,
.process-section h2,
.performance-section h2,
.business-system h2 {
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 0.98;
}

.legal-note {
  max-width: 860px;
  margin: 22px auto 0;
  color: #64737c;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 980px) {
  .process-grid,
  .performance-grid,
  .launch-kit-grid,
  .deliverables-grid,
  .idea-section {
    grid-template-columns: 1fr;
  }

  .idea-section {
    gap: 22px;
  }

  .idea-outcomes {
    margin-top: 16px;
  }
}
/* Calendar booking and approval flow */
.slot-list {
  display: block;
}

.slot-calendar {
  display: grid;
  gap: 14px;
}

.slot-calendar-head,
.slot-times-head,
.request-card-topline,
.request-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slot-calendar-head strong,
.slot-times-head strong {
  color: #10201c;
  font-size: 0.98rem;
}

.slot-calendar-head span,
.slot-times-head span,
.request-actions span {
  color: #60717a;
  font-size: 0.82rem;
}

.slot-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 8px;
}

.slot-day-button {
  display: grid;
  min-height: 88px;
  gap: 4px;
  padding: 10px 8px;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 8px;
  background: #f7fbf8;
  color: #10201c;
  cursor: pointer;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.slot-day-button:hover,
.slot-day-button.active {
  border-color: rgba(15, 115, 94, 0.45);
  background: #e9f8f3;
  transform: translateY(-1px);
}

.slot-day-button span,
.slot-day-button small {
  color: #66767a;
  font-size: 0.76rem;
  font-weight: 800;
}

.slot-day-button strong {
  color: #0f735e;
  font-size: 1.5rem;
  line-height: 1;
}

.slot-times-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #fbfdfb;
}

.slot-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 8px;
}

.slot-time-grid .slot-button {
  min-height: 42px;
  text-align: center;
}

.request-card-topline {
  margin-bottom: 4px;
}

.request-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.request-status.pending {
  background: #fff3d8;
  color: #99640e;
}

.request-status.confirmed {
  background: #e4f8ee;
  color: #0f735e;
}

.request-card.pending {
  border-color: rgba(224, 169, 59, 0.34);
}

.request-card.confirmed {
  border-color: rgba(15, 115, 94, 0.24);
}

.request-actions {
  margin-top: 14px;
  justify-content: flex-start;
}

.primary-button.compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .slot-calendar-head,
  .slot-times-head,
  .request-card-topline,
  .request-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

/* Payment-first checkout and monthly scheduler */
.flow-panel {
  width: min(1120px, 100%);
  max-height: calc(100vh - 32px);
}

.flow-layout {
  grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1fr);
}

.flow-payment-step,
.flow-schedule-step,
.flow-inquiry-step {
  display: grid;
  gap: 14px;
}

.flow-form.payment-mode .flow-payment-step {
  order: 1;
}

.flow-form.payment-mode .flow-fields,
.flow-form.schedule-mode .flow-schedule-step,
.flow-form.inquiry-mode .flow-inquiry-step {
  order: 2;
}

.flow-form.schedule-mode .flow-fields {
  order: 3;
}

.flow-actions {
  order: 4;
}

.flow-form > .lead-status {
  order: 5;
}

.flow-payment-step[hidden],
.flow-schedule-step[hidden],
.flow-inquiry-step[hidden],
.flow-actions [hidden] {
  display: none;
}

.payment-panel,
.flow-schedule-step,
.flow-inquiry-step {
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.94));
  box-shadow:
    0 18px 44px rgba(16, 24, 32, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.flow-form.payment-mode .flow-actions {
  position: sticky;
  bottom: -1px;
  z-index: 4;
  margin-top: 0;
  padding: 12px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background: #f7fbf9;
  box-shadow: 0 -12px 28px rgba(247, 251, 249, 0.96);
}

.flow-inquiry-step .flow-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-inquiry-step .flow-fields label:last-child {
  grid-column: 1 / -1;
}

.payment-panel-head strong {
  display: block;
  margin-top: 6px;
  color: #10201c;
  font-size: clamp(1.16rem, 1.8vw, 1.46rem);
  line-height: 1.05;
}

.payment-panel-head p,
.slot-panel-heading p {
  margin: 6px 0 0;
  color: #52636d;
  line-height: 1.42;
}

.express-checkout-element {
  margin-top: 2px;
}

.express-checkout-element[hidden],
.payment-method-divider[hidden] {
  display: none;
}

.payment-method-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #6c7d77;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-method-divider::before,
.payment-method-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(16, 24, 32, 0.10);
}

.stripe-payment-element {
  min-height: 150px;
}

.payment-summary-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.payment-summary-strip div {
  padding: 12px;
  border: 1px solid rgba(11, 119, 117, 0.12);
  border-radius: 8px;
  background: rgba(231, 248, 241, 0.62);
}

.payment-summary-strip span {
  display: block;
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-summary-strip strong {
  display: block;
  margin-top: 4px;
  color: #10201c;
  font-size: 1.04rem;
}

.stripe-element-shell {
  min-height: 104px;
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed rgba(11, 119, 117, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 248, 241, 0.86), rgba(255, 247, 230, 0.58));
}

.stripe-element-placeholder {
  display: grid;
  min-height: 86px;
  align-content: center;
  gap: 7px;
  text-align: center;
}

.stripe-element-placeholder strong {
  color: #064c42;
  font-size: 1.08rem;
}

.stripe-element-placeholder p {
  max-width: 420px;
  margin: 0 auto;
  color: #52636d;
  line-height: 1.45;
}

.payment-status {
  margin: 10px 0 0;
  color: #52636d;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.payment-status:empty {
  display: none;
}

.payment-status[data-status="success"] {
  color: #0f735e;
}

.payment-status[data-status="error"] {
  color: #b84228;
}

.payment-status[data-status="loading"] {
  color: #99640e;
}

.slot-panel-heading {
  display: grid;
  gap: 4px;
}

.slot-month-controls {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
}

.slot-month-controls strong {
  color: #10201c;
  font-size: 1.18rem;
  text-align: center;
}

.slot-month-button {
  min-height: 36px;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 8px;
  background: #fff;
  color: #064c42;
  font-weight: 950;
}

.slot-month-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.slot-weekdays,
.slot-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.slot-weekdays span {
  color: #66767a;
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.slot-date-empty {
  min-height: 62px;
}

.slot-date-button {
  display: grid;
  min-height: 62px;
  gap: 2px;
  padding: 7px 5px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #10201c;
  text-align: center;
  cursor: not-allowed;
  opacity: 0.52;
}

.slot-date-button.available {
  cursor: pointer;
  opacity: 1;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.05);
}

.slot-date-button.available:hover,
.slot-date-button.active {
  border-color: rgba(15, 115, 94, 0.45);
  background: #e9f8f3;
  transform: translateY(-1px);
}

.slot-date-button span,
.slot-date-button small {
  color: #66767a;
  font-size: 0.68rem;
  font-weight: 850;
}

.slot-date-button strong {
  color: #0f735e;
  font-size: 1.22rem;
  line-height: 1;
}

.slot-date-button:not(.available) strong {
  color: #8a989d;
}

.slot-times-panel {
  margin-top: 2px;
}
.compact-calendar {
  gap: 9px;
}

.compact-calendar .slot-month-controls {
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 8px;
}

.compact-calendar .slot-month-controls strong {
  font-size: 1rem;
}

.compact-calendar .slot-month-button,
.slot-back-button {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.compact-calendar .slot-weekdays,
.compact-calendar .slot-month-grid {
  gap: 4px;
}

.compact-calendar .slot-date-empty,
.compact-calendar .slot-date-button {
  min-height: 36px;
}

.compact-calendar .slot-date-button {
  align-items: center;
  justify-items: center;
  padding: 4px;
}

.compact-calendar .slot-date-button strong {
  font-size: 0.95rem;
}

.compact-calendar .slot-date-button.available {
  box-shadow: 0 5px 14px rgba(16, 24, 32, 0.045);
}

.compact-time-view {
  margin-top: 0;
}

.compact-time-view .slot-times-head {
  gap: 10px;
}

.compact-time-view .slot-times-head > div {
  display: grid;
  gap: 3px;
}

.slot-back-button {
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 8px;
  background: #fff;
  color: #064c42;
  font-weight: 950;
}

.exit-schedule-button[hidden] {
  display: none;
}

.flow-actions {
  align-items: center;
}

.flow-actions .primary-button,
.flow-actions .ghost-button {
  min-height: 46px;
}

@media (max-width: 900px) {
  .flow-layout {
    grid-template-columns: 1fr;
  }

  .flow-form {
    order: 1;
  }

  .flow-summary {
    order: 2;
  }
}

@media (max-width: 640px) {
  .flow-panel {
    padding: 18px;
  }

  .payment-summary-strip {
    grid-template-columns: 1fr;
  }

  .flow-inquiry-step .flow-fields {
    grid-template-columns: 1fr;
  }

  .slot-month-controls {
    grid-template-columns: 64px minmax(0, 1fr) 64px;
  }

  .slot-weekdays,
  .slot-month-grid {
    gap: 4px;
  }

  .slot-date-empty,
  .slot-date-button {
    min-height: 46px;
  }

  .compact-calendar .slot-date-empty,
  .compact-calendar .slot-date-button {
    min-height: 34px;
  }

  .flow-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Centered marketing nav and expanded blog CTA */
.marketing-nav {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
}

.marketing-nav .brand-lockup {
  justify-self: start;
}

.marketing-nav .marketing-links {
  grid-column: 2;
  justify-self: center;
}

.marketing-nav > .primary-button {
  justify-self: end;
}

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

.blog-source {
  display: inline-flex;
  margin-top: 18px;
  color: #f3c15f;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.blog-source:hover {
  text-decoration: underline;
}

.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid rgba(32, 198, 149, 0.22);
  border-radius: var(--panel-radius);
  background: linear-gradient(135deg, rgba(16, 32, 28, 0.97), rgba(9, 18, 16, 0.94));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.blog-cta .mini-logo {
  flex: 0 0 auto;
}

.blog-cta div {
  flex: 1 1 auto;
}

.blog-cta strong {
  display: block;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.blog-cta p {
  margin: 7px 0 0;
  color: #a4c0ba;
  line-height: 1.45;
}

.blog-cta .primary-button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .marketing-nav {
    display: flex;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================================================
   Momentum Mint Focus & Blog Modal Additions
   ========================================================================== */

/* Momentum Mint Focus Section */
.momentum-focus-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 74px);
  background: linear-gradient(180deg, #fbfcfd 0%, #f4f7f6 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.momentum-focus-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.momentum-focus-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #10201c;
  margin-top: 14px;
}

.momentum-lead {
  max-width: 800px;
  margin: 18px auto 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #4a605a;
  line-height: 1.5;
}

.momentum-investment-note {
  max-width: 900px;
  margin: 28px auto 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(7, 134, 111, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 246, 0.94));
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.07);
  text-align: left;
}

.momentum-investment-note strong {
  display: block;
  color: #10201c;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.12;
}

.momentum-investment-note p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #4a605a;
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.5;
}

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}

.momentum-focus-card {
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(7, 134, 111, 0.28);
  border-radius: var(--panel-radius);
  box-shadow:
    0 18px 42px rgba(17, 58, 50, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.momentum-focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(7, 134, 111, 0.08);
  border-color: rgba(7, 134, 111, 0.46);
}

.momentum-focus-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #07866f;
  margin-bottom: 12px;
  font-weight: 800;
}

.momentum-focus-card p {
  color: #4a605a;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .momentum-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .momentum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Blog Cards Interactive Upgrades */
.blog-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card p {
  flex-grow: 1;
}

.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-card-footer {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.blog-card-footer .blog-source {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f7a67;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.blog-card-footer .blog-source:hover {
  color: #e8fff6;
  text-decoration: underline;
}

/* Custom Blog Modal Specifics */
.blog-panel {
  max-width: 760px;
  background: linear-gradient(145deg, #10201c 0%, #0b1714 100%);
  border: 1px solid rgba(32, 198, 149, 0.25);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(32, 198, 149, 0.15) inset;
  padding: 42px;
  color: #fff;
  border-radius: var(--panel-radius);
}

.blog-modal-header {
  margin-bottom: 24px;
}

.blog-modal-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.blog-modal-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-top: 10px;
  letter-spacing: -0.02em;
}

.blog-modal-content {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #d8e6e4;
  margin-bottom: 32px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 12px;
}

.blog-modal-content::-webkit-scrollbar {
  width: 6px;
}

.blog-modal-content::-webkit-scrollbar-thumb {
  background: rgba(32, 198, 149, 0.3);
  border-radius: 4px;
}

.blog-modal-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.blog-modal-footer .credit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6a827c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-modal-footer .blog-source {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f7a67;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.blog-modal-footer .blog-source:hover {
  color: #e8fff6;
}

/* Blog section and article polish */
.blog-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(236, 247, 242, 0.96) 100%);
}

.blog-section .section-copy {
  max-width: 780px;
}

.blog-section h2 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
  color: #10201c;
}

.blog-grid {
  gap: clamp(16px, 2vw, 22px);
}

.blog-grid .blog-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.93)) padding-box,
    linear-gradient(135deg, rgba(11, 119, 117, 0.22), rgba(230, 169, 63, 0.18)) border-box;
  box-shadow:
    0 22px 58px rgba(16, 24, 32, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.90) inset;
  color: #10201c;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.blog-grid .blog-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 3px;
  pointer-events: none;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(11, 119, 117, 0.48), rgba(230, 169, 63, 0.40), transparent 78%);
}

.blog-grid .blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 119, 117, 0.22);
  box-shadow:
    0 28px 68px rgba(16, 24, 32, 0.12),
    0 10px 30px rgba(11, 119, 117, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.blog-grid .blog-card-tag {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 119, 117, 0.16);
  border-radius: 999px;
  background: rgba(231, 248, 241, 0.88);
  color: #0f735e;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
}

.blog-grid .blog-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #10201c;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

.blog-grid .blog-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #52636d;
  font-size: 0.98rem;
  line-height: 1.62;
}

.blog-card-footer {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.blog-card-footer .blog-source,
.blog-source {
  min-height: 38px;
  margin-top: 0;
  padding: 0 13px;
  border: 1px solid rgba(11, 119, 117, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #064c42;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.blog-card:hover .blog-source,
.blog-card-footer .blog-source:hover,
.blog-source:hover {
  border-color: #064c42;
  background: #064c42;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.blog-index-page {
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, #f7fcfa 0%, #ffffff 48%, #eef6f2 100%);
}

.blog-index-hero {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 74px) clamp(18px, 3vw, 32px);
}

.blog-index-hero h1 {
  max-width: 920px;
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.blog-index-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: #52665f;
  font-size: 1.08rem;
  line-height: 1.62;
}

.blog-index-list {
  padding-top: clamp(18px, 3vw, 34px);
}

.blog-article-page {
  background:
    linear-gradient(180deg, #fbfdfb 0%, #eef7f3 48%, #fbfaf5 100%);
}

.blog-main-container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 44px) clamp(56px, 8vw, 96px);
}

.blog-full-article {
  scroll-margin-top: 104px;
  overflow: visible;
}

.blog-article-header {
  position: relative;
  padding: clamp(30px, 6vw, 58px) 0 clamp(26px, 5vw, 52px);
  overflow: hidden;
  color: #10201c;
}

.blog-article-header::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 52px);
  top: clamp(18px, 5vw, 46px);
  width: clamp(74px, 12vw, 130px);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 134, 111, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  transform: rotate(-8deg);
}

.blog-article-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.blog-article-meta a,
.blog-article-meta span,
.blog-article-category {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(7, 134, 111, 0.14);
  border-radius: 999px;
  background: rgba(247, 252, 250, 0.86);
  color: #0f735e;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-article-meta a:hover {
  border-color: rgba(7, 134, 111, 0.34);
  background: rgba(231, 248, 241, 0.94);
  color: #064c42;
}

.blog-article-category {
  position: relative;
  z-index: 1;
  border-color: rgba(243, 193, 95, 0.30);
  background: rgba(255, 247, 230, 0.82);
  color: #8b5f00;
}

.blog-article-header h1 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 16px 0 0;
  color: #10201c;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.blog-article-lead {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 18px 0 0;
  color: #4e625c;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.blog-article-body {
  display: grid;
  gap: 20px;
  padding: clamp(10px, 3vw, 26px) 0 clamp(26px, 5vw, 46px);
}

.blog-article-body > p,
.blog-article-body > blockquote,
.blog-article-body > ul {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-body p {
  color: #3f555d;
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.78;
}

.blog-article-body p:first-child,
.blog-article-body p:nth-child(2) {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-article-body strong {
  color: #10201c;
  font-weight: 850;
}

.blog-article-body em {
  color: #0f735e;
  font-style: normal;
  font-weight: 800;
}

.blog-article-body code {
  padding: 2px 6px;
  border: 1px solid rgba(11, 119, 117, 0.14);
  border-radius: 6px;
  background: rgba(231, 248, 241, 0.78);
  color: #064c42;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92em;
  font-weight: 850;
}

.blog-article-body blockquote {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(11, 119, 117, 0.16);
  border-left: 5px solid #0f735e;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 248, 241, 0.94), rgba(255, 247, 230, 0.82));
  color: #10201c;
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.07);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
}

.blog-article-body h2 {
  max-width: 820px;
  margin: clamp(14px, 3vw, 28px) auto 0;
  color: #10201c;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1;
}

.blog-article-body h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f735e, #f3c15f);
}

.blog-article-body ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.blog-article-body li {
  position: relative;
  padding: 10px 0 10px 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3f555d;
  box-shadow: none;
  line-height: 1.62;
}

.blog-article-body li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0f735e;
  box-shadow: 0 0 0 5px rgba(11, 119, 117, 0.10);
}

.blog-article-footer {
  padding: 0 0 clamp(26px, 5vw, 48px);
}

.blog-article-credit {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(11, 119, 117, 0.12);
  border-radius: 8px;
  background: rgba(231, 248, 241, 0.62);
  color: #52636d;
  line-height: 1.5;
}

.blog-article-credit strong {
  color: #10201c;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 850;
}

.blog-article-credit a {
  color: #0f735e;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-main-container > .blog-cta {
  border-color: rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 249, 244, 0.94));
  box-shadow: 0 22px 58px rgba(16, 24, 32, 0.09);
}

.blog-main-container > .blog-cta strong {
  color: #10201c;
}

.blog-main-container > .blog-cta p {
  color: #52636d;
}

@media (max-width: 900px) {
  .blog-grid .blog-card {
    min-height: 0;
  }

  .blog-article-header::after {
    opacity: 0.32;
  }
}

@media (max-width: 640px) {
  .blog-section h2,
  .blog-article-header h1 {
    line-height: 1.02;
  }

  .blog-article-body p:first-child,
  .blog-article-body p:nth-child(2),
  .blog-article-body blockquote,
  .blog-article-body li {
    padding: 18px;
  }

  .blog-article-body li {
    padding-left: 42px;
  }

  .blog-article-body li::before {
    left: 18px;
  }
}


.outreach-card {
  margin-top: 18px;
}

.outreach-tools {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  margin-top: 18px;
}

.outreach-scan-form,
.outreach-manual-form {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background: rgba(247, 251, 249, 0.74);
}

.outreach-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.outreach-lead-card {
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, 0.10);
  border-radius: 8px;
  background: #fff;
}

.outreach-lead-card.sent {
  border-color: rgba(15, 115, 94, 0.24);
}

.outreach-lead-card.opted_out {
  opacity: 0.72;
}

.request-status.skipped {
  background: #eceff1;
  color: #59686f;
}

.outreach-lead-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

.outreach-lead-links a,
.outreach-lead-links span {
  color: #0f735e;
}

.outreach-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.outreach-edit-grid .wide {
  grid-column: 1 / -1;
}

.outreach-actions {
  gap: 8px;
}

.outreach-email-status {
  display: block;
  margin-top: 10px;
  color: #60717a;
  font-weight: 850;
}

@media (max-width: 900px) {
  .outreach-tools,
  .outreach-edit-grid {
    grid-template-columns: 1fr;
  }
}



.package-grid li.monthly-note {
  display: grid;
  gap: 5px;
  align-items: start;
  margin-top: auto;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid rgba(7, 134, 111, 0.18);
  border-radius: 0;
  background: transparent;
  color: #415852;
  font-size: 0.9rem;
  line-height: 1.45;
}

.package-grid li.monthly-note::before {
  display: none;
}

.package-grid li.monthly-note strong {
  color: #064c42;
  font-size: 0.92rem;
  line-height: 1.2;
}

.package-grid li.monthly-note span {
  color: #607069;
}

.featured-package li.monthly-note {
  border: 0;
  border-top: 1px solid rgba(230, 169, 63, 0.28);
  border-radius: 0;
  background: transparent;
  color: #5f543a;
}

.featured-package li.monthly-note strong {
  color: #8a5b08;
}

.featured-package li.monthly-note span {
  color: #675c43;
}


.payment-panel-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.payment-panel .payment-status {
  margin-top: 10px;
}




/* ========================================================================== 
   Post-Payment Success Intake
   ========================================================================== */

.success-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(32, 198, 149, 0.14), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(230, 169, 63, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fbf9 0%, #eef6f3 100%);
  color: #10201c;
}

.success-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.success-hero {
  display: grid;
  align-content: start;
  gap: 30px;
  padding-top: 8px;
}

.success-hero .brand-lockup small {
  display: block;
  margin-top: 2px;
  color: #607069;
  font-size: 0.82rem;
  font-weight: 800;
}

.success-copy h1 {
  max-width: 520px;
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.success-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #4e625c;
  font-size: 1.08rem;
  line-height: 1.62;
}

.success-summary,
.success-card,
.intake-blocked {
  border: 1px solid rgba(16, 32, 28, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(17, 58, 50, 0.12);
}

.success-summary {
  display: grid;
  gap: 8px;
  max-width: 460px;
  padding: 22px;
}

.success-summary span {
  color: #0f735e;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-summary strong {
  color: #10201c;
  font-size: 1.25rem;
  line-height: 1.1;
}

.success-summary p {
  margin: 0;
  color: #5b6e68;
  line-height: 1.5;
}

.success-card {
  padding: clamp(22px, 4vw, 38px);
}

.success-card-head h2 {
  margin: 8px 0 0;
  color: #10201c;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
}

.success-card-head p {
  margin: 12px 0 0;
  color: #607069;
  line-height: 1.55;
}

.intake-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.intake-form[hidden] {
  display: none;
}

.account-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 26px auto 0;
  max-width: 520px;
}

.account-panel[hidden] {
  display: none;
}

.google-button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(16, 32, 28, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #10201c;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17, 58, 50, 0.08);
}

.google-button:not(.is-disabled) {
  border-color: rgba(7, 134, 111, 0.28);
  background: linear-gradient(135deg, #ffffff 0%, #ecfbf5 100%);
  color: #0b3b32;
  box-shadow: 0 16px 34px rgba(7, 134, 111, 0.15);
}

.google-button span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: #f7fcfa;
  color: #0f735e;
  font-weight: 950;
}

.google-button.is-disabled {
  cursor: not-allowed;
  filter: grayscale(0.85);
  opacity: 0.48;
  box-shadow: none;
}

.account-helper {
  margin: -6px 0 0;
  color: #607069;
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.account-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 22px);
  border: 1px solid rgba(16, 32, 28, 0.10);
  border-radius: 8px;
  background: #f7fcfa;
}

.account-form[hidden] {
  display: none;
}

.account-form h3 {
  margin: 0;
  color: #10201c;
  font-size: 1.2rem;
}

.account-form label {
  display: grid;
  gap: 8px;
  color: #10201c;
  font-weight: 850;
}

.account-form label span {
  color: #0f735e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-form input {
  width: 100%;
  border: 1px solid rgba(16, 32, 28, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #10201c;
  padding: 13px 14px;
  outline: 0;
}

.primary-account-form .primary-button {
  width: 100%;
  margin-top: 2px;
}

.account-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  padding-top: 4px;
  color: #607069;
  font-size: 0.92rem;
}

.account-toggle {
  border: 0;
  background: transparent;
  color: #0f735e;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 2px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.muted-account-form {
  background: #fffaf0;
  border-color: rgba(230, 169, 63, 0.25);
}

.account-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 92px) 0;
}

.account-hero {
  align-self: start;
  padding-top: 10px;
}

.account-hero h1 {
  max-width: 520px;
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.account-hero p {
  max-width: 450px;
  margin: 20px 0 0;
  color: #4e625c;
  font-size: 1.06rem;
  line-height: 1.62;
}

.account-card {
  align-self: start;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(16, 32, 28, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(17, 58, 50, 0.12);
}

.account-card[hidden] {
  display: none;
}

.account-home-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.account-home-top h2 {
  margin: 8px 0 0;
  color: #10201c;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.account-home-top p {
  margin: 8px 0 0;
  color: #607069;
}

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

.client-payment-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 22px);
  border: 1px solid rgba(7, 134, 111, 0.14);
  border-radius: 8px;
  background: #f7fcfa;
}

.client-payment-card h3 {
  margin: 0;
  color: #10201c;
  font-size: 1.45rem;
}

.client-payment-card p {
  margin: 0;
  color: #607069;
  line-height: 1.55;
}

.client-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.intake-section {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(16, 32, 28, 0.10);
  border-radius: 8px;
  background: rgba(247, 252, 250, 0.72);
}

.intake-section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.intake-section-head > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #0f735e;
  color: #fff;
  font-weight: 950;
}

.intake-section-head h3 {
  margin: 0;
  color: #10201c;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.intake-section-head p {
  margin: 5px 0 0;
  color: #607069;
  line-height: 1.5;
}

.intake-grid {
  display: grid;
  gap: 16px;
}

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

.intake-form label,
.goal-fieldset {
  display: grid;
  gap: 8px;
  color: #10201c;
  font-weight: 850;
}

.intake-form label span,
.goal-fieldset legend {
  color: #0f735e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  border: 1px solid rgba(16, 32, 28, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #10201c;
  padding: 13px 14px;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.intake-form textarea {
  resize: vertical;
}

.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  border-color: rgba(7, 134, 111, 0.58);
  box-shadow: 0 0 0 4px rgba(32, 198, 149, 0.14);
}

.goal-fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(7, 134, 111, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: #f7fcfa;
}

.goal-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  padding: 0;
}

.goal-fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  color: #2f463f;
  font-size: 0.92rem;
  font-weight: 800;
}

.goal-fieldset input {
  width: 17px;
  height: 17px;
  accent-color: #07866f;
}

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

.simplified-intake-form {
  gap: 22px;
}

.simplified-intake-form .intake-section {
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.simplified-intake-form .intake-section + .intake-section {
  padding-top: 22px;
  border-top: 1px solid rgba(16, 32, 28, 0.10);
}

.simplified-intake-form .intake-section-head {
  grid-template-columns: 1fr;
  gap: 6px;
}

.simplified-intake-form .intake-section-head > span {
  display: none;
}

.simplified-intake-form .intake-section-head h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.simplified-intake-form textarea[name="businessIdea"],
.simplified-intake-form textarea[name="notes"] {
  min-height: 136px;
}

.intake-blocked {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 22px;
  background: #fffaf0;
  border-color: rgba(230, 169, 63, 0.28);
}

.intake-blocked[hidden] {
  display: none;
}

.intake-blocked strong {
  color: #8a5b08;
  font-size: 1.05rem;
}

.intake-blocked p {
  margin: 0;
  color: #655941;
  line-height: 1.5;
}

.intake-blocked .ghost-button {
  width: max-content;
}

.intake-form.is-complete label,
.intake-form.is-complete fieldset {
  opacity: 0.72;
}

@media (max-width: 900px) {
  .success-shell {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 680px);
    padding: 28px 0;
  }

  .account-shell {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 680px);
    padding: 34px 0;
  }

  .account-home-top {
    display: grid;
  }

  .success-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .intake-grid.two-col,
  .goal-fieldset,
  .account-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== 
   Bottom Contact Section
   ========================================================================== */

.contact-section {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 74px);
  background: linear-gradient(180deg, #f8fbfa 0%, #eef6f2 100%);
  border-top: 1px solid rgba(16, 32, 28, 0.08);
}

.contact-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 32px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(7, 134, 111, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 245, 0.92));
  box-shadow: 0 24px 70px rgba(17, 58, 50, 0.10);
}

.contact-panel h2 {
  margin: 8px 0 0;
  color: #10201c;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 0;
  color: #52665f;
  line-height: 1.55;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.contact-details span {
  padding: 7px 9px;
  border: 1px solid rgba(7, 134, 111, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #0f735e;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: #064c42;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 134, 111, 0.10);
}

.contact-email:hover {
  border-color: rgba(7, 134, 111, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .contact-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .policy-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-email {
    width: 100%;
  }
}

.momentum-intake-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(230, 169, 63, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 238, 0.96), rgba(247, 252, 250, 0.92));
}

.momentum-intake-panel[hidden] {
  display: none;
}

.momentum-intake-panel p {
  margin: 6px 0 0;
  color: #675c43;
  line-height: 1.5;
}

.color-grid input::placeholder {
  color: #8aa09a;
}


.service-builder,
.color-configurator {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(16, 32, 28, 0.10);
  border-radius: 8px;
  background: rgba(247, 252, 250, 0.72);
}

.service-builder-head,
.color-configurator-head {
  display: grid;
  gap: 5px;
}

.service-builder-head span,
.color-configurator-head span {
  color: #0f735e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-builder-head p,
.color-configurator-head p {
  margin: 0;
  color: #607069;
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-item {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(7, 134, 111, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.service-row-actions {
  display: flex;
  justify-content: flex-end;
}

.add-service-button,
.remove-service-button {
  width: max-content;
  min-height: 40px;
}

.color-control {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.intake-form input.color-slider {
  height: 44px;
  min-height: 44px;
  padding: 3px;
  cursor: pointer;
}

.color-swatch {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 32, 28, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.72);
}

@media (max-width: 640px) {
  .color-control {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .color-swatch {
    display: none;
  }
}

/* Modern Growth Visual */
.growth-visual-modern {
  position: relative;
  width: 100%;
  max-width: 500px;
  perspective: 1000px;
  margin-top: 24px;
}

.glass-mockup {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 30px 60px -12px rgba(7, 134, 111, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.growth-visual-modern:hover .glass-mockup {
  transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow: 0 40px 80px -12px rgba(7, 134, 111, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.mockup-header {
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-url {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 12px;
  flex-grow: 1;
  text-align: center;
}

.mockup-body {
  padding: 24px;
}

.mockup-hero {
  margin-bottom: 24px;
}

.mockup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.mockup-copy {
  margin: 0;
  color: #4e625c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mockup-skeleton {
  height: 8px;
  background: rgba(7, 134, 111, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}
.mockup-skeleton.short {
  width: 70%;
}

.mockup-btn {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(223, 101, 79, 0.3);
}

.mockup-cards {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.mockup-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 12px;
  min-height: 54px;
  padding: 9px 234px 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.mockup-glass-card > div {
  min-width: 0;
}

.mockup-glass-card.highlight {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--accent);
  box-shadow: 0 8px 24px rgba(7, 134, 111, 0.12);
}

.mockup-glass-card .card-icon {
  display: none;
}

.mockup-glass-card .card-icon::after {
  font-size: 0.95rem;
}

.mockup-glass-card .card-icon::before,
.mockup-glass-card .card-icon::after {
  content: "";
  position: absolute;
}

.mockup-glass-card:nth-child(1) .card-icon::before {
  left: 10px;
  bottom: 10px;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #0f735e;
  box-shadow: 8px -4px 0 #0f7a67, 16px -10px 0 #f3c15f;
}

.mockup-glass-card:nth-child(1) .card-icon::after {
  right: 9px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-top: 2px solid #0f735e;
  border-right: 2px solid #0f735e;
  transform: rotate(12deg);
}

.mockup-glass-card:nth-child(2) .card-icon::before {
  content: "$$";
  position: static;
  color: #0f735e;
  font-size: 0.86rem;
  letter-spacing: -0.04em;
}

.mockup-glass-card:nth-child(3) .card-icon::before {
  width: 24px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, #0f735e, #0f7a67);
  box-shadow: 0 7px 0 -3px rgba(243, 193, 95, 0.9);
}

.mockup-glass-card:nth-child(3) .card-icon::after {
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

.mockup-glass-card:nth-child(4) .card-icon::before {
  width: 23px;
  height: 18px;
  border: 2px solid #0f735e;
  border-radius: 6px;
}

.mockup-glass-card:nth-child(4) .card-icon::after {
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #f3c15f;
  box-shadow: 0 6px 0 #0f735e;
}

.mockup-glass-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.mockup-glass-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.mockup-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  max-width: 190px;
  transform: translateY(-50%);
}

.tiny-trend {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 54px;
  height: 23px;
  padding: 5px 7px;
  border: 1px solid rgba(7, 134, 111, 0.13);
  border-radius: 8px;
  background: rgba(231, 248, 241, 0.68);
}

.tiny-trend i {
  width: 5px;
  border-radius: 999px;
  background: #0f735e;
}

.tiny-trend i:nth-child(1) { height: 7px; opacity: 0.55; }
.tiny-trend i:nth-child(2) { height: 11px; opacity: 0.75; }
.tiny-trend i:nth-child(3) { height: 16px; background: #0f7a67; }

.tiny-trend b {
  position: absolute;
  right: 8px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #f3c15f;
  border-right: 2px solid #f3c15f;
  transform: rotate(12deg);
}

.mini-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.mini-badge {
  padding: 0 8px;
  border: 1px solid rgba(7, 134, 111, 0.16);
  background: rgba(231, 248, 241, 0.86);
  color: #0f735e;
}

.mini-badge.muted {
  display: none;
}

.payment-logo-row {
  flex-wrap: nowrap;
  max-width: none;
  gap: 7px;
}

.brand-logo-badge {
  display: inline-flex;
  width: 34px;
  height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-logo-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.payment-logo-row .visa-badge,
.payment-logo-row .stripe-badge,
.payment-logo-row .applepay-badge,
.payment-logo-row .googlepay-badge {
  width: 42px;
  height: 28px;
  overflow: hidden;
}

.payment-logo-row .visa-badge img,
.payment-logo-row .stripe-badge img,
.payment-logo-row .applepay-badge img,
.payment-logo-row .googlepay-badge img {
  width: 42px;
  height: 42px;
  max-width: none;
}

.payment-logo-row .stripe-badge img,
.payment-logo-row .googlepay-badge img {
  transform: scale(1.06);
}

.payment-logo-row .cashapp-badge {
  width: 32px;
  height: 32px;
}

.payment-logo-row .cashapp-badge img {
  width: 32px;
  height: 32px;
}

.brand-logo-badge.square-logo,
.brand-logo-badge.icon-logo {
  width: 32px;
  height: 32px;
  border-radius: 0;
}

.brand-logo-badge.square-logo img,
.brand-logo-badge.icon-logo img {
  width: 100%;
  height: 100%;
}

.mockup-logo-row .gmail-logo,
.mockup-logo-row .discord-logo {
  width: 38px;
  height: 38px;
}

@media (min-width: 900px) {
  .growth-visual-modern {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .growth-visual-modern {
    max-width: 100%;
    margin-top: 28px;
  }

  .glass-mockup,
  .growth-visual-modern:hover .glass-mockup {
    transform: none;
  }

  .glass-mockup {
    border-radius: 16px;
  }

  .mockup-header {
    padding: 10px 12px;
  }

  .mockup-url {
    min-width: 0;
    margin-left: 6px;
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  .mockup-body {
    padding: 14px;
  }

  .mockup-hero {
    margin-bottom: 14px;
  }

  .mockup-title {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }

  .mockup-copy {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .mockup-cards {
    gap: 10px;
  }

  .mockup-glass-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    align-items: start;
    gap: 8px;
    padding: 12px;
  }

  .mockup-glass-card strong {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .mockup-glass-card p {
    max-width: none;
    margin-top: 2px;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .mockup-glass-card > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    align-items: center;
  }

  .mockup-glass-card strong,
  .mockup-glass-card p {
    grid-column: 1;
  }

  .mockup-logo-row {
    position: static;
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 100%;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 0;
    transform: none;
  }

  .mockup-glass-card:nth-child(4) .mockup-logo-row,
  .payment-logo-row {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }

  .payment-logo-row .visa-badge,
  .payment-logo-row .stripe-badge,
  .payment-logo-row .applepay-badge,
  .payment-logo-row .googlepay-badge {
    width: 38px;
    height: 24px;
  }

  .payment-logo-row .visa-badge img,
  .payment-logo-row .stripe-badge img,
  .payment-logo-row .applepay-badge img,
  .payment-logo-row .googlepay-badge img {
    width: 38px;
    height: 38px;
  }

  .payment-logo-row .cashapp-badge {
    width: 28px;
    height: 28px;
  }

  .payment-logo-row .cashapp-badge img {
    width: 28px;
    height: 28px;
  }

  .brand-logo-badge.square-logo,
  .brand-logo-badge.icon-logo {
    width: 28px;
    height: 28px;
  }

  .mockup-logo-row .gmail-logo,
  .mockup-logo-row .discord-logo {
    width: 32px;
    height: 32px;
  }
}

/* Animated customer path visual */
.conversion-visual {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: min(500px, 100%);
}

.conversion-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(7, 134, 111, 0.045) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.94));
  box-shadow:
    0 24px 58px rgba(17, 58, 50, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.conversion-panel::after {
  content: none;
}

.conversion-topbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(7, 134, 111, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #4e625c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-status {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #20c695;
  box-shadow: 0 0 0 0 rgba(32, 198, 149, 0.38);
  animation: liveStatusPulse 2s ease-out infinite;
}

.conversion-scoreboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 12px 14px 10px;
  background: rgba(255, 255, 255, 0.38);
}

.conversion-scoreboard div {
  position: relative;
  min-height: 50px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 248, 241, 0.82));
  box-shadow: none;
}

.conversion-scoreboard div:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 227, 0.86));
}

.conversion-scoreboard div:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(16, 32, 28, 0.94), rgba(15, 115, 94, 0.9));
}

.conversion-scoreboard span {
  position: relative;
  z-index: 1;
  display: block;
  color: #52636d;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-scoreboard strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: #10201c;
  font-size: 1.05rem;
  line-height: 1;
}

.conversion-scoreboard div:nth-child(3) span {
  color: #bdebdc;
}

.conversion-scoreboard div:nth-child(3) strong {
  color: #fff;
}

.conversion-track {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 0 14px 12px;
}

.conversion-step,
.confirmation-pop {
  border: 1px solid rgba(7, 134, 111, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.conversion-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  align-items: center;
  min-height: 80px;
  padding: 10px 12px;
}

.conversion-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: #0f735e;
}

.booking-step::before {
  background: #f3c15f;
}

.paid-step::before {
  background: #df654f;
}

.step-icon {
  grid-row: 1 / span 4;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e7f8f1;
  box-shadow: 0 0 0 1px rgba(7, 134, 111, 0.12) inset;
}

.step-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.conversion-step > span {
  color: #b84228;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-step strong {
  min-width: 0;
  color: #10201c;
  font-size: 0.98rem;
  line-height: 1.18;
}

.conversion-step p {
  max-width: 34ch;
  margin: 3px 0 0;
  color: #4e625c;
  font-size: 0.76rem;
  line-height: 1.34;
}

.site-build-progress,
.traffic-counter,
.payment-mark-row {
  grid-column: 2;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.site-build-progress {
  width: min(236px, 100%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 115, 94, 0.12);
}

.site-build-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f735e, #20c695);
  box-shadow: 0 0 14px rgba(32, 198, 149, 0.32);
  animation: siteBuildComplete 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.45s 1 forwards;
}

.traffic-counter {
  gap: 7px;
  align-items: baseline;
}

.traffic-counter span {
  display: inline-flex;
  min-width: 72px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f735e;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 950;
  letter-spacing: 0;
}

.traffic-counter span::after {
  content: "0";
  animation: trafficCounterCount 6.8s steps(1, end) 0.35s infinite;
}

.traffic-counter small {
  color: #52636d;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-mark-row {
  gap: 8px;
  flex-wrap: wrap;
}

.payment-mark-row img {
  width: 36px;
  height: 22px;
  object-fit: contain;
}

.payment-mark-row .cashapp-mark {
  width: 24px;
  height: 24px;
}

.confirmation-pop {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 8px 10px;
  background: rgba(231, 248, 241, 0.9);
  color: #10201c;
  border-color: rgba(7, 134, 111, 0.18);
  transform-origin: center;
  animation: bookingNoticePop 4.2s ease-in-out 0.7s infinite;
}

.confirmation-pop > span {
  position: relative;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #20c695;
}

.confirmation-pop > span::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.confirmation-pop strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.2;
}

.confirmation-pop p {
  margin: 2px 0 0;
  color: #4e625c;
  font-size: 0.68rem;
  line-height: 1.35;
}

@keyframes liveStatusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 198, 149, 0.38);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(32, 198, 149, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 198, 149, 0);
  }
}

@keyframes siteBuildComplete {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes trafficCounterCount {
  0% {
    content: "0";
  }
  10% {
    content: "214";
  }
  20% {
    content: "586";
  }
  30% {
    content: "941";
  }
  40% {
    content: "1,382";
  }
  50% {
    content: "1,806";
  }
  60% {
    content: "2,244";
  }
  70% {
    content: "2,719";
  }
  80%,
  90% {
    content: "3,284";
  }
  100% {
    content: "0";
  }
}

@keyframes bookingNoticePop {
  0%,
  100% {
    opacity: 0;
    transform: translateY(5px) scale(0.99);
  }
  8%,
  84% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  14% {
    transform: translateY(-2px) scale(1.01);
  }
}

@media (max-width: 640px) {
  .scale-hero {
    padding: 32px 24px 42px;
  }

  .scale-hero h1 {
    font-size: clamp(2.5rem, 13vw, 2.85rem);
  }

  .scale-hero .hero-message > p:not(.eyebrow) {
    margin-top: 18px;
    line-height: 1.55;
  }

  .scale-hero .hero-actions {
    margin-top: 24px;
  }

  .conversion-visual {
    justify-self: stretch;
    width: 100%;
    margin-top: 10px;
  }

  .conversion-panel {
    border-radius: 14px;
    transform: none;
  }

  .conversion-track {
    padding: 14px;
  }

  .conversion-scoreboard {
    gap: 6px;
    padding: 10px 12px 0;
  }

  .conversion-scoreboard div {
    min-height: 56px;
    padding: 9px 8px;
  }

  .conversion-scoreboard span {
    font-size: 0.58rem;
  }

  .conversion-scoreboard strong {
    font-size: 0.9rem;
  }

  .conversion-step {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 0;
    padding: 12px;
  }

  .step-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .step-icon img {
    width: 21px;
    height: 21px;
  }

  .conversion-step strong {
    font-size: 0.98rem;
  }

  .conversion-step p {
    font-size: 0.78rem;
  }

  .site-build-progress,
  .traffic-counter,
  .payment-mark-row {
    grid-column: 1 / -1;
  }

  .confirmation-pop {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .conversion-panel,
  .live-status,
  .conversion-step,
  .site-build-progress span,
  .traffic-counter span::after,
  .confirmation-pop {
    animation: none;
  }

  .conversion-panel,
  .conversion-step,
  .confirmation-pop {
    transform: none;
  }

  .confirmation-pop {
    opacity: 1;
  }

  .site-build-progress span {
    width: 100%;
  }

  .traffic-counter span::after {
    content: "3,284";
  }
}

/* Glassmorphism Utilities added for UI Polish */
.glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(7, 134, 111, 0.1);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-animated {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 134, 111, 0.28);
  border-radius: 12px;
  padding: 16px;
  box-shadow:
    0 14px 36px rgba(17, 58, 50, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.glass-card-animated:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(7, 134, 111, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(7, 134, 111, 0.3);
}

.glass-icon-wrapper {
  font-size: 1.8rem;
  background: var(--bg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
  color: #0f735e;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-subtext {
  color: #4a5c54;
  font-size: 1.1rem;
  line-height: 1.6;
}

.package-schedule-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 24px auto 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(7, 134, 111, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 252, 250, 0.96), rgba(255, 250, 238, 0.9));
}

.package-schedule-cta h3 {
  margin: 4px 0 0;
  color: #10201c;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.package-schedule-cta p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #607069;
  line-height: 1.52;
}

.scheduling-hero,
.scheduling-system-section,
.scheduling-advantage-section,
.dashboard-preview-section {
  padding: clamp(56px, 8vw, 98px) clamp(20px, 6vw, 74px);
}

.scheduling-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  min-height: 0;
  background: linear-gradient(135deg, #f7fcfa 0%, #fffaf0 100%);
}

.scheduling-hero-copy,
.scheduling-price-panel {
  align-self: start;
}

.scheduling-hero h1,
.dashboard-preview-copy h2 {
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.7rem, 5.8vw, 5.6rem);
  line-height: 0.94;
  max-width: 820px;
}

.scheduling-hero-copy > p:not(.eyebrow),
.dashboard-preview-copy > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #52655e;
  font-size: 1.08rem;
  line-height: 1.62;
}

.scheduling-price-panel,
.dashboard-preview-board {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(17, 58, 50, 0.12);
}

.scheduling-price-panel > span {
  color: #0f735e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scheduling-price-panel > strong {
  color: #10201c;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.scheduling-price-panel > p {
  margin: 0;
  color: #607069;
  line-height: 1.55;
}

.scheduler-preview {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 12%, rgba(230, 169, 63, 0.28), transparent 28%),
    linear-gradient(135deg, #075e52 0%, #0b776f 56%, #112720 100%);
  color: #fff;
  user-select: none;
}

.scheduler-demo-back {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.scheduler-preview-head,
.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.scheduler-preview-head div {
  display: grid;
  gap: 3px;
}

.scheduler-preview-head span,
.scheduler-preview-head em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scheduler-preview-head em {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.scheduler-preview-head b {
  color: #ffffff;
  font-size: 1.1rem;
}

.scheduler-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, 0.72fr);
  gap: 12px;
  align-items: start;
}

.scheduler-booking-card,
.preview-control-card,
.preview-payment-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #10201c;
}

.scheduler-booking-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.scheduler-side-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.preview-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef9f5;
}

.preview-service-row span,
.preview-control-card span,
.preview-payment-card span {
  color: #0f735e;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-service-row strong,
.preview-control-card strong {
  color: #10201c;
  font-size: 0.96rem;
}

.preview-control-card,
.preview-payment-card {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 11px;
}

.scheduling-payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  min-height: 0;
  width: max-content;
  max-width: 100%;
}

.scheduling-payment-logos img {
  display: block;
  max-width: 66px;
  max-height: 28px;
  object-fit: contain;
}

.scheduling-payment-logos img[src*="cashapp"] {
  max-width: 34px;
  max-height: 34px;
  margin-left: auto;
}

.scheduling-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.scheduling-mini-metrics span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.demo-calendar-view,
.demo-time-view {
  display: grid;
  gap: 10px;
}

.demo-weekdays,
.demo-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.demo-weekdays span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.demo-month-grid span,
.demo-month-grid button {
  min-height: 34px;
  border-radius: 8px;
}

.demo-month-grid button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-weight: 950;
}

.scheduler-booking-card .demo-weekdays span {
  color: #70817b;
}

.scheduler-booking-card .demo-month-grid span,
.scheduler-booking-card .demo-month-grid button {
  min-height: 31px;
}

.scheduler-booking-card .demo-month-grid button {
  border-color: rgba(16, 32, 28, 0.08);
  background: #f4f8f6;
  color: #a9b5b0;
}

.demo-month-grid button:not(:disabled) {
  background: #fff;
  color: #0b776f;
  cursor: pointer;
}

.scheduler-booking-card .demo-month-grid button:not(:disabled) {
  border-color: rgba(7, 134, 111, 0.24);
  background: #07866f;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 134, 111, 0.20);
}

.demo-month-grid button:not(:disabled):hover {
  transform: translateY(-1px);
}

.demo-time-view p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
}

.scheduler-booking-card .demo-time-view p {
  color: #52655e;
}

.schedule-days-mini,
.schedule-time-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.schedule-days-mini span,
.schedule-time-mini button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 850;
}

.schedule-days-mini span {
  display: grid;
  place-items: center;
}

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

.scheduler-booking-card .schedule-time-mini button {
  border-color: rgba(7, 134, 111, 0.16);
  background: #eef9f5;
  color: #064c42;
}

.scheduling-system-section {
  background: #ffffff;
}

.scheduling-system-section .section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.scheduling-system-section .section-heading h2 {
  margin: 0;
  color: #10201c;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.scheduling-system-section .section-heading p:not(.eyebrow) {
  margin: 0;
  color: #607069;
  font-weight: 500;
  line-height: 1.55;
}

.scheduling-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.scheduling-step-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
  box-shadow: 0 18px 42px rgba(17, 58, 50, 0.08);
}

.scheduling-step-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.scheduling-step-grid span {
  color: #0f735e;
  font-weight: 950;
}

.scheduling-step-grid h3 {
  margin: 12px 0 0;
  color: #10201c;
  font-size: 1.35rem;
}

.scheduling-step-grid p {
  margin: 10px 0 0;
  color: #607069;
  line-height: 1.55;
}

.scheduling-advantage-section {
  background:
    linear-gradient(180deg, #f7fcfa 0%, #eef8f4 100%);
  border-top: 1px solid rgba(16, 32, 28, 0.06);
  border-bottom: 1px solid rgba(16, 32, 28, 0.06);
}

.scheduling-advantage-section .section-heading {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.scheduling-advantage-section .section-heading h2 {
  margin: 0;
  color: #10201c;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.scheduling-advantage-section .section-heading p:not(.eyebrow) {
  margin: 0;
  color: #607069;
  font-weight: 500;
  line-height: 1.55;
}

.scheduling-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.scheduling-advantage-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 280px;
  padding: 22px;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(17, 58, 50, 0.07);
}

.scheduling-advantage-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.scheduling-advantage-grid h3 {
  margin: 8px 0 0;
  color: #10201c;
  font-size: 1.25rem;
  line-height: 1.08;
}

.scheduling-advantage-grid p {
  margin: 0;
  color: #607069;
  line-height: 1.54;
}

.scheduling-advantage-grid a {
  align-self: end;
  color: #0f735e;
  font-weight: 900;
  text-decoration: none;
}

.scheduling-advantage-grid a:hover {
  text-decoration: underline;
}

.dashboard-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f4faf7);
}

.dashboard-preview-copy .primary-button {
  margin-top: 24px;
}

.scheduling-dashboard-mock,
.dashboard-preview-board {
  user-select: none;
}

.scheduling-dashboard-mock {
  gap: 14px;
  background:
    radial-gradient(circle at 92% 0%, rgba(230, 169, 63, 0.18), transparent 30%),
    #ffffff;
}

.dashboard-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.dashboard-board-head div {
  display: grid;
  gap: 4px;
}

.dashboard-board-head span,
.dashboard-editor-card > span,
.dashboard-booking-list span {
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-board-head strong {
  color: #10201c;
  font-size: 1.25rem;
}

.dashboard-board-head b {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff7e6;
  color: #8a5b08;
  font-size: 0.82rem;
}

.dashboard-board-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
}

.dashboard-calendar-card,
.dashboard-editor-card,
.dashboard-booking-list div {
  border: 1px solid rgba(7, 134, 111, 0.20);
  border-radius: 8px;
  background: #f7fcfa;
}

.dashboard-calendar-card,
.dashboard-editor-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.dashboard-mini-week,
.dashboard-mini-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.dashboard-mini-week span {
  color: #73827d;
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
}

.dashboard-mini-days span,
.dashboard-mini-days strong {
  display: grid;
  min-height: 36px;
  place-items: center;
  border-radius: 8px;
  font-size: 0.88rem;
}

.dashboard-mini-days span {
  background: #ffffff;
  color: #9ca9a4;
}

.dashboard-mini-days strong {
  background: #07866f;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 134, 111, 0.16);
}

.dashboard-editor-card strong {
  color: #10201c;
  font-size: 1.1rem;
}

.dashboard-editor-card p {
  margin: 0;
  color: #607069;
  line-height: 1.4;
}

.dashboard-toggle-row,
.dashboard-booking-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-toggle-row {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: #ffffff;
  color: #607069;
  font-size: 0.88rem;
  font-weight: 850;
}

.dashboard-toggle-row b {
  color: #0f735e;
}

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

.dashboard-booking-list div {
  min-height: 50px;
  padding: 0 14px;
}

.dashboard-booking-list strong {
  color: #10201c;
}

.board-row {
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(16, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  color: #607069;
}

.board-row strong,
.board-row b {
  color: #10201c;
}

.board-top {
  background: #fff7e6;
}

.seo-landing-page .marketing-footer {
  margin-top: 0;
}

.seo-hero-section,
.seo-content-section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 74px);
}

.seo-hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(135deg, #f7fcfa 0%, #fff8ea 100%);
}

.seo-hero-copy h1 {
  max-width: 780px;
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.seo-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #52655e;
  font-size: 1.12rem;
  line-height: 1.62;
}

.seo-hero-copy .hero-actions {
  margin-top: 28px;
}

.seo-hero-visual {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(17, 58, 50, 0.12);
}

.seo-hero-visual > img {
  display: block;
  width: 100%;
  max-height: 310px;
  object-fit: cover;
  border-radius: 8px;
  background: #edf8f4;
}

.seo-icon-visual,
.seo-payment-visual {
  justify-items: center;
  text-align: center;
}

.seo-icon-visual > img,
.seo-payment-visual > img {
  width: min(220px, 62%);
  max-height: 220px;
  object-fit: contain;
  padding: 28px;
  border: 1px solid rgba(16, 32, 28, 0.08);
  border-radius: 8px;
  background: #f7fcfa;
}

.seo-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.seo-payment-logos img {
  width: auto;
  max-width: 86px;
  height: 36px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(16, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
}

.seo-hero-visual ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-hero-visual li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(7, 134, 111, 0.28);
  border-radius: 8px;
  background: #f3fbf7;
  color: #064c42;
  font-size: 0.9rem;
  font-weight: 900;
}

.sitemint-cuts-preview {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background:
    radial-gradient(circle at 16% 10%, rgba(32, 198, 149, 0.22), transparent 28%),
    linear-gradient(145deg, #f7fffb 0%, #edf8f4 100%);
}

.cuts-browser {
  display: grid;
  gap: 16px;
  min-height: 100%;
}

.cuts-browser-top {
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(7, 134, 111, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.cuts-browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f3c15f;
}

.cuts-browser-top span:first-child {
  background: #df654f;
}

.cuts-browser-top span:nth-child(2) {
  background: #ecb84f;
}

.cuts-browser-top span:nth-child(3) {
  background: #0f7a67;
}

.cuts-browser-top strong {
  min-width: 0;
  margin-left: 5px;
  overflow: hidden;
  color: #50615a;
  font-size: 0.8rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cuts-demo-stage {
  position: relative;
  min-height: 338px;
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(145deg, #ffffff 0%, #f1fbf6 100%);
}

.cuts-site-card {
  position: absolute;
  left: 18px;
  top: 18px;
  width: min(52%, 270px);
  padding: 14px;
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(17, 58, 50, 0.10);
}

.cuts-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cuts-logo-row strong {
  color: #10201c;
  font-size: 0.95rem;
  font-weight: 950;
}

.cuts-site-card h2 {
  margin: 14px 0 0;
  color: #10201c;
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  line-height: 0.98;
}

.cuts-site-card p {
  margin: 8px 0 0;
  color: #5d6d66;
  font-size: 0.8rem;
  line-height: 1.36;
}

.cuts-site-card button {
  min-height: 34px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid rgba(7, 134, 111, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, #064c42 0%, #07866f 100%);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(7, 134, 111, 0.20);
  animation: cutsButtonPulse 4.6s ease-in-out infinite;
}

.cuts-booking-card,
.cuts-payment-card,
.cuts-notification-card {
  position: absolute;
  right: 18px;
  width: min(43%, 205px);
  padding: 15px;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 44px rgba(17, 58, 50, 0.12);
}

.cuts-booking-card {
  top: 58px;
  animation: cutsBookingReveal 4.6s ease-in-out infinite;
}

.cuts-payment-card {
  bottom: 26px;
  animation: cutsPaymentReveal 4.6s ease-in-out infinite;
}

.cuts-notification-card {
  left: 18px;
  right: auto;
  bottom: 18px;
  width: min(47%, 210px);
  padding: 12px 14px;
  border-color: rgba(236, 184, 79, 0.46);
  background: #10201c;
  box-shadow: 0 22px 46px rgba(16, 32, 28, 0.22);
  animation: cutsNotificationReveal 4.6s ease-in-out infinite;
}

.cuts-booking-card span,
.cuts-payment-card span,
.cuts-notification-card span {
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cuts-booking-card strong,
.cuts-payment-card strong,
.cuts-notification-card strong {
  display: block;
  margin-top: 8px;
  color: #10201c;
  font-size: 1.05rem;
  line-height: 1.1;
}

.cuts-payment-card strong {
  color: #07866f;
  font-size: 1.6rem;
}

.cuts-notification-card span {
  color: #f3c15f;
}

.cuts-notification-card strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.cuts-booking-card p,
.cuts-payment-card p {
  margin: 7px 0 0;
  color: #607069;
  font-size: 0.88rem;
}

.cuts-cursor {
  position: absolute;
  left: 22%;
  top: 70%;
  z-index: 4;
  width: 22px;
  height: 22px;
  border: 2px solid #10201c;
  border-top: 0;
  border-left: 0;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(17, 58, 50, 0.18);
  transform: rotate(-38deg);
  animation: cutsCursorMove 4.6s ease-in-out infinite;
}

.cuts-demo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cuts-demo-steps li {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #064c42;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.cuts-demo-steps li:nth-child(1) {
  animation: cutsStepOne 4.6s ease-in-out infinite;
}

.cuts-demo-steps li:nth-child(2) {
  animation: cutsStepTwo 4.6s ease-in-out infinite;
}

.cuts-demo-steps li:nth-child(3) {
  animation: cutsStepThree 4.6s ease-in-out infinite;
}

.industry-flow-preview,
.discord-alert-preview,
.asap-priority-preview {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(57, 220, 174, 0.23), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(236, 184, 79, 0.16), transparent 28%),
    linear-gradient(145deg, #f7fffb 0%, #edf8f4 100%);
}

.flow-phone-frame {
  display: grid;
  gap: 16px;
}

.flow-browser-top {
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(7, 134, 111, 0.20);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.flow-browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0f7a67;
}

.flow-browser-top span:first-child {
  background: #df654f;
}

.flow-browser-top span:nth-child(2) {
  background: #ecb84f;
}

.flow-browser-top strong {
  min-width: 0;
  margin-left: 5px;
  overflow: hidden;
  color: #50615a;
  font-size: 0.8rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-demo-surface {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(145deg, #ffffff 0%, #f1fbf6 100%);
}

.flow-brand-card,
.flow-form-card,
.flow-toast-card {
  position: absolute;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 44px rgba(17, 58, 50, 0.12);
}

.flow-brand-card {
  left: 18px;
  top: 18px;
  display: flex;
  width: min(58%, 270px);
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.flow-brand-card strong {
  display: block;
  color: #10201c;
  font-size: 1rem;
  line-height: 1.1;
}

.flow-brand-card p {
  margin: 3px 0 0;
  color: #607069;
  font-size: 0.82rem;
}

.flow-form-card {
  padding: 16px;
}

.flow-card-primary {
  left: 18px;
  top: 108px;
  width: min(60%, 300px);
  animation: flowPrimaryPulse 4.8s ease-in-out infinite;
}

.flow-card-secondary {
  right: 18px;
  top: 86px;
  width: min(42%, 220px);
  animation: flowSecondaryPulse 4.8s ease-in-out infinite;
}

.flow-toast-card {
  right: 18px;
  bottom: 22px;
  width: min(54%, 280px);
  padding: 16px;
  background: #10201c;
  animation: flowToastPulse 4.8s ease-in-out infinite;
}

.flow-form-card span,
.flow-toast-card span {
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-toast-card span {
  color: #f3c15f;
}

.flow-form-card strong,
.flow-toast-card strong {
  display: block;
  margin-top: 8px;
  color: #10201c;
  font-size: 1.1rem;
  line-height: 1.1;
}

.flow-toast-card strong {
  color: #ffffff;
}

.flow-form-card p,
.flow-toast-card p {
  margin: 8px 0 0;
  color: #607069;
  font-size: 0.9rem;
  line-height: 1.38;
}

.flow-toast-card p {
  color: #dceee8;
}

.flow-step-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.flow-step-strip span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #064c42;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.flow-step-strip span:nth-child(1) {
  animation: flowStepOne 4.8s ease-in-out infinite;
}

.flow-step-strip span:nth-child(2) {
  animation: flowStepTwo 4.8s ease-in-out infinite;
}

.flow-step-strip span:nth-child(3) {
  animation: flowStepThree 4.8s ease-in-out infinite;
}

.auto-flow-preview .flow-demo-surface {
  background:
    radial-gradient(circle at 88% 12%, rgba(223, 101, 79, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(145deg, #ffffff 0%, #f7f7f0 100%);
}

.auto-flow-preview .flow-card-secondary {
  border-color: rgba(223, 101, 79, 0.38);
}

.auto-flow-preview .flow-card-secondary span {
  color: #c05140;
}

.discord-demo-surface {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
}

.mini-booking-card,
.discord-window-card,
.desktop-notification-card {
  position: absolute;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(17, 58, 50, 0.12);
}

.mini-booking-card {
  left: 18px;
  top: 22px;
  width: min(50%, 250px);
  padding: 16px;
}

.mini-booking-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-booking-head strong {
  color: #10201c;
  font-size: 0.96rem;
}

.mini-booking-card p {
  margin: 14px 0 0;
  color: #607069;
  font-size: 0.92rem;
  line-height: 1.4;
}

.mini-booking-card button {
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(7, 134, 111, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, #064c42 0%, #07866f 100%);
  color: #ffffff;
  font-weight: 900;
  animation: discordButtonPulse 4.6s ease-in-out infinite;
}

.discord-window-card {
  right: 18px;
  top: 34px;
  width: min(56%, 300px);
  padding: 14px;
  background: #313442;
  border-color: rgba(88, 101, 242, 0.54);
  color: #ffffff;
}

.discord-window-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.discord-window-head img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.discord-window-head strong {
  font-size: 0.95rem;
}

.discord-message-card {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(88, 101, 242, 0.36);
  border-radius: 8px;
  background: rgba(88, 101, 242, 0.14);
  animation: discordMessagePop 4.6s ease-in-out infinite;
}

.discord-message-card.muted {
  opacity: 0.82;
  animation: discordAssignPop 4.6s ease-in-out infinite;
}

.discord-message-card span {
  color: #9ee6cf;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discord-message-card strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
}

.discord-message-card p {
  margin: 6px 0 0;
  color: #e6e9ff;
  font-size: 0.84rem;
  line-height: 1.35;
}

.desktop-notification-card {
  left: 34px;
  bottom: 24px;
  width: min(62%, 330px);
  padding: 16px 18px;
  border-color: rgba(88, 101, 242, 0.48);
  background: #ffffff;
  animation: desktopNotificationSlide 4.6s ease-in-out infinite;
}

.desktop-notification-card span {
  color: #5865f2;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-notification-card strong {
  display: block;
  margin-top: 6px;
  color: #10201c;
  font-size: 1.15rem;
}

.desktop-notification-card p {
  margin: 6px 0 0;
  color: #607069;
  font-size: 0.88rem;
}

.asap-demo-surface {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 16%, rgba(223, 101, 79, 0.17), transparent 28%),
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(145deg, #ffffff 0%, #fff8ea 100%);
}

.asap-request-card,
.asap-fee-card,
.asap-route-card,
.asap-meter {
  position: absolute;
  border: 1px solid rgba(7, 134, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(17, 58, 50, 0.12);
}

.asap-request-card {
  left: 18px;
  top: 26px;
  width: min(52%, 270px);
  padding: 18px;
}

.asap-request-card span,
.asap-fee-card span,
.asap-route-card span {
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asap-request-card strong,
.asap-fee-card strong,
.asap-route-card strong {
  display: block;
  margin-top: 8px;
  color: #10201c;
  font-size: 1.2rem;
  line-height: 1.08;
}

.asap-request-card p,
.asap-fee-card p,
.asap-route-card p {
  margin: 8px 0 0;
  color: #607069;
  font-size: 0.9rem;
  line-height: 1.38;
}

.asap-request-card button {
  min-height: 38px;
  margin-top: 15px;
  padding: 0 15px;
  border: 1px solid rgba(223, 101, 79, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, #df654f 0%, #ecb84f 100%);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(223, 101, 79, 0.18);
  animation: asapButtonPulse 4.6s ease-in-out infinite;
}

.asap-fee-card {
  right: 18px;
  top: 72px;
  width: min(42%, 220px);
  padding: 18px;
  border-color: rgba(223, 101, 79, 0.42);
  animation: asapFeePop 4.6s ease-in-out infinite;
}

.asap-fee-card span {
  color: #c05140;
}

.asap-fee-card strong {
  color: #df654f;
  font-size: 2rem;
}

.asap-route-card {
  right: 30px;
  bottom: 26px;
  width: min(58%, 300px);
  padding: 18px;
  background: #10201c;
  border-color: rgba(236, 184, 79, 0.48);
  animation: asapRoutePop 4.6s ease-in-out infinite;
}

.asap-route-card span {
  color: #f3c15f;
}

.asap-route-card strong {
  color: #ffffff;
}

.asap-route-card p {
  color: #dceee8;
}

.asap-meter {
  left: 24px;
  bottom: 34px;
  display: flex;
  width: min(32%, 160px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 247, 230, 0.94);
  border-color: rgba(236, 184, 79, 0.46);
  color: #8a5b08;
  font-weight: 950;
}

.asap-meter span {
  width: 13px;
  height: 34px;
  border-radius: 999px;
  background: #df654f;
  box-shadow: 18px -8px 0 #ecb84f, 36px -18px 0 #0f7a67;
  animation: asapMeterBars 4.6s ease-in-out infinite;
}

.industry-revenue-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 74px);
  border-top: 1px solid rgba(57, 220, 174, 0.16);
  border-bottom: 1px solid rgba(57, 220, 174, 0.16);
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 220, 174, 0.18), transparent 28%),
    linear-gradient(135deg, #10201c 0%, #0f3e37 64%, #173843 100%);
  color: #ffffff;
}

.industry-revenue-copy h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2.05rem, 4.1vw, 4.05rem);
  line-height: 0.98;
}

.industry-revenue-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #dceee8;
  font-size: 1.05rem;
  line-height: 1.62;
}

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

.revenue-leak-grid article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(57, 220, 174, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.revenue-leak-grid span {
  color: #f3c15f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.revenue-leak-grid strong {
  display: block;
  margin-top: 46px;
  font-size: clamp(1.12rem, 1.9vw, 1.42rem);
  line-height: 1.08;
}

@keyframes cutsCursorMove {
  0%, 12% {
    left: 22%;
    top: 70%;
  }
  24%, 40% {
    left: 31%;
    top: 70%;
  }
  54%, 70% {
    left: 75%;
    top: 52%;
  }
  82%, 92% {
    left: 30%;
    top: 83%;
  }
  100% {
    left: 22%;
    top: 70%;
  }
}

@keyframes cutsButtonPulse {
  0%, 18%, 48%, 100% {
    transform: translateY(0);
    box-shadow: 0 12px 26px rgba(7, 134, 111, 0.20);
  }
  24%, 36% {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 20px 38px rgba(7, 134, 111, 0.36);
  }
}

@keyframes cutsBookingReveal {
  0%, 20%, 100% {
    opacity: 0.76;
    transform: translateY(4px) scale(0.99);
  }
  30%, 62% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(7, 134, 111, 0.48);
    box-shadow: 0 24px 52px rgba(17, 58, 50, 0.16);
  }
}

@keyframes cutsPaymentReveal {
  0%, 46%, 100% {
    opacity: 0.72;
    transform: translateY(6px) scale(0.98);
  }
  58%, 84% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(7, 134, 111, 0.52);
    box-shadow: 0 24px 52px rgba(17, 58, 50, 0.16);
  }
}

@keyframes cutsNotificationReveal {
  0%, 62%, 100% {
    opacity: 0.58;
    transform: translateX(-8px) translateY(8px) scale(0.97);
  }
  74%, 92% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes cutsStepOne {
  0%, 22%, 100% {
    border-color: rgba(7, 134, 111, 0.42);
    background: rgba(219, 245, 237, 0.92);
  }
  28%, 94% {
    border-color: rgba(7, 134, 111, 0.22);
    background: rgba(255, 255, 255, 0.84);
  }
}

@keyframes cutsStepTwo {
  0%, 24%, 54%, 100% {
    border-color: rgba(7, 134, 111, 0.22);
    background: rgba(255, 255, 255, 0.84);
  }
  30%, 50% {
    border-color: rgba(7, 134, 111, 0.42);
    background: rgba(219, 245, 237, 0.92);
  }
}

@keyframes cutsStepThree {
  0%, 56%, 100% {
    border-color: rgba(7, 134, 111, 0.22);
    background: rgba(255, 255, 255, 0.84);
  }
  62%, 90% {
    border-color: rgba(7, 134, 111, 0.42);
    background: rgba(219, 245, 237, 0.92);
  }
}

@keyframes flowPrimaryPulse {
  0%, 18%, 100% {
    transform: translateY(0) scale(1);
  }
  24%, 44% {
    transform: translateY(-4px) scale(1.025);
    border-color: rgba(7, 134, 111, 0.48);
    box-shadow: 0 26px 54px rgba(17, 58, 50, 0.16);
  }
}

@keyframes flowSecondaryPulse {
  0%, 34%, 100% {
    transform: translateY(0) scale(1);
  }
  42%, 62% {
    transform: translateY(-4px) scale(1.035);
    border-color: rgba(7, 134, 111, 0.50);
    box-shadow: 0 26px 54px rgba(17, 58, 50, 0.16);
  }
}

@keyframes flowToastPulse {
  0%, 56%, 100% {
    opacity: 0.76;
    transform: translateY(8px) scale(0.98);
  }
  66%, 90% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flowStepOne {
  0%, 28%, 100% {
    border-color: rgba(7, 134, 111, 0.42);
    background: rgba(219, 245, 237, 0.92);
  }
  36%, 92% {
    border-color: rgba(7, 134, 111, 0.22);
    background: rgba(255, 255, 255, 0.86);
  }
}

@keyframes flowStepTwo {
  0%, 34%, 66%, 100% {
    border-color: rgba(7, 134, 111, 0.22);
    background: rgba(255, 255, 255, 0.86);
  }
  42%, 62% {
    border-color: rgba(7, 134, 111, 0.42);
    background: rgba(219, 245, 237, 0.92);
  }
}

@keyframes flowStepThree {
  0%, 58%, 100% {
    border-color: rgba(7, 134, 111, 0.22);
    background: rgba(255, 255, 255, 0.86);
  }
  68%, 92% {
    border-color: rgba(7, 134, 111, 0.42);
    background: rgba(219, 245, 237, 0.92);
  }
}

@keyframes discordButtonPulse {
  0%, 22%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
  30%, 42% {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 34px rgba(7, 134, 111, 0.28);
  }
}

@keyframes discordMessagePop {
  0%, 34%, 100% {
    transform: translateY(8px) scale(0.98);
    opacity: 0.68;
  }
  44%, 88% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes discordAssignPop {
  0%, 58%, 100% {
    transform: translateY(8px) scale(0.98);
    opacity: 0.52;
  }
  68%, 90% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
}

@keyframes desktopNotificationSlide {
  0%, 48%, 100% {
    transform: translateX(-14px) translateY(12px) scale(0.96);
    opacity: 0.42;
  }
  58%, 86% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes asapButtonPulse {
  0%, 18%, 100% {
    transform: translateY(0) scale(1);
  }
  26%, 42% {
    transform: translateY(-3px) scale(1.045);
    box-shadow: 0 20px 38px rgba(223, 101, 79, 0.30);
  }
}

@keyframes asapFeePop {
  0%, 36%, 100% {
    opacity: 0.72;
    transform: translateY(8px) scale(0.98);
  }
  46%, 68% {
    opacity: 1;
    transform: translateY(-4px) scale(1.045);
    box-shadow: 0 26px 54px rgba(223, 101, 79, 0.18);
  }
}

@keyframes asapRoutePop {
  0%, 58%, 100% {
    opacity: 0.74;
    transform: translateY(10px) scale(0.98);
  }
  68%, 92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes asapMeterBars {
  0%, 100% {
    height: 20px;
    box-shadow: 18px -4px 0 #ecb84f, 36px -9px 0 #0f7a67;
  }
  50% {
    height: 34px;
    box-shadow: 18px -8px 0 #ecb84f, 36px -18px 0 #0f7a67;
  }
}

@keyframes servicePathPop {
  0%, 18%, 100% {
    transform: translateY(0) scale(1);
    border-color: rgba(7, 134, 111, 0.16);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
  }
  7%, 13% {
    transform: translateY(-3px) scale(1.035);
    border-color: rgba(7, 134, 111, 0.34);
    background: rgba(234, 249, 243, 0.94);
    box-shadow: 0 16px 28px rgba(17, 58, 50, 0.10);
  }
}

@keyframes trafficBarRise {
  0%, 18%, 100% {
    transform: scaleY(0.62);
    opacity: 0.72;
  }
  48%, 72% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes salesLineDraw {
  0%, 12% {
    stroke-dashoffset: 130;
    opacity: 0.72;
  }
  58%, 82% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes salesPointPop {
  0%, 18%, 100% {
    opacity: 0;
    transform: scale(0.6);
  }
  28%, 82% {
    opacity: 1;
    transform: scale(1);
  }
}

.seo-content-section {
  background: #ffffff;
}

.seo-content-section .section-heading {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.seo-content-section .section-heading h2 {
  margin: 0;
  color: #10201c;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  line-height: 0.98;
}

.seo-content-section .section-heading p:not(.eyebrow) {
  margin: 0;
  color: #607069;
  line-height: 1.55;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.seo-card-grid article {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(7, 134, 111, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
  box-shadow: 0 18px 42px rgba(17, 58, 50, 0.08);
}

.seo-card-grid h3 {
  margin: 0;
  color: #10201c;
  font-size: 1.32rem;
  line-height: 1.1;
}

.seo-card-grid p {
  margin: 12px 0 0;
  color: #607069;
  line-height: 1.55;
}

.industry-link-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 74px);
  background:
    linear-gradient(180deg, #f8fcfa 0%, #eef8f4 100%);
  border-top: 1px solid rgba(16, 32, 28, 0.06);
  border-bottom: 1px solid rgba(16, 32, 28, 0.06);
}

.industry-search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.industry-search-copy h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: #10201c;
  font-size: clamp(2.25rem, 4.8vw, 4.45rem);
  line-height: 0.98;
}

.industry-search-copy > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #52636d;
  font-size: clamp(1.06rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.industry-search-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.industry-search-points span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(7, 134, 111, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #064c42;
  font-size: 0.9rem;
  font-weight: 900;
}

.industry-search-panel {
  display: grid;
  align-content: start;
  align-self: center;
  min-height: 0;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 248, 0.94));
  box-shadow:
    0 22px 58px rgba(17, 58, 50, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.industry-search-panel > span {
  color: #0f735e;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.industry-search-panel ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.industry-search-panel li {
  display: grid;
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(7, 134, 111, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: center;
  animation: servicePathPop 5.4s ease-in-out infinite;
  will-change: transform;
}

.industry-search-panel li:nth-child(2) {
  animation-delay: 1.8s;
}

.industry-search-panel li:nth-child(3) {
  animation-delay: 3.6s;
}

.industry-search-panel strong {
  color: #10201c;
  font-size: 0.95rem;
  font-weight: 950;
}

.industry-search-panel small {
  color: #5d6c66;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.industry-metrics-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: clamp(22px, 3vw, 34px) auto 0;
}

.industry-metric-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 8px 18px;
  align-items: center;
  min-height: 128px;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(7, 134, 111, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.industry-metric-card > span {
  grid-column: 1;
  color: #0f735e;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.industry-metric-card strong {
  grid-column: 1;
  color: #10201c;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.06;
}

.industry-bar-chart {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: end;
  justify-self: end;
  gap: 6px;
  width: min(100%, 170px);
  height: 64px;
}

.industry-bar-chart i {
  display: block;
  width: 16px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #0f735e 0%, #0b5f52 100%);
  transform-origin: bottom;
  animation: trafficBarRise 4.2s ease-in-out infinite;
}

.industry-bar-chart i:nth-child(1) {
  height: 18px;
}

.industry-bar-chart i:nth-child(2) {
  height: 29px;
  animation-delay: 0.18s;
}

.industry-bar-chart i:nth-child(3) {
  height: 39px;
  animation-delay: 0.36s;
}

.industry-bar-chart i:nth-child(4) {
  height: 50px;
  background: linear-gradient(180deg, #f3c15f 0%, #d99b34 100%);
  animation-delay: 0.54s;
}

.industry-line-chart {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  width: 100%;
  max-width: 210px;
  height: 64px;
  overflow: visible;
}

.industry-chart-grid {
  fill: none;
  stroke: rgba(7, 134, 111, 0.12);
  stroke-width: 1;
}

.industry-chart-line {
  fill: none;
  stroke: #0f735e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: salesLineDraw 4.2s ease-in-out infinite;
}

.industry-line-chart circle {
  fill: #f3c15f;
  stroke: #ffffff;
  stroke-width: 2;
  opacity: 0;
  transform-origin: center;
  animation: salesPointPop 4.2s ease-in-out infinite;
}

.industry-line-chart circle:nth-of-type(1) {
  animation-delay: 0.7s;
}

.industry-line-chart circle:nth-of-type(2) {
  animation-delay: 1s;
}

.industry-line-chart circle:nth-of-type(3) {
  animation-delay: 1.3s;
}

.industry-line-chart circle:nth-of-type(4) {
  animation-delay: 1.6s;
}

.industry-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: clamp(26px, 4vw, 42px) auto 0;
}

.industry-link-grid a {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 290px;
  align-content: start;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 250, 0.96));
  color: #10201c;
  text-decoration: none;
  box-shadow:
    0 18px 42px rgba(17, 58, 50, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.industry-link-grid a:hover {
  border-color: rgba(7, 134, 111, 0.42);
  box-shadow: 0 24px 58px rgba(17, 58, 50, 0.12);
  transform: translateY(-2px);
}

.industry-link-grid span {
  color: #0f735e;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industry-link-grid strong {
  max-width: 10ch;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.02;
}

.industry-link-grid p {
  margin: 0;
  color: #5b6c65;
  font-size: 1rem;
  line-height: 1.55;
}

.industry-link-grid em {
  align-self: end;
  justify-self: start;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(7, 134, 111, 0.35);
  color: #064c42;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-list article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(7, 134, 111, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
  box-shadow: 0 16px 38px rgba(17, 58, 50, 0.07);
}

.faq-list h2 {
  margin: 0;
  color: #10201c;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.faq-list p {
  margin: 10px 0 0;
  color: #607069;
  line-height: 1.58;
}

.seo-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 74px) clamp(20px, 6vw, 74px);
  background: linear-gradient(135deg, #10201c 0%, #0f3e37 62%, #173843 100%);
  color: #ffffff;
}

.seo-cta-band .eyebrow {
  color: #f3c15f;
}

.seo-cta-band h2 {
  max-width: 860px;
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  line-height: 0.98;
}

@media (max-width: 900px) {
  .package-schedule-cta,
  .scheduling-hero,
  .dashboard-preview-section,
  .scheduling-step-grid,
  .scheduling-advantage-grid,
  .seo-hero-section,
  .industry-revenue-section,
  .industry-search-layout,
  .seo-card-grid,
  .industry-metrics-strip,
  .industry-link-grid,
  .seo-cta-band {
    grid-template-columns: 1fr;
  }

  .scheduler-preview-grid,
  .dashboard-board-grid {
    grid-template-columns: 1fr;
  }

  .scheduling-mini-metrics {
    grid-template-columns: 1fr;
  }

  .package-schedule-cta .primary-button,
  .scheduling-page .hero-actions .primary-button,
  .scheduling-page .hero-actions .ghost-button,
  .seo-landing-page .hero-actions .primary-button,
  .seo-landing-page .hero-actions .ghost-button,
  .seo-cta-band .primary-button {
    width: 100%;
  }

  .seo-hero-visual ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .industry-metric-card {
    grid-template-columns: minmax(108px, 0.42fr) minmax(0, 1fr);
    min-height: 110px;
  }

  .industry-bar-chart,
  .industry-line-chart {
    height: 52px;
  }

  .industry-search-panel li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .industry-link-grid a {
    min-height: 250px;
  }

  .sitemint-cuts-preview {
    min-height: auto;
  }

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

  .cuts-site-card,
  .cuts-booking-card,
  .cuts-payment-card,
  .cuts-notification-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .cuts-cursor {
    display: none;
  }

  .cuts-demo-steps,
  .flow-step-strip,
  .revenue-leak-grid {
    grid-template-columns: 1fr;
  }

  .industry-flow-preview,
  .discord-alert-preview,
  .asap-priority-preview {
    min-height: auto;
  }

  .flow-demo-surface,
  .discord-demo-surface,
  .asap-demo-surface {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .flow-brand-card,
  .flow-form-card,
  .flow-toast-card,
  .mini-booking-card,
  .discord-window-card,
  .desktop-notification-card,
  .asap-request-card,
  .asap-fee-card,
  .asap-route-card,
  .asap-meter {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .flow-brand-card,
  .mini-booking-card,
  .discord-window-card,
  .desktop-notification-card,
  .asap-request-card,
  .asap-fee-card,
  .asap-route-card,
  .asap-meter {
    animation: none;
  }

  .revenue-leak-grid article {
    min-height: 118px;
  }

  .revenue-leak-grid strong {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cuts-site-card button,
  .cuts-booking-card,
  .cuts-payment-card,
  .cuts-notification-card,
  .cuts-cursor,
  .cuts-demo-steps li,
  .flow-card-primary,
  .flow-card-secondary,
  .flow-toast-card,
  .flow-step-strip span,
  .mini-booking-card button,
  .discord-message-card,
  .desktop-notification-card,
  .asap-request-card button,
  .asap-fee-card,
  .asap-route-card,
  .asap-meter span,
  .industry-search-panel li,
  .industry-bar-chart i,
  .industry-chart-line,
  .industry-line-chart circle {
    animation: none;
  }

  .cuts-booking-card,
  .cuts-payment-card,
  .cuts-notification-card,
  .flow-card-primary,
  .flow-card-secondary,
  .flow-toast-card,
  .discord-message-card,
  .desktop-notification-card,
  .asap-fee-card,
  .asap-route-card,
  .industry-search-panel li,
  .industry-bar-chart i,
  .industry-line-chart circle {
    opacity: 1;
    transform: none;
  }

  .industry-chart-line {
    stroke-dashoffset: 0;
  }
}
