:root {
  --ink: #123b38;
  --teal: #0d4b46;
  --deep: #073b37;
  --mint: #e5f3eb;
  --coral: #ef745f;
  --cream: #f8f3e9;
  --gold: #e3b760;
  --paper: #fffdf8;
  --muted: #6e7f79;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
button,
a {
  font: inherit;
}
button {
  cursor: pointer;
}
.nav {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
  transition: 0.3s;
}
.nav.scrolled {
  height: 68px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 4px 30px #123b3812;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 700;
}
.brand-mark {
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 48% 52%;
  display: grid;
  place-items: center;
  font-size: 19px;
  font-style: italic;
}
.nav nav {
  display: flex;
  gap: 34px;
}
.nav nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
.nav-cta,
.primary {
  border: 0;
  background: var(--coral);
  color: white;
  border-radius: 7px;
  padding: 13px 20px;
  font-weight: 600;
  box-shadow: 0 8px 25px #c94f3c30;
}
.nav-cta span,
.primary span,
.secondary span,
.text-btn span {
  margin-left: 10px;
}
.hero {
  height: min(830px, 100vh);
  min-height: 680px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 42, 38, 0.84) 0%,
      rgba(4, 42, 38, 0.53) 37%,
      rgba(4, 42, 38, 0.08) 72%
    ),
    linear-gradient(0deg, rgba(2, 31, 28, 0.38), transparent 50%);
}
.hero-content {
  position: absolute;
  left: 8vw;
  top: 50%;
  transform: translateY(-47%);
  width: min(650px, 50vw);
  z-index: 2;
}
.eyebrow,
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.eyebrow {
  color: #d9eee5;
  margin-bottom: 20px;
}
.eyebrow span {
  color: #f0bd70;
  margin-right: 8px;
}
.hero h1,
.intro h2,
.demo h2,
.profile h2,
.final-cta h2 {
  font-family: "Playfair Display";
  font-size: clamp(48px, 5.1vw, 76px);
  line-height: 1.04;
  margin: 0 0 22px;
  letter-spacing: -2px;
}
.hero h1 em,
.intro h2 em,
.demo h2 em,
.profile h2 em,
.final-cta h2 em {
  font-weight: 600;
  color: #f0bd70;
}
.hero-content > p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 590px;
  color: #eef5f1;
}
.big {
  padding: 17px 25px;
  font-size: 15px;
  margin-top: 10px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 12px;
  color: #d8e6e1;
}
.hero-trust i {
  height: 16px;
  width: 1px;
  background: #ffffff55;
}
.ai-card {
  position: absolute;
  z-index: 3;
  right: 6vw;
  bottom: 52px;
  width: 360px;
  padding: 20px;
  border: 1px solid #ffffff42;
  border-radius: 12px;
  background: #0c3e3ab8;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px #001d1a42;
}
.ai-head {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ai-head div {
  display: flex;
  flex-direction: column;
}
.ai-head small {
  opacity: 0.68;
  font-size: 11px;
  margin-top: 3px;
}
.ai-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.live {
  margin-left: auto;
  border: 1px solid #8bafa8;
  border-radius: 10px;
  font-size: 8px;
  letter-spacing: 1px;
  padding: 4px 7px;
  color: #b9ded4;
}
.ai-card > p {
  font-family: "Playfair Display";
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #f6f3eb;
}
.thinking {
  border-top: 1px solid #ffffff21;
  padding-top: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}
.thinking span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #eab363;
  animation: pulse 1.2s infinite;
}
.thinking span:nth-child(2) {
  animation-delay: 0.2s;
}
.thinking span:nth-child(3) {
  animation-delay: 0.4s;
}
.thinking b {
  margin-left: 6px;
  font-weight: 500;
  color: #cfe0dc;
}
.scroll {
  position: absolute;
  bottom: 42px;
  left: 2vw;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transform: rotate(-90deg);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll i {
  font-style: normal;
  font-size: 18px;
}
.intro {
  padding: 110px 7vw 120px;
  text-align: center;
}
.kicker {
  color: var(--coral);
  margin-bottom: 18px;
}
.intro h2 {
  font-size: clamp(39px, 4vw, 58px);
  color: var(--ink);
  margin-bottom: 16px;
}
.intro h2 em,
.profile h2 em {
  color: var(--coral);
}
.lead {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
  margin: 0 auto 65px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: auto;
}
.steps article {
  padding: 0 55px;
  position: relative;
}
.steps article + article {
  border-left: 1px solid #dde5df;
}
.step-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 23px;
}
.coral {
  background: #fae7df;
  color: var(--coral);
}
.mint {
  background: #dfeee6;
  color: #33816e;
}
.gold {
  background: #f7eccf;
  color: #b68835;
}
.steps small {
  color: #b0bcb6;
  font-size: 10px;
  letter-spacing: 2px;
}
.steps h3 {
  font-family: "Playfair Display";
  font-size: 20px;
  margin: 10px;
}
.steps p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.demo {
  background: var(--teal);
  color: white;
  padding: 110px 9vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}
.kicker.light {
  color: #e4b96d;
}
.demo h2 {
  font-size: 50px;
}
.demo h2 em {
  color: #e2b863;
}
.demo > div > p {
  color: #c6d8d4;
  line-height: 1.7;
  max-width: 490px;
}
.demo ul {
  list-style: none;
  padding: 10px 0;
}
.demo li {
  padding: 9px 0;
  font-size: 14px;
}
.demo li span {
  color: #e4b96d;
  margin-right: 12px;
}
.text-btn {
  background: transparent;
  color: white;
  border: 0;
  border-bottom: 1px solid #ffffff56;
  padding: 9px 0;
}
.score-card {
  background: #fff;
  color: var(--ink);
  padding: 27px;
  border-radius: 14px;
  box-shadow: 0 30px 70px #001d1a55;
  transform: rotate(1deg);
}
.score-top {
  display: flex;
  justify-content: space-between;
  color: #9aa8a3;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.score-top button {
  border: 0;
  background: none;
}
.destination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e8ece9;
  padding: 18px 0;
}
.destination small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.destination h3 {
  font-family: "Playfair Display";
  font-size: 28px;
  margin: 5px 0;
}
.destination p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}
.ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 5px solid #efb85f;
  display: grid;
  place-content: center;
  text-align: center;
}
.ring b {
  font-size: 25px;
  line-height: 1;
}
.ring small {
  font-size: 9px;
  color: var(--muted);
}
.match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 0;
  gap: 10px;
  font-size: 12px;
}
.match-grid span {
  color: #487067;
}
.warning {
  background: #fff3df;
  border-radius: 7px;
  padding: 12px 15px;
  font-size: 10px;
}
.warning b {
  color: #ad6f25;
}
.warning p {
  margin: 5px 0;
  line-height: 1.5;
  color: #6f6657;
}
.card-btn {
  width: 100%;
  border: 0;
  border-radius: 6px;
  margin-top: 17px;
  padding: 13px;
  background: var(--ink);
  color: white;
}
.profile {
  padding: 120px 9vw;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.profile h2 {
  font-size: 50px;
}
.profile-copy > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
}
.secondary {
  background: transparent;
  border: 1px solid #b8c6c0;
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 6px;
  margin-top: 15px;
}
.preference-cloud {
  height: 400px;
  position: relative;
}
.profile-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--ink);
  color: #fff;
  font-family: "Playfair Display";
  font-size: 55px;
  box-shadow: 0 20px 55px #123b3845;
}
.profile-orb small {
  font-family: "DM Sans";
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.preference-cloud > span {
  position: absolute;
  background: #fff;
  border: 1px solid #e2e7df;
  border-radius: 25px;
  padding: 12px 18px;
  font-size: 12px;
  box-shadow: 0 10px 30px #355b4f10;
}
.preference-cloud > span:nth-child(1) {
  top: 5%;
  left: 15%;
}
.preference-cloud > span:nth-child(2) {
  top: 16%;
  right: 5%;
}
.preference-cloud > span:nth-child(3) {
  bottom: 11%;
  right: 9%;
}
.preference-cloud > span:nth-child(4) {
  bottom: 7%;
  left: 15%;
}
.preference-cloud > span:nth-child(5) {
  top: 46%;
  left: -3%;
}
.preference-cloud > span:nth-child(6) {
  top: 55%;
  right: -1%;
}
.final-cta {
  text-align: center;
  padding: 105px 20px;
  background: #fbf8f1;
}
.final-cta > span {
  color: var(--gold);
}
.final-cta h2 {
  font-size: 52px;
  margin-top: 14px;
}
.final-cta h2 em {
  color: var(--coral);
}
.final-cta p {
  color: var(--muted);
}
footer {
  padding: 38px 6vw;
  background: #082f2c;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
}
footer p {
  font-size: 12px;
  opacity: 0.65;
}
footer > span {
  margin-left: auto;
  font-size: 10px;
  opacity: 0.5;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}
.modal.open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #062f2ccb;
  backdrop-filter: blur(8px);
}
.planner-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(720px, 100%);
  background: var(--paper);
  padding: 45px 55px;
  overflow: auto;
  animation: slide 0.35s ease;
}
.close {
  position: absolute;
  right: 24px;
  top: 18px;
  border: 0;
  background: none;
  font-size: 34px;
  color: #6b7d77;
}
.planner-head {
  display: flex;
  gap: 15px;
  margin-bottom: 28px;
}
.planner-head small {
  font-size: 9px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 2px;
}
.planner-head h2 {
  font-family: "Playfair Display";
  font-size: 31px;
  margin: 4px 0;
}
.planner-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.prompt-label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  margin: 18px 0 9px;
}
.trip-details {
  margin-top: 14px;
  border: 1px solid #d5ded8;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}
.trip-details summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.trip-details > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}
textarea,
input {
  font: inherit;
}
textarea {
  width: 100%;
  border: 1px solid #ccd7d1;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  resize: vertical;
  color: var(--ink);
  line-height: 1.5;
  outline-color: var(--coral);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 12px;
  margin-top: 15px;
}
.form-row label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.form-row input {
  width: 100%;
  border: 1px solid #d5ded8;
  border-radius: 7px;
  padding: 10px;
  margin-top: 5px;
  color: var(--ink);
}
.form-row label:last-child {
  position: relative;
}
.form-row label:last-child span {
  position: absolute;
  right: 12px;
  bottom: 10px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips input {
  display: none;
}
.chips span {
  display: block;
  border: 1px solid #ccd8d2;
  border-radius: 20px;
  padding: 8px 13px;
  font-size: 11px;
}
.chips input:checked + span {
  background: var(--mint);
  border-color: #7daf9e;
  color: #1d6859;
}
.toggles {
  display: flex;
  gap: 22px;
  margin: 20px 0;
  font-size: 12px;
}
.toggles input {
  accent-color: var(--coral);
}
.submit {
  width: 100%;
  padding: 16px;
  border-radius: 7px;
}
.loading {
  display: none;
}
.submit.busy .normal,
.submit.busy > b {
  display: none;
}
.submit.busy .loading {
  display: inline;
}
.loading i {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
  margin-left: 3px;
}
.results {
  margin-top: 5px;
}
.results-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
}
.results-head h3 {
  font-family: "Playfair Display";
  font-size: 25px;
  margin: 0;
}
.results-head button {
  border: 0;
  background: none;
  color: var(--coral);
  font-size: 12px;
}
.result-card {
  border: 1px solid #dce4df;
  border-radius: 10px;
  padding: 18px;
  margin: 10px 0;
  background: #fff;
  transition: 0.2s;
}
.result-card:first-of-type {
  border-color: #e2ad5b;
  box-shadow: 0 10px 30px #a4772c16;
}
.result-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.result-rank {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  font-size: 11px;
}
.result-title {
  flex: 1;
}
.result-title small {
  font-size: 9px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 1px;
}
.result-title h4 {
  font-family: "Playfair Display";
  font-size: 20px;
  margin: 2px 0;
}
.score {
  font-weight: 700;
  color: var(--teal);
}
.score small {
  font-size: 9px;
  color: var(--muted);
}
.result-meta {
  display: flex;
  gap: 16px;
  margin: 13px 0;
  font-size: 11px;
  color: var(--muted);
}
.result-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.result-tags span {
  font-size: 9px;
  background: var(--mint);
  border-radius: 15px;
  padding: 5px 8px;
}
.result-warning {
  font-size: 10px;
  line-height: 1.4;
  background: #fff4e4;
  padding: 9px;
  border-radius: 5px;
  margin-top: 12px;
}
.result-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
}
.result-actions b {
  font-size: 17px;
}
.result-actions button {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 5px;
  padding: 9px 12px;
  font-size: 10px;
}
@keyframes slide {
  from {
    transform: translateX(100%);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
@media (max-width: 850px) {
  .nav {
    padding: 0 20px;
  }
  .nav nav {
    display: none;
  }
  .hero-content {
    left: 7vw;
    width: 86vw;
  }
  .hero-content > p {
    font-size: 16px;
  }
  .ai-card {
    display: none;
  }
  .hero h1 {
    font-size: 52px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .steps article + article {
    border-left: 0;
  }
  .demo,
  .profile {
    grid-template-columns: 1fr;
  }
  .score-card {
    transform: none;
  }
  .preference-cloud {
    height: 350px;
  }
  .planner-panel {
    padding: 45px 22px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .form-row label:last-child {
    grid-column: 1/-1;
  }
  .hero-trust {
    flex-wrap: wrap;
  }
  .scroll {
    display: none;
  }
}
@media (max-width: 520px) {
  .hero {
    min-height: 700px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .nav-cta {
    padding: 11px 13px;
    font-size: 12px;
  }
  .intro,
  .demo,
  .profile {
    padding: 80px 24px;
  }
  .demo h2,
  .profile h2,
  .final-cta h2 {
    font-size: 40px;
  }
  .match-grid {
    grid-template-columns: 1fr;
  }
  .preference-cloud > span:nth-child(5),
  .preference-cloud > span:nth-child(6) {
    display: none;
  }
  footer {
    flex-wrap: wrap;
  }
  footer > span {
    margin-left: 0;
  }
  .result-meta {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
}

/* Emotionale Hero-Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slides .hero-image {
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 2s ease,
    transform 10s ease;
}
.hero-slides .hero-image.active {
  opacity: 1;
  transform: scale(1);
}
.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.hero-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: #ffffff66;
  transition: 0.4s;
}
.hero-dots button.active {
  width: 48px;
  background: #fff;
}
.result-actions a {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 5px;
  padding: 10px 13px;
  font-size: 10px;
  text-decoration: none;
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides .hero-image {
    transition: none;
    transform: none;
  }
  .thinking span,
  .loading i {
    animation: none;
  }
}
.best-practice {
  margin: 18px 0 24px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f3ead7, #fffaf0);
  border: 1px solid #ead4a8;
  box-shadow: 0 14px 35px #805a1712;
}
.best-practice > small {
  color: #b8782c;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.best-practice h3 {
  font-family: "Playfair Display";
  font-size: 27px;
  margin: 7px 0;
}
.best-practice > p {
  color: #526b64;
  line-height: 1.55;
}
.best-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.best-facts p {
  background: #ffffffa6;
  border-radius: 8px;
  padding: 13px;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}
.best-facts b {
  display: block;
  color: var(--coral);
  margin-bottom: 4px;
}
.best-practice h4 {
  margin: 20px 0 8px;
}
.best-practice ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tip;
}
.best-practice li {
  counter-increment: tip;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 9px;
  padding: 9px 0;
  border-bottom: 1px solid #dfcfad;
}
.best-practice li:before {
  content: counter(tip);
  grid-row: 1/3;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
}
.best-practice li span {
  font-size: 12px;
  font-weight: 700;
}
.best-practice li small {
  font-size: 10px;
  color: #907042;
  margin-top: 2px;
}
.budget-hint {
  font-size: 10px !important;
  color: var(--muted) !important;
}
.booking-leg {
  display: flex;
  gap: 15px;
  border: 1px solid #dce4df;
  border-radius: 11px;
  padding: 18px;
  margin: 12px 0;
  background: #fff;
}
.leg-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  flex: none;
}
.leg-body {
  min-width: 0;
  flex: 1;
}
.leg-body > small {
  font-size: 9px;
  color: var(--coral);
  font-weight: 700;
}
.leg-body h4 {
  font-family: "Playfair Display";
  font-size: 20px;
  margin: 4px 0;
}
.leg-period {
  font-size: 10px;
}
.leg-body > p {
  font-size: 11px;
  color: var(--muted);
}
.booking-options {
  display: grid;
  gap: 7px;
}
.booking-options a {
  display: flex;
  justify-content: space-between;
  border: 1px solid #dde5df;
  border-radius: 7px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--ink);
}
.booking-options a span {
  display: flex;
  flex-direction: column;
}
.booking-options a small {
  color: var(--muted);
}
.booking-options i {
  color: var(--coral);
}
.truth-note {
  background: #e8f3ed;
  border-radius: 8px;
  padding: 12px;
  font-size: 10px;
  margin-bottom: 18px;
}
.mail-offer {
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}
.mail-offer form {
  display: flex;
  gap: 8px;
}
.mail-offer input {
  min-width: 0;
  flex: 1;
  padding: 11px;
  border: 0;
  border-radius: 6px;
}
.mail-offer button {
  border: 0;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  padding: 11px;
}
@media (max-width: 520px) {
  .best-facts {
    grid-template-columns: 1fr;
  }
  .mail-offer form {
    flex-direction: column;
  }
}
.research-group {
  margin: 28px 0;
}
.group-title small {
  color: #d15d48;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.group-title h4 {
  font-size: 1.55rem;
  margin: 5px 0 14px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.offer-card {
  border: 1px solid #dce5e1;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 52, 47, 0.06);
}
.offer-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #687a74;
  font-size: 0.82rem;
}
.offer-top strong {
  color: #17342f;
  font-size: 1rem;
  text-align: right;
}
.offer-card h5 {
  font-size: 1.08rem;
  margin: 14px 0 8px;
}
.offer-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}
.offer-fit {
  background: #f3f7f5;
  border-radius: 9px;
  padding: 9px;
}
.offer-meta {
  font-size: 0.76rem;
  color: #687a74;
  margin: 12px 0;
}
.offer-card > a {
  display: block;
  background: #d15d48;
  color: white;
  text-align: center;
  padding: 11px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 750;
}
