@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6f7f;
  --line: #dfe6ec;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --mint: #10a981;
  --mint-dark: #08735a;
  --blue: #2563eb;
  --yellow: #ffd166;
  --rose: #e05666;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  font-size: 16px;
  letter-spacing: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 230, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(36px, 7vw, 96px) clamp(20px, 5vw, 72px) 42px;
  background:
    linear-gradient(135deg, rgba(16, 169, 129, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(255, 209, 102, 0.26), transparent 34%),
    #ffffff;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(16, 169, 129, 0.25);
  border-radius: 8px;
  color: var(--mint-dark);
  background: rgba(16, 169, 129, 0.08);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.button.primary {
  border-color: var(--mint);
  color: #fff;
  background: var(--mint);
}

.button.ghost {
  background: #fff;
}

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

.proof span,
.niche-grid span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.phone {
  width: min(100%, 360px);
  min-height: 560px;
  padding: 22px;
  border: 10px solid #202a35;
  border-radius: 34px;
  background: #edf7f4;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 96px;
  height: 8px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #202a35;
}

.chat {
  max-width: 86%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.45;
}

.chat.bot {
  background: #fff;
}

.chat.user {
  margin-left: auto;
  color: #fff;
  background: var(--blue);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.quick-grid span {
  padding: 11px 8px;
  border-radius: 8px;
  text-align: center;
  color: var(--mint-dark);
  background: #dff7ee;
  font-weight: 800;
}

.booking-card,
.dashboard,
.addon-box,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.booking-card {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
}

.booking-card span {
  color: var(--muted);
}

.dashboard {
  position: absolute;
  right: 0;
  bottom: 46px;
  display: grid;
  gap: 10px;
  width: 190px;
  padding: 18px;
}

.dashboard strong {
  font-size: 42px;
}

.dash-title {
  color: var(--muted);
  font-weight: 750;
}

.dash-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
}

.dash-line.short {
  width: 70%;
  background: var(--mint);
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #202a35;
  text-align: center;
}

.section {
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan.featured {
  border-color: var(--mint);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #795600;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 850;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 6px;
}

.price strong {
  font-size: 38px;
  letter-spacing: 0;
}

.monthly {
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-weight: 850;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.plan .button {
  margin-top: auto;
}

.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: #fff;
}

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

.check-list li {
  margin: 0;
  padding: 13px 14px;
  border-left: 4px solid var(--mint);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 750;
}

.addon-box {
  padding: 22px;
}

.addon {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.addon:last-child {
  border-bottom: 0;
}

.addon span {
  color: var(--muted);
}

.niches {
  background: #f9fbfc;
}

.niche-grid,
.demo-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.demo-showcase {
  background: #f9fbfc;
}

.website-section {
  background: #fff;
}

.demo-card,
.payment-card,
.demo-summary,
.scenario-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.demo-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
}

.demo-card .button {
  margin-top: auto;
}

.demo-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.visual-section {
  background: #fff;
}

.scenario-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #edf7f4;
}

.scenario-panel .chat {
  margin-bottom: 0;
}

.payment-section {
  background: #202a35;
  color: #fff;
}

.payment-section p,
.payment-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.payment-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--ink);
}

.payment-card span {
  color: var(--muted);
  line-height: 1.5;
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(16, 169, 129, 0.18), transparent 36%),
    #fff;
}

.demo-hero h1 {
  margin-bottom: 18px;
}

.demo-summary {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.demo-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.demo-summary strong {
  margin-bottom: 10px;
  line-height: 1.35;
}

.contact-copy {
  max-width: 600px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 600;
}

textarea {
  resize: vertical;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-check a {
  color: var(--blue);
  font-weight: 850;
}

.notice {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 750;
}

.notice.success {
  color: var(--mint-dark);
  background: rgba(16, 169, 129, 0.1);
}

.notice.error {
  color: #9f2330;
  background: rgba(224, 86, 102, 0.12);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #202a35;
}

.support-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: inherit;
}

.support-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #202a35;
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.support-chat-toggle strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #202a35;
  background: var(--yellow);
}

.support-chat-panel {
  display: none;
  width: min(calc(100vw - 32px), 390px);
  max-height: min(680px, calc(100vh - 112px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.support-chat.open .support-chat-panel {
  display: grid;
  grid-template-rows: auto minmax(160px, 1fr) auto auto;
}

.support-chat-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #fff;
  background: #202a35;
}

.support-chat-head div {
  display: grid;
  gap: 4px;
}

.support-chat-head strong {
  font-size: 17px;
}

.support-chat-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.support-chat-head button {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.support-chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  overflow-y: auto;
  background: #f4f7f9;
}

.support-chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.support-chat-message.bot {
  border: 1px solid var(--line);
  background: #fff;
}

.support-chat-message.user {
  justify-self: end;
  color: #fff;
  background: var(--blue);
}

.support-chat-questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 220px;
  padding: 12px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.support-chat-questions button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.support-chat-questions button:hover {
  border-color: rgba(16, 169, 129, 0.42);
  background: rgba(16, 169, 129, 0.08);
}

.support-chat-cta {
  display: grid;
  min-height: 46px;
  place-items: center;
  margin: 0 12px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--mint);
  font-weight: 900;
}

.admin-page {
  min-height: calc(100vh - 70px);
  padding: clamp(32px, 5vw, 72px);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 84px) clamp(20px, 5vw, 48px);
  background: #fff;
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 850;
}

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

.admin-heading h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 6vw, 64px);
}

.admin-counter {
  display: grid;
  gap: 6px;
  min-width: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.admin-counter span {
  color: var(--muted);
  font-weight: 800;
}

.admin-counter strong {
  font-size: 42px;
}

.leads-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.leads-row {
  display: grid;
  grid-template-columns: 150px 140px 150px 160px 140px 110px 150px 110px;
  gap: 14px;
  min-width: 1160px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.leads-row:last-child {
  border-bottom: 0;
}

.leads-row span,
.leads-row time,
.leads-row a {
  color: var(--muted);
  line-height: 1.45;
}

.leads-row a {
  color: var(--blue);
  font-weight: 800;
}

.table-action {
  width: fit-content;
}

.leads-head {
  background: #f9fbfc;
  font-weight: 900;
}

.status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.status-tabs a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 850;
}

.status-tabs a.active {
  border-color: var(--mint);
  color: var(--mint-dark);
  background: rgba(16, 169, 129, 0.1);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.status-new {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
}

.status-contacted {
  color: var(--mint-dark);
  background: rgba(16, 169, 129, 0.1);
}

.status-demo_scheduled {
  color: #795600;
  background: rgba(255, 209, 102, 0.28);
}

.status-won {
  color: #08735a;
  background: rgba(16, 169, 129, 0.18);
}

.status-lost {
  color: #9f2330;
  background: rgba(224, 86, 102, 0.12);
}

.empty-state {
  max-width: 620px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lead-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.lead-card,
.lead-actions-panel,
.admin-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.lead-card {
  padding: 28px;
}

.lead-card h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 56px);
}

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

.lead-fields div,
.message-box {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.lead-fields span,
.message-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.lead-fields a {
  color: var(--blue);
  font-weight: 900;
}

.message-box p {
  margin: 0;
}

.lead-actions-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.admin-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  box-shadow: none;
}

.premium-topbar {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 40px rgba(23, 32, 42, 0.08);
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 44%, rgba(32, 42, 53, 0.02) 100%),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.studio-hero-copy {
  max-width: 780px;
}

.studio-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
}

.studio-hero p {
  max-width: 710px;
  color: #354250;
  font-size: 18px;
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-metrics div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(223, 230, 236, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.09);
}

.hero-metrics strong {
  font-size: 22px;
  font-weight: 900;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero-showcase {
  position: relative;
  min-height: 620px;
}

.showcase-photo {
  position: absolute;
  inset: 0 34px 92px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-photo img,
.tab-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-window {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(82%, 520px);
  overflow: hidden;
  border: 1px solid rgba(223, 230, 236, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 13px;
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--rose);
}

.window-bar span:nth-child(2) {
  background: var(--yellow);
}

.window-bar span:nth-child(3) {
  background: var(--mint);
}

.window-content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.mini-site {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(32, 42, 53, 0.18), rgba(32, 42, 53, 0.82)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=700&q=80") center/cover;
}

.mini-site strong {
  font-size: 22px;
}

.mini-site span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.mini-site a {
  width: fit-content;
  margin-top: auto;
  padding: 9px 11px;
  border-radius: 8px;
  color: #202a35;
  background: #fff;
  font-weight: 900;
}

.mini-chat {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: #edf7f4;
}

.mini-chat .chat {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 14px;
}

.floating-lead {
  position: absolute;
  left: 18px;
  bottom: 0;
  display: grid;
  gap: 6px;
  width: min(78%, 330px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-lead span {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #202a35;
}

.logo-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.premium-section {
  background: #fff;
}

.wide-heading {
  max-width: 940px;
}

.solution-tabs {
  display: grid;
  gap: 18px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-buttons button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-buttons button.active {
  border-color: #202a35;
  color: #fff;
  background: #202a35;
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
  box-shadow: 0 18px 50px rgba(23, 32, 42, 0.1);
}

.tab-panel.active {
  display: grid;
}

.tab-panel > div {
  padding: clamp(24px, 4vw, 44px);
}

.tab-panel h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.tab-panel img {
  min-height: 420px;
}

.premium-demos {
  background: #f4f7f9;
}

.niche-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.photo-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 270px;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: #202a35;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.12);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 32, 42, 0.04), rgba(23, 32, 42, 0.86)),
    var(--photo) center/cover;
  transition: transform 220ms ease;
}

.photo-card:hover::before {
  transform: scale(1.04);
}

.photo-card span,
.photo-card strong {
  position: relative;
}

.photo-card span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.photo-card strong {
  line-height: 1.2;
}

.photo-card.manicure {
  --photo: url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=700&q=80");
}

.photo-card.barber {
  --photo: url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=700&q=80");
}

.photo-card.auto {
  --photo: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=700&q=80");
}

.photo-card.education {
  --photo: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=700&q=80");
}

.photo-card.club {
  --photo: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=700&q=80");
}

.compact-demo-grid .demo-card ul {
  display: none;
}

.premium-flow {
  background: #fff;
}

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

.flow-step {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.flow-step.active {
  color: #fff;
  background: #202a35;
}

.flow-step.active p {
  color: rgba(255, 255, 255, 0.72);
}

.flow-step span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.flow-step p {
  margin: 0;
  font-size: 15px;
}

.plans-section {
  background: #f9fbfc;
}

.premium-payment {
  background:
    linear-gradient(120deg, rgba(32, 42, 53, 0.95), rgba(32, 42, 53, 0.82)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.premium-contact {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.82) 100%),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact-aside {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--mint);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.1);
}

.contact-aside span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .hero,
  .studio-hero,
  .split,
  .contact,
  .lead-detail,
  .demo-hero,
  .demo-grid,
  .payment-grid,
  .plans,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 560px;
  }

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

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

  .dashboard {
    right: 8px;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .studio-hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 40px;
  }

  .studio-hero h1 {
    font-size: 38px;
  }

  .hero-metrics,
  .window-content,
  .niche-photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

  .showcase-photo,
  .showcase-window,
  .floating-lead {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .showcase-photo {
    height: 280px;
    margin-bottom: 12px;
  }

  .showcase-window {
    bottom: auto;
  }

  .floating-lead {
    left: auto;
    margin-top: 12px;
  }

  .tab-panel img {
    min-height: 260px;
  }

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

  .niche-grid,
  .demo-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: auto;
  }

  .dashboard {
    position: static;
    width: min(100%, 360px);
    margin-top: -42px;
  }

  .phone {
    min-height: 520px;
  }

  .price strong {
    font-size: 32px;
  }

  .admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .support-chat {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .support-chat-toggle {
    justify-self: end;
  }

  .support-chat-panel {
    width: 100%;
    max-height: calc(100vh - 96px);
  }
}
