/* =========================================================
   WAR Group — Components (Glassmorphism & HUD)
   ========================================================= */

/* --- Typography Helpers --- */
.text-glow {
  text-shadow: 0 0 20px rgba(0, 150, 138, 0.4);
}

.text-teal { color: var(--teal-light); }
.text-silver { color: var(--silver); }
.text-white { color: var(--white); }

/* --- Cover Section --- */
.cover-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px 0 24px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 15px rgba(0, 150, 138, 0.1);
}

.brand-logo {
  max-width: 180px;
  height: auto;
  transition: all var(--transition-smooth);
}
.brand-logo:hover {
  filter: drop-shadow(0 0 10px rgba(0, 150, 138, 0.5));
}

.contact-right {
  text-align: right;
}
.contact-right__label {
  display: block;
  font-size: 11px;
  color: var(--teal-light);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.contact-right__value {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

/* --- Hero Background Image (HTML fallback) --- */
.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Fica abaixo do section__content (z-index: 2) */
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero__bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroBgMotion 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroBgMotion {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* Overlay escuro esverdeado por cima da foto */
.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(2, 22, 22, 0.60) 0%,
    rgba(0, 38, 35, 0.65) 50%,
    rgba(2, 18, 18, 0.70) 100%
  );
  pointer-events: none;
}

.hero {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 10vh;
}

.hero__eyebrow {
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 4px;
  margin-bottom: 16px;
  display: inline-block;
}
.hero__eyebrow::before { content: "<< "; animation: blink 2s infinite; }
.hero__eyebrow::after { content: " >>"; animation: blink 2s infinite reverse; }

.hero__bar {
  width: 60px;
  height: 4px;
  background: var(--gradient-teal);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.hero__bar::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmer 2s infinite;
}

.hero__title {
  font-family: 'Frontage', sans-serif;
  font-size: clamp(24px, 5vw, 48px);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 30px rgba(0, 150, 138, 0.3);
  margin: 0;
  margin-left: -0.07em; /* Compensação de kerning/side-bearing da fonte para alinhamento perfeito à esquerda */
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-strip__item {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--hud-glow);
  transition: all var(--transition-smooth);
}
.contact-strip__item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 150, 138, 0.6);
  box-shadow: 0 5px 20px rgba(0, 150, 138, 0.3);
}

.contact-strip__label {
  display: block;
  font-size: 11px;
  color: var(--silver);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.contact-strip__value {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

/* --- Page Headers --- */
.page-header {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--teal-light);
  position: relative;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-light);
  transition: width 1s ease;
}
.reveal--visible .page-header::after {
  width: 100px;
}

.page-header__title {
  font-family: 'Frontage', sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  color: var(--white);
  margin: 0 0 8px 0;
  text-shadow: 0 0 15px rgba(0, 150, 138, 0.3);
}
.page-header__subtitle {
  display: block;
  font-size: 14px;
  color: var(--silver);
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

/* --- Intro Text --- */
.intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 800px;
}

/* --- Metric Cards --- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.metric-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 24px;
  border-top: 3px solid var(--teal-light);
  box-shadow: var(--hud-glow);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 150, 138, 0.5);
  box-shadow: 0 8px 25px rgba(0, 150, 138, 0.25);
}
.metric-card__label {
  display: block;
  font-size: 12px;
  color: var(--silver);
  margin-top: 8px;
  letter-spacing: 1px;
}
.metric-card__value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* --- Scenario Band --- */
.scenario-band {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--teal-light);
  padding: 20px 24px;
  margin-bottom: 32px;
  border-radius: 4px;
}
.scenario-band__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.scenario-band__subtitle {
  font-size: 14px;
  color: var(--silver);
}

/* --- Data Tables --- */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--hud-glow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.data-table th, .data-table td {
  padding: 16px 24px;
}
.data-table th {
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 1px;
  background: rgba(0, 22, 22, 0.4);
  border-bottom: 2px solid;
  border-image: var(--gradient-teal) 1;
}
.data-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-smooth);
}
.data-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.data-table tr:hover {
  background: rgba(0, 150, 138, 0.1);
  border-left: 2px solid var(--teal-light);
}
.data-table td {
  font-size: 15px;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.data-table td.highlight {
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 150, 138, 0.5);
}

/* --- Intel Callout --- */
.intel-callout {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--teal-light);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 150, 138, 0.1), var(--hud-glow);
}
.intel-callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 150, 138, 0.03) 10px, rgba(0, 150, 138, 0.03) 20px);
  pointer-events: none;
}
.intel-callout__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.intel-callout__icon {
  width: 24px; height: 24px;
  fill: var(--teal-light);
  animation: pulse 2s infinite;
}
.intel-callout__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 2px;
}
.intel-callout__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.desc-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
  margin-top: -8px;
  margin-bottom: 28px;
}

.section-subtitle {
  font-family: 'Frontage', sans-serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.source-note,
.comparison-note {
  font-size: 13px;
  color: var(--silver);
  margin-top: -16px;
  margin-bottom: 28px;
  font-style: italic;
  display: block;
}

/* --- Insight Cards --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.insights-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}
.insight-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-smooth);
}
.insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 150, 138, 0.5);
  box-shadow: var(--hud-glow);
}
.insight-card__value {
  display: block;
  font-size: 27px;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(0, 150, 138, 0.4);
  white-space: nowrap;
}
.insight-card__label {
  font-size: 11px;
  color: var(--silver);
}
.insight-card__desc {
  display: block;
  font-size: 9px;
  color: var(--silver);
  margin-top: 4px;
}

/* --- Advantage Cards (Cenário 3) --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.advantage-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--teal-light);
  border-radius: 8px;
  padding: 24px;
  transition: all var(--transition-smooth);
}
.advantage-card:hover {
  transform: translateX(5px);
  background: rgba(0, 150, 138, 0.05);
}
.advantage-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.advantage-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--silver);
}

/* --- Highlight Box --- */
.highlight-box {
  background: rgba(0, 22, 22, 0.6);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--teal-light);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
  animation: glowPulse 4s infinite;
}
.highlight-box__title {
  font-size: 14px;
  color: var(--teal-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.highlight-box__value {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* --- Strategy Cards (Cenário 4) --- */
.strategy-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.strategy-card {
  display: flex;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.strategy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hud-glow);
}
.strategy-card__num {
  background: var(--gradient-teal);
  color: var(--white);
  font-family: 'Frontage', sans-serif;
  font-size: 24px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strategy-card__content {
  padding: 24px;
}
.strategy-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.strategy-card__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--silver);
}

/* --- Conclusion Card --- */
.conclusion-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-top: 4px solid var(--teal-light);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}
.conclusion-card__text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 500;
}

/* --- Simulator Panel --- */
.simulator-panel {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--teal-light);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 20px rgba(0, 150, 138, 0.1), var(--hud-glow);
}

.simulator-panel__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.simulator-panel__bracket {
  color: var(--teal-light);
  font-size: 24px;
  font-weight: 300;
}
.simulator-panel__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.simulator-panel__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

/* Custom Range Slider */
.simulator-slider {
  -webkit-appearance: none;
  width: 100%;
  max-width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  position: relative;
}
.simulator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 0 15px var(--teal-light);
  transition: transform 0.1s;
}
.simulator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.simulator-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 0 15px var(--teal-light);
  border: none;
}

.simulator-panel__value {
  font-family: 'Frontage', sans-serif;
  font-size: 48px;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 150, 138, 0.5);
}

.simulator-panel__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}
.simulator-panel__info-item {
  text-align: center;
}
.simulator-panel__info-label {
  display: block;
  font-size: 11px;
  color: var(--silver);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.simulator-panel__info-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-light);
}

/* --- Simulator Results Sections --- */
.simulator-section {
  margin-bottom: 32px;
}
.simulator-section__title {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.simulator-section__title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--teal-light);
  box-shadow: 0 0 8px var(--teal-light);
}

/* --- Section Footer --- */
.section-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -1px 15px rgba(0, 150, 138, 0.05);
}
.footer-logo {
  height: 24px;
  opacity: 0.5;
}
.section-footer__right {
  text-align: right;
}
.section-footer__desc {
  display: block;
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-footer__page {
  font-family: 'Frontage', sans-serif;
  font-size: 24px;
  color: var(--teal-light);
}

/* --- Control Panel (PDF/Reset/Sound) --- */
.control-panel {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 12px;
  z-index: 100;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--hud-glow);
}
.control-panel__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.control-panel__btn:hover {
  background: var(--gradient-teal);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 150, 138, 0.4);
}
.control-panel__icon {
  width: 16px;
  height: 16px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .metrics-grid, .insights-grid, .insights-grid--3cols, .advantages-grid, .simulator-panel__info {
    grid-template-columns: 1fr;
  }
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .hero {
    margin-top: auto;
    margin-bottom: 24px;
    justify-content: flex-end;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__subtitle {
    font-size: 14.4px;
    margin-top: 16px;
  }
  .control-panel {
    bottom: 80px; /* Above mobile nav */
    right: 16px;
  }
  .simulator-panel__value {
    font-size: 32px;
  }
}

/* --- Manifesto & Quem Somos --- */
.manifesto-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--teal-light);
  border-radius: 8px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--hud-glow);
}
.manifesto-card__content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 24px;
}
.manifesto-cta {
  font-family: 'Frontage', sans-serif;
  font-size: 24px;
  color: var(--teal-light);
  margin-top: 40px;
  line-height: 1.4;
  text-shadow: 0 0 15px rgba(0, 150, 138, 0.4);
}

/* --- Placeholders --- */
.placeholder-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(0, 150, 138, 0.5);
  border-radius: 8px;
  padding: 60px;
  text-align: center;
  animation: pulse 4s infinite;
}
.placeholder-text {
  font-family: var(--font-mono, monospace);
  font-size: 14px;
  color: rgba(166, 169, 170, 0.7);
  letter-spacing: 2px;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver);
  margin-bottom: 24px;
}

.contact-strip--vertical {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
.contact-strip--vertical .contact-strip__item {
  padding: 16px;
}

.social-links {
  margin-top: 40px;
}
.social-links__label {
  display: block;
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.social-links__icons {
  display: flex;
  gap: 16px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--silver);
  transition: all var(--transition-smooth);
}
.social-icon svg {
  width: 24px;
  height: 24px;
}
.social-icon:hover {
  background: rgba(0, 150, 138, 0.1);
  color: var(--teal-light);
  border-color: var(--teal-light);
  box-shadow: 0 0 15px rgba(0, 150, 138, 0.4);
  transform: translateY(-3px);
}

/* --- HUD Form --- */
.hud-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: inset 0 0 20px rgba(0, 150, 138, 0.05), var(--hud-glow);
}

.hud-form__group {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}

.hud-form__input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(166, 169, 170, 0.3);
  border-radius: 4px;
  padding: 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all var(--transition-smooth);
  outline: none;
}
.hud-form__input:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 10px rgba(0, 150, 138, 0.3);
  background: rgba(0, 150, 138, 0.05);
}

.hud-form__label {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 1px;
  margin-bottom: 8px;
  transition: color var(--transition-smooth);
}

.hud-form__input:focus + .hud-form__label,
.hud-form__input:not(:placeholder-shown) + .hud-form__label {
  color: var(--teal-light);
}

.hud-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.hud-form__submit {
  width: 100%;
  padding: 16px;
  font-family: 'Frontage', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Frontage', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 150, 138, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 0 25px rgba(0, 150, 138, 0.6);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.btn--secondary:hover {
  background: rgba(0, 150, 138, 0.1);
  box-shadow: 0 0 15px rgba(0, 150, 138, 0.3);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver);
  max-width: 600px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .manifesto-card {
    padding: 24px;
  }
}

/* --- Simulator Inputs --- */
.simulator-panel__controls-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 24px;
}
.sim-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sim-input-label {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: var(--teal-light);
  letter-spacing: 1px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sim-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.sim-currency {
  position: absolute;
  left: 12px;
  color: var(--silver);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  pointer-events: none;
}
.sim-input {
  width: 100%;
  height: 58px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Frontage', sans-serif;
  font-size: 18px;
  padding: 0 12px 0 34px;
  outline: none;
  transition: all var(--transition-smooth);
}

.sim-input:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 15px rgba(0, 150, 138, 0.3);
  background: rgba(0, 150, 138, 0.05);
}
.sim-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300968A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  cursor: pointer;
  padding-left: 10px;
  padding-right: 28px;
  font-size: 14px;
}
.sim-select option {
  background: var(--bg);
  color: var(--white);
}

@media (max-width: 768px) {
  .simulator-panel__controls-grid {
    grid-template-columns: 1fr;
  }
}
