:root {
  --blue-header: #003d67;
  --page-bg: #ececec;
  --card-bg: #ffffff;
  --ink: #111111;
  --muted: #5b5b5b;
  --line: #d7d7d7;
  --red: #ef4029;
  --yellow: #f5cf1b;
  --green: #8fc71d;
}

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/static/fonts/gteestiprodisplay_light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/static/fonts/gteestiprodisplay_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/static/fonts/gteestiprodisplay_medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/static/fonts/gteestiprodisplay_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/static/fonts/gteestiprodisplay_ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "GT Eesti Pro Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--page-bg);
  overflow-x: hidden;
}

.cta {
  display: block;
  width: 100%;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--blue-header);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta:hover {
  background: #004d82;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta:active {
  transform: translateY(0);
}

.cta:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.brand-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 30vw, 420px);
  background: #002b49; /* Deep Ferrere Blue fallback */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-bg-image,
.brand-bg-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 25%;
  z-index: 0;
  pointer-events: none;
}

/* Radiant Overlay to ensure text readability */
.brand-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(0, 43, 73, 0.85) 0%, 
    rgba(0, 43, 73, 0.4) 50%, 
    rgba(0, 43, 73, 0) 100%
  );
  z-index: 1;
}

.brand-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(112px, 10vw, 138px) clamp(16px, 5vw, 60px) clamp(76px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .brand-header {
    min-height: auto;
  }

  .brand-header-content {
    padding: 102px 20px 74px;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
  }

  .brand-bg-image,
  .brand-bg-image img {
    object-position: 76% 28%;
  }
}

.brand-logo-container {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: clamp(44px, 6vw, 66px);
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-title-container {
  max-width: 800px;
  min-width: 0;
}

.brand-title-container h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: none;
}

.brand-title-container .title-lead {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.brand-title-container .title-focus {
  font-weight: 800;
  color: #ffffff;
}

.brand-accent-line { 
  display: block; 
  width: min(500px, 42vw); 
  height: clamp(6px, 1vw, 10px); 
  margin-top: 20px; 
  background: linear-gradient(90deg, #f3b232 0%, #f3b232 55%, rgba(26,169,225,0) 100%); 
  border-radius: 99px; 
}

@media (max-width: 768px) {
  .brand-accent-line {
    margin: 14px 0 0;
    width: min(260px, 60vw);
  }
}

.brand-signal {
  position: absolute;
  right: 5vw;
  bottom: -40px; /* Overlap with the main card slightly */
  width: 100px;
  z-index: 10;
}

.brand-signal-body {
  border-radius: 14px;
  background: #f8d31a;
  border: 2px solid #ccac00;
  padding: 12px;
  display: grid;
  gap: 9px;
  margin-top: auto;   /* empuja el elemento hacia abajo */
  align-self: flex-start; /* o center / flex-end según quieras */
}

.brand-signal-body span {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid #0000001f;
  box-shadow: inset 0 0 0 4px rgb(255 255 255 / 0.16);
}

.red { background: var(--red); }
.yellow { background: var(--yellow); }
.green { background: var(--green); }

.app-shell {
  position: relative;
  z-index: 3;
  max-width: 1000px; /* Tighter container for form readability */
  margin: -60px auto 60px;
  padding: 0 clamp(14px, 4vw, 20px);
}

.results-shell {
  position: relative;
  z-index: 3;
  max-width: 1460px;
  margin: -26px auto 44px;
  padding: 0 16px;
}

.results-page-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.06);
  padding: 20px;
}

.phase-result-card {
  padding: 24px 22px 20px;
}

.phase-result-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1.08;
  font-weight: 700;
}

.result-summary-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
}

.result-summary-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5d5d5d;
}

.result-summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.result-summary-light {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #0000001f;
}

.result-summary-note p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
  color: #1f1f1f;
}

.result-summary-note.tone-green {
  background: linear-gradient(135deg, #f3fbe3 0%, #ffffff 100%);
  border-color: #b8d985;
}

.result-summary-note.tone-yellow {
  background: linear-gradient(135deg, #fff7d4 0%, #ffffff 100%);
  border-color: #e4ca67;
}

.result-summary-note.tone-red {
  background: linear-gradient(135deg, #ffe1db 0%, #ffffff 100%);
  border-color: #e5a195;
}

.results-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.results-head-row h2 {
  margin: 0;
  font-weight: 700;
}

.results-meta {
  margin: 8px 0 14px;
  color: var(--muted);
}

.back-link {
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.phase-result-card .back-link {
  display: flex;
  width: fit-content;
  margin-top: 33px;
  margin-left: auto;
}

.totals-summary {
  margin: 0 0 18px;
  color: #232323;
}

.summary-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f6f8 100%);
  border: 1px solid #d8d8d8;
  box-shadow: 0 14px 26px rgb(0 0 0 / 0.06);
}

.summary-badge-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
}

.summary-light-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.summary-light-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.summary-light {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #0000001f;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.65);
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.result-block-card {
  border: 1px solid #d3d3d3;
  border-radius: 16px;
  background: #ffffff;
  padding: 13px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-block-dot {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  border: 1.5px solid #0000001f;
}

.result-block-copy {
  font-size: 0.98rem;
  line-height: 1.4;
  color: #1f1f1f;
}

.result-block-copy strong {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 300;
}

.phase-result-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px solid #dddddd;
}

.final-recommendation {
  margin: 0;
  padding: 20px 22px;
  border-radius: 18px;
  color: #ffffff;
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow: 0 20px 36px rgb(0 0 0 / 0.14);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.25;
}

.final-recommendation.tone-green {
  background:
    radial-gradient(circle at top right, rgb(255 255 255 / 0.14), transparent 26%),
    linear-gradient(135deg, #4e7f0d 0%, #8fc71d 56%, #6ba114 100%);
  border-color: rgb(61 99 6 / 0.34);
  box-shadow: 0 16px 34px rgb(95 140 19 / 0.26);
}

.final-recommendation.tone-yellow {
  background:
    radial-gradient(circle at top right, rgb(255 255 255 / 0.18), transparent 28%),
    linear-gradient(135deg, #d4a600 0%, #f5cf1b 54%, #dcb72c 100%);
  color: #171717;
  border-color: rgb(152 122 5 / 0.28);
  box-shadow: 0 16px 34px rgb(184 147 13 / 0.22);
}

.final-recommendation.tone-red {
  background:
    radial-gradient(circle at top right, rgb(255 255 255 / 0.12), transparent 26%),
    linear-gradient(135deg, #a82014 0%, #ef4029 56%, #c93021 100%);
  border-color: rgb(119 20 12 / 0.3);
  box-shadow: 0 16px 34px rgb(181 44 28 / 0.24);
}

.recommendation-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.72);
  font-weight: 700;
}

.final-recommendation.tone-yellow .recommendation-kicker {
  color: rgb(17 17 17 / 0.7);
}

.recommendation-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.recommendation-light {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid #0000001f;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.08);
}

.recommendation-main strong {
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.28;
  color: #ffffff;
  font-weight: 700;
}

.final-recommendation.tone-yellow .recommendation-main strong {
  color: #111111;
}

.main-card,
.block-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.06);
}

.main-card {
  padding: clamp(24px, 4vw, 48px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-card h2 {
  margin: 0 0 24px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--blue-header);
}

.company-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

label {
  font-weight: 700;
  display: grid;
  gap: 7px;
}

input {
  height: 48px;
  border-radius: 8px;
  border: 1.5px solid #E5E7EB;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #F9FAFB;
}

input:focus {
  outline: none;
  border-color: var(--blue-header);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 61, 103, 0.1);
}

.legend {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fafafa;
}

.legend p {
  margin: 0 0 8px;
  font-weight: 700;
}

.legend-lights {
  display: flex;
  gap: 10px;
}

.progress {
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.question-groups {
  display: grid;
  gap: 14px;
}

.block-card {
  padding: 14px;
}

.block-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  background: #ffffff;
  transition: background 0.2s ease;
}

.question-row:last-child {
  border-bottom: none;
}

.question-row:hover {
  background: #F9FAFB;
}

.question-row p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.5;
  max-width: 65%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.lights {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background: #f3f3f3;
  flex-shrink: 0;
  touch-action: manipulation;
}

.light {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.05);
  padding: 0;
  opacity: 0.15;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.light:hover {
  opacity: 0.5;
  transform: scale(1.1);
}

.light.selected {
  opacity: 1;
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px currentColor, 0 4px 6px rgba(0, 0, 0, 0.1);
}

.light.red { color: #ef4029; background-color: #ef4029; }
.light.yellow { color: #f5cf1b; background-color: #f5cf1b; }
.light.green { color: #8fc71d; background-color: #8fc71d; }

.light:hover,
.light:focus-visible {
  opacity: 0.78;
  transform: translateY(-1px);
}

.light.selected {
  opacity: 1;
  box-shadow: 0 0 0 2px #000000;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 100%);
  margin: 18px auto 2px;
  border: 0;
  border-radius: 12px;
  background: #131313;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta:hover:not(:disabled) {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cta:active:not(:disabled) {
  transform: translateY(0);
}

.cta:disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.8;
}

.cta.loading {
  color: transparent;
}

.cta.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.g-recaptcha {
  margin-top: 30px;
  margin-bottom: 15px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.45);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 20;
}

.modal.hidden {
  display: none;
}

.modal-content {
  width: min(1440px, calc(100vw - 24px));
  max-height: 92vh;
  overflow: auto;
  border-radius: 14px;
  background: #f8f8f8;
  border: 1px solid #c8c8c8;
  box-shadow: 0 14px 32px rgb(0 0 0 / 0.24);
  padding: 20px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #b0b0b0;
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 18px;
  align-items: start;
}

.result-left,
.result-right {
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  padding: 14px;
}

.result-left h3,
.result-right h3 {
  margin: 0 0 12px;
}

.totals {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.total-item {
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fafafa;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
}

.total-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #4d4d4d;
}

.total-item strong {
  display: block;
  font-size: 1.1rem;
}

.blocks-mini {
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #fafafa;
  padding: 8px;
  margin-bottom: 10px;
  display: grid;
  gap: 4px;
}

.block-mini-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  line-height: 1.2;
  border-bottom: 1px solid #ececec;
  padding-bottom: 4px;
}

.block-mini-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.block-mini-name {
  color: #333;
  text-transform: uppercase;
}

.block-mini-counts {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.block-mini-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #555;
}

.block-mini-counts strong {
  font-size: 0.74rem;
  font-weight: 700;
  min-width: 12px;
}

.interpretation-list {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.interpretation-item {
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px;
  color: #222;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.28;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.interpretation-item p {
  margin: 0;
}

.explain-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #4f4f4f;
  margin-top: 4px;
}

.explain-visual {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.explain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(56px, 1fr));
  gap: 8px;
  width: max-content;
}

.signal-cell {
  border-radius: 10px;
  border: 1px solid #83766b;
  background: linear-gradient(180deg, #f4f4f4 0%, #c3c3c3 65%, #2f2f2f 100%);
  display: grid;
  place-items: center;
  padding: 7px;
}

.signal-cell > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #0000001f;
}

@media (max-width: 980px) {
  .modal-layout {
    grid-template-columns: 1fr;
  }

  .blocks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explain-visual {
    grid-template-columns: 1fr;
  }

  .question-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .question-row p {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .brand-header {
    min-height: auto;
  }

  .brand-signal {
    right: 15px;
    bottom: 14px;
    width: 75px;
  }

  .brand-header-content {
    padding: 86px 16px 66px;
  }

  .brand-logo {
    height: clamp(36px, 10vw, 50px);
  }

  .brand-bg-image,
  .brand-bg-image img {
    object-position: 82% 26%;
  }

  .brand-title-container h1 {
    font-size: clamp(1.5rem, 7.8vw, 2.4rem);
    line-height: 1.04;
  }

  .app-shell {
    margin: -34px auto 40px;
    padding: 0 12px;
  }

  .main-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .main-card h2 {
    margin-bottom: 18px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  input {
    height: 52px;
    font-size: 16px;
  }

  .legend {
    padding: 12px;
  }

  .legend-lights {
    gap: 12px;
  }

  .question-row {
    padding: 14px;
    gap: 12px;
  }

  .question-row p {
    font-size: 0.98rem;
  }

  .lights {
    width: 100%;
    justify-content: space-between;
    padding: 6px;
  }

  .light {
    width: 44px;
    height: 44px;
  }

  .totals {
    grid-template-columns: 1fr;
  }

  .results-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .blocks-grid {
    grid-template-columns: 1fr;
  }

  .explain-grid {
    grid-template-columns: repeat(5, minmax(46px, 1fr));
  }

  .brand-subtitle {
    font-size: clamp(1.02rem, 5.95vw, 1.62rem);
  }

  .brand-subtitle-line {
    width: min(68vw, 340px);
    height: 6px;
    margin-left: clamp(88px, 18vw, 136px);
  }

}

/* Google reCAPTCHA Badge Responsive Fix */
.grecaptcha-badge { visibility: visible !important; transform: scale(0.85); transform-origin: bottom right; transition: all 0.3s ease; }
@media (max-width: 768px) { .grecaptcha-badge { bottom: 80px !important; transform: scale(0.75); } }
