:root {
  --text: #1f1b2e;
  --muted: rgba(45, 39, 60, 0.72);
  --background: #fdf2e4;
  --overlay: rgba(253, 242, 228, 0.72);
  --primary: #f29f58;
  --accent: #275b63;
  --card: rgba(255, 255, 255, 0.9);
  --border: rgba(39, 91, 99, 0.18);
  --banner: #ffe5cf;
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 22px 48px rgba(178, 135, 92, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background) center/cover no-repeat fixed;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--overlay) url("../images/background.webp") center/cover no-repeat fixed;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 242, 228, 0.56) 0%, rgba(248, 221, 194, 0.92) 100%);
  z-index: -1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--primary);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.banner {
  background: var(--banner);
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 159, 88, 0.22);
}

.banner__text {
  font-size: clamp(12px, 1.9vw, 14px);
  line-height: 1.6;
  text-align: center;
  color: rgba(45, 39, 60, 0.78);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.banner__text strong {
  color: var(--text);
  font-weight: 700;
}

header {
  padding: clamp(18px, 5vw, 32px) 0;
}

.header__inner {
  border: 1px solid rgba(39, 91, 99, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  padding: clamp(14px, 4vw, 26px) clamp(18px, 6vw, 48px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 6vw, 36px);
  box-shadow: 0 16px 32px rgba(205, 163, 126, 0.28);
}

.logo {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 24px);
}

.nav__link {
  font-size: clamp(14px, 2.8vw, 15px);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  color: rgba(31, 27, 46, 0.82);
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav__link:is(:hover, :focus-visible) {
  color: var(--accent);
}

.nav__link:is(:hover, :focus-visible)::after,
.nav__link[aria-current="page"]::after {
  background: var(--accent);
}

main {
  padding-bottom: clamp(64px, 12vw, 110px);
}

.hero {
  padding-top: clamp(20px, 6vw, 52px);
  text-align: center;
}

.hero__eyebrow {
  font-size: clamp(13px, 2.6vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero__title {
  margin-top: clamp(12px, 3vw, 20px);
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.hero__title span {
  color: var(--accent);
}

.hero__text {
  margin-top: clamp(16px, 4vw, 28px);
  font-size: clamp(15px, 3.2vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero__list {
  margin-top: clamp(20px, 6vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(14px, 4vw, 26px);
}

.hero__item {
  border: 1px solid rgba(39, 91, 99, 0.16);
  border-radius: var(--radius-md);
  padding: clamp(16px, 4vw, 26px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 30px rgba(205, 163, 126, 0.22);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero__item-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 159, 88, 0.24) 0%, rgba(39, 91, 99, 0.18) 100%);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.hero__item-text {
  font-size: clamp(14px, 2.8vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.offers {
  margin-top: clamp(48px, 10vw, 80px);
}

.offers__title {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent);
}

.deal-list {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  margin-top: clamp(22px, 5vw, 36px);
}

.deal-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(39, 91, 99, 0.16);
  padding: clamp(10px, 2.4vw, 16px);
  box-shadow: var(--shadow-soft);
}

.deal-card__highlight {
  position: absolute;
  inset: clamp(6px, 1.4vw, 14px);
  border-radius: calc(var(--radius-lg) - clamp(12px, 3vw, 20px));
  background: rgba(242, 159, 88, 0.08);
  pointer-events: none;
}

.deal-card__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(14px, 3vw, 20px);
  padding: clamp(14px, 4vw, 24px);
  border-radius: calc(var(--radius-lg) - clamp(12px, 3vw, 20px));
  background: var(--card);
  color: var(--text);
  grid-template-columns: minmax(140px, 220px) minmax(240px, 1fr) minmax(150px, 190px) minmax(150px, 190px);
  align-items: center;
}

.deal-card__logo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}

.deal-card__logo img {
  max-width: 160px;
  height: auto;
}

.deal-card__tag {
  display: inline-block;
  background: rgba(39, 91, 99, 0.12);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}

.deal-card__offer {
  display: grid;
  gap: 6px;
}

.deal-card__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 11px;
  color: var(--muted);
}

.deal-card__headline {
  font-weight: 700;
  font-size: clamp(18px, 3.4vw, 22px);
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text);
}

.deal-card__headline span {
  color: var(--accent);
}

.deal-card__accent {
  color: var(--primary);
}

.deal-card__rating {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
}

.deal-card__rating-title {
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
}

.deal-card__stars {
  display: flex;
  gap: 4px;
}

.deal-card__stars img {
  width: 18px;
  height: 18px;
}

.deal-card__score {
  font-weight: 800;
  font-size: clamp(24px, 4.6vw, 32px);
  color: var(--primary);
}

.deal-card__cta {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.deal-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 160px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fdf2e4;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-card__button:hover,
.deal-card__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(39, 91, 99, 0.28);
}

.deal-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .deal-card__inner {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .deal-card__cta {
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .deal-card__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deal-card__logo {
    align-items: center;
  }

  .deal-card__cta {
    width: 100%;
  }

  .deal-card__button {
    max-width: 100%;
  }
}

.page-hero {
  padding-top: clamp(26px, 7vw, 56px);
  padding-bottom: clamp(18px, 5vw, 32px);
  text-align: center;
}

.page-hero__breadcrumb {
  font-size: clamp(12px, 2.6vw, 14px);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-hero__title {
  margin-top: clamp(12px, 3vw, 18px);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: uppercase;
}

.page-hero__subtitle {
  margin-top: clamp(10px, 3vw, 14px);
  font-size: clamp(14px, 3vw, 16px);
  color: var(--muted);
}

.offers__cards {
  margin-top: clamp(24px, 6vw, 40px);
  display: grid;
  gap: clamp(18px, 4vw, 28px);
}

.offer-card {
  display: grid;
  gap: clamp(16px, 4vw, 28px);
  padding: clamp(18px, 5vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.offer-card__logo {
  max-width: 220px;
  justify-self: center;
}

.offer-card__content {
  display: grid;
  gap: 10px;
}

.offer-card__heading {
  font-weight: 700;
  font-size: clamp(16px, 3.6vw, 20px);
  text-transform: uppercase;
  color: var(--accent);
}

.offer-card__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: clamp(14px, 3vw, 16px);
}

.offer-card__cta {
  justify-self: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(14px, 3vw, 16px);
  text-transform: uppercase;
  color: #fdf2e4;
  background: var(--accent);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card__cta:hover,
.offer-card__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(39, 91, 99, 0.28);
}

.content-area {
  margin-top: clamp(40px, 8vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 6vw, 44px);
  border: 1px solid rgba(39, 91, 99, 0.14);
  box-shadow: 0 28px 48px rgba(205, 163, 126, 0.28);
  display: grid;
  gap: clamp(16px, 4vw, 24px);
}

.content-area p,
.content-area li {
  color: var(--muted);
  font-size: clamp(14px, 3vw, 17px);
  line-height: 1.7;
}

.content-area strong,
.content-area b {
  color: var(--text);
}

.content-area ul,
.content-area ol {
  padding-left: clamp(18px, 4vw, 28px);
  display: grid;
  gap: 8px;
}

.content-area ul {
  list-style: disc;
}

.content-area ol {
  list-style: decimal;
}

.content-area h2,
.content-area h3,
.content-area h4 {
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-area h2 {
  font-size: clamp(22px, 5vw, 30px);
}

.content-area h3 {
  font-size: clamp(18px, 4vw, 24px);
}

.content-area h4 {
  font-size: clamp(16px, 3.6vw, 20px);
}

.divider {
  border: 0;
  height: 1px;
  background: var(--border);
}

.footer {
  padding: clamp(40px, 10vw, 70px) 0;
  background: rgba(255, 248, 240, 0.92);
  border-top: 1px solid rgba(242, 159, 88, 0.22);
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 32px);
  justify-content: center;
  align-items: center;
}

.footer__logos img {
  height: clamp(28px, 4vw, 42px);
  width: auto;
}

.footer__text {
  margin-top: clamp(22px, 6vw, 34px);
  font-size: clamp(13px, 3vw, 16px);
  line-height: 1.7;
  text-align: center;
  color: var(--muted);
}

.footer__links {
  margin-top: clamp(24px, 6vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 3.2vw, 20px);
  justify-content: center;
  font-weight: 500;
  color: rgba(31, 27, 46, 0.82);
}

.footer__copyright {
  margin-top: clamp(18px, 5vw, 30px);
  text-align: center;
  font-size: clamp(12px, 2.6vw, 14px);
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: clamp(12px, 4vw, 24px);
  right: clamp(12px, 4vw, 24px);
  width: min(420px, calc(100% - 24px));
  background: rgba(255, 247, 236, 0.96);
  border: 1px solid rgba(39, 91, 99, 0.18);
  border-radius: var(--radius-md);
  padding: clamp(18px, 5vw, 26px);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  z-index: 20;
}

.cookie-banner__title {
  margin: 0;
  font-size: clamp(16px, 4vw, 20px);
  text-transform: uppercase;
  color: var(--accent);
}

.cookie-banner__text {
  margin: 0;
  font-size: clamp(13px, 3vw, 15px);
  line-height: 1.6;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner__button {
  flex: 1;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-banner__button--accept {
  background: var(--primary);
  color: #402a21;
  border-color: var(--primary);
}

.cookie-banner__button--settings {
  background: transparent;
  color: var(--accent);
  border-color: rgba(39, 91, 99, 0.32);
}

.cookie-banner__button--settings:hover,
.cookie-banner__button--settings:focus-visible {
  border-color: var(--accent);
}

.cookie-banner.is-hidden {
  display: none;
}

@media (max-width: 640px) {
  .header__inner {
    flex-direction: column;
    border-radius: 26px;
  }

  .nav {
    justify-content: center;
  }

  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-banner {
    position: fixed;
    inset: auto 12px 12px 12px;
    width: auto;
  }
}

.guidance {
  margin-top: clamp(52px, 12vw, 96px);
}

.guidance__title {
  font-size: clamp(26px, 5.4vw, 38px);
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 30px);
}

.guidance__lead {
  font-size: clamp(15px, 3.2vw, 18px);
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto clamp(18px, 4vw, 28px);
  text-align: center;
}

.guidance__list {
  max-width: 860px;
  margin: 0 auto clamp(20px, 5vw, 34px);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.guidance__list li {
  padding: 14px clamp(18px, 4vw, 28px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(39, 91, 99, 0.12);
  box-shadow: 0 12px 26px rgba(205, 163, 126, 0.2);
  font-weight: 600;
  color: rgba(31, 27, 46, 0.86);
}

.guidance p:last-of-type {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 3.2vw, 18px);
  text-align: center;
}