:root {
  /* Typography */
  --font-sans: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  --font-script: "Playwrite DE SAS", "Brush Script MT", cursive;

  /* Colors */
  --color-bg-page: #F7F5F1;
  --color-bg-dark: #080808;
  --color-bg-card: #ffffff;
  --color-bg-muted: #F7F5F1;

  --color-primary: #DBB09B;
  --color-primary-dark: #c9977f;
  --color-secondary: #f3c38f;
  --color-accent: #f6d1b5;

  /* Hero badge */
  --color-hero-badge-bg: #FEFEFD;
  --color-hero-badge-pill: #DCB39F;
  --color-hero-badge-text: #302824;

  --color-text-main: #080808;
  --color-text-body: #2C2C2C;
  --color-text-muted: #6b7280;
  --color-text-on-dark: #f9fafb;
  --color-border-soft: #e5e7eb;

  /* Radii & shadows */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.06);

  /* Layout */
  --container-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-page);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* Reusable CTA button: text 90px from left/right, arrow 10px from right */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 90px;
  min-height: 48px;
  background: #DBB09B;
  color: #2C2C2C;
  border: none;
  border-radius: 55px;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: filter 0.15s ease;
}

.cta-button:hover {
  filter: brightness(0.95);
}

.cta-button__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-shrink: 0;
}

.cta-button__icon svg {
  width: 39px;
  height: 39px;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-md);
}

.section-title--center {
  text-align: center;
}

.section-intro {
  margin: 10PX 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.section-intro--center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    color 0.15s ease;
}

.button--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(219, 176, 155, 0.35);
}

.button--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.button--secondary {
  background: #fff;
  color: var(--color-text-main);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.button--secondary:hover {
  background: #f9fafb;
}

.button--small {
  padding-block: 0.6rem;
  padding-inline: 1.2rem;
  font-size: 0.9rem;
}

/* ============================================
   HEADER (lives inside hero)
   ============================================ */
.site-header {
  position: relative;
  z-index: 20;
}

.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-block: 1.75rem 0.5rem;
}

.site-header__logo {
  height: 40px;
  width: auto;
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, #3d2a1f 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 40%, #4a3228 0%, transparent 60%),
    linear-gradient(135deg, #0c0a09 0%, #1a1412 40%, #2c1e17 70%, #1a1412 100%);
  color: #ffffff;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  min-height: 520px;
}

.hero__content {
  padding-block: 3rem 4rem;
  position: relative;
  z-index: 2;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--script {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: #e6a483;
  font-weight: 300;
  letter-spacing: 0;
  display: inline;
}

.hero__subtitle {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

.hero__cta-row {
  margin-bottom: 0.75rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  padding-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 1.5rem;
  background: linear-gradient(90deg, #DBB09B 0%, #FFF 100%);
  color: #080808;
  border: none;
  border-radius: 55px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.hero__cta:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.hero__cta-label {
  padding-right: 0.5rem;
}

.hero__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__cta-icon svg {
  width: 39px;
  height: 39px;
  display: block;
}

.hero__note {
  margin: 0.6rem 0 0;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-primary);
  font-style: normal;
  letter-spacing: 0.02em;
}

/* Hero visual / model image */
.hero__visual {
  position: relative;
  align-self: end;
  justify-self: end;
}

.hero__image {
  display: block;
  height: auto;
  max-height: 540px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  mix-blend-mode: lighten;
}

/* Offer badge (bottom-right of hero) */
.hero__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-hero-badge-bg);
  border-radius: 12px 12px 0 0;
  padding: 0.65rem 1.1rem 0.7rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
  min-width: 200px;
}

.hero__badge-label {
  margin: 0 0 0.35rem;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-style: normal;
  color: #080808;
}

.hero__badge-date {
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-style: normal;
  color: #080808;
}

.hero__badge-price {
  margin: 0 0;
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 6.857px;
  background: var(--color-hero-badge-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 20px;
  line-height: 27.429px;
  font-weight: 500;
  font-style: normal;
  color: var(--color-hero-badge-text);
}

.hero__badge-price-value {
  display: inline-block;
  margin-left: 0.25rem;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  line-height: 27.429px;
  font-weight: 800;
  font-style: normal;
  color: var(--color-hero-badge-text);
}

/* ============================================
   DEVICE SECTION
   ============================================ */
.device {
  background: linear-gradient(180deg, #DBB09B 0%, rgba(219, 176, 155, 0) 100%);
  padding-block: var(--space-3xl);
}

.device__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem 1.5rem;
  /* align-items: center; */
}

.device__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}

.device__icon {
  width: 95px;
  height: auto;
  margin-bottom: 0.25rem;
}

.device__title {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  margin: 0;
}

.device__title-bold {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 48.47px;
  font-weight: 800;
  line-height: 58px;
  margin: 0 0 0.5rem;
}

.device__paragraph {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.device__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1rem 0; */
}

.device__image {
  max-height: 619px;
  max-width: 284px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

.device__right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
  margin-top: auto;
  margin-bottom: 40px;
}

.device__badge {
  width: 100px;
  height: auto;
  margin-bottom: 0.25rem;
}

.device__subtitle {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.device__subtitle-bold {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin: 0 0 0.5rem;
}

/* ============================================
   RESULTS
   ============================================ */
.results {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding-block: var(--space-3xl);
}

.results__title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.results__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0 auto var(--space-2xl);
  max-width: 480px;
}

.results__slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.results__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results__arrow svg {
  display: block;
}

.results__arrow--prev {
  order: -1;
}

.results__track-wrap {
  flex: 1;
  overflow: hidden;
}

.results__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s ease;
}

.results__card {
  flex: 0 0 calc(33.333% - 0.67rem);
  min-width: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: flex;
}

.results__half {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.results__half img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.results__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 0 0 3.171px 3.171px;
  background: var(--color-bg-muted);
  color: #080808;
  text-align: center;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 12.686px;
  font-style: normal;
  font-weight: 800;
  line-height: 19.029px;
}

.results__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.results__dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.results__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #CDBBA0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.results__dot--active {
  background: #ffffff;
}

@media (max-width: 900px) {
  .results__dots {
    display: flex;
  }

  .results__card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .results__track-wrap {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
  }
}

/* ============================================
   OFFERS / PRICING
   ============================================ */
.offers {
  background: #F7F5F1;
  padding-block: var(--space-3xl);
}

.offers__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.offers__intro {
  text-align: center;
  max-width: 770px;
  margin-inline: auto;
}

.offers__title {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 1.25rem;
}

.offers__text {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 1rem;
}

.offers__text:last-of-type {
  margin-bottom: 1.5rem;
}

.offers__subtitle {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.offers__cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  justify-items: center;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  max-width: 370px;
  width: 100%;
}

.pricing-card__inner {
  padding: 8px 8px 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pricing-card__header {
  background: #DBB09B;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  padding: 0.75rem 1rem 0.9rem;
  margin-bottom: 1.25rem;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.pricing-card__label {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.8rem;
  border-radius: 999px;
  background: #FEFEFD;
  font-size: 15px;
  font-weight: 500;
  color: #080808;
  margin-bottom: 0.5rem;
}

.pricing-card__desc {
  margin: 0;
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.pricing-card__body {
  padding: 0 0.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #080808;
  max-width: 300px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 1px;
}

.pricing-card__divider {
  height: 1px;
  background: #F7F5F1;
  margin: 1.25rem 0 1.25rem;
}

.pricing-card__price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #080808;
  margin: 0 0 0.25rem;
}

.pricing-card__price {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pricing-card__price-new {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #080808;
}

.pricing-card__price-old {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-style: italic;
}

.pricing-card .cta-button {
  width: 100%;
  padding: 17px 0;
  margin-top: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: #F7F5F1;
  padding-block: var(--space-3xl);
}

.testimonials__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
  padding: 0 60px;
}

.testimonials__title {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.testimonials__badge {
  height: 58px;
  width: auto;
}

.testimonials__slider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__arrow svg {
  display: block;
}

.testimonials__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.testimonials__track-wrap {
  flex: 1;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.35s ease;
  cursor: grab;
}

.testimonials__track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: #FFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  user-select: none;
}

.testimonial-card__stars {
  margin-bottom: 0.75rem;
}

.testimonial-card__stars svg {
  width: 96px;
  height: 20px;
}

.testimonial-card__text {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 0.75rem;
}

.testimonial-card__author {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.testimonials__dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #E5E5E5;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonials__dot--active {
  background: #080808;
}

@media (max-width: 900px) {
  .testimonials__arrow {
    display: none;
  }

  .testimonials__dots {
    display: flex;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .testimonials__track-wrap {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
  }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: #fff;
  padding-block: var(--space-3xl);
}

.process__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.process__title {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 1rem;
}

.process__intro {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 1.25rem;
}

.process__text {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 1.25rem;
  text-align: center;
}

.process__subtitle {
  color: #080808;
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 0.75rem;
  text-align: left;
  width: 280px;
}

.process__list {
  text-align: left;
  margin: 0 auto 1.25rem;
  padding-left: 1.5rem;
  color: #080808;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  width: 450px;
  max-width: 100%;
}

.process__list li {
  margin-bottom: 0.35rem;
}

.process__cta {
  margin-top: 1.5rem;
  text-align: center;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--color-bg-muted);
  padding-block: var(--space-3xl);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about__slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about__slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about__slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.about__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.about__slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__arrow--prev {
  left: 12px;
}

.about__arrow--next {
  right: 12px;
}

.about__arrow svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.about__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.about .section-intro {
  color: var(--color-text-body);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--color-text-body);
}

.about__list li::before {
  content: "•";
  color: var(--color-primary);
  margin-right: 0.35rem;
}

.about__image-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 1.5rem;
}

/* ============================================
   BOOKING / LOCATION
   ============================================ */
.booking {
  background: var(--color-bg-muted);
  padding-block: var(--space-md) 0;
}

.booking__inner {
  display: flex;
  justify-content: center;
}

.booking__block {
  display: flex;
  width: 100%;
  /* max-width: 900px; */
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.booking__offer {
  flex: 1;
  padding: 2rem 2.25rem;
  background: #DBB09B;
  border-radius: 8px 0 0 0;
  color: var(--color-text-body);
}

.booking__offer .section-title {
  color: var(--color-text-body);
  margin-bottom: 0.5rem;
}

.booking__subheadline {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-body);
}

.booking__price {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-body);
}

.booking__price-label {
  color: #080808;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
}

.booking__price-value {
  color: #1E1E1E;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: 60px;
  /* 120% */
}

.booking__validity {
  margin: 0 0 1.5rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-text-body);
}

.booking .cta-button--light {
  background: #FFF;
  color: #2C2C2C;
  padding: 15px 66px 15px 54px;
}

.booking .cta-button--light:hover {
  filter: brightness(0.97);
}

.booking__image {
  flex: 1;
  min-width: 0;
  border-radius: 0 8px 0 0;
  overflow: hidden;
}

.booking__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding-block: 1.5rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.site-footer__links {
  display: flex;
  gap: 1rem;
}

.site-footer__link {
  color: #e5e7eb;
}

.site-footer__link:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 1.5rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__title-line--script {
    font-size: 2rem;
  }

  .device__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .device__left {
    order: 1;
  }

  .device__visual {
    order: 2;
  }

  .device__right {
    order: 3;
    margin-top: 0;
  }

  .device__title {
    font-size: 28px;
    line-height: 36px;
  }

  .device__title-bold {
    font-size: 40px;
    line-height: 48px;
  }

  .device__image {
    max-height: 340px;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking__block {
    flex-direction: column;
  }

  .booking__offer {
    border-radius: 8px 8px 0 0;
  }

  .booking__image {
    border-radius: 0 0 8px 8px;
  }

  .booking__image img {
    min-height: 240px;
  }

  .about__image {
    order: -1;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding-block: 2rem 1.5rem;
    text-align: center;
  }

  .hero__cta-row {
    display: flex;
    justify-content: center;
  }

  .hero__note {
    text-align: center;
  }

  .hero__visual {
    justify-self: center;
    max-width: 380px;
  }

  .hero__badge {
    right: -0.5rem;
    bottom: 1rem;
  }


  .offers__cards {
    flex-direction: column;
  }

}

@media (max-width: 640px) {
  .container {
    padding-inline: 1.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__title-line--script {
    font-size: 1.7rem;
  }

  .hero__content {
    padding-block: 1.5rem 1rem;
  }

  .hero__image {
    max-height: 380px;
  }

  .site-header__inner {
    justify-content: center;
    align-items: center;
  }

  .hero__badge {
    display: none;
  }

  .device__title {
    font-size: 24px;
    line-height: 32px;
  }

  .device__title-bold {
    font-size: 34px;
    line-height: 42px;
  }

  .device__icon {
    width: 80px;
  }

  .device__subtitle,
  .device__subtitle-bold {
    font-size: 24px;
  }

  .device__image {
    max-height: 280px;
  }

  .results {
    padding-block: var(--space-2xl);
  }

  .offers__intro {
    text-align: left;
    margin-inline: 0;
  }

  .testimonials__header {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .process__inner {
    text-align: left;
  }

  .process__text {
    text-align: left;
  }

  .booking__inner {
    justify-content: center;
  }

  .booking__block {
    max-width: 410px;
    margin-inline: auto;
    border-radius: 8px;
    background: #DBB09B;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    padding-top: 400px;
    margin-bottom: 50px;
  }

  .booking__image {
    position: absolute;
    inset: 0;
    height: 410px;
    border-radius: 0 0 999px 999px;
    overflow: hidden;
  }

  .booking__image img {
    width: 140%;
    max-width: none;
    height: 410px;
    object-fit: cover;
    transform: translateX(-10%);
  }

  .booking__offer {
    padding: 2rem 1.75rem 2.25rem;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  .booking__validity {
    display: inline-block;
    margin: 1.25rem 0 0;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    background: #ECCBBB;
  }

  .booking .cta-button--light {
    margin-top: 1.75rem;
    width: 100%;
  }


  .testimonials__track {
    grid-auto-columns: 100%;
  }


  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}