:root {
  --bg: #05080f;
  --panel: #0a1424;
  --panel-soft: #0d1b2e;
  --ink: #f8fafc;
  --muted: #b6c4d8;
  --soft: #7f90a8;
  --line: rgba(148, 163, 184, 0.18);
  --blue: #2f8cff;
  --cyan: #61d8ff;
  --green: #15b56e;
  --shadow: 0 28px 85px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 140, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 86% 10%, rgba(97, 216, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #05080f 0%, #07111f 42%, #05080f 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(5, 8, 15, 0.86);
  backdrop-filter: blur(20px);
}

.nav-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(97, 216, 255, 0.38);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(47, 140, 255, 0.28), rgba(255, 255, 255, 0.06));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(47, 140, 255, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.12;
}

.brand small {
  margin-top: 0.14rem;
  color: #94a3b8;
  font-size: 0.73rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.15rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: #fff;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.18rem;
}

.lang-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #a8b7cc;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 0.65rem;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-switch button[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.98), rgba(18, 103, 215, 0.98));
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 140, 255, 0.28);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgba(97, 216, 255, 0.3);
  background: linear-gradient(135deg, #2f8cff, #1267d7);
  color: #fff;
  box-shadow: 0 18px 44px rgba(47, 140, 255, 0.32);
}

.btn-secondary {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 50px rgba(21, 181, 110, 0.26);
}

.hero {
  padding: clamp(3rem, 7vw, 6.8rem) 0 clamp(3.5rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero .section-inner {
  width: min(1320px, calc(100% - 2rem));
}

.eyebrow,
.hero-badge {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(97, 216, 255, 0.24);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(47, 140, 255, 0.1);
  color: #dbeafe;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: clamp(2.55rem, 7.5vw, 5.7rem);
  font-weight: 900;
  line-height: 0.96;
}

.hero-title {
  max-width: 680px;
  margin-bottom: 1rem;
  font-size: clamp(2.85rem, 3.9vw, 4.35rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.lead {
  max-width: 590px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.trust-row span {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.045);
  color: #a8b7cc;
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-visual {
  position: relative;
  isolation: isolate;
  margin-top: clamp(2.2rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(10, 23, 41, 0.92), rgba(7, 17, 32, 0.98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding: clamp(1rem, 2vw, 1.25rem);
  min-height: 430px;
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(170px, 1fr) minmax(220px, 0.95fr) minmax(170px, 1fr);
  gap: 1rem;
}

.workflow-art-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(97, 216, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(47, 140, 255, 0.18), transparent 32%),
    radial-gradient(circle at 50% 86%, rgba(97, 216, 255, 0.14), transparent 36%);
  background-size: 52px 52px, 52px 52px, 260px 260px, 240px 240px, 300px 300px;
  background-position: 0 0, 26px 26px, -20px 20px, 40px 140px, 110px 0;
}

.workflow-art-grid::before,
.workflow-art-grid::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  opacity: 0.9;
}

.workflow-art-grid::before {
  width: 130px;
  height: 90px;
  top: 11%;
  left: 4%;
  border-radius: 10px;
  transform: rotate(8deg);
  background: linear-gradient(120deg, rgba(47, 140, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.workflow-art-grid::after {
  width: 150px;
  height: 96px;
  bottom: 10%;
  right: 6%;
  border-radius: 999px 999px 90px 999px;
  transform: rotate(-12deg);
  background: linear-gradient(120deg, rgba(97, 216, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.workflow-stack {
  position: relative;
  display: grid;
  grid-template-rows: auto repeat(3, minmax(82px, 1fr));
  gap: 0.78rem;
  min-width: 0;
}

.workflow-stack__label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  background: rgba(255, 255, 255, 0.055);
  color: #d8e7fa;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-chip {
  position: absolute;
  width: 58px;
  height: 58px;
  left: 6%;
  top: 7%;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.2), rgba(97, 216, 255, 0.22));
  opacity: 0.55;
  transform: rotate(-8deg);
}

.workflow-chip--offset {
  top: auto;
  bottom: 8%;
  left: auto;
  right: 4%;
}

.workflow-card {
  position: relative;
  min-width: 0;
  border-radius: 14px;
  padding: 0.82rem;
  min-height: 82px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.72rem;
  row-gap: 0.16rem;
  align-content: center;
  align-items: start;
}

.workflow-card::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  box-shadow: 0 0 0 4px currentColor;
  opacity: 0.44;
}

.workflow-icon {
  position: relative;
  top: auto;
  left: auto;
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: currentColor;
  opacity: 0.88;
  display: block;
  overflow: hidden;
  margin-top: 0.05rem;
}

.workflow-icon::before,
.workflow-icon::after {
  content: "";
  position: absolute;
  background: rgba(14, 24, 43, 0.9);
}

.workflow-card[data-kind="chats"] .workflow-icon {
  border-radius: 999px 999px 0 999px;
  transform: rotate(-16deg);
}

.workflow-card[data-kind="chats"] .workflow-icon::before {
  width: 2px;
  height: 7px;
  border-radius: 99px;
  left: 11px;
  top: 3px;
}

.workflow-card[data-kind="chats"] .workflow-icon::after {
  width: 8px;
  height: 5px;
  left: 5px;
  top: 6px;
}

.workflow-card[data-kind="excel"] .workflow-icon {
  border-radius: 3px;
}

.workflow-card[data-kind="excel"] .workflow-icon::before {
  width: 12px;
  height: 1px;
  top: 5px;
  left: 3px;
  box-shadow:
    0 4px currentColor,
    0 8px currentColor,
    0 12px currentColor;
}

.workflow-card[data-kind="excel"] .workflow-icon::after {
  width: 2px;
  height: 14px;
  left: 8px;
  top: 2px;
}

.workflow-card[data-kind="notes"] .workflow-icon {
  border-radius: 2px;
  transform: rotate(2deg);
}

.workflow-card[data-kind="notes"] .workflow-icon::before {
  width: 8px;
  height: 1.5px;
  top: 4px;
  left: 5px;
  box-shadow: 0 4px currentColor, 0 8px currentColor;
}

.workflow-card[data-kind="notes"] .workflow-icon::after {
  width: 10px;
  height: 1.5px;
  left: 4px;
  top: 12px;
}

.workflow-card[data-kind="missed"] .workflow-icon {
  border-radius: 999px;
}

.workflow-card[data-kind="missed"] .workflow-icon::before {
  width: 9px;
  height: 2px;
  transform: rotate(45deg);
  left: 5px;
  top: 8px;
  border-radius: 2px;
}

.workflow-card[data-kind="missed"] .workflow-icon::after {
  width: 2px;
  height: 8px;
  left: 8px;
  top: 3px;
  border-radius: 2px;
}

.workflow-card[data-kind="follow"] .workflow-icon {
  border-radius: 5px;
}

.workflow-card[data-kind="follow"] .workflow-icon::before {
  width: 12px;
  height: 4px;
  top: 7px;
  left: 3px;
}

.workflow-card[data-kind="follow"] .workflow-icon::after {
  width: 6px;
  height: 7px;
  top: 2px;
  left: 5px;
  border-radius: 99px;
}

.workflow-card[data-kind="bookings"] .workflow-icon,
.workflow-card[data-kind="customer"] .workflow-icon,
.workflow-card[data-kind="tasks"] .workflow-icon,
.workflow-card[data-kind="payments"] .workflow-icon,
.workflow-card[data-kind="owner"] .workflow-icon {
  transform: rotate(-18deg);
  border-radius: 5px;
}

.workflow-card[data-kind="bookings"] .workflow-icon::before,
.workflow-card[data-kind="customer"] .workflow-icon::before,
.workflow-card[data-kind="tasks"] .workflow-icon::before,
.workflow-card[data-kind="payments"] .workflow-icon::before,
.workflow-card[data-kind="owner"] .workflow-icon::before {
  width: 8px;
  height: 8px;
  top: 3px;
  left: 3px;
  border-radius: 2px;
}

.workflow-card[data-kind="bookings"] .workflow-icon::after,
.workflow-card[data-kind="customer"] .workflow-icon::after,
.workflow-card[data-kind="tasks"] .workflow-icon::after,
.workflow-card[data-kind="payments"] .workflow-icon::after,
.workflow-card[data-kind="owner"] .workflow-icon::after {
  width: 9px;
  height: 2px;
  top: 10px;
  left: 6px;
  border-radius: 99px;
}

.workflow-card[data-kind="bookings"] .workflow-icon::before {
  box-shadow: 0 7px currentColor;
}

.workflow-card[data-kind="customer"] .workflow-icon::before {
  border-radius: 999px;
  width: 3px;
  height: 8px;
  left: 6px;
  top: 3px;
  box-shadow: -2px 0 currentColor, 2px 0 currentColor;
}

.workflow-card[data-kind="tasks"] .workflow-icon::before {
  width: 1px;
  height: 9px;
  left: 8px;
  top: 2px;
}

.workflow-card[data-kind="tasks"] .workflow-icon::after {
  width: 2px;
  height: 9px;
  top: 2px;
  left: 11px;
}

.workflow-card[data-kind="payments"] .workflow-icon {
  border-radius: 999px;
}

.workflow-card[data-kind="payments"] .workflow-icon::before {
  width: 6px;
  height: 6px;
  top: 6px;
  left: 6px;
  border-radius: 999px;
  box-shadow: 0 -6px currentColor, 0 -12px currentColor;
}

.workflow-card[data-kind="payments"] .workflow-icon::after {
  width: 2px;
  height: 2px;
  top: 4px;
  left: 8px;
  border-radius: 1px;
}

.workflow-card[data-kind="owner"] .workflow-icon {
  border-radius: 3px;
}

.workflow-card[data-kind="owner"] .workflow-icon::before,
.workflow-card[data-kind="owner"] .workflow-icon::after {
  border-radius: 999px;
  width: 3px;
  height: 3px;
}

.workflow-card[data-kind="owner"] .workflow-icon::before {
  left: 3px;
  top: 4px;
}

.workflow-card[data-kind="owner"] .workflow-icon::after {
  left: 11px;
  top: 4px;
}

.workflow-card h4 {
  margin: 0;
  min-width: 0;
  color: #fff;
  font-size: clamp(0.86rem, 0.85vw, 0.96rem);
  line-height: 1.18;
}

.workflow-card p {
  margin: 0;
  min-width: 0;
  color: #c6d3e5;
  font-size: clamp(0.7rem, 0.72vw, 0.78rem);
  line-height: 1.38;
}

.workflow-card--chaos {
  color: rgba(255, 140, 140, 0.95);
}

.workflow-card--order {
  color: rgba(144, 227, 176, 0.95);
}

.workflow-card--chaos::before {
  background: linear-gradient(180deg, #fda5a5, #ff5e5e);
}

.workflow-card--order::before {
  background: linear-gradient(180deg, #98efc5, #52d190);
}

.workflow-core {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(97, 216, 255, 0.28);
  border-radius: 18px;
  padding: 1.15rem 0.95rem;
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  text-align: center;
  display: grid;
  align-content: center;
  min-width: 0;
}

.workflow-core__label {
  display: inline-flex;
  justify-self: center;
  margin-bottom: 0.7rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(97, 216, 255, 0.32);
  color: #b8eaff;
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0;
}

.workflow-core h3 {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  line-height: 1.12;
}

.workflow-core p {
  color: #d5e3f8;
  font-size: 0.86rem;
  line-height: 1.42;
}

.workflow-core__line {
  margin: 0.66rem auto;
  width: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(97, 216, 255, 0.88), transparent);
}

.workflow-core::before,
.workflow-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(97, 216, 255, 0.35), rgba(97, 216, 255, 0.9));
}

.workflow-core::before {
  right: 100%;
}

.workflow-core::after {
  left: 100%;
}

.card,
.pill,
.process-step,
.case-panel,
.lead-form,
.privacy-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.025);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.copy,
.card p,
.process-step p,
.case-panel p,
.privacy-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 0.9rem;
}

.card {
  min-height: 170px;
  border-radius: 18px;
  padding: 1.2rem;
}

.card h3,
.process-step h3 {
  color: #fff;
  font-size: 1.05rem;
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(47, 140, 255, 0.16);
  color: var(--cyan);
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  min-height: 48px;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  color: #e2e8f0;
  font-weight: 780;
}

.process-step {
  min-height: 145px;
  border-radius: 18px;
  padding: 1.2rem;
}

.process-step b {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(47, 140, 255, 0.14);
  color: #bfdbfe;
  font-size: 0.8rem;
}

.case-panel,
.cta-panel,
.lead-form,
.privacy-card {
  border-radius: 24px;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.case-panel {
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.14), rgba(255, 255, 255, 0.035));
}

.lead-layout {
  display: grid;
  gap: 1.5rem;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 850;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(2, 6, 23, 0.52);
  color: #fff;
}

.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(2, 6, 23, 0.52);
  color: #fff;
  padding: 0 0.9rem;
}

.lead-form input {
  min-height: 50px;
  padding: 0 0.9rem;
}

.lead-form textarea {
  min-height: 128px;
  padding: 0.85rem 0.9rem;
  resize: vertical;
  line-height: 1.55;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(97, 216, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.12);
}

.admin-stats,
.admin-analytics-grid,
.admin-grid {
  display: grid;
  gap: 0.85rem;
}

.admin-stats,
.admin-grid {
  margin-bottom: 1rem;
}

.admin-mini-card {
  min-height: 102px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
}

.admin-mini-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-mini-card strong {
  display: block;
  margin-top: 0.45rem;
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.46rem);
}

.admin-analytics-grid {
  grid-template-columns: 1fr;
}

.admin-grid {
  grid-template-columns: 1fr;
}

.admin-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.55);
}

.admin-card h2,
.admin-card h3 {
  margin-top: 0;
}

.admin-card p,
.admin-card li {
  color: #cbd5e1;
}

.admin-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
}

.admin-lead-list {
  display: grid;
  gap: 0.58rem;
}

.admin-lead-item {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
}

.admin-lead-item.active {
  border-color: rgba(97, 216, 255, 0.5);
  background: rgba(47, 140, 255, 0.14);
}

.admin-lead-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}

.admin-lead-title span {
  color: #fff;
  font-weight: 800;
}

.admin-lead-item p {
  margin: 0.4rem 0 0.1rem;
  color: #a2b1c5;
  font-size: 0.8rem;
}

.admin-lead-item small {
  color: #94a3b8;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.admin-toolbar-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.admin-toolbar-right input,
.admin-toolbar-right select {
  min-height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  padding: 0 0.65rem;
  background: rgba(2, 6, 23, 0.72);
  color: #fff;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.admin-empty {
  margin: 0;
  color: #93a6bf;
}

.form-status {
  margin: 0;
  color: #bbf7d0;
  font-size: 0.86rem;
  font-weight: 850;
}

.cta-panel {
  overflow: hidden;
  border: 1px solid rgba(97, 216, 255, 0.24);
  background:
    radial-gradient(circle at 15% 0%, rgba(97, 216, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(47, 140, 255, 0.2), rgba(255, 255, 255, 0.045)),
    rgba(5, 8, 15, 0.8);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 2rem 0 6rem;
  background: rgba(2, 6, 23, 0.36);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.85rem;
  color: #cbd5e1;
  font-weight: 750;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #bfdbfe;
}

.subpage-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
}

.subpage-hero h1 {
  max-width: 920px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

.subpage-copy {
  max-width: 760px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.75;
}

.text-panel {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, 0.045);
}

.text-panel h2,
.text-panel h3 {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #dbeafe;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(97, 216, 255, 0.1);
}

.link-card {
  display: grid;
  gap: 0.55rem;
  min-height: 170px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.045);
}

.link-card strong {
  color: #fff;
  font-size: 1.04rem;
}

.link-card span {
  color: #cbd5e1;
  line-height: 1.62;
}

.link-card em {
  align-self: end;
  color: var(--cyan);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
}

.privacy-main {
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.privacy-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

@media (min-width: 640px) {
  .form-row,
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 840px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  }

  .lead-layout,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

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

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

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

  .hero-copy {
    order: 1;
  }

  .workflow-visual {
    order: 2;
    margin-top: 0;
  }

  .workflow-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .workflow-stack {
    grid-template-rows: auto;
  }

  .workflow-core {
    min-height: 220px;
  }

  .workflow-core::before,
  .workflow-core::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .nav-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 1rem, 1180px);
  }

  .nav-inner {
    flex-wrap: wrap;
    min-height: 86px;
    justify-content: center;
  }

  .brand {
    flex: 1 1 calc(100% - 8.5rem);
  }

  .nav-links {
    display: none;
  }

  .lang-switch {
    order: 2;
  }

  .nav-inner .btn {
    order: 3;
    min-height: 42px;
    padding-inline: 0.85rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .hero-title {
    font-size: clamp(2.32rem, 10vw, 2.85rem);
    line-height: 1;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .workflow-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .workflow-core {
    order: 2;
    min-height: auto;
  }

  .workflow-stack {
    order: 1;
  }

  .workflow-stack--after {
    order: 3;
  }

  .workflow-visual {
    grid-template-columns: 1fr;
  }
}
