:root {
  --brand-orange: #f19f38;
  --brand-orange-hover: #e28f25;
  --shadow: rgba(0, 0, 0, 0.35);
  --hero-bg: #0b0a08;
}

html,
body {
  height: 100%;
  background-color: #000;
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.hero {
  position: relative;
  height: 80vh;
  background-color: var(--hero-bg);
  background-image: url('./hero.jpg');
    /* radial-gradient(800px 500px at 75% 30%, rgba(241, 159, 56, 0.18), transparent 60%),
    radial-gradient(900px 700px at 15% 35%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(1200px 800px at 60% 80%, rgba(88, 59, 41, 0.45), transparent 60%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.12) 100%); */
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 75% 20%, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 9vw, 7.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 5.5rem);
}

@media (min-width: 992px) {
  .hero-row {
    align-items: flex-start !important;
  }
}

.hero-header {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 0.6rem;
  background: rgba(241, 159, 56, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}

.hero-menu {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-menu a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-menu a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-phone {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.hero-phone small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.1;
}

@media (min-width: 992px) {
  .hero-menu {
    display: inline-flex;
  }
}

.hero-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 32px -22px rgba(0, 0, 0, 0.75);
}

.hero-switch__btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-switch__btn.is-active {
  background: var(--brand-orange);
  color: #111;
}

.hero h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5.4vw, 3.2rem);
  letter-spacing: -0.01em;
}

.hero .accent {
  color: var(--brand-orange);
}

.hero .accent--xl {
  font-size: 1.12em;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  max-width: 46ch;
}

.btn-cta {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #111;
  box-shadow: 0 16px 32px -16px var(--shadow);
}

.btn-cta:hover {
  background-color: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  color: #111;
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero-features {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature i {
  color: var(--brand-orange);
}

.hero-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 0.75);
  aspect-ratio: 5 / 3;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 35%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-card img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__footer {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-price {
  line-height: 1.1;
}

.hero-price__label {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price__value {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.hero-card__go {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.hero-card__go:hover {
  background: var(--brand-orange-hover);
  color: #111;
}

@media (max-width: 767.98px) {
  .hero-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .buttons .btn {
    width: 100%;
  }
}

.ecosystem {
  background: #fff;
  padding-top: clamp(3.25rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.75rem);
}

.ecosystem-head {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.ecosystem-eyebrow {
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.ecosystem-title {
  color: #0b0b0c;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(2rem, 3.9vw, 3.1rem);
}

.eco-card {
  position: relative;
  padding: 2.25rem 1.75rem 1.9rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.25);
}

.eco-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 159, 56, 0.18);
  color: #d97d06;
  margin-bottom: 1.45rem;
  font-size: 1.3rem;
}

.eco-card__title {
  color: #0b0b0c;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.eco-card__text {
  color: rgba(17, 24, 39, 0.72);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.55;
}

.eco-card--featured {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(241, 159, 56, 0.22), transparent 55%),
    radial-gradient(760px 520px at 0% 110%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, #0f1012 0%, #23201c 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 36px 70px -52px rgba(0, 0, 0, 0.65);
}

.eco-card--featured .eco-card__title {
  color: #fff;
}

.eco-card--featured .eco-card__text {
  color: rgba(255, 255, 255, 0.72);
}

.eco-card--featured .eco-card__icon {
  background: rgba(241, 159, 56, 0.22);
  color: var(--brand-orange);
}

.eco-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(241, 159, 56, 0.15);
  color: #f0b24e;
  border: 1px solid rgba(241, 159, 56, 0.18);
  font-weight: 800;
  font-size: 0.78rem;
}

.equipment {
  background: #f3f4f6;
  padding-top: clamp(3rem, 6.5vw, 5rem);
  padding-bottom: clamp(3rem, 6.5vw, 5rem);
}

.equipment-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.equipment-title {
  color: #0b0b0c;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.12;
}

.equipment-subtitle {
  color: rgba(17, 24, 39, 0.58);
  font-weight: 700;
  font-size: 0.95rem;
}

.equipment-link {
  color: var(--brand-orange);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.equipment-link:hover {
  color: var(--brand-orange-hover);
}

.equip-card {
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.3);
}

.equip-card--featured {
  border: 2px solid rgba(241, 159, 56, 0.7);
}

.equip-media {
  position: relative;
  height: 300px;
  background: #e5e7eb;
}

.equip-media--appia1 {
    background-image: url(./nuova_simonelli_appia_ii_1_gr.jpg);
    background-size: cover;
  /* background:
    radial-gradient(120px 120px at 65% 40%, rgba(241, 159, 56, 0.35), transparent 70%),
    linear-gradient(135deg, #e8eaee 0%, #dfe3ea 100%); */
}

.equip-media--appia2 {
    background-image: url(./nuova-simonelli-appia-life-2gr-s.webp);
    background-size: cover;
  /* background:
    radial-gradient(160px 140px at 55% 45%, rgba(241, 159, 56, 0.4), transparent 70%),
    linear-gradient(135deg, #efe9e2 0%, #e6e8ee 100%); */
}

.equip-media--f11 {
    background-image: url(./drcoffee_f11_big_plus.webp);
    background-size: cover;

  /* background:
    radial-gradient(140px 120px at 70% 35%, rgba(17, 24, 39, 0.12), transparent 70%),
    linear-gradient(135deg, #eceff4 0%, #e7eaef 100%); */
}

.equip-media--grinder {
    background-image: url(./fiorenzato_F64_E.webp);
    background-size: cover;
  /* background:
    radial-gradient(140px 120px at 60% 45%, rgba(241, 159, 56, 0.26), transparent 70%),
    linear-gradient(135deg, #f0f1f4 0%, #e7e9ee 100%); */
}

.equip-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 0.55rem;
  border-radius: 0.45rem;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: #111;
}

.equip-badge--dark {
  background: #0b0b0c;
  color: #fff;
}

.equip-body {
  padding: 1.1rem 1.1rem 1rem;
}

.equip-name {
  font-weight: 900;
  color: #0b0b0c;
  font-size: 1.06rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.equip-desc {
  color: rgba(17, 24, 39, 0.6);
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.45;
  min-height: 2.6em;
}

.equip-bottom {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.equip-price__label {
  color: rgba(17, 24, 39, 0.45);
  font-weight: 800;
  font-size: 0.78rem;
}

.equip-price__value {
  color: var(--brand-orange);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.1;
}

.equip-go {
  width: 38px;
  height: 38px;
  border-radius: 0.75rem;
  background: #0b0b0c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.equip-go:hover {
  color: #fff;
  background: #111214;
}

.equip-note {
  margin-top: 1.5rem;
  border-radius: 0.9rem;
  background: rgba(241, 159, 56, 0.06);
  border: 1px solid rgba(241, 159, 56, 0.25);
  padding: 1rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.equip-note__icon {
  width: 34px;
  height: 34px;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 159, 56, 0.15);
  color: var(--brand-orange);
  flex: 0 0 auto;
}

.equip-note__title {
  font-weight: 900;
  color: #0b0b0c;
  margin-bottom: 0.1rem;
}

.equip-note__desc {
  color: rgba(17, 24, 39, 0.7);
  font-weight: 650;
}

.equip-note__accent {
  color: var(--brand-orange);
  font-weight: 900;
}

@media (max-width: 576px) {
  .equipment-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.calc {
  background:
    radial-gradient(900px 600px at 25% 20%, rgba(241, 159, 56, 0.16), transparent 60%),
    radial-gradient(1100px 800px at 90% 80%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(135deg, #0b0b0c 0%, #1a1612 60%, #0b0b0c 100%);
  padding-top: clamp(3.25rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.5rem);
}

.calc-row {
  align-items: center;
}

.calc-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.calc-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 650;
  max-width: 56ch;
}

.calc-panel {
  padding-top: 0.5rem;
}

.calc-panel__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.calc-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 0.9rem;
}

.calc-value {
  color: var(--brand-orange);
  font-weight: 900;
  font-size: 0.9rem;
}

.calc .form-range {
  accent-color: var(--brand-orange);
}

.calc-panel__bottom {
  margin-top: 0.85rem;
}

.calc-economy {
  color: var(--brand-orange);
  font-size: 20px;
  font-weight: 800;
}

.calc-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  box-shadow: 0 40px 70px -52px rgba(0, 0, 0, 0.75);
  padding: 1.35rem 1.35rem 1.25rem;
}

.calc-card__title {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-align: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}

.calc-compare {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.calc-compare__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-compare__row--featured {
  background:
    radial-gradient(540px 160px at 0% 0%, rgba(241, 159, 56, 0.22), transparent 60%),
    rgba(241, 159, 56, 0.12);
  border-color: rgba(241, 159, 56, 0.18);
}

.calc-compare__label {
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
}

.calc-compare__label--danger {
  color: rgba(248, 113, 113, 0.92);
}

.calc-compare__desc {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 650;
  font-size: 0.85rem;
}

.calc-compare__value {
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.calc-compare__hint {
  margin-top: 0.15rem;
  color: #4ade80;
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
}

.calc-compare__value--muted {
  color: rgba(255, 255, 255, 0.6);
}

.calc-strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.calc-big {
  font-size: 1.6rem;
  font-weight: 900;
}

.calc-cta {
  border-radius: 0.95rem;
  font-weight: 900;
}

.packages {
  background: #fff;
  padding-top: clamp(3.25rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.5rem);
}

.packages-head {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.packages-title {
  color: #0b0b0c;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
}

.packages-subtitle {
  color: rgba(17, 24, 39, 0.6);
  font-weight: 650;
}

.pkg-card {
  position: relative;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: 0 22px 52px -40px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.pkg-card--featured {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(241, 159, 56, 0.22), transparent 55%),
    radial-gradient(760px 520px at 0% 110%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, #0f1012 0%, #23201c 100%);
  border-color: rgba(241, 159, 56, 0.45);
  box-shadow: 0 44px 80px -60px rgba(0, 0, 0, 0.75);
  transform: translateY(-10px);
}

.pkg-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-orange);
  color: #111;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.pkg-name {
  color: #0b0b0c;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.pkg-card--featured .pkg-name {
  color: #fff;
}

.pkg-desc {
  color: rgba(17, 24, 39, 0.6);
  font-weight: 650;
  margin-bottom: 1.1rem;
}

.pkg-card--featured .pkg-desc {
  color: rgba(255, 255, 255, 0.6);
}

.pkg-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pkg-price__value {
  font-weight: 900;
  font-size: 1.55rem;
  color: #0b0b0c;
}

.pkg-price__unit {
  font-weight: 800;
  color: rgba(17, 24, 39, 0.55);
  font-size: 0.9rem;
}

.pkg-card--featured .pkg-price__value {
  color: #fff;
}

.pkg-card--featured .pkg-price__unit {
  color: rgba(255, 255, 255, 0.55);
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.55rem;
}

.pkg-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: rgba(17, 24, 39, 0.72);
  font-weight: 650;
  font-size: 0.92rem;
}

.pkg-list i {
  color: var(--brand-orange);
  margin-top: 0.15rem;
}

.pkg-card--featured .pkg-list li {
  color: rgba(255, 255, 255, 0.72);
}

.pkg-card--featured .pkg-list i {
  color: var(--brand-orange);
}

.pkg-cta {
  margin-top: auto;
  border-radius: 0.85rem;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .pkg-card--featured {
    transform: none;
  }
}

.metrics {
  background: #fff;
  padding-top: clamp(3.25rem, 7vw, 5.25rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.75rem);
}

.metrics-title {
  color: #0b0b0c;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  margin-bottom: clamp(1.5rem, 3.8vw, 2.75rem);
}

.metric {
  text-align: center;
}

.metric-value {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: #0b0b0c;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-value--accent {
  color: var(--brand-orange);
}

.metric-label {
  color: rgba(17, 24, 39, 0.62);
  font-weight: 700;
  font-size: 0.95rem;
}

.metrics-divider {
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  margin: clamp(2.25rem, 4.5vw, 3.25rem) 0 clamp(1.8rem, 3.4vw, 2.4rem);
}

.metrics-cities {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(17, 24, 39, 0.35);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.metrics-city {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(17, 24, 39, 0.35);
}

.metrics-city i {
  color: rgba(17, 24, 39, 0.28);
}

.metrics-sep {
  color: rgba(17, 24, 39, 0.2);
}

.kp {
  background: #0b0a08;
  padding-top: clamp(3.25rem, 7vw, 5.25rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.25rem);
}

.kp-card {
  border-radius: 1.35rem;
  padding: clamp(1.35rem, 3.8vw, 2.15rem);
  background:
    radial-gradient(700px 420px at 18% 25%, rgba(241, 159, 56, 0.16), transparent 62%),
    radial-gradient(800px 520px at 85% 30%, rgba(255, 255, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px -55px rgba(0, 0, 0, 0.75);
}

.kp-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  line-height: 1.08;
  margin-bottom: 0.9rem;
}

.kp-text {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  max-width: 52ch;
}

.kp-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 0.9rem;
}

.kp-meta i {
  color: var(--brand-orange);
}

.kp-fields {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.kp-control {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 0.75rem;
  padding: 0.75rem 0.95rem;
  font-weight: 650;
}

.kp-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.kp-control:focus {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(241, 159, 56, 0.7);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 0.25rem rgba(241, 159, 56, 0.15);
}

select.kp-control {
  padding-right: 2.25rem;
}

.kp-submit {
  border-radius: 0.85rem;
  font-weight: 900;
  padding: 0.9rem 1rem;
}

.kp-consent {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 650;
  font-size: 0.78rem;
  text-align: center;
}

.kp-consent a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.kp-consent a:hover {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  background: #070707;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 650;
  font-size: 0.82rem;
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
}

.site-footer__links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

