:root {
  --green-950: #063b31;
  --green-900: #084c3f;
  --green-800: #0c5e4e;
  --green-700: #14745e;
  --green-600: #1a866c;
  --green-500: #2b9a70;
  --lime: #82be42;
  --text: #16312a;
  --muted: #62746f;
  --line: #dce8e3;
  --soft: #f3f8f6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 67, 54, 0.14);
  --danger: #c62828;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 232, 227, 0.75);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  width: 120px;
  height: 80%;
  object-fit: cover;
  object-position: center 0%;
  border-radius: 5px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu > a:not(.btn):hover { color: var(--green-700); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 10px 26px rgba(12, 94, 78, 0.18);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
}

.btn-light {
  background: var(--white);
  border-color: var(--line);
}

.btn-white {
  background: var(--white);
  color: var(--green-900);
}

.btn-lg {
  min-height: 54px;
  padding: 0 26px;
}

.btn-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(12, 94, 78, 0.25);
  border-top-color: var(--green-800);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.85; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-900);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at top left, rgba(130, 190, 66, 0.1), transparent 35%),
    linear-gradient(180deg, #fbfdfc 0%, #ffffff 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-800);
  background: #e9f5ef;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.hero h1 span { color: var(--green-700); }

.hero-text {
  max-width: 680px;
  font-size: 1.16rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.hero-trust div {
  padding-left: 14px;
  border-left: 2px solid var(--lime);
}

.hero-trust strong,
.hero-trust span { display: block; }

.hero-trust strong { font-size: 0.95rem; }

.hero-trust span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.dashboard-shell {
  border: 1px solid #d9e7e1;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f7f6;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.app-preview {
  min-height: 470px;
  display: grid;
  grid-template-columns: 148px 1fr;
  background: #f4f7f6;
}

.app-sidebar {
  padding: 16px 12px;
  background: linear-gradient(160deg, #1b3d33 0%, #0f2922 100%);
  color: rgba(255, 255, 255, 0.88);
}

.app-sidebar-brand {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.app-sidebar-brand strong,
.app-sidebar-brand small {
  display: block;
}

.app-sidebar-brand strong {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.app-sidebar-brand small {
  margin-top: 2px;
  font-size: 0.55rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.mini-mark,
.mission-symbol {
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-900), var(--green-600));
  border-radius: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.mini-mark {
  width: 28px;
  height: 28px;
  font-size: 0.72rem;
  background: rgba(45, 143, 91, 0.9);
}

.app-sidebar-nav span {
  display: block;
  padding: 7px 8px;
  margin-bottom: 3px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 600;
}

.app-sidebar-nav span.active {
  color: #fff;
  background: rgba(45, 143, 91, 0.35);
}

.app-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-topbar {
  min-height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-900);
}

.app-user {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e7f3ee;
  color: var(--green-800);
  font-size: 0.68rem;
}

.app-home {
  padding: 16px;
}

.app-home-hero {
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--white);
  border-left: 4px solid #2d8f5b;
  box-shadow: 0 1px 2px rgba(27, 61, 51, 0.04);
}

.app-home-hero small {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d8f5b;
}

.app-home-hero h3 {
  margin: 4px 0 2px;
  font-size: 1.05rem;
  color: #1b3d33;
}

.app-home-hero p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

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

.app-modules article {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.app-modules strong {
  font-size: 0.72rem;
  color: #1b3d33;
}

.app-modules span {
  font-size: 0.62rem;
  line-height: 1.35;
  color: var(--muted);
}

.preview-caption {
  margin: 0;
  padding: 10px 16px 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.hero-shot {
  margin: 0;
  background: #0f2922;
}

.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.shot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(7, 67, 54, 0.08);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.shot-card figcaption {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}

.shot-card strong {
  display: block;
  font-family: "Manrope", sans-serif;
  margin-bottom: 4px;
}

.shot-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
}

.hero-blur-one {
  width: 360px;
  height: 360px;
  right: -140px;
  top: 40px;
  background: rgba(43, 154, 112, 0.09);
}

.hero-blur-two {
  width: 280px;
  height: 280px;
  left: -140px;
  bottom: -100px;
  background: rgba(130, 190, 66, 0.09);
}

.logos-strip {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logos-strip p {
  margin: 0 0 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  background: #fbfdfc;
  font-size: 0.82rem;
  font-weight: 700;
}

.section { padding: 104px 0; }

.section-soft { background: var(--soft); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section h2,
.cta h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.section-heading p,
.split p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(7, 67, 54, 0.1);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e9f5ef;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.feature-card h3 { margin: 20px 0 10px; }

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

.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 0.75rem;
}

.mission-card {
  padding: 42px;
  border-radius: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04), transparent),
    var(--green-950);
  box-shadow: var(--shadow);
}

.mission-symbol {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  background: var(--lime);
  color: var(--green-950);
  font-size: 1.8rem;
}

.mission-card blockquote {
  margin: 0 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

.mission-card strong,
.mission-card span { display: block; }

.mission-card span { margin-top: 3px; color: #b7cdc4; }

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

.benefit-grid article {
  padding: 30px 22px;
  border-top: 3px solid var(--green-700);
  background: #fbfdfc;
}

.benefit-grid article > strong {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
}

.benefit-grid h3 { margin: 18px 0 10px; }

.benefit-grid p { margin: 0; color: var(--muted); }

.cta-section {
  padding: 84px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(130, 190, 66, 0.2), transparent 32%),
    var(--green-950);
}

.cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.eyebrow-light {
  color: #dff0e8;
  background: rgba(255, 255, 255, 0.08);
}

.cta p { color: #c7d9d2; }

.lead-form {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-form.is-focused {
  border-color: rgba(130, 190, 66, 0.55);
  box-shadow: 0 0 0 4px rgba(130, 190, 66, 0.12);
}

.lead-form.is-success {
  border-color: rgba(130, 190, 66, 0.65);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  height: 56px;
  padding: 1.15rem 15px 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #c8d9d2 50%),
    linear-gradient(135deg, #c8d9d2 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field select option { color: var(--text); }

.field label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #c8d9d2;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.18s ease;
}

.field input:focus,
.field select:focus,
.field.is-filled input,
.field.is-filled select {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.12);
}

.field input:focus + label,
.field select:focus + label,
.field.is-filled label,
.field input:not(:placeholder-shown) + label,
.field select:valid + label {
  top: 0.55rem;
  transform: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lime);
}

.field input::placeholder { color: transparent; }

.field.is-invalid input,
.field.is-invalid select {
  border-color: #ef9a9a;
}

.field-error {
  display: none;
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #ffcdd2;
}

.field.is-invalid .field-error { display: block; }

.lead-form .btn { width: 100%; margin-top: 3px; }

.lead-form small {
  display: block;
  margin-top: 12px;
  color: #b8ccc4;
  text-align: center;
}

.form-message {
  margin-top: 12px;
  text-align: center;
  font-weight: 700;
  min-height: 1.4em;
}

.form-message.is-error { color: #ffcdd2; }
.form-message.is-success { color: var(--lime); }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
  animation: fade-up 0.45s ease;
}

.lead-form.is-success .form-fields { display: none; }
.lead-form.is-success .form-success { display: block; }

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(130, 190, 66, 0.2);
  color: var(--lime);
  font-size: 1.6rem;
  font-weight: 800;
}

.form-success h3 {
  margin: 0 0 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
}

.form-success p {
  margin: 0 0 1.25rem;
  color: #c7d9d2;
}

.form-success .btn { width: auto; margin: 0 auto; }

.footer { padding: 58px 0 22px; background: #f8fbfa; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {

  height: 90px;
  object-fit: cover;
  object-position: center 0%;
  border-radius: 10px;
}

.footer p { color: var(--muted); }

.footer-grid strong,
.footer-grid a { display: block; }

.footer-grid a {
  margin-top: 10px;
  color: var(--muted);
}

.footer-grid a:hover { color: var(--green-700); }

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .menu {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu.open { display: flex; }

  .hero-grid,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    max-width: 720px;
    margin: 0 auto;
    transform: none;
  }

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

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

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

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }

  .hero { padding: 64px 0; }

  .hero h1 { font-size: 3rem; }

  .hero-actions,
  .hero-trust,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .hero-trust { display: grid; }

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

  .app-sidebar { display: none; }

  .stat-grid,
  .feature-grid,
  .benefit-grid,
  .shot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 78px 0; }

  .mission-card { padding: 30px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* —— Workshop cadastro —— */
.page-workshop {
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(43, 154, 112, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(130, 190, 66, 0.1), transparent 50%),
    #f7faf8;
}

.ws-hero {
  padding: 2.5rem 0 1rem;
}

.ws-hero-inner {
  max-width: 720px;
}

.ws-hero h1 {
  margin: 0.4rem 0 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: var(--green-950);
  letter-spacing: -0.02em;
}

.ws-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 38rem;
}

.ws-slots {
  margin-top: 0.85rem;
  font-weight: 700;
  color: var(--green-700);
}

.ws-form-section {
  padding: 1rem 0 4rem;
}

.ws-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.75rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(6, 59, 49, 0.06);
}

.ws-form.is-success {
  border-color: rgba(43, 154, 112, 0.35);
}

.ws-form .form-fields { display: block; }
.ws-form.is-success .form-fields { display: none; }
.ws-form .form-success { display: none; }
.ws-form.is-success .form-success { display: block; }

.ws-block {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}

.ws-block legend {
  display: block;
  width: 100%;
  margin: 0 0 0.9rem;
  padding: 0 0 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-950);
  border-bottom: 1px solid var(--line);
}

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

.ws-form .field input,
.ws-form .field select {
  color: var(--text);
  background: #f8fbfa;
  border: 1px solid var(--line);
}

.ws-form .field label {
  color: var(--muted);
}

.ws-form .field input:focus,
.ws-form .field select:focus,
.ws-form .field.is-filled input,
.ws-form .field.is-filled select {
  border-color: var(--green-500);
  background: #fff;
}

.ws-form .field input:focus + label,
.ws-form .field select:focus + label,
.ws-form .field.is-filled label,
.ws-form .field input:not(:placeholder-shown) + label,
.ws-form .field select:valid + label {
  color: var(--green-700);
}

.ws-form .field-error {
  color: #b42318;
}

.ws-form .field.is-invalid input,
.ws-form .field.is-invalid select {
  border-color: #f04438;
}

.ws-check-label {
  margin: 0 0 0.55rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.ws-check-label span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.ws-checks,
.ws-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin-bottom: 0.35rem;
}

.ws-checks label,
.ws-radios label,
.ws-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.ws-checks input,
.ws-radios input,
.ws-consent-label input {
  margin-top: 0.2rem;
  accent-color: var(--green-700);
  width: 1.05rem;
  height: 1.05rem;
}

.ws-check-group .field-error,
.ws-radio-group .field-error,
.ws-consent .field-error {
  display: none;
}

.ws-check-group.is-invalid .field-error,
.ws-radio-group.is-invalid .field-error,
.ws-consent.is-invalid .field-error {
  display: block;
}

.ws-sub-preview {
  margin: 0.15rem 0 0.25rem;
  color: var(--text);
  font-size: 0.95rem;
}

.ws-sub-status {
  min-height: 1.25em;
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.ws-sub-status.is-ok { color: var(--green-700); }
.ws-sub-status.is-bad { color: #b42318; }
.ws-sub-status.is-pending { color: var(--muted); }

.ws-hint {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.ws-hint code {
  font-size: 0.84em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--soft);
  color: var(--green-800);
}

.ws-consent {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.ws-consent legend {
  border: 0;
  padding: 0;
  margin-bottom: 0.65rem;
}

.ws-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.ws-footnote {
  display: block;
  margin-top: 0.9rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.ws-form .form-message {
  color: var(--text);
}

.ws-form .form-message.is-error { color: #b42318; }
.ws-form .form-message.is-success { color: var(--green-700); }

.ws-form .form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.ws-form .form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 154, 112, 0.15);
  color: var(--green-700);
  font-size: 1.6rem;
  font-weight: 800;
}

.ws-form .form-success h3 {
  margin: 0 0 0.5rem;
  font-family: "Manrope", sans-serif;
  color: var(--green-950);
}

.ws-form .form-success p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.ws-success-fqdn {
  font-size: 1.05rem !important;
  color: var(--green-800) !important;
}

.ws-form .form-success .btn {
  width: auto;
  display: inline-flex;
  margin: 0.5rem auto 0;
}

@media (max-width: 640px) {
  .ws-form { padding: 1.15rem; }
  .ws-form .form-row { grid-template-columns: 1fr; }
}