/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f1b22;
  background-color: #f4f8fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

:root {
  --primary: #9fc9d4;
  --primary-dark: #2b3a42;
  --accent: #f5b54c;
  --bg-soft: #e5f1f5;
  --bg-contrast: #1c2730;
  --text-main: #0f1b22;
  --text-soft: #52616b;
  --white: #ffffff;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 45px rgba(7, 34, 46, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(15, 27, 34, 0.3);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.btn--light {
  background: var(--white);
  color: var(--primary-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(159, 201, 212, 0.18);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--bg-contrast);
  color: var(--white);
}

.section--dark,
.section--dark p,
.section--dark li,
.section--dark span,
.section--dark a,
.section--dark label,
.section--dark .tag,
.section--dark .pill,
.section--dark th,
.section--dark td,
.section--dark .price,
.section--dark .hero__card-tag,
.section--dark .hero__pill,
.section--dark .hero__card-footer,
.section--dark .card__title,
.section--dark .card__text,
.section--dark .composition__name,
.section--dark .composition__value,
.section--dark .composition__note,
.section--dark .section__heading,
.section--dark .section__lead,
.section--dark .section__eyebrow,
.section--dark .disclaimer,
.section--dark .disclaimer strong,
.section--dark .faq-item__question,
.section--dark .faq-item__body-inner,
.section--dark .badge-note,
.section--dark .table-specs th,
.section--dark .table-specs td,
.section--dark .card__icon {
  color: #ffffff;
}

.section--dark a:hover {
  color: var(--primary);
}

.section__eyebrow {
  margin-bottom: 12px;
}

.section__heading {
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--text-main);
}

.section__lead {
  max-width: 640px;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.section p {
  max-width: 720px;
  margin: 0 0 1em;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.65;
}

.section p a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.section p a:hover {
  text-decoration: none;
}

.section.section--dark p,
.section--dark .section p {
  color: #ffffff;
}

.section--dark .section p a,
.section--dark p a {
  color: var(--primary);
}

.section--alt .section p {
  color: var(--text-main);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 248, 250, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(159, 201, 212, 0.45);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(11, 49, 63, 0.55);
}

.logo__mark span {
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-main);
}

.logo__sub {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav__link {
  position: relative;
  padding-bottom: 4px;
  color: var(--text-soft);
  font-weight: 500;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-dark);
  transition: width 0.18s ease-out;
}

.nav__link:hover {
  color: var(--primary-dark);
}

.nav__link:hover::after {
  width: 14px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 34, 0.2);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header__toggle span,
.header__toggle span::before,
.header__toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f1b22;
  position: relative;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.header__toggle span::before,
.header__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.header__toggle span::before {
  top: -6px;
}

.header__toggle span::after {
  top: 6px;
}

.header__toggle--open span {
  transform: rotate(45deg);
}

.header__toggle--open span::before {
  transform: rotate(-90deg) translateX(-6px);
}

.header__toggle--open span::after {
  opacity: 0;
}

.nav--mobile {
  display: none;
}

.nav--mobile.nav--open {
  display: block;
}

.nav--mobile .nav__menu {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(159, 201, 212, 0.45);
}

.nav--mobile .nav__cta {
  width: 100%;
  padding-bottom: 14px;
}

.nav--mobile .btn {
  width: 100%;
  justify-content: center;
}

/* Hero split-screen */
.hero {
  padding: 40px 0 70px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.hero__text {
  max-width: 560px;
}

.hero__title {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 10px 0 16px;
  color: var(--text-main);
}

.hero__title span {
  color: var(--primary-dark);
}

.hero__subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 22px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__meta-item i {
  color: var(--accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.hero__assurance {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero__assurance i {
  color: #3bb273;
}

.hero__media {
  position: relative;
}

.hero__card {
  position: relative;
  background: var(--bg-contrast);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 22px 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero__card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.hero__card-media {
  margin-bottom: 14px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(159, 201, 212, 0.3);
}

.hero__card-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hero__card-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.hero__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.price span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  margin-left: 4px;
}

.hero__pill {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__card-form {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 10px;
  margin-bottom: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 0.75rem;
  opacity: 0.86;
  color: rgba(255, 255, 255, 0.9);
}

.hero__card .field label {
  color: rgba(255, 255, 255, 0.9);
}

.field input,
.field select,
.field textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 13, 19, 0.72);
  color: #f9fafb;
  padding: 7px 11px;
  font-size: 0.8rem;
  outline: none;
}

.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: #f9fafb;
}

.field textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 70px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(233, 237, 240, 0.7);
}

.hero__card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__card-footer a {
  color: var(--primary);
}

.hero__floating {
  position: absolute;
  inset: auto auto -26px -26px;
  width: 90px;
  height: 90px;
  border-radius: 32px;
  background: rgba(159, 201, 212, 0.4);
  filter: blur(0.5px);
}

/* Grid & cards */
.grid {
  display: grid;
  gap: 26px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(10, 45, 59, 0.16);
}

.card--soft {
  background: linear-gradient(145deg, #ffffff, rgba(159, 201, 212, 0.22));
}

.card--outline {
  box-shadow: none;
  border: 1px solid rgba(159, 201, 212, 0.6);
}

.card__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(159, 201, 212, 0.18);
  color: var(--primary-dark);
}

.card__title {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section--dark .card {
  background: rgba(10, 18, 24, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}


/* Composition */
.composition {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

.composition__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.composition__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(82, 97, 107, 0.28);
  font-size: 0.88rem;
}

.section--dark .composition__item {
  border-color: rgba(255, 255, 255, 0.2);
}

.composition__name {
  font-weight: 500;
  color: var(--text-main);
}

.section--dark .composition__name {
  color: var(--white);
}

.composition__value {
  color: var(--text-soft);
}

.composition__note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 10px;
}


.section__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.section__image-frame {
  border-radius: 26px;
  padding: 10px;
  background: radial-gradient(circle at 10% 0%, #ffffff, #9fc9d4);
  box-shadow: 0 20px 40px rgba(9, 37, 49, 0.3);
}

.section__image-frame-inner {
  border-radius: 20px;
  overflow: hidden;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(159, 201, 212, 0.22);
  font-size: 0.82rem;
  color: var(--text-main);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.list-check i {
  color: #3bb273;
  margin-top: 3px;
}

/* FAQ */
.faq {
  max-width: 760px;
}

.faq-item {
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(159, 201, 212, 0.5);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item__header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item__question {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-main);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(82, 97, 107, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  padding: 0 16px;
}

.faq-item__body-inner {
  padding: 6px 0 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.faq-item--open .faq-item__body {
  max-height: 260px;
}

.faq-item--open .faq-item__icon {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review {
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(13, 46, 60, 0.18);
  font-size: 0.9rem;
}

.review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.review__name {
  font-weight: 600;
  color: var(--text-main);
}

.review__mark {
  font-size: 0.8rem;
  color: var(--accent);
}

.review__text {
  color: var(--text-soft);
  margin-bottom: 8px;
}

.review__meta {
  font-size: 0.78rem;
  color: rgba(82, 97, 107, 0.8);
}

/* Disclaimer */
.disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 960px;
}

.disclaimer p {
  margin: 0 0 10px;
}

.disclaimer strong {
  font-weight: 700;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
}

.contact__details {
  font-size: 0.9rem;
}

.contact__item {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.contact__item a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact__item a:hover {
  text-decoration: none;
}

.section--dark .contact__item,
.section--dark .contact__item a,
.section--dark .contact__item i,
.section--dark .contact__item div {
  color: #ffffff;
}

.section--dark .contact__item a:hover {
  color: var(--primary);
}

.contact__item i {
  color: var(--primary-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact__map iframe {
  width: 100%;
  border-radius: 20px;
  border: none;
  min-height: 260px;
}

.table-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table-specs th,
.table-specs td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(159, 201, 212, 0.55);
  text-align: left;
}

.table-specs th {
  background: rgba(159, 201, 212, 0.18);
  color: var(--text-main);
}

.table-specs td {
  color: var(--text-soft);
}

/* Footer */
.footer {
  margin-top: auto;
  background: #0c151a;
  color: rgba(232, 241, 245, 0.9);
  padding: 26px 0 20px;
  font-size: 0.84rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__nav a {
  color: rgba(232, 241, 245, 0.9);
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__copy {
  color: rgba(181, 199, 209, 0.9);
}

.footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(232, 241, 245, 0.9);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 520px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 16px;
  background: #0c151a;
  color: #f9fafb;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: none;
}

.cookie-banner__inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cookie-banner__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(159, 201, 212, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-banner__content {
  flex: 1;
}

.cookie-banner__title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-banner__text {
  font-size: 0.78rem;
  color: rgba(226, 236, 241, 0.92);
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 10px;
}

.cookie-banner__btn {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__btn--primary,
.cookie-banner__btn--secondary {
  background: var(--primary);
  color: #0f1b22;
  font-weight: 600;
  min-width: 6.5rem;
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Utility */
.badge-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.badge-note i {
  color: var(--primary-dark);
}


/* Service pages */
.page-simple {
  padding: 40px 0 60px;
}

.page-simple__header {
  margin-bottom: 24px;
}

.page-simple__title {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.page-simple__meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.page-simple__section {
  margin-bottom: 18px;
}

.page-simple__section h2 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.page-simple__section p,
.page-simple__section li {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.page-simple__section ul {
  padding-left: 18px;
}

.page-simple__section a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Success page */
.success {
  padding: 70px 0 80px;
  text-align: center;
}

.success__card {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(9, 37, 49, 0.32);
}

.success__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 178, 115, 0.12);
  color: #3bb273;
  font-size: 1.4rem;
}

.success__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.success__text {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 35;
  border: none;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__media {
    order: -1;
  }

  .composition,
  .section__split,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 22px;
  }

  .section {
    padding: 60px 0;
  }

  .cookie-banner__inner {
    flex-direction: column;
  }

  .cookie-banner__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .section__heading {
    font-size: 1.5rem;
  }

  .grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__card-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__inner {
    gap: 26px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 12px;
  }

  .header__inner {
    padding-inline: 0;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 12px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .btn {
    padding: 10px 18px;
  }

  .hero__card {
    padding: 18px 16px 14px;
  }

  .success__card {
    padding-inline: 16px;
  }
}
