:root {
  --blue: #124ea2;
  --blue-bright: #087ceb;
  --blue-dark: #0b376f;
  --blue-light: #eef6ff;
  --pink: #f52c82;
  --pink-dark: #d91c6d;
  --pink-soft: #ff76ad;
  --pink-light: #fff1f7;
  --green: #20c968;
  --green-dark: #13a953;
  --ink: #17315f;
  --ink-soft: #536781;
  --white: #ffffff;
  --surface: #f8fbff;
  --border: #dce8f5;
  --shadow-sm: 0 12px 34px rgba(18, 78, 162, 0.1);
  --shadow-md: 0 24px 65px rgba(18, 78, 162, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

svg {
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, #e62375 0%, var(--pink) 55%, #ff5798 100%);
  font-size: 0.78rem;
  font-weight: 500;
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 24px;
}

.topbar p,
.topbar a {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 7px;
}

.topbar a {
  white-space: nowrap;
  font-weight: 700;
}

.topbar a:hover,
.topbar a:focus-visible {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(18, 78, 162, 0.09);
  box-shadow: 0 9px 30px rgba(18, 78, 162, 0.09);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: transform 200ms ease;
}

.brand:hover img {
  transform: rotate(-2deg) scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #365478;
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--blue);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-light);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease,
    background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 13px;
  font-size: 0.84rem;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  box-shadow: 0 12px 28px rgba(8, 124, 235, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 15px 34px rgba(8, 124, 235, 0.34);
}

.button--pink {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink) 0%, #ff559a 100%);
  box-shadow: 0 12px 28px rgba(245, 44, 130, 0.23);
}

.button--pink:hover,
.button--pink:focus-visible {
  box-shadow: 0 15px 34px rgba(245, 44, 130, 0.34);
}

.button--ghost {
  border-color: #c8daed;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--blue);
  background: var(--white);
}

.button--white {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(9, 38, 91, 0.18);
}

.button--outline-white {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button--outline-white:hover,
.button--outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 74px 0 82px;
  background:
    linear-gradient(110deg, rgba(255, 241, 247, 0.88) 0%, rgba(255, 255, 255, 0.96) 43%, rgba(238, 246, 255, 0.9) 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background-image: radial-gradient(rgba(18, 78, 162, 0.12) 1.2px, transparent 1.2px);
  background-size: 21px 21px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero__orb--one {
  top: 30px;
  left: -110px;
  width: 260px;
  height: 260px;
  background: rgba(255, 118, 173, 0.12);
}

.hero__orb--two {
  right: -90px;
  bottom: -90px;
  width: 310px;
  height: 310px;
  background: rgba(8, 124, 235, 0.1);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  color: var(--pink);
  font-family: "Caveat", cursive;
  font-size: 0.88em;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  transform: rotate(-2deg);
}

.hero h1 span::after {
  position: absolute;
  right: 14px;
  bottom: -8px;
  width: 64%;
  height: 7px;
  border-top: 3px solid rgba(245, 44, 130, 0.33);
  border-radius: 50%;
  content: "";
}

.hero h1 b {
  font-family: "Poppins", sans-serif;
  font-size: 0.43em;
  vertical-align: middle;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.hero__lead strong {
  color: var(--pink);
  font-weight: 800;
}

.hero__brands {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 62px;
  margin: -8px 0 22px;
  padding: 10px 16px;
  align-items: center;
  border: 1px solid rgba(18, 78, 162, 0.12);
  border-radius: 18px;
  gap: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(18, 63, 135, 0.08);
}

.hero__brands-label {
  max-width: 86px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__brands img:first-of-type {
  width: 74px;
  height: auto;
}

.hero__brands img:last-of-type {
  width: 92px;
  height: auto;
}

.hero__brands-plus {
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 800;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  gap: 12px;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 590px;
  margin: 0;
  padding: 0;
  gap: 13px 22px;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero__benefits li > svg {
  width: 19px;
  height: 19px;
  color: var(--pink);
}

.hero__benefits strong {
  display: block;
  color: var(--ink);
}

.hero__visual {
  position: relative;
  width: min(100%, 530px);
  margin-left: auto;
  padding: 21px;
}

.hero__visual::before {
  position: absolute;
  inset: 0 32px 16px 0;
  border: 2px solid rgba(18, 78, 162, 0.12);
  border-radius: 42px;
  content: "";
  transform: rotate(-3deg);
}

.hero__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.84;
  margin: 0;
  border: 8px solid var(--white);
  border-radius: 38px;
  background: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 700ms ease;
}

.hero__photo:hover img {
  transform: scale(1.025);
}

.open-card,
.price-card,
.seal-card {
  position: absolute;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.open-card {
  top: -2px;
  right: -10px;
  display: flex;
  align-items: center;
  min-width: 185px;
  padding: 14px 17px;
  border: 1px solid rgba(32, 201, 104, 0.16);
  border-radius: 18px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(32, 201, 104, 0.12);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--green);
  border-radius: inherit;
  content: "";
  animation: pulse 2s infinite;
}

.open-card strong,
.open-card small {
  display: block;
}

.open-card strong {
  color: var(--green-dark);
  font-size: 0.86rem;
}

.open-card small {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.price-card {
  right: 180px;
  bottom: -25px;
  display: flex;
  flex-direction: column;
  min-width: 167px;
  padding: 18px 22px;
  border-radius: 23px;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink) 0%, #ff5c9f 100%);
  transform: rotate(2deg);
}

.price-card small {
  opacity: 0.85;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.price-card strong span {
  font-size: 0.85rem;
  letter-spacing: 0;
}

.price-card em {
  font-size: 0.66rem;
  font-style: normal;
  opacity: 0.85;
}

.seal-card {
  bottom: 14px;
  left: -14px;
  display: grid;
  width: 82px;
  height: 82px;
  place-content: center;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  text-align: center;
  transform: rotate(-8deg);
}

.seal-card svg {
  width: 20px;
  height: 20px;
  margin-inline: auto;
}

.seal-card strong {
  font-size: 1.17rem;
  line-height: 1.1;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(18, 78, 162, 0.08);
  border-bottom: 1px solid rgba(18, 78, 162, 0.08);
  background: var(--white);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px 30px;
  gap: 14px;
}

.trust-strip__grid > div + div {
  border-left: 1px solid var(--border);
}

.trust-strip svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
}

.trust-strip span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 0.89rem;
}

.benefit-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 15px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 255, 255, 0.13) 0 3px, transparent 4px),
    linear-gradient(100deg, var(--blue-dark) 0%, var(--blue) 52%, var(--blue-bright) 100%);
  background-size: 82px 82px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(5, 43, 94, 0.18);
}

.benefit-marquee::before,
.benefit-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(9vw, 120px);
  content: "";
  pointer-events: none;
}

.benefit-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue-dark), transparent);
}

.benefit-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue-bright), transparent);
}

.benefit-marquee__viewport {
  width: 100%;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.benefit-marquee__viewport::-webkit-scrollbar {
  display: none;
}

.benefit-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: benefits-scroll 36s linear infinite;
}

.benefit-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
  padding: 0 14px 0 0;
  gap: 14px;
  list-style: none;
}

.benefit-marquee__group li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  gap: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 22px rgba(4, 35, 80, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.benefit-marquee__group svg {
  width: 18px;
  height: 18px;
  color: var(--pink-soft);
  stroke-width: 2.4;
}

.section {
  padding: 105px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 18%, rgba(245, 44, 130, 0.055), transparent 24%),
    radial-gradient(circle at 92% 72%, rgba(8, 124, 235, 0.06), transparent 27%),
    var(--surface);
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.about__content h2,
.products__content h2,
.faq__intro h2 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.section-heading h2 span,
.about__content h2 span,
.products__content h2 span,
.faq__intro h2 span {
  color: var(--pink);
}

.section-heading > p:last-child {
  max-width: 600px;
  margin-inline: auto;
  color: var(--ink-soft);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: 46px;
  right: 10%;
  left: 10%;
  border-top: 2px dashed rgba(18, 78, 162, 0.14);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 265px;
  padding: 30px 25px 26px;
  overflow: hidden;
  border: 1px solid rgba(18, 78, 162, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-card:hover {
  border-color: rgba(245, 44, 130, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.step-card__number {
  position: absolute;
  top: 13px;
  right: 18px;
  color: rgba(18, 78, 162, 0.08);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
}

.icon-box {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 15px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.icon-box--blue {
  color: var(--blue);
  background: var(--blue-light);
}

.icon-box--pink {
  color: var(--pink);
  background: var(--pink-light);
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.35;
}

.step-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 27px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:nth-child(2n) {
  background: linear-gradient(145deg, #ffffff, #f8fbff);
}

.feature-card:hover {
  border-color: rgba(245, 44, 130, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.price-highlight {
  padding: 68px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 50%, rgba(255, 255, 255, 0.13) 0 105px, transparent 106px),
    radial-gradient(circle at 94% 5%, rgba(255, 255, 255, 0.11) 0 155px, transparent 156px),
    linear-gradient(120deg, #0c3d82 0%, var(--blue) 48%, var(--blue-bright) 100%);
}

.price-highlight__content {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 48px;
}

.price-highlight h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.price-highlight p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.price-highlight__value {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  padding-right: 45px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  line-height: 1;
}

.price-highlight__value small {
  padding: 0 5px 11px 0;
  font-size: 1rem;
  font-weight: 700;
}

.price-highlight__value strong {
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.price-highlight__value span {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 94px;
}

.about__media {
  position: relative;
  width: min(100%, 510px);
  min-height: 610px;
}

.about__main-photo {
  width: 77%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border: 8px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
}

.about__small-photo {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 45%;
  height: 290px;
  object-fit: cover;
  object-position: center 44%;
  border: 7px solid var(--white);
  border-radius: 27px;
  box-shadow: var(--shadow-md);
}

.about__media::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  left: -27px;
  width: 78%;
  height: 84%;
  border-radius: 38px;
  background: var(--pink-light);
  content: "";
}

.about__badge {
  position: absolute;
  top: 54px;
  right: 0;
  display: flex;
  align-items: center;
  padding: 13px 17px;
  border: 1px solid rgba(245, 44, 130, 0.12);
  border-radius: 17px;
  gap: 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  line-height: 1.3;
}

.about__badge svg {
  width: 23px;
  height: 23px;
  color: var(--pink);
  fill: rgba(245, 44, 130, 0.1);
}

.about__badge strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.about__content > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  margin: 27px 0 30px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--pink-dark);
  text-decoration: underline;
}

.text-link svg:last-child {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.text-link:hover svg:last-child {
  transform: translate(2px, -2px);
}

.products__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 95px;
}

.products__content {
  max-width: 560px;
}

.products__content > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.products__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  gap: 14px;
}

.products__items > div {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  gap: 12px;
  background: var(--white);
}

.products__items svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}

.products__items span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.products__items strong {
  display: block;
  color: var(--ink);
  font-size: 0.87rem;
}

.products__photo {
  position: relative;
  overflow: hidden;
  width: min(100%, 435px);
  aspect-ratio: 0.88;
  margin: 0 0 0 auto;
  border: 8px solid var(--white);
  border-radius: 34px;
  background: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.products__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.products__photo figcaption {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  display: flex;
  align-items: center;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  gap: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(12px);
  font-size: 0.81rem;
  font-weight: 700;
}

.products__photo figcaption svg {
  color: var(--green);
}

.location__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.location__card {
  padding: 45px;
}

.location__label {
  margin-bottom: 7px;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location__card h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.25;
}

.location__card address {
  margin-bottom: 27px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.location__status {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 14px 17px;
  border: 1px solid rgba(32, 201, 104, 0.16);
  border-radius: 15px;
  gap: 12px;
  background: rgba(32, 201, 104, 0.06);
}

.location__status strong,
.location__status small {
  display: block;
}

.location__status strong {
  color: var(--green-dark);
  font-size: 0.83rem;
}

.location__status small {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map {
  min-height: 515px;
  background: var(--blue-light);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 515px;
  border: 0;
  filter: saturate(0.86) contrast(1.03);
}

.testimonials {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(245, 44, 130, 0.06), transparent 24%),
    radial-gradient(circle at 92% 80%, rgba(8, 124, 235, 0.07), transparent 28%),
    var(--surface);
}

.testimonials__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
  gap: 30px;
}

.testimonials__heading > div:first-child {
  max-width: 680px;
}

.testimonials__heading h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.testimonials__heading h2 span {
  color: var(--pink);
}

.testimonials__heading > div:first-child > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.testimonials__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: var(--pink);
  color: var(--white);
  background: var(--pink);
  transform: translateY(-2px);
}

.carousel-button svg {
  width: 20px;
  height: 20px;
}

.testimonials-carousel__viewport {
  margin: -10px;
  padding: 10px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-carousel__viewport:active {
  cursor: grabbing;
}

.testimonials-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: transform 600ms cubic-bezier(0.22, 0.8, 0.28, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 40px) / 3);
  flex-direction: column;
  min-width: 0;
  min-height: 338px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 78, 162, 0.07);
}

.testimonial-card::after {
  position: absolute;
  top: 12px;
  right: 22px;
  color: rgba(245, 44, 130, 0.1);
  content: "”";
  font-family: Georgia, serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card__stars {
  position: relative;
  z-index: 1;
  margin-bottom: 19px;
  color: #ff9d00;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.testimonial-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 27px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.75;
}

.testimonial-card footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.testimonial-card__avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #236de8, #7b3ff2 56%, var(--pink));
  box-shadow: 0 8px 18px rgba(84, 59, 220, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
}

.testimonial-card__person {
  min-width: 0;
}

.testimonial-card__person strong,
.testimonial-card__person small {
  display: block;
}

.testimonial-card__person strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.45;
}

.testimonial-card__person small {
  margin-top: 3px;
  color: #8495b1;
  font-size: 0.68rem;
  line-height: 1.45;
}

.google-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #4285f4;
  background: var(--surface);
  font-size: 0.84rem;
  font-weight: 800;
}

.testimonials-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  margin-top: 25px;
  gap: 8px;
}

.testimonials-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5d3e5;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.testimonials-carousel__dots button.is-active {
  width: 27px;
  background: var(--pink);
}

@media (max-width: 1100px) {
  .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 680px) {
  .testimonials__heading {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .testimonials__heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .testimonials__controls {
    display: none;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 350px;
    padding: 26px 22px;
  }
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faq__intro {
  position: sticky;
  top: 130px;
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: var(--ink-soft);
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(245, 44, 130, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  gap: 22px;
  color: var(--ink);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover,
.faq-item button:focus-visible {
  color: var(--pink);
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  color: var(--pink);
  transition: transform 180ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 87% 68%, rgba(255, 255, 255, 0.11) 0 5px, transparent 6px),
    linear-gradient(125deg, #dc1d6c 0%, var(--pink) 42%, #ff61a3 100%);
  background-size: 95px 95px, 115px 115px, auto;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -130px;
  left: -95px;
  width: 330px;
  height: 330px;
}

.final-cta::after {
  right: -155px;
  bottom: -200px;
  width: 480px;
  height: 480px;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.final-cta__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.final-cta__icon svg {
  width: 25px;
  height: 25px;
}

.final-cta h2 {
  margin-bottom: 17px;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.final-cta h2 span {
  color: #fff7c8;
  font-family: "Caveat", cursive;
  font-size: 1.1em;
  letter-spacing: 0;
}

.final-cta__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 31px;
  gap: 12px;
}

.footer {
  padding: 65px 0 24px;
  color: rgba(255, 255, 255, 0.67);
  background: #0b2347;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.9fr 1.05fr;
  gap: 60px;
}

.footer__brand img {
  width: 118px;
  height: 118px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--white);
}

.footer__brand > p {
  max-width: 260px;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.footer h3 {
  margin: 24px 0 18px;
  color: var(--white);
  font-size: 0.88rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links,
.footer__contacts {
  display: grid;
  gap: 11px;
}

.footer__links a,
.footer__contacts,
.footer address {
  font-size: 0.76rem;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__contacts a:hover,
.footer__contacts a:focus-visible {
  color: var(--white);
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer__contacts svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--pink-soft);
}

.footer__map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  gap: 5px;
  color: var(--pink-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  gap: 20px;
  font-size: 0.68rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom span[aria-label] {
  color: var(--pink-soft);
}

.floating-whatsapp {
  position: fixed;
  z-index: 140;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 19px;
  border: 3px solid var(--white);
  border-radius: 999px;
  gap: 9px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 35px rgba(17, 120, 61, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--green-dark);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 21px;
  height: 21px;
}

.back-to-top {
  position: fixed;
  z-index: 130;
  right: 28px;
  bottom: 91px;
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(18, 78, 162, 0.12);
  border-radius: 13px;
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps .reveal:nth-child(2),
.features-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.steps .reveal:nth-child(3),
.features-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.steps .reveal:nth-child(4),
.features-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes benefits-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.82);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-marquee__viewport {
    overflow: hidden;
  }

  .benefit-marquee__track {
    animation: benefits-scroll 36s linear infinite !important;
    transform: none;
  }

  .benefit-marquee__group[aria-hidden="true"] {
    display: flex;
  }
}

@media (max-width: 1100px) {
  :root {
    --container: 960px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero__grid {
    gap: 38px;
  }

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

  .price-highlight__content {
    gap: 28px;
  }

  .about__grid,
  .products__grid {
    gap: 62px;
  }

  .footer__grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .topbar__content {
    justify-content: center;
    min-height: 34px;
    text-align: center;
  }

  .topbar__content > a {
    display: none;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    z-index: -1;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    padding: 16px 20px 25px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    gap: 3px;
    background: var(--white);
    box-shadow: 0 22px 40px rgba(18, 78, 162, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px 10px;
    border-bottom: 1px solid #edf3f9;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 10px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__content {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1 span {
    margin-inline: auto;
  }

  .hero__lead,
  .hero__benefits {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    width: min(90%, 610px);
    margin-inline: auto;
  }

  .trust-strip__grid > div {
    padding-inline: 18px;
  }

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

  .steps::before {
    display: none;
  }

  .price-highlight__content {
    grid-template-columns: 1fr auto;
  }

  .price-highlight__content .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .about__grid,
  .products__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    width: min(80%, 530px);
    margin-inline: auto;
  }

  .products__content {
    max-width: 690px;
  }

  .products__photo {
    width: min(80%, 470px);
    margin-inline: auto;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .map,
  .map iframe {
    min-height: 420px;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq__intro {
    position: static;
    max-width: 640px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .topbar {
    font-size: 0.65rem;
  }

  .topbar strong {
    display: none;
  }

  .topbar__content {
    min-height: 32px;
  }

  .benefit-marquee {
    padding: 12px 0;
  }

  .benefit-marquee__track {
    animation-duration: 30s;
  }

  .benefit-marquee__group {
    padding-right: 10px;
    gap: 10px;
  }

  .benefit-marquee__group li {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 0;
    padding: 43px 0 66px;
  }

  .hero::before {
    width: 100%;
    opacity: 0.55;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero__lead {
    font-size: 0.94rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__benefits li {
    justify-content: center;
  }

  .hero__visual {
    width: 100%;
    padding: 12px 6px 28px;
  }

  .hero__visual::before {
    inset: 0 12px 23px 4px;
  }

  .hero__photo {
    border-width: 6px;
    border-radius: 27px;
  }

  .open-card {
    top: -17px;
    right: -5px;
    min-width: 160px;
    padding: 11px 13px;
  }

  .price-card {
    right: 76px;
    bottom: -6px;
    min-width: 140px;
    padding: 13px 16px;
  }

  .price-card strong {
    font-size: 1.65rem;
  }

  .seal-card {
    bottom: 8px;
    left: -5px;
    width: 68px;
    height: 68px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-strip__grid > div {
    justify-content: flex-start;
    min-height: 78px;
    padding: 14px 18px;
  }

  .trust-strip__grid > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about__content h2,
  .products__content h2,
  .faq__intro h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .steps,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .price-highlight {
    padding: 58px 0;
    text-align: center;
  }

  .price-highlight__content {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .price-highlight__value {
    justify-self: center;
    padding: 0;
    border: 0;
  }

  .price-highlight__content .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .about__grid,
  .products__grid {
    gap: 48px;
  }

  .about__media {
    width: 100%;
    min-height: 495px;
  }

  .about__main-photo {
    width: 81%;
    height: 470px;
    border-width: 6px;
    border-radius: 27px;
  }

  .about__small-photo {
    width: 46%;
    height: 220px;
    border-width: 5px;
    border-radius: 22px;
  }

  .about__badge {
    top: 28px;
    right: -4px;
    padding: 10px 12px;
  }

  .products__items {
    grid-template-columns: 1fr;
  }

  .products__photo {
    width: 100%;
    border-width: 6px;
    border-radius: 27px;
  }

  .location__card {
    padding: 30px 22px;
  }

  .location__actions {
    display: grid;
  }

  .map,
  .map iframe {
    min-height: 340px;
  }

  .faq-item button {
    padding: 18px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-cta h2 {
    font-size: 2.25rem;
  }

  .final-cta__actions {
    display: grid;
  }

  .footer {
    padding-top: 50px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer h3 {
    margin-top: 14px;
  }

  .footer__bottom {
    display: grid;
    margin-top: 35px;
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .back-to-top {
    right: 21px;
    bottom: 81px;
  }
}


/* AJUSTES SOLICITADOS — 29/07/2026 */
.hero__scent {
  width: max-content;
  max-width: 100%;
  margin: -4px 0 18px;
  color: #b735d1;
  font-family: "Caveat", cursive;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
  transform: rotate(-1deg);
}

.final-cta {
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.14) 0 4px, transparent 5px),
    radial-gradient(circle at 87% 68%, rgba(255, 255, 255, 0.12) 0 5px, transparent 6px),
    linear-gradient(125deg, #7135cc 0%, #9639df 35%, #c735d2 68%, #ec3e9b 100%);
  background-size: 95px 95px, 115px 115px, auto;
}

.final-cta h2 span {
  color: #fff4ff;
}

@media (max-width: 900px) {
  .hero__scent {
    margin-inline: auto;
  }
}

/* Armário Inteligente clean — 30/07/2026 */
.smart-locker-clean {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  overflow: hidden;
  margin-top: 30px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(18, 78, 162, 0.1);
  border-radius: 30px;
  gap: clamp(34px, 5vw, 68px);
  background:
    radial-gradient(circle at 96% 4%, rgba(245, 44, 130, 0.09), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #fbfcff 58%, #f8f4ff 100%);
  box-shadow: 0 20px 50px rgba(18, 63, 135, 0.1);
}

.smart-locker-clean::before {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(155, 65, 211, 0.12);
  border-radius: 50%;
  content: "";
}

.smart-locker-clean__content,
.smart-locker-clean__visual {
  position: relative;
  z-index: 1;
}

.smart-locker-clean__brand {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}

.smart-locker-clean__brand img {
  width: 82px;
  height: 82px;
  padding: 5px;
  border: 1px solid rgba(18, 78, 162, 0.1);
  border-radius: 24px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 63, 135, 0.09);
}

.smart-locker-clean__brand .eyebrow {
  margin-bottom: 2px;
}

.smart-locker-clean__script {
  margin: 0;
  color: #a33aca;
  font-family: "Caveat", cursive;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.smart-locker-clean h2 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.smart-locker-clean h2 span {
  display: block;
  color: var(--pink);
}

.smart-locker-clean__lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.smart-locker-clean__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 30px;
  padding: 0;
  gap: 12px 20px;
  list-style: none;
}

.smart-locker-clean__services li {
  display: flex;
  align-items: center;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
  gap: 9px;
}

.smart-locker-clean__services svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #b33ede);
}

.smart-locker-clean__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px 22px;
}

.smart-locker-clean__actions > span {
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  gap: 7px;
}

.smart-locker-clean__actions > span svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.smart-locker-clean__visual {
  margin: 0;
}

.smart-locker-clean__more {
  grid-column: 1 / -1;
  color: var(--pink) !important;
}
.smart-locker-clean__photo {
  display: grid;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(18, 78, 162, 0.09);
  border-radius: 25px;
  background: #eef3fb;
  box-shadow: 0 18px 42px rgba(18, 63, 135, 0.12);
}

.smart-locker-clean__photo img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.smart-locker-clean figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  gap: 7px;
}

.smart-locker-clean figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(28, 204, 105, 0.12);
}

@media (max-width: 880px) {
  .smart-locker-clean {
    grid-template-columns: 1fr;
  }

  .smart-locker-clean__visual {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .smart-locker-clean__photo img {
    height: auto;
  }
}

@media (max-width: 560px) {
  .smart-locker-clean {
    padding: 28px 20px;
    border-radius: 24px;
    text-align: center;
  }

  .smart-locker-clean__brand {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .smart-locker-clean h2 {
    font-size: clamp(2.5rem, 15vw, 3.7rem);
  }

  .smart-locker-clean__services {
    grid-template-columns: 1fr;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .smart-locker-clean__actions {
    justify-content: center;
  }

  .smart-locker-clean__actions .button {
    width: 100%;
  }

  .smart-locker-clean__photo {
    min-height: 0;
    padding: 0;
  }
}
/* Ajustes finais de títulos — 30/07/2026 */
.section-heading--wide {
  max-width: 960px;
}

.heading-break-mobile {
  display: none;
}

@media (min-width: 900px) {
  .heading-one-line {
    white-space: nowrap;
  }

  .testimonials__heading > div:first-child {
    max-width: 920px;
  }
}

@media (max-width: 600px) {
  .heading-break-mobile {
    display: block;
  }
}
@media (max-width: 560px) {
  .hero__brands {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
    gap: 10px;
  }

  .hero__brands-label {
    max-width: 74px;
    font-size: 0.61rem;
  }

  .hero__brands img:first-of-type {
    width: 62px;
  }

  .hero__brands img:last-of-type {
    width: 78px;
  }
}
/* LGPD, privacidade e respostas diretas — 31/07/2026 */
.faq__quick-answer {
  margin: 22px 0 25px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 78, 162, 0.12);
  border-left: 4px solid var(--pink);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.faq__quick-answer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq__quick-answer p {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.65;
}

.map {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: stretch;
}

.map__consent {
  display: grid;
  min-height: 515px;
  padding: 46px;
  place-content: center;
  place-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 44, 130, 0.12), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(8, 124, 235, 0.14), transparent 32%),
    linear-gradient(145deg, #f9fbff, #edf4ff);
  text-align: center;
}

.map__consent[hidden],
.map iframe[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.map__consent-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #6b43e8);
  box-shadow: 0 14px 28px rgba(18, 78, 162, 0.24);
}

.map__consent-icon svg {
  width: 27px;
  height: 27px;
}

.map__consent h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.35rem;
}

.map__consent p {
  max-width: 390px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.map__consent .button {
  margin-bottom: 14px;
}

.map__consent > a {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__legal button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal button:hover,
.footer__legal button:focus-visible {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: min(1180px, calc(100% - 32px));
  padding: 20px;
  align-items: center;
  border: 1px solid rgba(18, 78, 162, 0.14);
  border-radius: 22px;
  gap: 17px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(8, 35, 80, 0.26);
  transform: translateX(-50%);
}

.cookie-banner__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #6b43e8);
}

.cookie-banner__icon svg {
  width: 23px;
  height: 23px;
}

.cookie-banner__content h2 {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1rem;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.6;
}

.cookie-banner__content button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cookie-button {
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-2px);
}

.cookie-button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(18, 78, 162, 0.2);
}

.cookie-button--primary:hover,
.cookie-button--primary:focus-visible {
  background: var(--blue-dark);
}

.cookie-button--ghost {
  border-color: rgba(18, 78, 162, 0.18);
  color: var(--blue-dark);
  background: var(--white);
}

.cookie-consent-visible .floating-whatsapp,
.cookie-consent-visible .back-to-top {
  opacity: 0;
  pointer-events: none;
}

.privacy-dialog {
  width: min(720px, calc(100% - 30px));
  max-height: min(82vh, 780px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: var(--ink-soft);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(5, 24, 57, 0.35);
}

.privacy-dialog::backdrop {
  background: rgba(4, 20, 47, 0.68);
  backdrop-filter: blur(5px);
}

.privacy-dialog__header {
  display: flex;
  padding: 24px 26px 20px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 20px;
  background: linear-gradient(135deg, #f4f8ff, #fff4fa);
}

.privacy-dialog__header span {
  display: block;
  margin-bottom: 5px;
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-dialog__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.privacy-dialog__header > button {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--white);
  cursor: pointer;
}

.privacy-dialog__header svg {
  width: 19px;
  height: 19px;
}

.privacy-dialog__body {
  max-height: calc(82vh - 185px);
  padding: 25px 27px;
  overflow-y: auto;
}

.privacy-dialog__lead {
  margin-bottom: 24px;
  padding: 15px 17px;
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  color: var(--ink);
  background: var(--pink-light);
  font-weight: 600;
}

.privacy-dialog__body section + section {
  margin-top: 21px;
}

.privacy-dialog__body h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.95rem;
}

.privacy-dialog__body p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.75;
}

.privacy-dialog__body a {
  color: var(--blue);
  font-weight: 700;
}

.privacy-dialog__updated {
  margin-top: 24px;
  color: #7b89a2;
  font-size: 0.68rem !important;
}

.privacy-dialog__footer {
  display: flex;
  padding: 16px 26px;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
  background: #fbfcff;
}

@media (max-width: 900px) {
  .cookie-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cookie-banner__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .map__consent {
    min-height: 340px;
    padding: 30px 20px;
  }

  .cookie-banner {
    bottom: 10px;
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    padding: 17px;
    gap: 11px;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-button {
    padding-inline: 11px;
    font-size: 0.66rem;
  }

  .privacy-dialog__header,
  .privacy-dialog__body,
  .privacy-dialog__footer {
    padding-inline: 19px;
  }

  .footer__legal {
    flex-wrap: wrap;
  }
}
