/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ====== COLORS (figma UI-KIT — sevlaser palette) ====== */
  --clr-primary: #291f23;
  --clr-primary-light: #3d2f34;
  --clr-accent: #ab7b53;
  --clr-accent-dark: #8a6343;
  --clr-accent-light: #e3c7b0;
  --clr-accent-alt: #bfc3d6;
  --clr-gold: #ab7b53;
  --clr-bg: #f2f1f0;
  --clr-bg-alt: #ffffff;
  --clr-text: #291f23;
  --clr-text-light: #8a7a6a;
  --clr-white: #ffffff;
  --clr-border: #e3c7b0;
  --clr-error: #ff0000;
  
  /* ====== GRADIENTS ====== */
  --clr-gradient: linear-gradient(135deg, #291f23 0%, #3d2f34 50%, #291f23 100%);
  --clr-gradient-accent: linear-gradient(135deg, #ab7b53, #e3c7b0);
  
  /* ====== FONTS ====== */
  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  --font-button: 'Geologica', sans-serif;
  --font-decorative: 'Meow Script', cursive;
  
  /* ====== SHADOWS ====== */
  --shadow-sm: 0 2px 8px rgba(41,31,35,0.08);
  --shadow-md: 0 8px 30px rgba(41,31,35,0.12);
  --shadow-lg: 0 20px 60px rgba(41,31,35,0.15);
  --shadow-glow: 0 0 30px rgba(171,123,83,0.3);
  
  /* ====== RADII ====== */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* ====== LAYOUT ====== */
  --max-width: 1200px;
  --header-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.text-accent { 
  color: var(--clr-accent);
}

/* ====== CONTAINER ====== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-align: center;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: middle;
}

.btn--primary {
  background: var(--clr-gradient-accent);
  color: var(--clr-white) !important;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(171,123,83,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(171,123,83,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white) !important;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--large { padding: 16px 40px; font-size: 16px; }
.btn--xl { padding: 18px 48px; font-size: 18px; border-radius: 60px; }
.btn--small { padding: 10px 22px; font-size: 13px; }
.btn--block { width: 100%; }

.btn i { font-size: 1.1em; }

/* ====== SECTION ====== */
.section {
  padding: 100px 0 60px;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
  padding: 4px 16px;
  border: 1px solid var(--clr-accent-light);
  border-radius: 50px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--clr-primary);
}

.section__desc {
  font-size: 18px;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ====== PROMO BAR ====== */
.promo-bar {
  background: var(--clr-primary);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  z-index: 1001;
  position: relative;
}

/* ====== HEADER ====== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header--scrolled {
  background: transparent;
  box-shadow: none;
}

.header--scrolled .header__inner {
  box-shadow: 0 8px 32px rgba(41,31,35,0.12);
  background: rgba(255,255,255,0.98);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 86px;
  background: #fff;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo__img {
  display: block;
  width: auto;
  max-height: 52px;
  height: auto;
}

.logo__img--light { display: none; }
.logo__img--dark  { display: block; }

.logo--footer .logo__img {
  max-height: 32px;
}

/* ============================================
   MOBILE MENU OVERLAY — Figma pixel-perfect
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 8px;
  right: 8px;
  bottom: auto;
  z-index: 9999;
  background: #F7F6F4;
  border-radius: 16px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.mobile-menu.mobile-menu--open { display: block; }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0 38px;
}

/* -- Header -- */
.mobile-menu__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 36px 0 40px;
  min-height: 80px;
}
.mobile-menu__back {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.mobile-menu__back svg {
  width: 11px;
  height: 18px;
}
.mobile-menu__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu__brand-name {
  font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
  font-size: 14px;
  font-weight: 400;
  color: #2A1F22;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.mobile-menu__brand-sub {
  font-size: 7px;
  font-weight: 400;
  color: #7E7276;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* -- Navigation -- */
.mobile-menu__nav {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 400;
  color: #262224;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.mobile-menu__link svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.mobile-menu__divider {
  height: 1px;
  background: #D8D2CF;
  width: 100%;
}

/* -- Actions (buttons) -- */
.mobile-menu__actions {
  display: flex;
  gap: 13px;
  padding: 12px 0 24px;
}
.mobile-menu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 18px;
  line-height: 1;
}
.mobile-menu__btn--primary {
  background: #B8824E;
  color: #FFFFFF;
  flex: 0 0 120px;
}
.mobile-menu__btn--secondary {
  background: #EDCDB3;
  color: #2A1F22;
  flex: 0 0 135px;
}

/* -- Banner -- */
.mobile-menu__banner {
  background: #2B1E23;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  margin: 0 -38px;
  flex-shrink: 0;
}

/* -- Hide desktop nav at mobile -- */
@media (max-width: 768px) {
  .nav__list--left { display: none; }
  .nav__list--right { display: none; }
  .nav .btn--nav { display: none; }
}
@media (max-width: 480px) {
  .logo__img { max-height: 30px; }
  .logo--footer .logo__img { max-height: 26px; }
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list--left  { justify-content: flex-start; }
.nav__list--right { justify-content: flex-end; }

#nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn--nav {
  background: var(--clr-accent);
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: opacity 0.2s;
}
.btn--nav:hover { opacity: 0.85; }

.header--scrolled .btn--nav {
  background: var(--clr-accent);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--clr-primary);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav__link:hover { color: var(--clr-accent); }

.nav__link--active {
  color: var(--clr-white);
}

.nav__link--active::after {
  width: 100%;
}

/* Scrolled header — dark links on white bg */
.header--scrolled .nav__link {
  color: var(--clr-primary);
}

.header--scrolled .nav__link:hover {
  color: var(--clr-accent);
}

.header--scrolled .nav__link--active {
  color: var(--clr-accent);
}

.header--scrolled .nav__link--active::after {
  background: var(--clr-accent);
}

.nav__cta { margin-left: 16px; }
.nav__cta-mobile { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile hamburger cross — height:20px space-between: spans at 0/9/18px, center=9px */
@media (max-width: 640px) {
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ====== HERO ====== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/photophone.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 1024px) {
  .hero__bg {
    background-image: url('../images/photophone.png');
    background-position: center 30%;
  }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(41,31,35,0.9) 0%,
    rgba(41,31,35,0.7) 50%,
    rgba(41,31,35,0.9) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero__content {
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-accent-light);
  margin-bottom: 24px;
  padding: 6px 20px;
  border: 1px solid rgba(171,123,83,0.3);
  border-radius: 50px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero__title-line1 {
  white-space: nowrap;
  display: inline;
}

.hero__title-line2 {
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}

.hero__title-line2 .hero__badge {
  margin-left: auto;
}

.hero__title .text-accent {
  white-space: nowrap;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
  white-space: nowrap;
}

.hero__subtitle strong {
  color: var(--clr-white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero rating stars */
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__rating-stars {
  font-size: 16px;
  letter-spacing: 3px;
  color: #ab7b53;
}

.hero__rating-stars i {
  color: #ab7b53;
}

.hero__rating-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.4;
}

/* Trust bar */
.hero__trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Mobile-only trust block — скрыт на десктопе */
.hero__trust--mobile {
  display: none;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-item__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item__label {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.trust-item__desc {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}

/* ====== WHY BEONDSKIN ====== */
/* ====== WHY BEYONDSKIN ====== */
/* ====== WHY BEYONDSKIN v2 (Figma exact) ====== */
.why-section {
  background: #f7f4f1;
  padding: 80px 0 72px;
}

.why__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 96px;
}

/* Heading block */
.why__heading {
  text-align: left;
  margin-bottom: 52px;
}

.why__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b57e4a;
  margin-bottom: 14px;
}

.why__title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  color: #2f2327;
  margin: 0;
  text-transform: uppercase;
}

/* 3-column row */
.why__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
  align-items: stretch;
}

/* Photo columns */
.why__media {
  border-radius: 22px;
  overflow: hidden;
  min-height: 480px;
}

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

/* Center text panel */
.why__panel {
  background: #e3c7b0;
  border-radius: 20px;
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Top-right corner bracket */
.why__panel-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  color: #2f2327;
  opacity: 0.35;
}

.why__panel-sub {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: #3a2d31;
  margin: 0 0 4px;
  text-align: center;
}

.why__panel-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #3a2d31;
  margin: 0;
  text-align: center;
}

.why__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #3a2d31;
  background: #ffffff;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.25s;
  white-space: nowrap;
}

.why__btn:hover { opacity: 0.8; }

/* Bottom pill bar */
.why__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 4px;
  background: #b4835a;
  border-radius: 999px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
}

.why__pill-dot {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  flex: 0 0 auto;
}

/* ====== ABOUT / CARDS ====== */
.about { background: var(--clr-bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41,31,35,0.6), transparent 50%);
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--clr-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-accent);
}

.services__cta {
  text-align: center;
}

/* ====== STEPS (TZ-style) ====== */
/* ====== HOW IT WORKS (Figma 450-653) ====== */
.hiw { background: transparent; }

.hiw__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.hiw__header-left {}

.hiw__tag {
  margin-bottom: 10px;
  font-family: var(--font-body);
  border: none;
  padding: 0;
  text-align: left;
}

.hiw__title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.05;
  color: #33262a;
  margin: 0;
  text-transform: uppercase;
}

/* Rating block */
.hiw__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hiw__rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 0.5px solid #e8e3de;
  border-radius: 999px;
  padding: 10px 16px;
}

.hiw__rating-pill svg {
  display: block;
  width: 14px;
  height: 14px;
}

.hiw__rating-text {
  display: flex;
  flex-direction: column;
}

.hiw__rating-line1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #24181c;
  line-height: 1.1;
  white-space: nowrap;
}

.hiw__rating-line2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #24181c;
  line-height: 1.2;
  white-space: nowrap;
}

/* 4-card grid */
.hiw__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hiw__card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

.hiw__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.hiw__card-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: #34282c;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 2;
}

.hiw__card-body {
  padding: 18px 4px 0;
}

.hiw__card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #b9834e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.hiw__card-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #5b4f52;
  margin: 0;
}

@media (max-width: 992px) {
  .hiw__cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hiw__title { font-size: 36px; }
}

@media (max-width: 576px) {
  .hiw__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hiw__cards { grid-template-columns: 1fr; }
  .hiw__title { font-size: 28px; }
  .hiw__card-img { aspect-ratio: 1.6; }
}

/* ====== OUR TECHNOLOGY (Figma 450-653 lower) ====== */
.tech {
  background: #eacbb0;
  padding: 60px 0;
}

.tech__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.tech__card {
  background: #f8f7f5;
  border-radius: 18px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  text-align: left;
}

.tech__tag {
  margin-bottom: 4px;
  color: #c1844e;
  border: none;
  padding: 0;
  text-align: left;
  display: block;
}

.tech__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  color: #33292a;
  margin: 0 0 36px;
  text-transform: uppercase;
  text-align: left;
}

.tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-bottom: 40px;
}

.tech__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tech__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.tech__feature-text {}

.tech__feature-text h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #b98353;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
}

.tech__feature-text p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #514846;
  margin: 0;
}

.tech__footer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: auto;
}

.tech__footer-line {
  flex: 0 0 auto;
  width: 3px;
  height: 60px;
  background: #b77d4a;
  border-radius: 2px;
}

.tech__footer p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #4f4543;
  margin: 0;
}

.tech__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.tech__media > img:not(.tech__badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tech__badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: auto;
  height: auto;
  max-height: 62px;
  display: block;
}

@media (max-width: 992px) {
  .tech__row { grid-template-columns: 1fr; }
  .tech__card { padding: 36px; }
  .tech__title { font-size: 32px; }
  .tech__media > img:not(.tech__badge) { max-height: 400px; }
}

@media (max-width: 576px) {
  .tech { padding: 0; }
  .tech__grid { grid-template-columns: 1fr; }
}
  margin-bottom: 40px;
}

.price-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--clr-border);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.price-card--featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-gradient-accent);
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 50px;
}

.price-card__top {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}

.price-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--clr-primary);
  margin-bottom: 16px;
}

.price-card__price {
  font-size: 16px;
  color: var(--clr-text-light);
  margin-bottom: 4px;
}

.price-card__value {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--clr-accent);
}

.price-card__note {
  font-size: 13px;
  color: var(--clr-text-light);
}

.price-card__features {
  text-align: left;
  margin-bottom: 28px;
}

.price-card__features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(232,220,230,0.5);
}

.price-card__features li:last-child { border-bottom: none; }

.price-card__features li i {
  color: var(--clr-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.pricing__footnote {
  text-align: center;
  font-size: 16px;
  color: var(--clr-text-light);
  padding: 24px;
  background: linear-gradient(135deg, rgba(171,123,83,0.06), rgba(227,199,176,0.06));
  border-radius: var(--radius-md);
  border: 1px solid rgba(171,123,83,0.1);
}

.pricing__footnote i {
  color: var(--clr-gold);
  margin-right: 8px;
}

.pricing__footnote a {
  color: var(--clr-accent);
  font-weight: 600;
}

.pricing__footnote a:hover {
  text-decoration: underline;
}

/* ====== TESTIMONIALS ====== */
/* ====== TESTIMONIALS (Figma 450-741) ====== */
.testimonials {
  background: #F6F4F2;
  padding: 72px 0 80px;
}

.testimonials__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #BE8757;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
}

.testimonials__title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 400;
  color: #2E2328;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 48px;
  line-height: 1.1;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.testimonial-card {
  background: #B48358;
  border-radius: 18px;
  padding: 44px 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.testimonial-card__stars svg {
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  color: #F7F3EF;
  margin: 0 0 auto;
  font-style: normal;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: #2B2025;
  background: #F5F3F1;
  border-radius: 999px;
  padding: 8px 24px;
  display: inline-block;
  margin-top: 20px;
}

.testimonials__cta {
  display: block;
  width: 100%;
  background: #2B2025;
  color: #F4F1EE;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 20px 24px;
  transition: opacity 0.3s ease;
}

.testimonials__cta:hover {
  opacity: 0.85;
}

@media (max-width: 992px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__title { font-size: 38px; }
}

@media (max-width: 576px) {
  .testimonials { padding: 48px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__title { font-size: 30px; margin-bottom: 32px; }
  .testimonial-card { padding: 32px 24px 28px; }
  .testimonial-card__text { font-size: 17px; }
}

/* ====== FAQ (TZ-style) ====== */
/* ====== FAQ (Figma 451-370) ====== */
.faq {
  background: #E7C8AF;
  padding: 60px 0 72px;
}

.faq__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #A46E52;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.faq__title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 400;
  color: #3E2D2C;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1;
}

.faq__subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: #8E5F4B;
  margin: 0 0 36px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #F5F3F1;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item__q {
  width: 100%;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #2C2C2C;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item__label {
  flex: 1;
}

.faq-item__plus {
  font-size: 20px;
  font-weight: 300;
  color: #A46E52;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-item__plus {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-item__a {
  max-height: 300px;
}

.faq-item__a p {
  padding: 0 28px 20px;
  font-size: 15px;
  color: #6B5A56;
  line-height: 1.7;
  margin: 0;
}

.faq__image {
  border-radius: 20px;
  overflow: hidden;
  background: #E7C8AF;
}

.faq__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .faq__row { grid-template-columns: 1fr; gap: 40px; }
  .faq__title { font-size: 38px; }
  .faq__image { order: -1; }
  .faq__image img { max-height: 400px; object-fit: cover; }
}

@media (max-width: 576px) {
  .faq { padding: 48px 0; }
  .faq__title { font-size: 30px; }
  .faq__subtitle { font-size: 17px; margin-bottom: 28px; }
  .faq__list { gap: 12px; }
  .faq-item__q { padding: 14px 20px; font-size: 16px; }
  .faq-item__a p { padding: 0 20px 16px; font-size: 14px; }
  .faq__image { display: none; }
}
/* ====== ABOUT INTRO ====== */
.about__intro {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.about__intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--clr-text);
}

.about__image {
  margin: 32px auto 0;
  max-width: 700px;
  text-align: center;
}

.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ====== BENEFITS SLIDER SECTION ====== */
.benefits-slider {
  position: relative;
  overflow: hidden;
}

.benefits-slider__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/benefits-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  pointer-events: none;
}

.benefits-slider .container {
  position: relative;
  z-index: 1;
}

/* ====== BENEFITS CAROUSEL ====== */
.benefits-carousel {
  position: relative;
  margin-top: 32px;
  padding: 0 48px;
}

.benefits-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 24px;
  cursor: grab;
  user-select: none;
}

.benefits-carousel__track::-webkit-scrollbar {
  display: none;
}

.benefits-carousel__track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

/* ====== BENEFIT CARD ====== */
.benefit-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(41,31,35,0.12);
}

.benefit-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card__img--dark {
  position: relative;
}

.benefit-card__body {
  padding: 20px 24px 28px;
}

.benefit-card__title {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: var(--clr-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-text-light);
}

.benefit-card__body p strong {
  color: var(--clr-accent);
}

/* ====== CAROUSEL ARROWS ====== */
.benefits-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  z-index: 2;
}

.benefits-carousel__arrow:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.benefits-carousel__arrow--prev {
  left: 0;
}

.benefits-carousel__arrow--next {
  right: 0;
}

/* ====== CAROUSEL DOTS ====== */
.benefits-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.benefits-carousel__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.benefits-carousel__dots .dot.active {
  background: var(--clr-accent);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .benefits-carousel { padding: 0 32px; }
  .benefit-card { flex: 0 0 280px; }
  .benefit-card__img { height: 140px; }
  .benefits-carousel__arrow { width: 34px; height: 34px; font-size: 14px; }
}

@media (max-width: 480px) {
  .benefits-carousel { padding: 0 28px; }
  .benefit-card { flex: 0 0 260px; }
  .benefit-card__img { height: 120px; }
  .benefit-card__body { padding: 16px 20px 24px; }
  .benefit-card__title { font-size: 18px; }
}

/* ====== RESULTS CTA ====== */
/* ====== DISCOVER CTA (Figma 450-647) ====== */
.cta-discover {
  background: #2d2125;
  padding: 72px 0 96px;
  text-align: center;
}

.cta-discover__inner {}

.cta-discover__title {
  font-family: var(--font-heading);
  font-size: 74px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
  color: #f7f3f2;
  margin: 0 0 22px;
}

.cta-discover__highlight {
  color: #d7b9a6;
}

.cta-discover__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #f3eff0;
  max-width: 640px;
  margin: 0 auto 56px;
}

.cta-discover__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #2c2226;
  background: #f3f1ef;
  padding: 18px 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: opacity 0.25s;
}

.cta-discover__btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .cta-discover { padding: 56px 0 72px; }
  .cta-discover__title { font-size: 42px; }
  .cta-discover__text { font-size: 15px; max-width: 480px; margin-bottom: 40px; }
  .cta-discover__btn { font-size: 16px; padding: 16px 32px; }
}

@media (max-width: 480px) {
  .cta-discover { padding: 40px 0 56px; }
  .cta-discover__title { font-size: 30px; }
  .cta-discover__text { font-size: 13px; max-width: 360px; margin-bottom: 32px; }
  .cta-discover__btn { font-size: 14px; padding: 14px 28px; }
}

/* ====== CLOSING PARAGRAPH ====== */
.closing {
  background: var(--clr-bg);
  padding: 80px 0;
  text-align: center;
}

.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.closing__inner p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--clr-text);
}

/* ====== CTA BANNER ====== */
/* ====== FINAL CTA — Start Your Journey (Figma 450-533) ====== */
.cta-journey {
  background: #2E2327;
  padding: 64px 0 72px;
  text-align: center;
}

.cta-journey__content {
  max-width: 720px;
  margin: 0 auto;
}

.cta-journey__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #F4EEEE;
  margin-bottom: 28px;
}

.cta-journey__title {
  font-family: var(--font-heading);
  font-size: 67px;
  font-weight: 400;
  line-height: 1;
  color: #F5F0F1;
  margin: 0 auto 26px;
  max-width: 690px;
}

.cta-journey__accent {
  color: #D7BCAC;
}

.cta-journey__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #F2ECEC;
  margin: 0 auto 32px;
}

.cta-journey__btn {
  display: inline-block;
  background: #F2F2F0;
  color: #342A2E;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  border-radius: 16px;
  padding: 18px 28px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-journey__btn:hover {
  opacity: 0.85;
}

.cta-journey__phone {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #F3ECEC;
  margin-top: 22px;
}

.cta-journey__num {
  color: #C9A892;
}

@media (max-width: 768px) {
  .cta-journey__title { font-size: 38px; }
  .cta-journey__tag { margin-bottom: 20px; }
}

@media (max-width: 576px) {
  .cta-journey { padding: 48px 0 56px; }
  .cta-journey__title { font-size: 30px; }
  .cta-journey__text { font-size: 14px; margin-bottom: 24px; }
}

/* ====== STICKY MOBILE CTA ====== */
/* Sticky mobile CTA removed per client request */

/* ====== FOOTER ====== */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px;
}

.footer__desc {
  font-size: 14px;
  color: var(--clr-text-light);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--clr-primary);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--clr-text-light);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--clr-accent);
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--clr-text-light);
}

.footer__contacts i,
.footer__contacts img {
  color: var(--clr-accent);
  width: 16px;
  height: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer__contacts a {
  color: var(--clr-text-light);
  transition: color 0.3s ease;
}

.footer__contacts a:hover {
  color: var(--clr-accent);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--clr-text-light);
}

/* ====== SCROLL TOP ====== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-gradient-accent);
  color: var(--clr-white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(171,123,83,0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(171,123,83,0.5);
}

/* ====== TECHNOLOGY ====== */
.tech { background: var(--clr-bg); }

.tech .section__header {
  margin-bottom: 16px;
}

.tech__intro {
  text-align: center;
  margin-bottom: 36px;
}

.tech__intro-text {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--clr-primary);
  line-height: 1.3;
}



/* ====== PRICING TABLE ====== */
.pricing__gender {
  margin-bottom: 20px;
}

.pricing__gender-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing__gender-title i {
  color: var(--clr-accent);
  font-size: 24px;
}

/* ====== PRICING COLLAPSIBLE TOGGLE ====== */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin-top: 48px;
}

.pricing__toggle:first-of-type {
  margin-top: 0;
}

.pricing__toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(238,83,153,0.3);
}

.pricing__toggle .pricing__gender-title {
  margin: 0;
  pointer-events: none;
}

.pricing__toggle-icon {
  font-size: 18px;
  color: var(--clr-accent);
  transition: transform 0.3s ease;
}

.pricing__toggle[aria-expanded="true"] .pricing__toggle-icon {
  transform: rotate(0deg);
}

.pricing__toggle[aria-expanded="false"] .pricing__toggle-icon {
  transform: rotate(180deg);
}

[data-collapsible] {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  max-height: 2000px;
  opacity: 1;
  margin-top: 24px;
}

[data-collapsible].collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.pricing__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 28px;
}

.pricing__table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}

.pricing__table thead th {
  background: var(--clr-gradient);
  color: var(--clr-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  text-align: left;
}

.pricing__table thead th:first-child { 
  border-radius: var(--radius-md) 0 0 0; 
}

.pricing__table thead th:last-child { 
  border-radius: 0 var(--radius-md) 0 0; 
}

.pricing__table tbody td {
  padding: 13px 20px;
  font-size: 15px;
  color: var(--clr-text);
  border-bottom: 1px solid rgba(232,220,230,0.4);
}

.pricing__table tbody tr:last-child td {
  border-bottom: none;
}

.pricing__table tbody tr:nth-child(even) {
  background: rgba(171,123,83,0.03);
}

.pricing__table tbody tr:hover {
  background: rgba(171,123,83,0.08);
}

.pricing__table tbody td:nth-child(2),
.pricing__table tbody td:nth-child(3) {
  font-weight: 600;
  color: var(--clr-primary);
  white-space: nowrap;
}

.pricing__table tbody td:nth-child(3) {
  color: var(--clr-accent);
}

/* ====== POPULAR AREAS CARDS (TZ-Style) ====== */
.popular__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.popular-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.popular-card__top {
  padding: 24px 12px 16px;
}

.popular-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

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

.popular-card__zone {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-card__start {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.popular-card__price {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.popular-card__img {
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ====== POPULAR TRUST FEATURES ====== */
.popular__trust {
  margin-bottom: 32px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 0;
  text-align: center;
}

.popular__trust img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

/* ====== FULL PRICING COLLAPSIBLE ====== */
.pricing__cta-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.pricing__full-wrap {
  display: none;
}

.pricing__full-wrap.open {
  display: block;
  animation: fadeSlideDown 0.4s ease;
}

@keyframes fadeSlideDown {
  from { opacity: 0; max-height: 0; transform: translateY(-10px); }
  to { opacity: 1; max-height: 3000px; transform: translateY(0); }
}

/* ====== FULL BODY TREATMENT AREAS ====== */
/* ====== FADE IN ANIMATION ====== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 1024px) {
  /* Why BeyondSkin — stack on tablet */
  .why__split {
    flex-direction: column;
    gap: 40px;
  }
  .why__left {
    flex: none;
    max-width: 100%;
    text-align: center;
  }
  .why__left .section__title {
    text-align: center;
    font-size: 36px;
  }
  .why__left .section__tag {
    text-align: center;
  }
  .why__cards-grid {
    /* single column — default flex layout */
  }
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .popular__grid { grid-template-columns: repeat(3, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }

  .hero__title { font-size: 56px; white-space: nowrap; }

  .section__title { font-size: 36px; }
  .steps__tech-title { font-size: 36px; }

  .footer__inner { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section__title { font-size: 30px; }
  .section__desc { font-size: 16px; }
  .section__header { margin-bottom: 40px; }

  /* Nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--clr-primary);
    padding: 100px 32px 32px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000;
  }

  .nav.open { right: 0; }
  .nav.open .nav__link { color: rgba(255,255,255,0.85); }
  .nav.open .nav__link:hover { color: #fff; }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    font-size: 18px;
    padding: 12px 0;
    display: block;
  }

  .nav__cta { display: none; }
  .nav__cta-mobile { 
    display: flex; 
    margin-top: 24px;
  }

  .hamburger { display: flex; }

  /* Hero */
  .hero__title { font-size: 42px; white-space: normal; }
  .hero__subtitle { font-size: 16px; }
  .hero__trust { flex-wrap: wrap; gap: 20px; }
  .trust-item { gap: 8px; }
  .trust-item__icon { width: 20px; height: 20px; }
  .trust-item__label { font-size: 12px; }
  .hero__content { padding: 0 20px; }

  /* Grids */
  .about__grid,
  .services__grid,
  .popular__grid,
  .pricing__grid,


  .steps__flow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
  .step-flow__arrow { display: none; }
  .step-flow { max-width: 100%; width: 100%; }
  .steps__tech { grid-template-columns: 1fr; gap: 24px; }
  .steps__tech-text { text-align: center; }
  .steps__tech-title { font-size: 30px; }
  .steps__tech-device { max-width: 300px; margin: 0 auto; }


  .btn--xl { 
    padding: 14px 32px; 
    font-size: 15px; 
    width: 100%;
    max-width: 320px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

/* ====== NEW SECTIONS RESPONSIVE ====== */
@media (max-width: 768px) {

  .closing { padding: 60px 0; }
  .closing__inner p { font-size: 16px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .pricing__gender-title { font-size: 22px; }
  .popular-card__top { padding: 18px 10px 14px; }
  .popular-card__icon { width: 36px; height: 36px; }
  .popular-card__zone { font-size: 14px; }
  .popular-card__price { font-size: 28px; }
  .popular-card__img { height: 110px; }

  .tech__intro-text { font-size: 22px; }


  /* Mobile: Why BeyondSkin — stack layout, 1-col cards */
  .why__split {
    flex-direction: column;
    gap: 40px;
  }
  .why__left {
    flex: none;
    max-width: 100%;
    text-align: center;
  }
  .why__left .section__title {
    text-align: center;
    font-size: 30px;
  }
  .why__left .section__tag {
    text-align: center;
  }
  .why__right {
    flex: none;
    max-width: 100%;
  }
  .why__cards-grid {
    gap: 14px;
  }

  /* Mobile: Tech card */
  .tech__intro-text { font-size: 19px; }

  .pricing__table { min-width: 400px; }
  .pricing__table thead th,
  .pricing__table tbody td { padding: 12px 14px; font-size: 14px; }
}

/* Small mobile */
  }

  .section { padding: 50px 0; }
  .section__header { margin-bottom: 28px; }
  .section__title { font-size: 24px; }
  .closing { padding: 48px 0; }
  .closing__inner p { font-size: 15px; }
  .hero__title { font-size: 36px; white-space: normal; }
  .hero__content { padding: 0 16px; }
  .hero__subtitle-break { display: block; }
  .hero__actions .btn--large { 
    width: 100%; 
    padding: 14px 24px;
  }
  .hero__actions { gap: 12px; }
  .hero__actions .btn--outline { width: 100%; }
  .popular__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .popular-card__top { padding: 12px 8px 10px; }
  .popular-card__icon { width: 30px; height: 30px; margin-bottom: 6px; border-width: 1.5px; }
  .popular-card__zone { font-size: 13px; letter-spacing: 0.3px; }
  .popular-card__start { font-size: 10px; letter-spacing: 1px; margin-bottom: 2px; }
  .popular-card__price { font-size: 20px; }
  .popular-card__img { height: 60px; }
  .pricing { padding-bottom: 28px; }
  .popular__trust { display: none; }
  .steps__flow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
  .step-flow { max-width: 100%; width: 100%; }
  .step-flow__top { height: 120px; }
  .step-flow__body { padding: 14px 12px 16px; }
  .step-flow__badge { width: 32px; height: 32px; font-size: 15px; position: static; margin: 16px auto; transform: none; left: auto; }
  .step-flow__title { font-size: 16px; }
  .step-flow__text { font-size: 13px; }
  .step-flow__arrow { display: none; }
  .steps__tech-features {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
    scrollbar-width: none;
  }
  .steps__tech-features::-webkit-scrollbar { display: none; }
  .steps__feature {
    flex: 0 0 80%;
    scroll-snap-align: center;
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 16px;
  }
  .steps__tech-title { font-size: 24px; }
  .steps__tech-device { max-width: 320px; margin: 0 auto; }
  .steps__tech-device img { aspect-ratio: auto; width: 100%; height: auto; }
  .steps__stat {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    max-width: 320px;
    margin: 12px auto 0;
  }
  .price-card { padding: 28px 20px; }
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #f2f1f0;
  border-top: 1px solid var(--clr-border);
  padding: 18px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.cookie-bar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.cookie-bar__text {
  flex: 1;
  min-width: 260px;
}

.cookie-bar__text p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--clr-text);
  margin: 0;
}

.cookie-bar__text a {
  color: var(--clr-accent);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar__btn {
  padding: 10px 24px;
  font-family: var(--font-geo);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-bar__btn--accept {
  background: var(--clr-accent);
  color: #fff;
}

.cookie-bar__btn--accept:hover {
  background: var(--clr-accent-dark);
}

.cookie-bar__btn--settings {
  background: transparent;
  color: var(--clr-primary);
  border: 1px solid var(--clr-border);
}

.cookie-bar__btn--settings:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

@media (max-width: 600px) {
  .cookie-bar { padding: 14px 0; }
  .cookie-bar__inner { flex-direction: column; gap: 12px; padding: 0 16px; }
  .cookie-bar__text { min-width: 0; }
  .cookie-bar__text p { font-size: 12px; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; text-align: center; padding: 10px 16px; font-size: 10px; }
}

/* ====== BOOKING MODAL ====== */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(41, 31, 35, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal--open {
  display: flex;
}

.booking-modal__card {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(41, 31, 35, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #8a7a6a;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.booking-modal__close:hover {
  background: #f2f1f0;
  color: #291f23;
}

.booking-modal__badge {
  display: inline-block;
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ab7b53;
  margin-bottom: 6px;
}

.booking-modal__title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #291f23;
  margin: 0 0 8px;
  line-height: 1.2;
}

.booking-modal__subtitle {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 14px;
  color: #8a7a6a;
  margin: 0 0 28px;
  line-height: 1.5;
}

.booking-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-modal__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-modal__label {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #291f23;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-modal__input {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 15px;
  color: #291f23;
  padding: 12px 16px;
  border: 1.5px solid #e3c7b0;
  border-radius: 12px;
  background: #faf8f6;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.booking-modal__input:focus {
  border-color: #ab7b53;
  box-shadow: 0 0 0 3px rgba(171, 123, 83, 0.12);
}

.booking-modal__input::placeholder {
  color: #bfb0a0;
}

.booking-modal__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 6px;
}

.booking-modal__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #ab7b53;
  border: 1.5px solid #e3c7b0;
  border-radius: 4px;
  cursor: pointer;
}

.booking-modal__checkbox-label {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 12px;
  color: #8a7a6a;
  line-height: 1.5;
  cursor: pointer;
}

.booking-modal__checkbox-label a {
  color: #ab7b53;
  text-decoration: underline;
}

.booking-modal__checkbox-label a:hover {
  color: #8a6343;
}

.booking-modal__submit {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #ab7b53, #e3c7b0);
  color: #fff;
  box-shadow: 0 4px 15px rgba(171, 123, 83, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  margin-top: 4px;
}

.booking-modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(171, 123, 83, 0.45);
}

.booking-modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.booking-modal__error {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 13px;
  color: #d32f2f;
  display: none;
  margin: -6px 0 0;
  line-height: 1.4;
}

.booking-modal__error--visible {
  display: block;
}

.booking-modal__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 0 auto;
}

.booking-modal__submit--loading .booking-modal__spinner {
  display: inline-block;
}

.booking-modal__submit--loading .booking-modal__submit-text {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Phone input with country prefix styling */
.booking-modal__phone-wrap {
  position: relative;
}

.booking-modal__phone-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 15px;
  color: #8a7a6a;
  pointer-events: none;
}

.booking-modal__phone-wrap .booking-modal__input {
  padding-left: 36px;
}

/* Mobile styles */
@media (max-width: 500px) {
  .booking-modal__card {
    padding: 28px 24px 28px;
    max-width: 100%;
    border-radius: 16px;
  }
  .booking-modal__title {
    font-size: 24px;
  }
}

/* Privacy policy text */

/* ====== BOOKING MODAL TEXTAREA ====== */
.booking-modal__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e3c7b0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #291f23;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
  box-sizing: border-box;
}
.booking-modal__textarea:focus {
  border-color: #ab7b53;
}
.booking-modal__textarea::placeholder {
  color: #bfb0a0;
}
.booking-modal__privacy {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 11px;
  color: #bfb0a0;
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.5;
}

.booking-modal__privacy a {
  color: #ab7b53;
}


/* ====== BOOKING MODAL DATE/TIME ====== */
.booking-modal__datetime-row {
  display: flex;
  gap: 8px;
}

.booking-modal__datetime-group {
  position: relative;
  flex: 1;
}

.booking-modal__datetime-group .booking-modal__input {
  padding-right: 36px;
}

.booking-modal__datetime-group .booking-modal__input--date,
.booking-modal__datetime-group .booking-modal__input--time {
  -webkit-appearance: none;
  appearance: none;
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 14px;
  color: #291f23;
  padding: 12px 36px 12px 14px;
  border: 1.5px solid #e3c7b0;
  border-radius: 12px;
  background: #faf8f6;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 46px;
}

.booking-modal__datetime-group .booking-modal__input--date:focus,
.booking-modal__datetime-group .booking-modal__input--time:focus {
  border-color: #ab7b53;
  box-shadow: 0 0 0 3px rgba(171, 123, 83, 0.12);
}

.booking-modal__datetime-group .booking-modal__input--date::-webkit-calendar-picker-indicator,
.booking-modal__datetime-group .booking-modal__input--time::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.booking-modal__datetime-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #bfb0a0;
  pointer-events: none;
  transition: color 0.2s;
}

.booking-modal__datetime-group:focus-within .booking-modal__datetime-icon {
  color: #ab7b53;
}

.booking-modal__field-hint {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 11px;
  color: #bfb0a0;
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

/* Style the native date/time picker popup */
.booking-modal__datetime-group .booking-modal__input--date::-webkit-datetime-edit {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 14px;
  color: #291f23;
}

.booking-modal__datetime-group .booking-modal__input--date::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.booking-modal__datetime-group .booking-modal__input--date::-webkit-datetime-edit-text {
  color: #8a7a6a;
  padding: 0 2px;
}

.booking-modal__datetime-group .booking-modal__input--date:invalid::-webkit-datetime-edit {
  color: #bfb0a0;
}

/* Mobile */
@media (max-width: 500px) {
  .booking-modal__datetime-row {
    flex-direction: column;
    gap: 8px;
  }
}


/* Responsive */
@media (max-width: 500px) {
  .booking-modal__time-row {
    justify-content: center;
  }
  .booking-modal__input--select {
    min-width: 24px;
    font-size: 13px;
    padding: 10px 4px;
  }
  .booking-modal__input--ampm {
    min-width: 32px;
    padding: 10px 4px;
  }
}

/* ====== BOOKING MODAL CUSTOM TIME DROPDOWN ====== */
.booking-modal__custom-select {
  position: relative;
  user-select: none;
}

.booking-modal__custom-select-value {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #291f23;
  padding: 12px 4px;
  border: 1.5px solid #e3c7b0;
  border-radius: 12px;
  background: #faf8f6;
  min-height: 46px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.booking-modal__custom-select-value:hover {
  border-color: #c9a88e;
}

.booking-modal__custom-select-value:focus,
.booking-modal__custom-select--open .booking-modal__custom-select-value {
  border-color: #ab7b53;
  box-shadow: 0 0 0 3px rgba(171, 123, 83, 0.12);
}

.booking-modal__custom-select-value[data-val=""] {
  color: #bfb0a0;
}

.booking-modal__custom-select[data-field="ampm"] .booking-modal__custom-select-value {
  font-weight: 600;
  color: #ab7b53;
  min-width: 36px;
  padding: 12px 8px;
}

.booking-modal__custom-select[data-field="ampm"] .booking-modal__custom-select-value[data-val=""] {
  color: #bfb0a0;
}

/* Dropdown arrow */
.booking-modal__custom-select-value::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #bfb0a0;
  border-bottom: 1.5px solid #bfb0a0;
  transform: rotate(45deg);
  margin-left: 3px;
  margin-top: -4px;
  transition: transform 0.2s;
}

.booking-modal__custom-select--open .booking-modal__custom-select-value::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Dropdown menu */
.booking-modal__custom-select-drop {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  background: #fff;
  border: 1.5px solid #e3c7b0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(41, 31, 35, 0.15);
  z-index: 100;
  padding: 4px;
  max-height: 200px;
  overflow-y: auto;
  white-space: nowrap;
}

.booking-modal__custom-select--open .booking-modal__custom-select-drop {
  display: block;
}

.booking-modal__custom-select-opt {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 14px;
  color: #291f23;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 8px;
  text-align: center;
  transition: background 0.15s;
}

.booking-modal__custom-select-opt:hover {
  background: #f2f1f0;
}

.booking-modal__custom-select-opt:active {
  background: #e3c7b0;
}

.booking-modal__custom-select-opt[data-val=""] {
  color: #bfb0a0;
}

.booking-modal__time-colon {
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #291f23;
  line-height: 1;
  flex-shrink: 0;
  margin: 0 2px;
}

.booking-modal__time-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Mobile */
@media (max-width: 500px) {
  .booking-modal__time-row {
    justify-content: center;
  }
  .booking-modal__custom-select-value {
    font-size: 13px;
    padding: 10px 3px;
    min-height: 40px;
    min-width: 24px;
  }
  .booking-modal__custom-select[data-field="ampm"] .booking-modal__custom-select-value {
    min-width: 32px;
    padding: 10px 6px;
  }
  .booking-modal__custom-select-drop {
    max-height: 160px;
  }
  .booking-modal__custom-select-opt {
    font-size: 13px;
    padding: 5px 10px;
  }
}

/* =============================================
   REDESIGN v22 — Full Figma Match (Hero + Header)
   ============================================= */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--clr-primary);
  overflow: visible;
  margin-top: -88px;
  padding-top: 128px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/photophone.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 1;
  z-index: 0;
}

/* Stronger overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(41,31,35,0.78) 0%,
    rgba(41,31,35,0.40) 40%,
    rgba(41,31,35,0.18) 65%,
    rgba(41,31,35,0.55) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 60px 60px 40px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.hero__content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge INSIDE the h1 — inline with title */
.hero__badge {
  display: inline-block;
  vertical-align: middle;
  background: var(--clr-accent-light);
  color: var(--clr-primary);
  font-family: var(--font-accent);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-left: 16px;
  white-space: nowrap;
  position: relative;
  top: -4px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 25px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn--hero {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  padding: 18px 44px;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  display: inline-block;
}

.btn--primary.btn--hero {
  background: var(--clr-accent);
  color: #fff;
}

.btn--primary.btn--hero:hover { opacity: 0.85; transform: translateY(-2px); }

.btn--ghost.btn--hero {
  background: #fff;
  color: var(--clr-primary);
  border: 1px solid transparent;
}

.btn--ghost.btn--hero:hover { 
  opacity: 0.85; 
  transform: translateY(-2px);
  background: rgba(255,255,255,0.9);
}

/* ---- 99% Stat Block — no card, aligned with button */
.hero__social-proof {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-left: 60px;
  margin-top: 140px;
  margin-bottom: 0;
  min-width: 150px;
}

.btn--ghost.btn--hero {
  background: #fff;
  color: var(--clr-primary);
  border: 1px solid transparent;
}

.btn--ghost.btn--hero:hover { 
  opacity: 0.85; 
  transform: translateY(-2px);
  background: rgba(255,255,255,0.9);
}

/* ---- 99% Stat Block — no card ---- */
.hero__social-proof {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-left: 40px;
  min-width: 150px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  text-align: center;
}

.hero__stat-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.hero__stars {
  display: flex;
  gap: 4px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--clr-accent);
  font-size: 18px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(41,31,35,0.10);
}

/* ---- Feature bar — full width, no icons ---- */
.hero__feature-bar {
  position: relative;
  z-index: 1;
  background: var(--clr-accent-light);
  width: 100%;
}

.hero__feature-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 50px;
  flex-wrap: wrap;
  max-width: none;
  margin: 0;
}

.hero__feature-item {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero__feature-dot {
  color: var(--clr-primary);
  font-size: 20px;
  opacity: 0.4;
  line-height: 1;
}

/* -- Marquee ticker -- */
.marquee {
  overflow: visible;
}
.marquee.marquee {
  gap: 32px !important;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.marquee__track[aria-hidden="true"] {
  display: none;
}
/* trailing separator — adds right gap equal to track gap so loop junction is symmetric */
.marquee__sep {
  margin-right: 32px;
}
/* hide trailing dot on desktop (no marquee loop needed) */
@media (min-width: 641px) {
  .marquee__sep { display: none; }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- HEADER — Floating white card ---- */
.header {
  position: sticky;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0 40px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  max-width: 1360px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Logo centered */
.logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}

.logo__img {
  display: block;
  width: auto;
  max-height: 56px;
  height: auto;
}

.logo__img--light { display: none; }
.logo__img--dark  { display: block; }

/* Nav links on white card */
.nav__link {
  color: var(--clr-primary);
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav__link:hover {
  opacity: 0.8;
}

/* Promo bar — larger font */
.promo-bar {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- FEATURES SECTION ---- */
.features {
  background: var(--clr-bg);
  padding: 80px 0;
}

.features__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 50px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.feature-card__img {
  height: 280px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.feature-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-primary);
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero__inner { padding: 40px 40px 50px; }
  .header { padding: 0; }
  .header__inner { padding: 0 30px; border-radius: 0; max-width: none; }
  .features__inner { padding: 0 30px; }
  .hero__feature-bar-inner { padding: 18px 30px; gap: 20px; }
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 36px; }
  .hero__badge { font-size: 11px; padding: 4px 12px; margin-left: 8px; }
}

@media (max-width: 640px) {
  .header { top: 0; }
  .header__inner { padding: 0 16px; height: 70px; border-radius: 0; max-width: none; }
  .nav__list { display: none; }
  #nav-right { display: none; }
  .hamburger { display: flex; }
  .logo__img { max-height: 30px; }
  .hero { margin-top: -88px; padding-top: 128px; }
  .hero__inner { padding: 40px 24px 30px; flex-direction: column; gap: 30px; }
  .hero__content { padding-left: 0; }
  .hero__social-proof { margin-left: 0; }
  .hero__feature-bar-inner { gap: 0; padding: 18px 0; flex-wrap: nowrap; overflow: hidden; }
  .hero__feature-item { font-size: 16px; font-weight: 600; }
  .hero__feature-dot { color: var(--clr-primary); opacity: 0.5; font-size: 18px; line-height: 1; vertical-align: middle; }
  .marquee { overflow: hidden; }
  .marquee.marquee { gap: 0 !important; }
  .marquee__track[aria-hidden="true"] { display: flex; }
  .marquee__track { gap: 24px; animation: marquee-scroll 22s linear infinite; }
  .features { padding: 50px 0; }
  .features__inner { padding: 0 20px; }
  .features__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card__img { height: 200px; }
  .promo-bar { display: none; }
}

/* ====== REDESIGN v24 — RESULTS (Before/After Carousel) ====== */
.results {
  padding: 50px 0 60px;
  background: #e9cbb3;
}

.results__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top row: heading left, intro right */
.results__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.results__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.results__tag {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b07d57;
  margin-bottom: 8px;
}

.results__title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.0;
  color: #2a1f1f;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 560px;
}

.results__intro {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #805a4d;
  max-width: 540px;
  margin: 0;
  padding-top: 24px;
}

/* Carousel */
.results__track {
  margin: 0 -40px;
  padding: 0 40px;
  overflow-x: clip;
}

.results__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.results__scroll::-webkit-scrollbar {
  display: none;
}

.result-card {
  flex: 0 0 552px;
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
}

.result-card:last-child {
  margin-right: 80px; /* peek space */
}

.rc__split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  aspect-ratio: 552 / 428;
  overflow: hidden;
}

.rc__single {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 552 / 428;
  overflow: hidden;
}

.rc__half {
  overflow: hidden;
  position: relative;
}

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

.rc__single img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Category pill — top-left */
.rc__pill {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  background: rgba(95, 78, 73, 0.6);
  padding: 10px 22px;
  border-radius: 12px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Bottom overlay strip */
.rc__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 70px;
  background: rgba(82, 57, 47, 0.5);
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.rc__label {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.rc__label--before {
  position: absolute;
  left: 28px;
}

.rc__label--after {
  position: absolute;
  right: 28px;
}

.rc__count {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin-left: 6px;
  opacity: 0.85;
}

/* Footer row */
.results__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
}

.results__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9b8a82;
  transition: all 0.3s;
}

.dot--active {
  width: 30px;
  height: 7px;
  border-radius: 50px;
  background: #2f2220;
}

.results__tagline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #805a4d;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .results__title { font-size: 46px; }
  .results__intro { font-size: 18px; max-width: 420px; }
  .result-card { flex: 0 0 480px; }
  .rc__split,
.rc__single { aspect-ratio: 480 / 380; }
}

@media (max-width: 900px) {
  .results { padding: 40px 0 50px; }
  .results__inner { padding: 0 24px; }
  .results__top { flex-direction: column; gap: 16px; }
  .results__title { font-size: 36px; }
  .results__intro { font-size: 16px; max-width: 100%; }
  .results__track { margin: 0 -24px; padding: 0 24px; }
  .result-card { flex: 0 0 420px; }
  .rc__split,
.rc__single { aspect-ratio: 420 / 340; }
}

@media (max-width: 640px) {
  .results { padding: 30px 0 40px; }
  .results__inner { padding: 0 16px; }
  .results__title { font-size: 28px; }
  .results__tag { font-size: 14px; }
  .results__intro { font-size: 14px; }
  .results__track { margin: 0 -16px; padding: 0 16px; }
  .result-card { flex: 0 0 320px; }
  .rc__split,
.rc__single { aspect-ratio: 320 / 260; }
  .result-card:last-child { margin-right: 40px; }
  .rc__pill { font-size: 14px; padding: 8px 16px; top: 16px; left: 16px; }
  .rc__overlay { height: 56px; padding: 0 16px; }
  .rc__label { font-size: 16px; }
  .rc__label--before { left: 16px; }
  .rc__label--after { right: 16px; }
  .rc__count { font-size: 12px; }
  .results__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .results__tagline { font-size: 15px; }
}

/* ====== REDESIGN v23 — POPULAR AREAS ====== */
.popular-areas {
  padding: 80px 0;
  background: #f7f6f4;
}

.popular-areas__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 96px;
}

/* Top row: heading left, button right */
.popular-areas__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.popular-areas__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.popular-areas__tag {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.popular-areas__title {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--clr-primary);
  text-transform: uppercase;
}

.popular-areas__btn {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 22px;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.popular-areas__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Grid — full-image cards */
.popular-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.popular-areas__card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s;
}

.popular-areas__card:hover {
  transform: translateY(-4px);
}

.pac__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.23;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

/* Dark overlay block at bottom (36-38% of card) */
.pac__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: rgba(41,31,35,0.35);
  pointer-events: none;
}

/* Text on top of image */
.pac__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
}

.pac__zone {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pac__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: #2e2328;
  padding: 10px 22px;
  border-radius: 15px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
  .popular-areas__inner { padding: 0 40px; }
}

@media (max-width: 1100px) {
  .popular-areas__title { font-size: 48px; }
  .popular-areas__tag { font-size: 15px; }
  .popular-areas__btn { font-size: 18px; padding: 14px 28px; }
}

@media (max-width: 900px) {
  .popular-areas { padding: 60px 0; }
  .popular-areas__inner { padding: 0 24px; }
  .popular-areas__title { font-size: 38px; }
  .popular-areas__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .popular-areas__btn { font-size: 18px; padding: 14px 28px; }
}

@media (max-width: 640px) {
  .popular-areas { padding: 40px 0; }
  .popular-areas__inner { padding: 0 16px; }
  .popular-areas__title { font-size: 28px; }
  .popular-areas__top { margin-bottom: 30px; }
  .popular-areas__tag { font-size: 13px; }
  .popular-areas__btn { font-size: 16px; padding: 12px 24px; border-radius: 18px; }
  .popular-areas__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pac__zone { font-size: 24px; }
  .pac__badge { font-size: 16px; padding: 8px 16px; border-radius: 12px; }
}

/* ====== WHY BEYONDSKIN RESPONSIVE ====== */
@media (max-width: 1100px) {
  .why-section { padding: 60px 0; }
  .why__inner { padding: 0 40px; }
  .why__title { font-size: 40px; }
  .why__row { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .why__panel { padding: 40px 24px 36px; gap: 20px; }
  .why__pill { font-size: 12px; padding: 16px 28px; column-gap: 10px; }
}

@media (max-width: 900px) {
  .why-section { padding: 50px 0; }
  .why__inner { padding: 0 24px; }
  .why__title { font-size: 36px; }
  .why__row { grid-template-columns: 1fr; gap: 16px; }
  .why__media { aspect-ratio: 16 / 9; max-height: 340px; }
  .why__panel { padding: 32px 24px; }
  .why__pill { border-radius: 40px; padding: 14px 24px; font-size: 11px; column-gap: 8px; }
}

@media (max-width: 640px) {
  .why-section { padding: 40px 0; }
  .why__inner { padding: 0 16px; }
  .why__heading { margin-bottom: 32px; }
  .why__tag { font-size: 14px; }
  .why__title { font-size: 28px; }
  .why__row { gap: 12px; margin-bottom: 40px; }
  .why__media { aspect-ratio: 4 / 3; }
  .why__panel { padding: 24px 20px; gap: 16px; }
  .why__panel-text { font-size: 14px; }
  .why__btn { font-size: 14px; padding: 12px 24px; width: 100%; text-align: center; }
  .why__pill { border-radius: 30px; padding: 12px 20px; font-size: 10px; column-gap: 6px; }
}

/* =========================================================================
   MOBILE REDESIGN v25 — Full mobile adaptation
   Брейкпоинты: 768px (планшет), 576px (телефон), 400px (мелкий)
   ========================================================================= */

/* ===== BREAKPOINT: 768px — Планшет (поверх существующих) ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0 40px; }

  /* -- HEADER -- */
  .header__inner { height: 72px; padding: 0 20px; }

  /* -- HERO — Figma mobile layout -- */
  .hero__title { font-size: 36px; white-space: normal; word-break: break-word; }
  .hero__title-line1, .hero__title-line2 { white-space: normal; display: block; }
  .hero__title-line2 .hero__badge { margin-left: 0; display: inline-block; margin-top: 8px; }
  .hero__badge { font-size: 11px; padding: 4px 14px; }
  .hero__subtitle { white-space: normal; }
  .hero__actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero__social-proof { margin-left: 0; }

  /* -- RESULTS -- */
  .results__title { font-size: 30px; white-space: normal; }
  .result-card { flex: 0 0 380px; }
  .rc__split, .rc__single { aspect-ratio: 380 / 300; }
  .result-card:last-child { margin-right: 40px; }

  /* -- FAQ -- */
  .faq__title { font-size: 32px; }
  .faq-item__q { min-height: 48px; }

  /* -- PRICING TABLE -- */
  .popular-areas__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hiw__cards { grid-template-columns: repeat(2, 1fr); }
}

/* ===== BREAKPOINT: 576px — Телефон ===== */

/* ===== BREAKPOINT: 576px — Телефон ===== */
@media (max-width: 576px) {
  .nav { display: none; }
  .container { padding: 0 16px; }
  .section { padding: 40px 0 32px; }
  .section__tag { font-size: 11px; padding: 3px 12px; letter-spacing: 1.5px; margin-bottom: 12px; }

  /* ============================================
     FIGMA MOBILE HERO — pixel-perfect (375×651)
     ============================================ */

  /* -- PROMO BAR (верхняя тёмная) -- */
  .promo-bar {
    display: none;
  }

  /* -- HEADER — pill карточка поверх promo-bar -- */
  /* === MOBILE HEADER — прозрачный, поверх фото === */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 0;
    pointer-events: none;
  }
  .header__inner {
    height: 64px;
    padding: 0 20px;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }
  /* при скролле — лёгкая подложка */
  .header--scrolled .header__inner {
    background: rgba(41, 31, 35, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
  }

  /* лого слева, белый вариант */
  .header__inner .nav:first-of-type { display: none; }
  .header__inner #nav-right { display: none; }
  .header__inner .logo { order: 1; position: static; transform: none; }
  .header__inner .hamburger { order: 2; }
  .logo__img--dark  { display: none; }
  .logo__img--light { display: block; filter: brightness(0) invert(1); }
  .logo__img { max-height: 38px; }

  /* Hamburger — белые линии */
  .hamburger {
    width: 28px;
    height: 20px;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .hamburger span {
    background: #ffffff;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    display: block;
  }

  /* -- HERO -- */
    .hero {
    margin-top: 0;
    padding-top: 66px;
    padding-bottom: 24px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  .hero__inner {
    padding: 90px 16px 0;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    align-content: space-between;
  }
  .hero__content {
    max-width: 100%;
    padding-left: 24px;
  }

  /* -- BADGE локации (BeyondSkin MedSpa · Los Feliz, LA) -- */
  .hero__title {
    position: relative;
    padding-top: 32px;
    font-size: 38px;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.3px;
    color: #FFF8F2;
    white-space: normal;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .hero__title-line1, .hero__title-line2 { white-space: normal; display: inline; }
  .hero__badge {
    font-size: 11px;
    padding: 4px 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #E9D9C7;
    color: #4D413C;
    border: none;
    border-radius: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    line-height: 1.3;
    margin: 0;
  }

  /* -- Подзаголовок -- */
  .hero__subtitle {
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 36px;
    white-space: normal;
    max-width: 100%;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(255,255,255,0.92);
  }

  /* -- Рейтинг-карточка (полупрозрачно-белая, 140px) -- */
  .hero__social-proof {
    margin-left: 0;
    min-width: 0;
    width: 140px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 16px 18px 14px;
    margin-bottom: 36px;
    min-height: 94px;
    border: 1px solid rgba(255,255,255,0.14);
  }
  .hero__stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 0;
  }
  .hero__stat-num {
    font-size: 20px;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: 0;
  }
  .hero__stat-label {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.15;
    color: rgba(255,255,255,0.92);
  }
  .hero__stat-sub { display: none; }
  .hero__stars {
    display: inline-flex;
    gap: 3px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 4px 8px;
    margin-top: auto;
    align-self: flex-start;
  }
  .hero__stars i, .hero__stars .fas, .hero__rating-stars .fas {
    color: #B88354;
    font-size: 10px;
    letter-spacing: 0;
  }
  .hero__rating { display: none; }

  /* -- CTA кнопки (в строку) -- */
  .hero__actions {
    flex-direction: row;
    gap: 12px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
    align-items: center;
  }
  .hero__actions .btn {
    width: auto;
    min-height: 40px;
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .hero__actions .btn--primary,
  .hero__actions .btn--hero.btn--primary {
    background: #C38E5F;
    color: #FFFFFF;
    font-weight: 600;
    border: none;
    flex: 0 0 auto;
  }
  .hero__actions .btn--ghost,
  .hero__actions .btn--hero.btn--ghost {
    background: #FFFFFF;
    color: #3E322F;
    font-weight: 500;
    border: none;
    flex: 0 0 auto;
  }

  /* -- FEATURE BAR (нижняя полоска) -- */
  /* --- Trust items вместо feature bar на мобилке --- */
  .hero__trust--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 12px;
    padding: 36px 12px 36px;
    margin-top: 32px;
    width: 100%;
    order: 10;
    align-self: flex-end;
  }
  .hero__trust--mobile .trust-item {
    flex: 0 0 calc(50% - 8px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero__trust--mobile .trust-item__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  .hero__trust--mobile .trust-item__label {
    font-size: 16px;
    letter-spacing: 0;
    color: #ffffff;
  }
  .hero__trust--mobile .trust-item__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
  }

  .hero__feature-bar {
    display: none;
  }
  .hero__feature-bar-inner {
    padding: 18px 0;
    gap: 0;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .hero__feature-item {
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    color: #3F332E;
    text-transform: uppercase;
    font-weight: 600;
  }
  .hero__feature-dot {
    color: #3F332E;
    opacity: 0.5;
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .marquee__track {
    gap: 24px;
    animation: marquee-scroll 22s linear infinite;
  }

  /* -- Оверлей на фото — лёгкий, тёплый -- */
  .hero__bg { background-position: center 30%; }
  .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(90, 60, 45, 0.15) 0%,
      rgba(90, 60, 45, 0.10) 50%,
      rgba(90, 60, 45, 0.20) 100%
    );
  }

  /* ============================================
     POPULAR AREAS — Figma mobile (163×202 cards)
     ============================================ */
  .popular-areas__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
  }
  .popular-areas__title {
    font-size: 28px;
    line-height: 1.1;
  }
  .popular-areas__tag { font-size: 13px; }
  .popular-areas__btn {
    width: auto;
    min-width: 113px;
    height: 31px;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    border-radius: 10px;
    background: #C38E5F;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: flex-end;
  }
  .popular-areas__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Card sizing */
  .popular-areas__card { border-radius: 8px; overflow: hidden; }
  .pac__img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 163 / 202;
  }
  .pac__overlay {
    height: 72px;
    background: linear-gradient(transparent, rgba(45, 35, 35, 0.85));
    padding: 18px 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
  .pac__zone {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .pac__badge {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 8px;
    background: #291F23;
    color: #fff;
    font-weight: 400;
    display: inline-block;
  }

  /* ============================================
     WHY BEYONDSKIN — Figma stacked layout
     ============================================ */
  .why-section { padding: 40px 0; }
  .why__heading { margin-bottom: 20px; }
  .why__tag { font-size: 11px; }
  .why__title {
    font-size: 30px;
    line-height: 1.1;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #3D2E2E;
    letter-spacing: -0.02em;
  }
  .why__row { grid-template-columns: 1fr; gap: 20px; }
  .why__media {
    aspect-ratio: 336 / 244;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
  }
  .why__panel {
    padding: 30px 26px;
    background: #E9CCB1;
    border-radius: 22px;
    text-align: center;
  }
  .why__panel-accent { display: none; }
  .why__panel-sub {
    font-size: 26px;
    line-height: 1.15;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #3B2B2B;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .why__panel-text {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    max-width: 270px;
    margin: 0 auto 24px;
    color: #4A3A35;
  }
  .why__btn {
    font-size: 15px;
    width: 280px;
    max-width: 100%;
    min-height: 54px;
    background: #FAF9F7;
    color: #3F3532;
    border: none;
    border-radius: 14px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1;
  }
  .why__pill {
    border-radius: 18px;
    padding: 16px 22px;
    font-size: 14px;
    min-height: 73px;
    background: #B98757;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 4px;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 24px;
  }
  .why__pill-dot { color: rgba(255,255,255,0.5); font-size: 10px; }

  /* ============================================
     HOW IT WORKS — Figma: 300×300 square + badge
     ============================================ */
  .hiw__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hiw__title {
    font-size: 30px;
    line-height: 1.1;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #3D2E2E;
    letter-spacing: -0.02em;
  }
  .hiw__tag { font-size: 11px; }
  .hiw__rating { width: 100%; justify-content: flex-start; }
  .hiw__rating-pill { padding: 8px 14px; }
  .hiw__rating-line1 { font-size: 20px; }
  .hiw__rating-line2 { font-size: 13px; }
  .hiw__cards { grid-template-columns: 1fr; gap: 16px; }

  .hiw__card-img {
    aspect-ratio: 2 / 1;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .hiw__card-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #2D2023;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .hiw__card-body {
    padding: 20px 4px 0;
    text-align: left;
  }
  .hiw__card-title {
    font-size: 18px;
    color: #B87E4B;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
  }
  .hiw__card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #3B3333;
  }

  /* ============================================
     OUR TECHNOLOGY — MOBILE: hidden
     ============================================ */
  .tech { display: none; }
  .tech__row {
    flex-direction: column;
    gap: 20px;
  }
  .tech__card {
    background: #fff;
    padding: 0;
    border-radius: 0;
    text-align: center;
  }
  .tech__tag {
    font-size: 11px;
    color: #B87E4B;
    display: block;
    margin: 0 auto 12px;
    text-align: center;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    border: 1px solid #B87E4B;
    border-radius: 30px;
    width: fit-content;
  }
  .tech__title {
    font-size: 30px;
    line-height: 1.1;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #2E2626;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 32px;
    max-width: 280px;
  }
  .tech__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .tech__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .tech__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
  }
  .tech__feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #B87E4B;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
  }
  .tech__feature-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #3B3333;
    max-width: 280px;
    margin: 0 auto;
  }
  .tech__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .tech__footer-line {
    width: 60px;
    height: 3px;
    background: #B87E4B;
    border-radius: 2px;
  }
  .tech__footer p {
    font-size: 14px;
    line-height: 1.5;
    color: #3B3333;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Machine photo — centered, full width */
  .tech__media {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 334 / 402;
  }
  .tech__media img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tech__badge {
    position: absolute !important;
    bottom: 22px !important;
    right: 22px !important;
    width: 144px !important;
    height: 60px !important;
    border-radius: 30px !important;
    object-fit: cover !important;
  }

  /* ============================================
     RESULTS — Figma: full-width carousel cards
     ============================================ */
  .results { padding: 40px 0; }
  .results__inner { padding: 0 16px; }
  .results__top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .results__tag {
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #B07E5D;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
  }
  .results__title {
    font-size: 26px;
    line-height: 1.15;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #2E2222;
    text-transform: uppercase;
    white-space: normal;
    width: 100%;
  }
  .results__intro {
    font-size: 15px;
    line-height: 1.4;
    color: #B07E5D;
    width: 100%;
    margin-top: 6px;
  }
  .results__track { margin: 0 -16px; padding: 0 16px; }

  .result-card {
    flex: 0 0 344px;
    border-radius: 20px;
    overflow: hidden;
  }
  .rc__single {
    aspect-ratio: 344 / 300;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  .rc__single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .result-card:last-child { margin-right: 32px; }

  /* Category pill (top-left) */
  .rc__pill {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(50, 40, 40, 0.55);
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.03em;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* Bottom overlay */
  .rc__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: linear-gradient(transparent, rgba(40, 30, 30, 0.6));
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rc__label {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
  }
  .rc__label--after { text-align: right; }
  .rc__count {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    margin-left: 4px;
    font-weight: 300;
  }

  /* Results bottom */
  .results__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
  }
  .results__dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .results__dots .dot { background: #fff; border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
  }
  .results__dots .dot--active {
    width: 30px;
    height: 8px;
    border-radius: 999px;
    background: #ab7b53;
  }
  .results__tagline {
    font-size: 15px;
    color: #8E6D5B;
    font-weight: 400;
  }

  /* ============================================
     FAQ — Figma: white pill items, 27px padding
     ============================================ */
  .faq { padding: 40px 0; }
  .faq__row { flex-direction: column; }
  .faq__tag {
    font-size: 11px;
    color: #B07E5D;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .faq__title {
    font-size: 34px;
    line-height: 1.05;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #3A2C2B;
    text-transform: uppercase;
    text-align: center;
    max-width: 220px;
    margin: 0 auto;
    letter-spacing: -0.02em;
  }
  .faq__subtitle {
    font-size: 14px;
    color: #8E6D5B;
    text-align: center;
    margin-bottom: 22px;
    font-weight: 400;
  }
  .faq__list { display: flex; flex-direction: column; gap: 14px; }
  .faq-item__q {
    padding: 14px 27px;
    font-size: 15px;
    min-height: 52px;
    border-radius: 16px;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: #2F2F2F;
    font-weight: 400;
    gap: 12px;
  }
  .faq-item__label { flex: 1; }
  .faq-item__plus {
    font-size: 18px;
    color: #2F2F2F;
    font-weight: 300;
    flex-shrink: 0;
  }
  .faq-item__a p {
    padding: 8px 27px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #5A4A45;
  }
  .faq__image { order: -1; margin-bottom: 20px; }
  .faq__image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 280px;
  }

  /* ============================================
     TESTIMONIALS — Figma: caramel card, white pill author
     ============================================ */
  .testimonials { padding: 40px 0; }
  .testimonials__tag {
    font-size: 11px;
    color: #C69067;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    text-align: center;
    margin-bottom: 8px;
  }
  .testimonials__title {
    font-size: 28px;
    line-height: 1.15;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #30262A;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    background: #B88659;
    border-radius: 16px;
    padding: 48px 26px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .testimonial-card__stars {
    display: flex;
    gap: 4px;
    justify-content: center;
  }
  .testimonial-card__stars svg { fill: #F8F5F2; width: 18px; height: 18px; }
  .testimonial-card__text {
    font-size: 15px;
    line-height: 1.45;
    color: #fff;
    font-weight: 400;
    max-width: 270px;
    margin: 0 auto;
  }
  .testimonial-card__author {
    display: inline-block;
    background: #fff;
    border-radius: 18px;
    padding: 8px 24px;
    font-size: 19px;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #30262A;
    min-width: 120px;
    text-align: center;
  }

  .testimonials__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    height: 54px;
    background: #30262A;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 54px;
    margin: 20px auto 0;
    text-decoration: none;
  }

  /* ============================================
     CTA DISCOVER — Figma: #2A1F24, 44px title
     ============================================ */
  .cta-discover {
    background: #2A1F24;
    padding: 60px 0 56px;
    text-align: center;
  }
  .cta-discover__title {
    font-size: 42px;
    line-height: 1.05;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #F4F0EE;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .cta-discover__highlight {
    color: #C9A99A;
  }
  .cta-discover__text {
    font-size: 13px;
    line-height: 1.5;
    color: #F3EFED;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    max-width: 300px;
    margin: 0 auto 32px;
    font-weight: 400;
  }
  .cta-discover__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 143px;
    height: 48px;
    background: #F5F3F2;
    color: #3A3133;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
  }

  /* ============================================
     CTA JOURNEY (Start Your Journey) — Figma
     ============================================ */
  .cta-journey {
    background: #2A1F22;
    padding: 60px 0 56px;
    text-align: center;
  }
  .cta-journey__tag {
    font-size: 13px;
    color: #F4EFEC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 28px;
    opacity: 0.8;
  }
  .cta-journey__title {
    font-size: 36px;
    line-height: 1.08;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #F4EFEC;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    max-width: 310px;
    margin: 0 auto 28px;
  }
  .cta-journey__accent { color: #D8BEAF; }
  .cta-journey__text {
    font-size: 15px;
    line-height: 1.5;
    color: #F4EFEC;
    margin-bottom: 28px;
    font-weight: 400;
  }
  .cta-journey__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 192px;
    height: 53px;
    background: #F2F0EC;
    color: #3A2A2A;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    margin-bottom: 28px;
  }
  .cta-journey__phone {
    font-size: 15px;
    color: #F4EFEC;
    font-weight: 400;
  }
  .cta-journey__num { color: #D8BEAF; }

  /* ============================================
     FOOTER
     ============================================ */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 16px;
  }
  .footer__desc { font-size: 13px; }
  .footer__links a { font-size: 13px; }
  .footer__social a { width: 40px; height: 40px; font-size: 16px; }

  /* ============================================
     GLOBAL BUTTONS
     ============================================ */
  .btn { min-height: 48px; }
  .btn--nav { width: 100%; justify-content: center; }
  .btn--small {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 11px;
  }

  /* ============================================
     STICKY CTA
     ============================================ */
  }


/* ===== BREAKPOINT: 400px — Мелкие телефоны ===== */

/* ===== BREAKPOINT: 400px — Мелкие телефоны ===== */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .section { padding: 32px 0 24px; }

  .header__inner { height: 56px; padding: 0 12px; margin: 0 12px; border-radius: 12px; }
  .logo__img { max-height: 24px; }
  .promo-bar { display: none; }

  .hero__inner { padding: 80px 12px 0; }
  .hero__title { padding-top: 28px; font-size: 30px; }
  .hero__badge { font-size: 10px; padding: 3px 10px; }
  .hero__subtitle { font-size: 11px; }
  .hero__actions .btn { font-size: 12px; padding: 0 14px; min-height: 36px; height: 36px; border-radius: 11px; }
  .hero__social-proof { padding: 12px 12px 10px; border-radius: 14px; width: 120px; min-height: 80px; }
  .hero__stat-num { font-size: 16px; }
  .hero__stat-label { font-size: 10px; }
  .hero__stars { padding: 3px 6px; }
  .hero__stars i, .hero__stars .fas, .hero__rating-stars .fas { font-size: 8px; }
  .hero__feature-bar { padding: 14px 12px; margin-top: 24px; }
  .hero__feature-item { font-size: 13px; letter-spacing: 0.3px; }
  .marquee__track { animation: marquee-scroll 20s linear infinite; }
  .marquee__sep { margin-right: 20px !important; }

  /* Popular areas */
  .popular-areas__title { font-size: 24px; }
  .popular-areas__grid { gap: 8px; }
  .pac__zone { font-size: 14px; }
  .pac__badge { font-size: 11px; padding: 2px 8px; border-radius: 6px; }
  .pac__overlay { height: 64px; padding: 14px 8px 10px; }
  .popular-areas__btn { height: 28px; font-size: 10px; min-width: 100px; }

  /* Why */
  .why__title { font-size: 26px; }
  .why__panel-sub { font-size: 22px; }
  .why__panel-text { font-size: 14px; }
  .why__btn { width: 100%; min-height: 48px; font-size: 14px; }
  .why__pill { font-size: 12px; min-height: 64px; padding: 14px 16px; border-radius: 16px; }
  .why__media { aspect-ratio: 16/10; border-radius: 16px; min-height: 180px; }

  /* HIW */
  .hiw__title { font-size: 26px; }
  .hiw__card-title { font-size: 16px; }
  .hiw__card-text { font-size: 13px; }
  .hiw__card-img { aspect-ratio: 2 / 1; border-radius: 16px; }
  .hiw__card-badge { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; bottom: 14px; right: 14px; }

  /* Technology */
  .tech__title { font-size: 26px; }
  .tech__feature-text h4 { font-size: 16px; }
  .tech__feature-text p { font-size: 13px; }
  .tech__card { padding: 20px 16px; border-radius: 16px; }
  .tech__footer-line { max-width: 70%; }
  .tech__badge { width: 120px !important; height: 50px !important; border-radius: 25px !important; bottom: 16px !important; right: 16px !important; }

  /* Results */
  .results__title { font-size: 22px; }
  .result-card { flex: 0 0 calc(100vw - 32px); }
  .rc__single { aspect-ratio: calc(100vw - 32px) / 280; border-radius: 16px; }
  .rc__pill { font-size: 11px; padding: 5px 12px; top: 12px; left: 12px; border-radius: 8px; }
  .rc__overlay { height: 40px; padding: 0 12px; }
  .rc__label { font-size: 13px; }
  .rc__count { font-size: 10px; }

  /* FAQ */
  .faq__title { font-size: 28px; }
  .faq-item__q { padding: 12px 20px; font-size: 14px; min-height: 46px; border-radius: 14px; }
  .faq-item__a p { padding: 6px 20px 14px; font-size: 12px; }

  /* Testimonials */
  .testimonials__title { font-size: 24px; }
  .testimonial-card { padding: 36px 18px 28px; border-radius: 14px; }
  .testimonial-card__text { font-size: 14px; }
  .testimonial-card__author { font-size: 17px; padding: 6px 20px; }

  /* CTA Discover */
  .cta-discover { padding: 48px 0 44px; }
  .cta-discover__title { font-size: 34px; }
  .cta-discover__text { font-size: 12px; letter-spacing: 0.05em; }
  .cta-discover__btn { width: 130px; height: 44px; font-size: 14px; border-radius: 10px; }

  /* CTA Journey */
  .cta-journey { padding: 48px 0 44px; }
  .cta-journey__title { font-size: 30px; }
  .cta-journey__btn { width: 195px; height: 48px; font-size: 14px; border-radius: 14px; white-space: nowrap; }
  .cta-journey__text { font-size: 14px; }
  .cta-journey__phone { font-size: 14px; }

  /* Footer */
  .footer__inner { padding: 28px 12px; gap: 24px; }
  .footer__social a { width: 36px; height: 36px; font-size: 14px; }

  /* Buttons */
  .btn { min-height: 44px; }
  .btn--small {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 10px;
  }
}


/* ============================================
   FIGMA REFINEMENT PATCH (mobile 576px)
   Our Technology · Testimonials · FAQ · CTA Discover
   ============================================ */
@media (max-width: 576px) {

  /* ============================================
     OUR TECHNOLOGY — Figma refined
     ============================================ */
  .tech {
    background: #EFCFB3;
    padding: 44px 0 40px;
  }
  .tech__row {
    flex-direction: column;
    gap: 18px;
    padding: 0 20px;
  }
  .tech__card {
    background: #F9F9F9;
    border-radius: 20px;
    padding: 20px 24px 34px;
    order: 1;
  }
  .tech__tag {
    font-size: 11px;
    color: #BC885B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
    display: block;
    text-align: left;
    margin-bottom: 8px;
  }
  .tech__title {
    font-size: 32px;
    line-height: 1.1;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #34282A;
    text-transform: uppercase;
    letter-spacing: 0;
    text-align: left;
    max-width: 300px;
    margin-bottom: 30px;
  }
  .tech__grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 34px;
  }
  .tech__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .tech__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid #BC885B;
    color: #BC885B;
    padding: 4px;
    object-fit: contain;
    background: transparent;
  }
  .tech__feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #BC885B;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-align: center;
  }
  .tech__feature-text p {
    font-size: 15px;
    line-height: 1.4;
    color: #463A3B;
    font-weight: 400;
    text-align: center;
    max-width: 240px;
    margin: 0 auto;
  }
  .tech__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 28px;
    text-align: center;
  }
  .tech__footer-line {
    width: 270px;
    max-width: 90%;
    height: 2px;
    background: #B78458;
    margin: 0 auto;
  }
  .tech__footer p {
    font-size: 15px;
    line-height: 1.4;
    color: #463A3B;
    max-width: 235px;
    margin: 0 auto;
  }

  /* Tech media below card */
  .tech__media {
    order: 2;
    aspect-ratio: 334 / 407;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
  }
  .tech__media img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* CUTERA badge as pill (fallback if used as bg image) */
  .tech__badge {
    position: absolute !important;
    bottom: 18px !important;
    right: 22px !important;
    width: 140px !important;
    height: 58px !important;
    border-radius: 29px !important;
    object-fit: cover !important;
  }

  /* ============================================
     TESTIMONIALS — Figma refined (SLIDER-style)
     ============================================ */
  .testimonials {
    background: #F8F8F7;
    padding: 78px 0 34px;
  }
  .testimonials__inner,
  .testimonials .container {
    padding: 0 28px;
  }
  .testimonials__tag {
    font-size: 11px;
    color: #BC885B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .testimonials__title {
    font-size: 32px;
    line-height: 1.05;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #33282A;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 18px;
  }

  /* Slider indicators (JS-injected) */
  .testimonials__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
    align-items: center;
  }
  .testimonials__dots .t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BDBABD;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
  }
  .testimonials__dots .t-dot--active {
    width: 30px;
    border-radius: 999px;
    background: #34282A;
  }

  /* Grid → horizontal scroll slider */
  .testimonials__grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -28px;
    padding: 0 28px;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: 319px;
    scroll-snap-align: center;
    background: #B68458;
    border-radius: 18px;
    padding: 30px 24px 28px;
    min-height: 378px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 24px;
  }
  .testimonial-card__stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 4px;
  }
  .testimonial-card__stars i, 
  .testimonial-card__stars .fas,
  .testimonial-card__stars svg {
    color: #FFFFFF;
    fill: #FFFFFF;
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  .testimonial-card__text {
    font-size: 16px;
    line-height: 1.3;
    color: #FFFFFF;
    font-weight: 400;
    max-width: 270px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .testimonial-card__author {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0 26px;
    height: 39px;
    min-width: 130px;
    font-size: 18px;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #34282A;
  }

  /* Yelp CTA */
  .testimonials__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 319px;
    height: 54px;
    background: #2F2327;
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 54px;
    margin: 21px auto 0;
    text-decoration: none;
  }

  /* ============================================
     FAQ — Figma refined (beige bg)
     ============================================ */
  .faq {
    background: #EFCFB3;
    padding: 80px 0 35px;
  }
  .faq .container,
  .faq__inner {
    padding: 0 27px;
  }
  .faq__row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .faq__content { order: 1; }
  .faq__image { order: 2; margin-top: 18px; }
  .faq__image img {
    border-radius: 18px;
    width: 100%;
    aspect-ratio: 320 / 272;
    object-fit: cover;
    max-height: none;
  }
  .faq__tag {
    font-size: 11px;
    color: #BC885B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .faq__title {
    font-size: 32px;
    line-height: 1.05;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #34282A;
    text-transform: uppercase;
    text-align: center;
    max-width: 270px;
    margin: 0 auto 8px;
    letter-spacing: 0;
  }
  .faq__subtitle {
    font-size: 15px;
    line-height: 1.35;
    color: #9A7559;
    font-weight: 400;
    text-align: center;
    margin-bottom: 22px;
    display: block;
  }
  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .faq-item {
    background: #F8F8F7;
    border-radius: 17px;
    overflow: hidden;
  }
  .faq-item__q {
    background: #F8F8F7;
    border: none;
    border-radius: 17px;
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 400;
    color: #2F2527;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    text-align: left;
    cursor: pointer;
    gap: 12px;
  }
  .faq-item__label { flex: 1; text-align: left; }
  .faq-item__plus {
    font-size: 20px;
    color: #BC885B;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
  }
  .faq-item__a {
    background: #F8F8F7;
    border-radius: 0 0 17px 17px;
    margin-top: -2px;
  }
  .faq-item__a p {
    padding: 4px 28px 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #5A4A45;
    margin: 0;
  }

  /* ============================================
     CTA DISCOVER — Figma refined
     ============================================ */
  .cta-discover {
    background: #2D2226;
    padding: 78px 0 70px;
  }
  .cta-discover__inner,
  .cta-discover .container {
    padding: 0 34px;
    text-align: center;
  }
  .cta-discover__title {
    font-size: 44px;
    line-height: 1.06;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    color: #F7F3F1;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 22px;
    text-align: center;
  }
  .cta-discover__highlight {
    color: #D7B496;
  }
  .cta-discover__text {
    font-size: 14px;
    line-height: 1.35;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    max-width: 285px;
    margin: 0 auto 24px;
    font-weight: 400;
    text-align: center;
  }
  .cta-discover__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 48px;
    background: #F7F7F6;
    color: #34282A;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
  }
}

@media (max-width: 400px) {
  .tech__title { font-size: 28px; }
  .testimonials__title { font-size: 28px; }
  .faq__title { font-size: 28px; }
  .cta-discover__title { font-size: 38px; }
  .cta-discover__btn { width: 160px; height: 44px; font-size: 15px; white-space: nowrap; }
  .testimonial-card { min-height: 340px; padding: 24px 20px; }
  .testimonial-card__text { font-size: 15px; }
  .testimonial-card__author { font-size: 17px; height: 36px; }
  .testimonials__cta { height: 50px; font-size: 15px; }
  .faq-item__q { padding: 16px 22px; font-size: 15px; }
}

/* ============================================
   OUR TECHNOLOGY — center all text in card (mobile)
   ============================================ */


/* ============================================
   HERO MOBILE REFINE v54 — final tune-up
   Figma pixel-perfect (2026-07-02 18:41)
   PC untouched
   ============================================ */
@media (max-width: 576px) {

  /* -- Hero inner: flex-column full-height -- */
  .hero__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 100px 24px 32px !important;
    min-height: calc(100vh - 66px) !important;
    max-width: 100% !important;
    gap: 0 !important;
    position: relative !important;
  }

  /* -- Turn .hero__content into passthrough so we can order its children -- */
  .hero__content {
    display: contents !important;
  }
  .hero__title {
    order: 1 !important;
    padding-top: 60px !important;
    position: relative !important;
  }
  .hero__subtitle {
    order: 2 !important;
    margin-top: 28px !important;
  }
  .hero__social-proof {
    order: 3 !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
  }
  .hero__actions {
    order: 4 !important;
    margin-top: auto !important;
    padding-top: 40px !important;
  }

  /* -- Rating card: dark blur pill, three lines -- */
  .hero__social-proof {
    width: auto !important;
    min-width: 156px !important;
    max-width: 240px !important;
    background: rgba(45, 34, 38, 0.35) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 18px !important;
    padding: 14px 20px 12px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .hero__stat {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
  }
  .hero__stat-num {
    font-size: 22px !important;
    font-family: 'Instrument Serif', 'Cormorant Garamond', 'Georgia', serif !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: #FFFFFF !important;
    letter-spacing: 0 !important;
  }
  .hero__stat-label {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    color: rgba(255,255,255,0.92) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }
  .hero__stat-sub {
    display: block !important;
    width: 100% !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    color: rgba(255,255,255,0.75) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin-top: -2px !important;
  }
  .hero__stars {
    background: rgba(255,255,255,0.95) !important;
    border-radius: 8px !important;
    padding: 4px 10px !important;
    align-self: flex-start !important;
    display: inline-flex !important;
    gap: 3px !important;
    margin-top: 4px !important;
  }
  .hero__stars i,
  .hero__stars .fas {
    color: #B88354 !important;
    font-size: 10px !important;
  }

  /* -- Buttons at very bottom, side by side -- */
  .hero__actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .hero__actions .btn {
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 22px !important;
    font-size: 13px !important;
    border-radius: 22px !important;
    flex: 1 1 auto !important;
    max-width: 170px !important;
    line-height: 1 !important;
  }
  .hero__actions .btn--primary,
  .hero__actions .btn--hero.btn--primary {
    background: #C38E5F !important;
    color: #FFFFFF !important;
    border: none !important;
  }
  .hero__actions .btn--ghost,
  .hero__actions .btn--hero.btn--ghost {
    background: #FFFFFF !important;
    color: #3E322F !important;
    border: none !important;
  }

  /* -- Feature bar dots visible -- */
  .hero__feature-dot {
    display: inline !important;
    color: #3F332E !important;
    opacity: 0.55 !important;
    font-size: 10px !important;
    flex-shrink: 0 !important;
    margin: 0 4px !important;
  }
  .hero__feature-item {
    font-size: 13px !important;
    letter-spacing: 0.4px !important;
  }
  .marquee.marquee { gap: 0 !important; overflow: hidden !important; }
  .marquee__track[aria-hidden="true"] { display: flex !important; }
  .marquee__track { animation: marquee-scroll 20s linear infinite !important; }
  .marquee__sep { margin-right: 20px !important; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 32px !important; }
  .hero__actions .btn { font-size: 12px !important; padding: 0 16px !important; max-width: 155px !important; }
  .hero__stat-num { font-size: 24px !important; }
  .hero__stat-label { font-size: 16px !important; }
  .hero__stat-sub { font-size: 14px !important; }
}


/* === v56 HERO MOBILE — hero flex-column, one viewport === */
@media (max-width: 576px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100dvh !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .hero__inner {
    flex: 1 1 auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 16px 24px 16px !important;
    max-width: 100% !important;
    gap: 0 !important;
    position: relative !important;
  }
  .hero__badge {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
    height: 20px !important;
    background: #E3C7B0 !important;
    color: #291F23 !important;
    border-radius: 10px !important;
    padding: 0 10px !important;
    border: none !important;
    backdrop-filter: unset !important;
    -webkit-backdrop-filter: unset !important;
    font-family: 'Inter',sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: nowrap !important;
    line-height: 20px !important;
  }
  .hero__content {
    display: contents !important;
  }
  .hero__title {
    order: 1 !important;
    position: relative !important;
    padding-top: 28px !important;
    margin-top: 80px !important;
    font-size: 40px !important;
    line-height: 1.1 !important;
  }
  .hero__subtitle {
    order: 2 !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }
  .hero__actions {
    order: 4 !important;
    margin-top: 32px !important;
    padding-top: 0 !important;
  }
  .hero__feature-bar {
    order: 20 !important;
    flex-shrink: 0 !important;
    margin-top: 12px !important;
  }
  .hero__social-proof {
    display: none !important;
  }
  .hero__social-proof-stats { display: none !important; }
  .hero__social-proof-svg { display: flex !important; }
  .hero__stat {
    display: inline !important;
  }
  .hero__stat-num {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    font-family: 'Inter',sans-serif !important;
    display: inline !important;
  }
  .hero__stat-label,
  .hero__stat-sub {
    font-size: 11px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.9) !important;
    font-family: 'Inter',sans-serif !important;
    text-transform: none !important;
    display: inline !important;
  }
  .hero__stars {
    display: block !important;
    margin-top: 4px !important;
  }
  .hero__stars .fas, .hero__stars i {
    font-size: 9px !important;
    color: #AB7B53 !important;
  }
  .hero__actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin-top: 24px !important;
  }
  .hero__actions .btn {
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 20px !important;
    font-size: 12px !important;
    border-radius: 20px !important;
    flex: 1 1 auto !important;
    max-width: 160px !important;
    line-height: 1 !important;
  }
  .hero__actions .btn--primary,
  .hero__actions .btn--hero.btn--primary {
    background: #C38E5F !important;
    color: #fff !important;
    border: none !important;
  }
  .hero__actions .btn--ghost,
  .hero__actions .btn--hero.btn--ghost {
    background: #fff !important;
    color: #3E322F !important;
    border: none !important;
  }
  .hero__feature-bar-inner {
    padding: 0 !important;
    gap: 4px !important;
    overflow: hidden !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  .hero__feature-dot {
    color: #3F332E !important;
    opacity: 0.5 !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
    line-height: 1 !important;
  }
  .hero__feature-item {
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }
  .marquee.marquee { gap: 0 !important; overflow: hidden !important; }
  .marquee__track[aria-hidden="true"] { display: flex !important; }
  .marquee__track { gap: 16px !important; animation: marquee-scroll 15s linear infinite !important; }
  .marquee__sep { margin-right: 16px !important; }
}

/* -- Desktop: show stats, hide SVG -- */
.hero__social-proof-svg { display: none !important; }
.hero__social-proof-stats { display: flex; flex-direction: column; align-items: center; }


/* MOBILE: Replace header logo with shorter version */
@media (max-width: 576px) {
  .logo__img {
    content: url(../images/mobile-logo.svg);
    width: 87px !important;
    max-height: 20px !important;
    height: auto !important;
  }
}

/* MOBILE ONLY: Replace hero bg with 3 women photo */
@media (max-width: 576px) {
  .hero__bg {
    background-image: url("../images/hero-mobile-bg.jpg") !important;
    background-position: center top !important;
  }
  .hero__bg::after {
    background: linear-gradient(
      135deg,
      rgba(41,31,35,0.92) 0%,
      rgba(41,31,35,0.70) 50%,
      rgba(41,31,35,0.92) 100%
    ) !important;
  }
}

@media (max-width: 640px) {
  a.mobile-menu__link[href="#technology"] {
    display: none !important;
  }
}

/* ====== OFFER POPUP (EXIT-INTENT) ====== */
.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(41,31,35,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.offer-popup--open {
  opacity: 1;
  visibility: visible;
}

.offer-popup__card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.offer-popup--open .offer-popup__card {
  transform: translateY(0) scale(1);
}

.offer-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--clr-bg);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--clr-text);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.offer-popup__close:hover {
  background: var(--clr-accent-light);
  color: var(--clr-primary);
}

.offer-popup__inner {
  display: flex;
  min-height: 320px;
}

.offer-popup__image {
  flex: 0 0 240px;
  background: linear-gradient(135deg, var(--clr-accent-light), var(--clr-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.offer-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-popup__content {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-popup__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
  padding: 4px 14px;
  border: 1px solid var(--clr-accent-light);
  border-radius: 50px;
  align-self: flex-start;
}

.offer-popup__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.offer-popup__price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.offer-popup__price-old {
  font-size: 20px;
  color: var(--clr-text-light);
}

.offer-popup__price-new {
  font-size: 34px;
  font-weight: 700;
  color: var(--clr-accent);
  font-family: var(--font-heading);
  line-height: 1;
}

.offer-popup__desc {
  font-size: 14px;
  color: var(--clr-text-light);
  margin-bottom: 18px;
  line-height: 1.5;
}

.offer-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-popup__field {
  width: 100%;
}

.offer-popup__phone-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.offer-popup__phone-wrap:focus-within {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(171,123,83,0.12);
}

.offer-popup__phone-prefix {
  padding: 12px 8px 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-primary);
  background: var(--clr-bg);
  border-right: 1px solid var(--clr-border);
  font-family: var(--font-body);
}

.offer-popup__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--clr-primary);
  background: transparent;
}

.offer-popup__input::placeholder {
  color: var(--clr-text-light);
  opacity: 0.6;
}

.offer-popup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--clr-gradient-accent);
  color: var(--clr-white) !important;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(171,123,83,0.3);
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-align: center;
}

.offer-popup__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(171,123,83,0.45);
}

.offer-popup__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.offer-popup__footnote {
  font-size: 11px;
  color: var(--clr-text-light);
  text-align: center;
  opacity: 0.7;
  margin-top: 4px;
}

.offer-popup__error {
  font-size: 13px;
  color: var(--clr-error);
  min-height: 0;
  opacity: 0;
  transition: opacity 0.2s;
  margin: 0;
}

.offer-popup__error--visible {
  opacity: 1;
}

.offer-popup__success {
  text-align: center;
  padding: 20px 0;
}

.offer-popup__success-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.offer-popup__success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.offer-popup__success p {
  font-size: 14px;
  color: var(--clr-text-light);
  line-height: 1.5;
  margin: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .offer-popup__inner {
    flex-direction: column;
  }
  .offer-popup__image {
    flex: 0 0 180px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .offer-popup__content {
    padding: 24px 20px;
  }
  .offer-popup__title {
    font-size: 24px;
  }
  .offer-popup__price-new {
    font-size: 28px;
  }
}

/* Tiny screens */
@media (max-width: 400px) {
  .offer-popup__content {
    padding: 20px 16px;
  }
  .offer-popup__title {
    font-size: 20px;
  }
  .offer-popup__price-new {
    font-size: 24px;
  }
  .offer-popup__submit {
    font-size: 13px;
    padding: 12px 18px;
  }
}





/* ====== RESULTS DOTS ====== */
.results__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.results__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.results__dots .dot { background: #fff; border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.results__dots .dot--active {
  background: #ab7b53;
  width: 28px;
  border-radius: 4px;
}
