* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-900: #050d28;
  --navy-800: #0a1640;
  --navy-700: #0d1f52;
  --navy-card: #0b1c47;
  --blue: #2f6bff;
  --blue-light: #4f9bff;
  --green: #16a34a;
  --green-bright: #1fb14b;
  --gold: #f5c518;
  --text-muted: #9fb0d4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-900);
  color: #fff;
  line-height: 1.5;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0a1640 0%, #0b1c4d 40%, #0a1846 100%);
  overflow: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 470px;
  background: url("img/background.png") no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 40, 0) 45%, rgba(8, 18, 56, 0.85) 78%, #0a1640 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 26px 34px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 20, 60, 0.7);
  border: 1px solid rgba(120, 150, 220, 0.4);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.hero__badge .flag {
  font-size: 14px;
}

.hero__title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  max-width: 440px;
  color: #e6ecfb;
}
.hero__text strong {
  color: var(--gold);
}

/* ===== TRUST BAR ===== */
.trustbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 22px 22px 0;
  padding: 18px 16px;
  background: rgba(10, 22, 64, 0.6);
  border: 1px solid rgba(80, 110, 190, 0.45);
  border-radius: 16px;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.trustbar__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #102a66, #060f30);
  border: 1px solid rgba(90, 130, 220, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trustbar__text h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #cdd9f5;
  margin-bottom: 2px;
}
.trustbar__text p {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

.trustbar__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(90, 120, 200, 0.35);
}

/* ===== CALCULATOR ===== */
.calc {
  padding: 30px 22px 10px;
}

.calc__title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.calc__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 20px;
}

.calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc__card {
  border-radius: 18px;
  padding: 22px;
}

.calc__input-card {
  background: #fff;
  color: #0a1640;
}

.calc__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1b2a52;
  margin-bottom: 12px;
}

.calc__input-wrap {
  position: relative;
  margin-bottom: 26px;
}
.calc__input-wrap input {
  width: 100%;
  font-size: 26px;
  font-weight: 800;
  color: #0a1640;
  border: none;
  border-bottom: 2px solid #e2e8f5;
  padding: 6px 30px 8px 0;
  outline: none;
  background: transparent;
}
.calc__euro {
  position: absolute;
  right: 4px;
  top: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #6b7aa3;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: #d7ddec;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  cursor: pointer;
}

.calc__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: #8893b3;
  margin-top: 10px;
}

.calc__result-card {
  background: linear-gradient(160deg, #0c1e52, #0a1640);
  border: 1px solid rgba(70, 110, 200, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.calc__result-block {
  margin-bottom: 14px;
  z-index: 2;
}
.calc__result-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #aebbdd;
  line-height: 1.3;
  margin-bottom: 4px;
}
.calc__result-value {
  font-size: 24px;
  font-weight: 900;
  color: #2fe07a;
}

.calc__chart {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 60%;
  opacity: 0.9;
}

.calc__features {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}
.calc__feature {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
}
.calc__feature img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.calc__feature h5 {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
}
.calc__feature p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===== GUARANTEE ===== */
.guarantee {
  margin: 26px 22px 0;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(80, 110, 190, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.guarantee__badge {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}
.guarantee__text h2 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}
.guarantee__text h2 span {
  color: #2fe07a;
}
.guarantee__text p {
  font-size: 12.5px;
  color: #d3ddf3;
  margin-bottom: 10px;
}
.guarantee__highlight {
  color: #fff;
  font-weight: 600;
}
.guarantee__highlight strong {
  color: #2fe07a;
}

/* ===== URGENCY ===== */
.urgency {
  margin: 22px 22px 0;
  padding: 20px 22px;
  background: rgba(10, 22, 64, 0.55);
  border: 1px solid rgba(80, 110, 190, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.urgency__clock {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.urgency__text {
  flex: 1;
}
.urgency__text h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}
.urgency__text p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.urgency__badge {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

/* ===== FORM ===== */
.formsec {
  margin: 26px 22px 0;
  padding: 30px 24px;
  background: linear-gradient(160deg, #0c2150, #0a1640);
  border: 1px solid rgba(80, 110, 190, 0.35);
  border-radius: 20px;
  text-align: center;
}
.formsec__title {
  font-size: 26px;
  font-weight: 900;
}
.formsec__subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 6px 0 22px;
}
.formsec__row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.formsec__group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.formsec__field {
  position: relative;
  display: flex;
  align-items: center;
}
.formsec__field--error input {
  border-color: #ff4d4d !important;
}
.formsec__error {
  height: 18px;
  padding-top: 3px;
  padding-left: 2px;
  font-size: 11px;
  color: #ff4d4d;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.formsec__error.visible {
  opacity: 1;
  transform: translateY(0);
  text-align: left;
}
.formsec__ic {
  position: absolute;
  left: 14px;
  font-size: 14px;
  opacity: 0.7;
  pointer-events: none;
}
.formsec__field input,
.formsec__field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 150, 220, 0.35);
  border-radius: 10px;
  padding: 14px 14px 14px 40px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.formsec__field input::placeholder {
  color: #8a99c0;
}
.formsec__field select {
  appearance: none;
  color: #8a99c0;
  cursor: pointer;
}
.formsec__field select option {
  color: #0a1640;
}
.formsec__field input:focus,
.formsec__field select:focus {
  border-color: var(--blue-light);
}
.formsec__btn {
  width: 100%;
  margin-top: 8px;
  padding: 17px;
  background: linear-gradient(180deg, #22c55e, #15a03f);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(21, 160, 63, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.formsec__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 160, 63, 0.55);
}
.formsec__note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 22px 26px;
  text-align: center;
}
.footer__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.footer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #102a66, #060f30);
  border: 1px solid rgba(90, 130, 220, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer__item h5 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.footer__item p {
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.3;
}
.footer__disclaimer {
  margin-top: 26px;
  font-size: 9.5px;
  color: #6b7aa0;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 22px; }

  /* trust bar -> stacked rows */
  .trustbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 16px;
  }
  .trustbar__item {
    width: 100%;
    padding: 14px 0;
    gap: 12px;
  }
  .trustbar__icon {
    width: 44px;
    height: 44px;
  }
  .trustbar__text h4 { font-size: 12px; }
  .trustbar__text p { font-size: 11px; }
  .trustbar__text p br { display: none; }
  .trustbar__divider {
    width: 100%;
    height: 1px;
    align-self: stretch;
  }

  .calc__grid { grid-template-columns: 1fr; }
  .calc__features { flex-direction: column; }
  .calc__feature { justify-content: flex-start; }
  .calc__feature p br { display: none; }
  .guarantee { flex-direction: column; text-align: center; }
  .urgency { flex-direction: column; text-align: center; }
  .formsec__row { flex-direction: column; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
}
