:root {
  --ink: #111827;
  --muted: #5b6576;
  --paper: #f7f8fa;
  --white: #ffffff;
  --line: #dfe5eb;
  --teal: #11b4c8;
  --coral: #ff6b57;
  --lime: #8bd450;
  --amber: #f5b84b;
  --navy: #172033;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

.panel-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(20, 230, 210, 0.12), transparent 24%),
    linear-gradient(180deg, #0b1020 0%, #101827 260px, #eef3f8 260px, #eef3f8 100%);
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.panel-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 24, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.panel-brand-logo {
  width: clamp(170px, 18vw, 248px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(37, 99, 255, 0.28));
}

.panel-header .brand {
  gap: 14px;
}

.panel-header .brand > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-secure-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(20, 230, 210, 0.28);
  background: rgba(20, 230, 210, 0.09);
  color: #bffef7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.panel-header .button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(168px, 16vw, 246px);
  height: auto;
}

.brand-logo.metal-logo {
  width: clamp(198px, 22vw, 300px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 116px clamp(18px, 5vw, 72px) 70px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 15, 28, 0.92) 0%, rgba(9, 15, 28, 0.74) 43%, rgba(9, 15, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 15, 28, 0.42), rgba(9, 15, 28, 0.1));
}

.hero-content {
  width: min(740px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions,
.billing-control {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.billing:hover,
.status:hover,
.action-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--teal);
  color: #041318;
}

.button.secondary {
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

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

.trust-strip strong {
  display: block;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.panel-page .section {
  padding-right: clamp(16px, 3vw, 42px);
  padding-left: clamp(16px, 3vw, 42px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.service-grid,
.plan-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.service-card,
.plan-card,
.steps article {
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
}

.service-card {
  display: grid;
  gap: 18px;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
}

.service-card p,
.plan-card p,
.steps p,
.system-copy p,
.contact-copy p {
  color: var(--muted);
}

.system {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.system .eyebrow {
  color: var(--lime);
}

.system-copy p,
.system-copy li {
  color: rgba(255, 255, 255, 0.76);
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--lime);
}

.dashboard-shell {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.teal {
  background: var(--teal);
}

.dot.coral {
  background: var(--coral);
}

.dot.lime {
  background: var(--lime);
}

.dashboard-topbar strong {
  margin-left: auto;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}

.dashboard-metrics div,
.activation-panel {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.dashboard-metrics span,
.client-row span,
.activation-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.client-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.client-row,
.activation-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-row {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.status,
.billing {
  border: 1px solid transparent;
  padding: 10px 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.status.trial {
  background: rgba(17, 180, 200, 0.18);
  color: #81efff;
}

.status.active {
  background: rgba(139, 212, 80, 0.2);
  color: #c8ff9a;
}

.status.pending {
  background: rgba(245, 184, 75, 0.2);
  color: #ffd98d;
}

.activation-panel {
  margin: 0 18px 18px;
}

.switch {
  position: relative;
  width: 58px;
  height: 32px;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked + span {
  background: var(--lime);
}

.switch input:checked + span::after {
  transform: translateX(26px);
}

.workflow {
  background: var(--white);
}

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

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.pricing {
  background: #eef3f5;
}

.templates-showcase {
  background: var(--white);
}

.billing-control {
  margin: -14px 0 28px;
}

.billing {
  background: var(--white);
  border-color: var(--line);
  color: var(--muted);
}

.billing.active {
  background: var(--ink);
  color: var(--white);
}

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

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

.public-template-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.template-preview {
  display: grid;
  min-height: 180px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--white);
  background: var(--ink);
}

.template-preview span {
  width: 48px;
  height: 6px;
  background: var(--teal);
}

.template-preview strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

.template-preview small {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.services-preview {
  background: linear-gradient(135deg, #172033, #0e6f7f);
}

.store-preview {
  background: linear-gradient(135deg, #111827, #ff6b57);
}

.booking-preview {
  background: linear-gradient(135deg, #111827, #8bd450);
}

.admin-preview {
  background: linear-gradient(135deg, #172033, #5b6576);
}

.public-template-card p {
  margin: 0;
  color: var(--muted);
}

.template-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--lime);
  color: #16210f;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 auto;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan-card li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.demo-lab,
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.demo-lab {
  background: var(--ink);
  color: var(--white);
}

.demo-lab .eyebrow {
  color: var(--amber);
}

.demo-form,
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 6px;
  background: #fbfcfd;
  min-height: 40px;
  padding: 9px 11px;
  color: var(--ink);
  outline: none;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  min-height: 38px;
  padding: 8px 10px;
  background: #ffffff;
  font-size: 0.84rem;
}

.admin-form .button {
  min-height: 44px;
  margin-top: 4px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 0.84rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(17, 180, 200, 0.12);
}

.demo-result {
  grid-column: 2;
  margin-top: -46px;
  padding: 18px;
  background: rgba(139, 212, 80, 0.14);
  border: 1px solid rgba(139, 212, 80, 0.36);
  color: #dfffca;
  font-weight: 800;
}

.contact {
  background: var(--white);
}

.admin {
  background: transparent;
}

.admin-screen {
  padding-top: 30px;
}

.panel-title {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: center;
  min-height: 188px;
  margin-bottom: 28px;
  color: #ffffff;
}

.panel-title h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.25vw, 3.55rem);
  line-height: 1.04;
  margin-bottom: 0;
}

.panel-title p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  align-self: center;
}

.panel-page .eyebrow {
  color: #8aa2ff;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(320px, 1.35fr) minmax(220px, 0.95fr) minmax(240px, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.ops-card {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 16px;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}

.ops-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.ops-card-head strong {
  color: var(--ink);
}

.live-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(20, 230, 210, 0.2), transparent 34%),
    linear-gradient(145deg, #111827, #12172a 58%, #1f1a4a);
  color: var(--white);
}

.live-card .ops-card-head,
.live-card .ops-card-head strong {
  color: rgba(255, 255, 255, 0.82);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(139, 212, 80, 0.16);
}

.live-score {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.live-score strong {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.live-score span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  align-items: end;
  height: 34px;
  margin-top: 18px;
}

.signal-bars span {
  display: block;
  background: rgba(139, 212, 80, 0.8);
}

.signal-bars span:nth-child(1) { height: 35%; }
.signal-bars span:nth-child(2) { height: 56%; }
.signal-bars span:nth-child(3) { height: 44%; }
.signal-bars span:nth-child(4) { height: 78%; }
.signal-bars span:nth-child(5) { height: 64%; }
.signal-bars span:nth-child(6) { height: 92%; }

.chart-card {
  min-width: 0;
}

.chart-card canvas {
  width: 100%;
  height: 112px;
  margin-top: 12px;
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: #f8fbfc;
}

.health-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.health-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.health-list strong {
  color: var(--ink);
}

.health-list div::after,
.health-list i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  content: "";
}

.health-list div::after {
  background: #edf2f4;
}

.health-list i {
  right: auto;
  z-index: 1;
  background: var(--teal);
}

.activity-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.activity-list article {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
}

.activity-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
}

.activity-list span {
  color: var(--muted);
  font-size: 0.74rem;
}

.activity-dot {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--teal);
}

.activity-dot.active {
  background: var(--lime);
}

.activity-dot.pending {
  background: var(--amber);
}

.activity-dot.suspended {
  background: var(--coral);
}

.activity-dot.warn {
  background: var(--amber);
}

.activity-dot.expired {
  background: var(--coral);
}

.ai-builder {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 16px;
}

.ai-builder-copy,
.ai-builder-form,
.ai-output {
  border: 1px solid rgba(223, 229, 235, 0.92);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.09);
}

.ai-builder-copy {
  background:
    linear-gradient(135deg, rgba(37, 99, 255, 0.08), rgba(20, 230, 210, 0.05)),
    #ffffff;
}

.ai-builder-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.ai-builder-copy p:last-child,
.ai-output p {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.ai-output {
  display: grid;
  gap: 10px;
}

.proposal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.proposal-grid span {
  background: #f4f7f8;
  padding: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.module-picker {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid #dbe4ee;
  border-radius: 7px;
  padding: 10px;
  background: #f8fafc;
}

.module-picker legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.module-picker label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.module-picker input {
  width: 16px;
  min-height: 16px;
}

.billing-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(17, 180, 200, 0.26);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(17, 180, 200, 0.07), rgba(37, 99, 255, 0.04));
  padding: 10px;
}

.billing-services legend {
  padding: 0 6px;
  color: #087283;
  font-size: 0.78rem;
  font-weight: 950;
}

.billing-services label {
  font-size: 0.75rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
  align-items: start;
}

.template-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.template-strip article {
  min-height: 92px;
  border: 1px solid rgba(223, 229, 235, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.07);
}

.template-strip span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 8px;
  background: rgba(17, 180, 200, 0.12);
  color: #087283;
  font-size: 0.7rem;
  font-weight: 900;
}

.template-strip strong {
  display: block;
  font-size: 0.9rem;
}

.template-strip p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.admin-form,
.admin-board {
  border: 1px solid rgba(223, 229, 235, 0.96);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.11);
}

.admin-form {
  display: grid;
  gap: 9px;
  padding: 14px;
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow: auto;
}

.admin-board {
  min-width: 0;
  overflow: hidden;
}

.panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(37, 99, 255, 0.07), rgba(20, 230, 210, 0.05)),
    #ffffff;
}

.panel-card-head div {
  display: grid;
  gap: 2px;
}

.panel-card-head span {
  color: #2563ff;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-card-head strong {
  color: var(--ink);
  font-size: 1rem;
}

.admin-form .panel-card-head {
  margin: -14px -14px 4px;
  border-radius: 8px 8px 0 0;
}

.compact-admin-form {
  gap: 12px;
}

.form-step {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  background: #f8fafc;
}

.form-step > span,
.advanced-fields summary {
  color: #2563ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.advanced-fields {
  display: grid;
  gap: 9px;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.advanced-fields summary {
  cursor: pointer;
}

.advanced-fields[open] {
  background: #f8fafc;
}

.advanced-fields[open] summary {
  margin-bottom: 10px;
}

.advanced-fields label,
.advanced-fields fieldset {
  margin-top: 9px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.admin-stat {
  min-height: 92px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.admin-stat:last-child {
  border-right: 0;
}

.admin-stat strong {
  display: block;
  margin-top: 8px;
  color: #0b1020;
  font-size: 2rem;
  line-height: 1;
}

.admin-stat span {
  display: block;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.admin-stat small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
}

.admin-stat.demo strong {
  color: #087283;
}

.admin-stat.active strong {
  color: #3f7c18;
}

.admin-stat.alert strong {
  color: #c77709;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 210px);
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.admin-table {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #f8fafc;
}

.admin-empty {
  padding: 28px;
  color: var(--muted);
  font-weight: 800;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.95fr) minmax(170px, 1fr) minmax(200px, 1.1fr) minmax(200px, 1fr) minmax(250px, 1.1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.admin-row:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 255, 0.24);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.client-name {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.client-name strong {
  color: #0f172a;
  font-size: 1rem;
}

.client-name span,
.client-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.client-meta {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.client-meta strong {
  color: #334155;
}

.client-links {
  display: grid;
  gap: 3px;
  min-width: 0;
  font-size: 0.8rem;
}

.client-links strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-links a {
  width: fit-content;
  color: #076b7a;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.technical-state {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(17, 180, 200, 0.28);
  border-radius: 999px;
  background: rgba(17, 180, 200, 0.1);
  color: #075985;
  font-size: 0.67rem;
  font-weight: 950;
  text-transform: uppercase;
}

.technical-state.suspended {
  border-color: rgba(255, 107, 87, 0.32);
  background: rgba(255, 107, 87, 0.12);
  color: #9e2c1d;
}

.technical-state.active {
  border-color: rgba(139, 212, 80, 0.4);
  background: rgba(139, 212, 80, 0.16);
  color: #34710e;
}

.folder-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  margin-top: 4px;
}

.folder-tools code {
  overflow: hidden;
  padding: 7px 8px;
  border: 1px solid #dbe4ee;
  border-radius: 6px;
  background: #f7fafc;
  color: #43516a;
  font-size: 0.68rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folder-tools button {
  min-height: 30px;
  border: 1px solid rgba(17, 180, 200, 0.42);
  border-radius: 6px;
  background: rgba(17, 180, 200, 0.1);
  color: #075985;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 950;
}

.blocked-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid rgba(185, 28, 28, 0.24);
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.08);
  color: #9e2c1d;
  font-size: 0.72rem;
  font-weight: 950;
}

.renewal-stack {
  display: grid;
  gap: 3px;
  margin-top: 6px;
}

.renewal-stack small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.renewal-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 4px 6px;
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1.1;
}

.renewal-pill.ok {
  background: rgba(139, 212, 80, 0.18);
  color: #3f7c18;
}

.renewal-pill.warn {
  background: rgba(245, 184, 75, 0.2);
  color: #8a5a08;
}

.renewal-pill.expired {
  background: rgba(255, 107, 87, 0.14);
  color: #9e2c1d;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.demo {
  background: rgba(17, 180, 200, 0.14);
  color: #087283;
}

.status-pill.active {
  background: rgba(139, 212, 80, 0.24);
  color: #3f7c18;
}

.status-pill.pending {
  background: rgba(245, 184, 75, 0.22);
  color: #8a5a08;
}

.status-pill.suspended {
  background: rgba(255, 107, 87, 0.16);
  color: #9e2c1d;
}

.row-actions {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  gap: 6px;
}

.action-button {
  border: 1px solid #dbe4ee;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  min-height: 36px;
  padding: 7px 6px;
  font-size: 0.7rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

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

.action-button.activate {
  border-color: rgba(139, 212, 80, 0.55);
  background: rgba(139, 212, 80, 0.18);
}

.action-button.suspend {
  border-color: rgba(255, 107, 87, 0.42);
  background: rgba(255, 107, 87, 0.12);
}

.action-button.extend {
  border-color: rgba(17, 180, 200, 0.44);
  background: rgba(17, 180, 200, 0.1);
}

.action-button.paid {
  border-color: rgba(17, 180, 200, 0.5);
  background: rgba(17, 180, 200, 0.14);
}

.action-button.edit {
  border-color: rgba(37, 99, 255, 0.34);
  background: rgba(37, 99, 255, 0.09);
  color: #1d4ed8;
}

.action-button.delete {
  grid-column: 1 / -1;
  border-color: rgba(185, 28, 28, 0.34);
  background: rgba(185, 28, 28, 0.08);
  color: #9e2c1d;
}

.action-button.delete:hover {
  background: rgba(185, 28, 28, 0.14);
}

.admin-toast {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 100;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(17, 180, 200, 0.36);
  border-radius: 8px;
  background: #07111f;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.34);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.admin-toast[data-tone="error"] {
  border-color: rgba(255, 107, 87, 0.44);
  background: #230f12;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 40;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), 0 0 0 9px rgba(37, 211, 102, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.38), 0 0 0 11px rgba(37, 211, 102, 0.13);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.template-site {
  min-height: 100vh;
  background: #f4f7f8;
}

.template-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.template-logo {
  font-weight: 950;
}

.template-site-header nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.template-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.services-site .template-site-hero { background: linear-gradient(135deg, #172033, #0e6f7f); }
.store-site .template-site-hero { background: linear-gradient(135deg, #111827, #8b2f29); }
.booking-site .template-site-hero { background: linear-gradient(135deg, #111827, #3f7c18); }
.admin-site .template-site-hero { background: linear-gradient(135deg, #172033, #313a4f); }

.template-site-hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.template-site-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.template-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.template-hero-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.template-hero-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: end;
  height: 70px;
  margin-top: 24px;
}

.mini-bars i,
.product-swatch {
  display: block;
}

.mini-bars i {
  background: var(--lime);
}

.mini-bars i:nth-child(1) { height: 35%; }
.mini-bars i:nth-child(2) { height: 62%; }
.mini-bars i:nth-child(3) { height: 48%; }
.mini-bars i:nth-child(4) { height: 88%; }

.template-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 70px);
  background: var(--white);
}

.template-section:nth-of-type(even) {
  background: #eef3f5;
}

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

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

.template-feature-grid article,
.shop-grid article,
.project-stack article,
.admin-preview-list article,
.offer-card,
.cart-box,
.booking-widget,
.editor-demo {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.template-feature-grid p,
.shop-grid p,
.project-stack span,
.admin-preview-list span,
.offer-card span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.project-stack,
.admin-preview-list {
  display: grid;
  gap: 12px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.template-mini-form,
.editor-demo {
  display: grid;
  gap: 12px;
}

.template-mini-form p,
.editor-demo p {
  min-height: 22px;
  margin: 0;
  color: var(--lime);
  font-weight: 800;
}

.shop-grid b {
  display: block;
  font-size: 1.6rem;
}

.product-swatch {
  width: 100%;
  aspect-ratio: 1.25;
  margin-bottom: 16px;
}

.product-swatch.coral { background: var(--coral); }
.product-swatch.teal { background: var(--teal); }
.product-swatch.lime { background: var(--lime); }

.offer-card strong {
  display: block;
  font-size: 2rem;
}

.cart-box {
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.cart-box p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

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

.booking-widget button {
  border: 1px solid var(--line);
  background: #fbfcfd;
  padding: 18px 10px;
  font-weight: 950;
  cursor: pointer;
}

.booking-widget button.selected {
  border-color: var(--teal);
  background: rgba(17, 180, 200, 0.16);
}

.editor-demo {
  max-width: 820px;
}

.landing-v2 {
  --ink: #101423;
  --paper: #f5f7fb;
  --teal: #00c2d7;
  --coral: #ff4f6d;
  --lime: #b8f34b;
  --amber: #ffc247;
  background: var(--paper);
}

.landing-v2 .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(16, 20, 35, 0.08);
  backdrop-filter: blur(18px);
}

.landing-v2 .brand-mark {
  background: var(--ink);
  color: var(--white);
}

.hero-v2 {
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding-top: 112px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 79, 109, 0.24), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(0, 194, 215, 0.28), transparent 30%),
    linear-gradient(135deg, #fff7dc 0%, #f5f7fb 48%, #e7fbff 100%);
}

.hero-v2 .hero-image,
.hero-v2 .hero-shade {
  display: none;
}

.hero-v2-copy {
  color: var(--ink);
}

.hero-v2 h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(2.65rem, 6vw, 5.9rem);
}

.hero-v2 .hero-copy {
  color: #384155;
}

.button.bright {
  background: var(--coral);
  color: var(--white);
}

.landing-v2 .button.ghost {
  border-color: rgba(16, 20, 35, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.hero-console {
  border: 1px solid rgba(16, 20, 35, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(16, 20, 35, 0.16);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.console-top span:nth-child(2) { background: var(--amber); }
.console-top span:nth-child(3) { background: var(--teal); }
.console-top strong { margin-left: auto; }

.console-body {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
}

.console-status strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.console-status span {
  color: var(--muted);
  font-weight: 800;
}

.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-pills span {
  background: #e7fbff;
  border: 1px solid rgba(0, 194, 215, 0.28);
  color: #026a77;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.console-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
  height: 112px;
  padding: 12px;
  background: var(--ink);
}

.console-chart i {
  display: block;
  background: linear-gradient(180deg, var(--lime), var(--teal));
}

.console-chart i:nth-child(1) { height: 44%; }
.console-chart i:nth-child(2) { height: 76%; }
.console-chart i:nth-child(3) { height: 58%; }
.console-chart i:nth-child(4) { height: 90%; }
.console-chart i:nth-child(5) { height: 68%; }
.console-chart i:nth-child(6) { height: 100%; }

.console-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-actions span {
  color: #8a5a08;
  font-weight: 900;
}

.console-actions button {
  border: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 950;
}

.trust-v2 {
  border-top: 1px solid var(--line);
}

.trust-v2 strong {
  color: var(--coral);
}

.services-v2,
.modules-section,
.pricing-v2 {
  background: #ffffff;
}

.vivid-card {
  border: 0;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(16, 20, 35, 0.1);
}

.vivid-card p {
  color: rgba(16, 20, 35, 0.74);
}

.coral-card { background: #ffe5ea; }
.teal-card { background: #ddfaff; }
.lime-card { background: #efffd1; }
.ink-card {
  background: var(--ink);
  color: var(--white);
}
.ink-card p { color: rgba(255, 255, 255, 0.72); }
.ink-card .card-icon { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }

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

.module-grid-public article {
  display: grid;
  gap: 10px;
  min-height: 160px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(16, 20, 35, 0.08);
}

.module-grid-public strong {
  font-size: 1.25rem;
}

.module-grid-public span {
  color: var(--muted);
  font-weight: 700;
}

.system-v2 {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 79, 109, 0.18), transparent 28%),
    var(--ink);
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.workflow-board article {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 20px;
  color: var(--white);
}

.workflow-board span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--coral);
  color: var(--white);
  font-weight: 950;
}

.workflow-board p {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-v2 {
  background: #fff7dc;
}

.pricing-v2 .plan-card {
  border: 0;
  box-shadow: 0 18px 45px rgba(16, 20, 35, 0.1);
}

.pricing-v2 .plan-card.featured {
  background: var(--ink);
  color: var(--white);
}

.pricing-v2 .plan-card.featured p,
.pricing-v2 .plan-card.featured ul {
  color: rgba(255, 255, 255, 0.74);
}

.demo-v2 {
  background: linear-gradient(135deg, #00c2d7 0%, #e7fbff 100%);
  color: var(--ink);
}

.demo-v2 .eyebrow {
  color: #004c55;
}

.demo-v2 .demo-result {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(16, 20, 35, 0.12);
}

.contact-v2 {
  background: #ffffff;
}

.contact-v2 .contact-form {
  box-shadow: 0 20px 54px rgba(16, 20, 35, 0.12);
}

.landing-v3 {
  --ink: #ffffff;
  --muted: #c9cabf;
  --paper: #10110e;
  --white: #ffffff;
  --line: rgba(205, 238, 34, 0.18);
  --teal: #c9f018;
  --coral: #d8aa3d;
  --lime: #b9e31a;
  --amber: #f2d26a;
  --navy: #0f100d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  background:
    radial-gradient(circle at 12% 6%, rgba(201, 240, 24, 0.12), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(216, 170, 61, 0.1), transparent 25%),
    #10110e;
  color: var(--ink);
}

.landing-v3 .site-header {
  color: #ffffff;
  background: rgba(13, 14, 12, 0.84);
  border-bottom: 1px solid rgba(201, 240, 24, 0.14);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.landing-v3 .brand {
  letter-spacing: 0;
  font-weight: 900;
}

.landing-v3 .brand-mark {
  border: 0;
  background: #ffffff;
  color: #111111;
}

.landing-v3 .site-header.is-scrolled,
.landing-v3 .site-header.is-open {
  color: #ffffff;
  background: rgba(13, 14, 12, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.landing-v3 .site-header.is-scrolled .brand-mark,
.landing-v3 .site-header.is-open .brand-mark {
  background: #ffffff;
  color: #111111;
}

.landing-v3 .site-header.is-scrolled .nav a,
.landing-v3 .site-header.is-open .nav a {
  color: var(--white);
}

.landing-v3 .nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  opacity: 1;
}

.landing-v3 .nav a:hover {
  color: #c9f018;
  opacity: 1;
}

.hero-v3 {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 124px clamp(22px, 6vw, 96px) 78px;
  background: #111111;
  overflow: hidden;
}

.hero-bg-rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-rotator::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.96) 0%, rgba(9, 10, 8, 0.84) 30%, rgba(20, 22, 12, 0.38) 58%, rgba(20, 22, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(9, 10, 8, 0.22), rgba(9, 10, 8, 0.36)),
    radial-gradient(circle at 73% 44%, rgba(201, 240, 24, 0.2), transparent 40%),
    radial-gradient(circle at 86% 8%, rgba(216, 170, 61, 0.12), transparent 34%);
}

.hero-bg-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(1.42) contrast(1.13) brightness(1.12);
  animation: heroSlide 20s infinite;
}

.hero-bg-rotator img:nth-child(2) { animation-delay: 6.6s; }
.hero-bg-rotator img:nth-child(3) { animation-delay: 13.2s; }

@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.08); }
  7% { opacity: 1; transform: scale(1.04); }
  31% { opacity: 1; transform: scale(1.02); }
  38% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

.hero-v3-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 58%);
  color: var(--ink);
}

.landing-v3 .eyebrow {
  color: #c9f018;
  letter-spacing: 0.08em;
}

.hero-v3 h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(3rem, 5.3vw, 5.35rem);
  line-height: 1;
}

.hero-v3 .hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.65;
}

.landing-v3 .button {
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 22px;
}

.landing-v3 .button.primary {
  background: linear-gradient(135deg, #d5ff23, #8fb50f);
  color: #11120f;
  box-shadow: 0 14px 34px rgba(201, 240, 24, 0.22);
}

.landing-v3 .button.secondary {
  border-color: rgba(201, 240, 24, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.landing-v3 .button.ghost {
  border-color: rgba(201, 240, 24, 0.2);
  background: rgba(201, 240, 24, 0.08);
  color: #ffffff;
}

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

.hero-proof span {
  border: 1px solid rgba(201, 240, 24, 0.18);
  border-radius: 999px;
  background: rgba(201, 240, 24, 0.08);
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
}

.premium-visual {
  position: relative;
  min-height: 460px;
  display: block;
  padding: 0;
  border: 1px solid rgba(201, 240, 24, 0.14);
  border-radius: 28px;
  background: #0a0a0a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.premium-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(201, 240, 24, 0.16);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.78);
  padding: 14px 16px;
  box-shadow: 0 14px 38px rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(18px);
}

.visual-caption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-caption strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.trust-v3 {
  border-top: 1px solid rgba(201, 240, 24, 0.12);
  border-bottom: 1px solid rgba(201, 240, 24, 0.12);
  background: #10110e;
}

.trust-v3 div {
  min-height: 122px;
}

.trust-v3 strong {
  color: #ffffff;
}

.trust-v3 span {
  color: rgba(255, 255, 255, 0.62);
}

.services-v3,
.portfolio-v3,
.testimonials-v3,
.contact-v3 {
  background: #10110e;
  color: #ffffff;
}

.services-v3 .section-heading,
.process-v3 .section-heading,
.portfolio-v3 .section-heading,
.testimonials-v3 .section-heading,
.pricing-v3 .section-heading {
  max-width: 980px;
}

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

.solution-grid article,
.process-grid article,
.testimonial-grid article {
  border: 1px solid rgba(201, 240, 24, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(201, 240, 24, 0.035));
  padding: 22px;
  box-shadow: none;
}

.solution-grid span,
.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #c9f018;
  font-size: 0.78rem;
  font-weight: 950;
}

.solution-grid strong,
.process-grid strong,
.portfolio-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
}

.solution-grid p,
.process-grid p,
.portfolio-card p,
.testimonial-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
}

.process-v3 {
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 240, 24, 0.08), transparent 28%),
    #0b0c0a;
  color: var(--white);
}

.process-v3 .eyebrow {
  color: #c9f018;
}

.process-v3 .section-heading h2 {
  color: var(--white);
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 240, 24, 0.16);
  box-shadow: none;
}

.process-grid strong {
  color: var(--white);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
}

.portfolio-card {
  min-height: 360px;
  border: 1px solid rgba(201, 240, 24, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(201, 240, 24, 0.035));
  padding: 22px;
  overflow: hidden;
  box-shadow: none;
}

.portfolio-card > img {
  width: 100%;
  height: 220px;
  margin-bottom: 4px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 14px;
  object-fit: cover;
}

.mock-window,
.mock-dashboard,
.mock-brand {
  display: grid;
  min-height: 190px;
  margin-bottom: 24px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.mock-window {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  padding: 18px;
}

.mock-window i {
  display: block;
  border-radius: 8px;
  background: linear-gradient(180deg, #d5ff23, #6f8414);
}

.mock-window i:nth-child(1) { height: 52%; }
.mock-window i:nth-child(2) { height: 78%; }
.mock-window i:nth-child(3) { height: 62%; }

.mock-dashboard {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
}

.mock-dashboard span {
  border-radius: 8px;
  background: #eef7c7;
}

.mock-dashboard span:first-child {
  background: #0a0a0a;
}

.mock-brand {
  place-items: center;
  background: linear-gradient(145deg, #0a0a0a, #28320d);
}

.mock-brand span {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
}

.pricing-v3 {
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 170, 61, 0.1), transparent 28%),
    #10110e;
  color: #ffffff;
}

.pricing-v3 .billing {
  border-radius: 999px;
}

.pricing-v3 .billing-control {
  gap: 10px;
}

.pricing-v3 .billing {
  border-color: rgba(201, 240, 24, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.pricing-v3 .billing.active {
  border-color: #c9f018;
  background: linear-gradient(135deg, #d5ff23, #99bd14);
  color: #11120f;
  box-shadow: 0 12px 28px rgba(201, 240, 24, 0.18);
}

.pricing-v3 .plan-card {
  border: 1px solid rgba(201, 240, 24, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.pricing-v3 .plan-card.featured {
  border-color: rgba(201, 240, 24, 0.36);
  background: linear-gradient(135deg, #15170f, #2f390d 58%, #6f8414);
  color: var(--white);
}

.pricing-v3 .plan-card.featured p,
.pricing-v3 .plan-card.featured ul {
  color: rgba(255, 255, 255, 0.72);
}

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

.testimonial-grid article {
  min-height: 220px;
}

.testimonial-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.testimonial-grid strong {
  display: block;
  margin-top: 22px;
}

.demo-v3 {
  background: linear-gradient(135deg, #10110e 0%, #1f240d 100%);
  color: #ffffff;
}

.demo-v3 .demo-result {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-v3 {
  background: #10110e;
  color: #ffffff;
}

.contact-v3 .eyebrow {
  color: #c9f018;
}

.contact-v3 .contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-v3 .contact-form {
  border-color: rgba(201, 240, 24, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
}

.contact-v3 label {
  color: rgba(255, 255, 255, 0.72);
}

.contact-v3 input,
.contact-v3 select,
.contact-v3 textarea {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-v3 select {
  color-scheme: dark;
}

.contact-v3 select option {
  background: #191919;
  color: #ffffff;
}

.contact-v3 input::placeholder,
.contact-v3 textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 980px) {
  .service-grid,
  .plan-grid,
  .public-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system,
  .demo-lab,
  .contact,
  .hero-v2,
  .template-site-hero,
  .split,
  .contact-band,
  .panel-title,
  .ops-grid,
  .ai-builder,
  .admin-layout,
  .template-strip {
    grid-template-columns: 1fr;
  }

  .module-grid-public,
  .workflow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-row {
    grid-template-columns: minmax(160px, 1fr) minmax(130px, 0.8fr);
    align-items: start;
  }

  .row-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(82px, 1fr));
  }

  .demo-result {
    grid-column: auto;
    margin-top: -10px;
  }

  .trust-strip,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #181818;
    color: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
    padding-top: 100px;
  }

  .hero-v2 {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 15, 28, 0.96) 0%, rgba(9, 15, 28, 0.74) 58%, rgba(9, 15, 28, 0.18) 100%),
      linear-gradient(90deg, rgba(9, 15, 28, 0.62), rgba(9, 15, 28, 0.08));
  }

  .hero-image {
    object-position: 62% center;
  }

  .service-grid,
  .plan-grid,
  .public-template-grid,
  .module-grid-public,
  .workflow-board,
  .template-feature-grid,
  .shop-grid,
  .trust-strip,
  .steps,
  .dashboard-metrics,
  .template-strip,
  .admin-stats,
  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .client-row,
  .activation-panel,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .status {
    width: 100%;
  }

  .panel-header {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-secure-badge {
    justify-content: center;
  }

  .panel-header .button {
    width: 100%;
  }

  .admin-form {
    position: static;
    max-height: none;
  }

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

@media (max-width: 1100px) {
  .solution-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-v3,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .premium-visual {
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-v3 h1,
  .section-heading h2,
  .contact-copy h2 {
    overflow-wrap: normal;
    word-break: normal;
  }

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

.landing-v3 .hero-v3,
.landing-v3 .solution-grid,
.landing-v3 .process-grid,
.landing-v3 .portfolio-grid,
.landing-v3 .testimonial-grid {
  width: 100%;
  min-width: 0;
}

.landing-v3 .hero-v3 > *,
.landing-v3 .solution-grid > *,
.landing-v3 .process-grid > *,
.landing-v3 .portfolio-grid > *,
.landing-v3 .testimonial-grid > * {
  min-width: 0;
}

.landing-v3 .premium-visual,
.landing-v3 .portfolio-card,
.landing-v3 .plan-card,
.landing-v3 .contact-form {
  max-width: 100%;
}

/* Portfolio isolation: avoids collisions with legacy .brand and .system classes */
.landing-v3 .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.landing-v3 .portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 420px;
}

.landing-v3 .mock-window,
.landing-v3 .mock-dashboard,
.landing-v3 .mock-brand {
  width: 100%;
  height: 220px;
  min-height: 220px;
  margin: 0;
}

.landing-v3 .mock-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-v3 .mock-dashboard span,
.landing-v3 .mock-window i {
  display: block;
  width: auto;
  min-width: 0;
}

.landing-v3 .portfolio-card strong,
.landing-v3 .portfolio-card p {
  display: block;
  width: 100%;
  max-width: none;
  white-space: normal;
}

/* Stable TU IDEA DIGITAL layout override */
.landing-v3 h1,
.landing-v3 h2,
.landing-v3 h3,
.landing-v3 p,
.landing-v3 strong,
.landing-v3 span {
  overflow-wrap: normal;
  word-break: normal;
}

.landing-v3 .hero-v3 {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 92vh;
  padding: 124px clamp(22px, 6vw, 96px) 78px;
}

.landing-v3 .hero-v3-copy {
  max-width: 820px;
  min-width: 0;
}

.landing-v3 .premium-visual {
  min-width: 360px;
  min-height: 460px;
}

.landing-v3 .hero-bg-rotator {
  max-width: none;
}

@media (max-width: 980px) {
  .landing-v3 .hero-v3 {
    display: flex;
  }

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

  .hero-bg-rotator img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .landing-v3 .premium-visual {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .landing-v3 .hero-v3 {
    padding: 108px 18px 46px;
  }

  .landing-v3 .premium-visual {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .landing-v3 .brand span:last-child {
    font-size: 0.82rem;
  }

  .landing-v3 .brand-logo {
    width: 172px;
  }

  .landing-v3 .brand-logo.metal-logo {
    width: 196px;
  }

  .hero-v3 {
    min-height: auto;
    padding: 118px 18px 54px;
  }

  .hero-v3 h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .hero-proof,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-v3 .button {
    width: 100%;
  }

  .premium-visual {
    min-height: 360px;
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .hero-bg-rotator img {
    top: auto;
    right: auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .visual-orbit {
    inset: 22px;
  }

  .main-project {
    grid-column: auto;
  }

  .floating-card {
    min-width: 120px;
    padding: 13px;
  }

  .solution-grid,
  .process-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .landing-v3 .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: auto;
  }

  .landing-v3 .portfolio-card {
    min-height: auto;
  }

  .mock-window,
  .mock-dashboard,
  .mock-brand {
    min-height: 150px;
  }
}
