/* ==========================================================================
   WHERE2WHERE MOBILITY — CLEAN RESPONSIVE STYLESHEET
   Replaces the previous style.css after the updated hero, carousel, safety,
   review and specification HTML sections have been applied.
   ========================================================================== */



:root {
  --navy: #20385d;
  --navy-dark: #122642;
  --navy-soft: #334f78;
  --pink: #e10a63;
  --pink-dark: #bd064e;
  --pink-soft: #fff0f6;
  --ink: #1e2d43;
  --text: #455368;
  --muted: #6c7687;
  --line: #dde4eb;
  --surface: #ffffff;
  --surface-soft: #f7f7fb;
  --warm: #fcf6f8;
  --success: #087a55;
  --shadow-sm: 0 6px 20px rgba(18, 38, 66, .07);
  --shadow-md: 0 18px 48px rgba(18, 38, 66, .12);
  --shadow-lg: 0 26px 68px rgba(18, 38, 66, .17);
  --radius: 20px;
  --container: 1200px;
  --header-h: 86px;
  --font-display: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--pink);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

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

address {
  font-style: normal;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 62px);
}

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

.section {
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.16;
}

.section-heading--center {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--inverse h2 {
  color: #fff;
}

.section-heading--inverse .eyebrow {
  color: #ff5ca1;
}

.button {
  min-height: 50px;
  border-radius: 7px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .94rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  color: inherit;
}

.button--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(225, 10, 99, .23);
}

.button--primary:hover {
  background: var(--pink-dark);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(32, 56, 93, .14);
}

.button--light:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.button--large {
  min-height: 57px;
  padding: 0 31px;
}

.button--full {
  width: 100%;
}

.text-link {
  color: var(--pink);
  font-weight: 700;
}

.text-link:hover {
  color: var(--pink-dark);
}

.site-notice {
  background: var(--navy-dark);
  color: #fff;
  font-size: .87rem;
}

.site-notice__inner {
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.site-notice p {
  margin: 0;
  color: #dce6f5;
  line-height: 1.3;
}

.site-notice a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-notice__badge {
  background: var(--pink);
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: .67rem;
  letter-spacing: .08em;
  font-weight: 800;
}

.header {
  height: var(--header-h);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(32, 56, 93, .08);
  transition: box-shadow .2s ease;
}

.header.is-scrolled {
  box-shadow: 0 11px 32px rgba(18, 38, 66, .09);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  background: var(--pink);
  color: #fff;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -.04em;
  color: var(--navy);
}

.brand__copy small {
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  color: var(--ink);
  font-size: .91rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding: 35px 0;
}

.nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 24px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav a:hover {
  color: var(--pink);
}

.nav a:hover::after,
.nav a.is-current::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__phone {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.header__phone span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  color: var(--muted);
}

.header__phone strong {
  font-size: 1.12rem;
  letter-spacing: -.02em;
  color: var(--navy);
}

.header__phone:hover strong {
  color: var(--pink);
}

.header__cta {
  min-height: 48px;
  padding-inline: 19px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 45px;
  height: 45px;
  padding: 11px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 23px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background-color: #172c49;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/background-caregiver-and-senior-v2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 22, 39, 0.92) 0%,
      rgba(11, 22, 39, 0.84) 34%,
      rgba(11, 22, 39, 0.62) 54%,
      rgba(11, 22, 39, 0.38) 73%,
      rgba(11, 22, 39, 0.52) 100%
    );
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 340px));
  padding: 58px 0 62px;
}

.hero .eyebrow {
  margin: 0 0 18px;
  color: #ff6eac;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.75rem, 4.4vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 625px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.14rem;
  line-height: 1.65;
}

.hero__service {
  max-width: 520px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  padding: 13px 18px 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
}

.hero__service-icon {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero__service-text {
  display: grid;
  gap: 3px;
}

.hero__service-text strong {
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
}

.hero__service-text span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__disclaimer {
  max-width: 620px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  line-height: 1.6;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}

.highlight {
  min-width: 150px;
  display: grid;
  gap: 5px;
  padding-left: 15px;
  border-left: 2px solid var(--pink);
}

.highlight strong {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.highlight span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}

.hero__product {
  position: absolute;
  right: clamp(8px, 3.7vw, 62px);
  bottom: 33px;
  z-index: 1;
  width: clamp(238px, 18vw, 320px);
  pointer-events: none;
}

.hero__phone-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 545px;
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.38));
  transform: rotate(2deg);
}



.anchor-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(18, 38, 66, .04);
}

.anchor-nav__inner {
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
}

.anchor-nav a {
  font-size: .83rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.anchor-nav a:hover {
  color: var(--pink);
}

.anchor-nav__button {
  min-height: 48px;
  padding: 0 30px;
  background: var(--pink);
  color: #fff !important;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
}

.anchor-nav__button:hover {
  background: var(--pink-dark);
}

.why {
  background: #fff;
}

.why__grid {
  display: grid;
  grid-template-columns: 310px repeat(2, minmax(230px, 1fr));
  grid-template-rows: repeat(2, minmax(148px, auto));
  gap: 26px 52px;
  align-items: start;
}

.demo-card {
  grid-row: 1 / 3;
  height: 390px;
  background: var(--pink);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.demo-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.demo-card__label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 15px;
  border-radius: 11px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .96);
}

.demo-card__label strong {
  display: block;
  font-size: .86rem;
  color: var(--navy);
}

.demo-card__label small {
  color: var(--muted);
  font-size: .72rem;
}

.play {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #ea0c55;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
  flex-shrink: 0;
  padding-left: 2px;
}

.reason h3 {
  color: var(--pink);
  font-size: 1.34rem;
  line-height: 1.26;
  margin-bottom: 13px;
}

.reason p {
  font-size: .97rem;
  margin: 0;
}

/* =========================================
   RESPONSIVE SAFETY / OVERFLOW GUARDS
========================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

main,
header,
footer,
section,
.container,
.hero__grid,
.why__grid,
.support__grid,
.provider__grid,
.consultation__grid,
.w2w-safety__panel,
.w2w-specs__grid,
.w2w-features__viewport,
.w2w-reviews__viewport {
  min-width: 0;
}

button,
.button,
input,
select,
textarea {
  max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote,
.w2w-spec-card__row dd,
.store-card a {
  overflow-wrap: anywhere;
}


/* =========================================
   FEATURE CAROUSEL
========================================= */


/* =========================================
   LOOP FEATURES CAROUSEL
========================================= */

.w2w-features {
  --feature-accent: var(--pink, #df1164);
  --feature-navy: var(--navy, #233752);
  --feature-text: #556274;
  --feature-border: #e7e8ed;
  --feature-soft: #fff6fa;
  --feature-shadow: 0 18px 42px rgba(26, 41, 64, 0.08);

  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 88px) 0 clamp(52px, 7vw, 82px);
  background: #ffffff;
}

.w2w-features__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.w2w-features__heading {
  max-width: 700px;
}

.w2w-features__heading .eyebrow {
  margin: 0 0 12px;
  color: var(--feature-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.w2w-features__heading h2 {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--feature-navy);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.w2w-features__heading > p:last-child {
  max-width: 630px;
  margin: 0;
  color: var(--feature-text);
  font-size: 1rem;
  line-height: 1.65;
}

.w2w-features__nav {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.w2w-features__button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--feature-border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--feature-navy);
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.w2w-features__button span {
  display: block;
  margin-top: -4px;
  font-size: 2.15rem;
  font-weight: 300;
  line-height: 1;
}

.w2w-features__button:hover {
  border-color: var(--feature-accent);
  background: var(--feature-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.w2w-features__button:focus-visible {
  outline: 3px solid rgba(223, 17, 100, 0.2);
  outline-offset: 3px;
}

.w2w-features__viewport {
  position: relative;
  overflow: hidden;
  padding: 5px 2px 20px;
  touch-action: pan-y;
}

.w2w-features__viewport:focus-visible {
  outline: 3px solid rgba(223, 17, 100, 0.16);
  outline-offset: 6px;
  border-radius: 25px;
}

.w2w-features__track {
  --feature-gap: 22px;

  display: flex;
  align-items: stretch;
  gap: var(--feature-gap);
  will-change: transform;
}

.w2w-feature {
  flex: 0 0 calc((100% - (var(--feature-gap) * 2)) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--feature-border);
  border-radius: 25px;
  background: #ffffff;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.w2w-feature.is-current {
  border-color: rgba(223, 17, 100, 0.26);
  box-shadow: var(--feature-shadow);
}

.w2w-feature__media {
  height: 274px;
  display: grid;
  place-items: center;
  padding: 22px 18px 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(223, 17, 100, 0.09), transparent 46%),
    linear-gradient(180deg, #fff9fc 0%, #ffffff 100%);
}

.w2w-feature__media img {
  display: block;
  width: auto;
  max-width: 92%;
  height: 245px;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.28s ease;
}

.w2w-feature:hover .w2w-feature__media img {
  transform: translateY(-4px);
}

.w2w-feature__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 23px 25px;
}

.w2w-feature__tag {
  align-self: flex-start;
  margin-bottom: 11px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--feature-soft);
  color: var(--feature-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.w2w-feature h3 {
  margin: 0 0 10px;
  color: var(--feature-navy);
  font-size: 1.28rem;
  line-height: 1.26;
  letter-spacing: -0.025em;
}

.w2w-feature p {
  margin: 0;
  color: var(--feature-text);
  font-size: 0.92rem;
  line-height: 1.62;
}

.w2w-feature__link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--feature-accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.w2w-feature__link::after {
  content: " →";
}

.w2w-feature__link:hover {
  text-decoration: underline;
}

.w2w-features__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 18px;
}

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

.w2w-features__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #e9b0c8;
  cursor: pointer;
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.w2w-features__dot.is-active {
  width: 30px;
  background: var(--feature-accent);
}

.w2w-features__dot:focus-visible {
  outline: 2px solid var(--feature-accent);
  outline-offset: 3px;
}

.w2w-features__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.w2w-features__note {
  max-width: 720px;
  margin: 24px auto 0;
  color: #697485;
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}


/* =========================================
   SUPPORT / PROVIDER CONTENT
========================================= */


.support {
  position: relative;
  background: #eff6f7;
  overflow: hidden;
}

.support::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/support-bg.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: .42;
}

.support__grid {
  min-height: 538px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.support__content h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.16;
  max-width: 540px;
  margin-bottom: 20px;
  color: var(--pink);
}

.support__content>p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 22px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 800;
  font-size: 1.06rem;
}

.support__fineprint {
  font-size: .84rem !important;
  color: var(--muted) !important;
  border-left: 2px solid var(--pink);
  padding-left: 15px;
  margin-bottom: 23px;
}

.provider {
  background: #fff;
}

.provider__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  align-items: center;
  gap: 68px;
}

.provider h2 {
  font-size: clamp(2rem, 3vw, 2.62rem);
  line-height: 1.18;
  margin-bottom: 18px;
  color: var(--pink);
}

.provider p:not(.eyebrow) {
  max-width: 550px;
  font-size: 1.02rem;
}

.provider .button {
  margin-top: 13px;
}

/* =========================================
   CONTENT SECTION INTEGRATION
========================================= */

.support__device,
.provider__product {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider__product {
  min-height: 510px;
}

.support__device .device-showcase,
.provider__product .device-showcase {
  width: 100%;
}

/* =========================================
   UNIVERSAL PHONE SHOWCASE
========================================= */

.device-showcase {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
  overflow: hidden;
}

.device-showcase__backdrop {
  position: absolute;
  width: min(430px, 94%);
  height: min(430px, 94%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 42% 38%,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.76) 22%,
      rgba(255, 228, 240, 0.92) 58%,
      rgba(255, 210, 229, 0.55) 100%
    );
}

.device-showcase__backdrop::before {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(223, 17, 100, 0.1);
}

.device-showcase__backdrop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 245px;
  height: 32px;
  border-radius: 50%;
  background: rgba(25, 38, 57, 0.16);
  filter: blur(13px);
  transform: translateX(-50%);
}

.device-showcase__image {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(305px, 78%);
  max-height: 465px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(20, 31, 48, 0.22));
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.device-showcase:hover .device-showcase__image {
  transform: rotate(2deg) translateY(-5px);
}


/* =========================================
   SAFETY SHOWCASE
========================================= */


/* =========================================
   SAFETY SHOWCASE
========================================= */

.w2w-safety {
  --safety-accent: var(--pink, #df1164);
  --safety-navy: #172b46;
  --safety-navy-light: #243c5c;
  --safety-border: rgba(255, 255, 255, 0.14);
  --safety-muted: rgba(255, 255, 255, 0.74);

  padding: clamp(52px, 7vw, 86px) 0;
  background: #f5f7fb;
}

.w2w-safety__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(370px, 0.94fr) minmax(440px, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  padding: clamp(38px, 5vw, 62px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 2% 4%, rgba(223, 17, 100, 0.18), transparent 29%),
    linear-gradient(135deg, #142640 0%, #203754 100%);
  box-shadow: 0 25px 65px rgba(22, 39, 62, 0.14);
}

.w2w-safety__panel::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.w2w-safety__content {
  position: relative;
  z-index: 1;
}

.w2w-safety .eyebrow {
  margin: 0 0 13px;
  color: #ff76ae;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.w2w-safety__content h2 {
  max-width: 490px;
  margin: 0 0 17px;
  color: #ffffff;
  font-size: clamp(2.05rem, 3vw, 2.65rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.w2w-safety__lead {
  max-width: 515px;
  margin: 0 0 30px;
  color: var(--safety-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.w2w-safety__benefits {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.w2w-safety__benefit {
  display: flex;
  gap: 15px;
  padding: 17px 17px 18px;
  border: 1px solid var(--safety-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.w2w-safety__icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(223, 17, 100, 0.16);
  color: #ff73ab;
}

.w2w-safety__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.w2w-safety__benefit h3 {
  margin: 1px 0 5px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.w2w-safety__benefit p {
  margin: 0;
  color: var(--safety-muted);
  font-size: 0.84rem;
  line-height: 1.56;
}

.w2w-safety__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 15px;
  border-radius: 15px;
  background: rgba(255, 239, 246, 0.98);
  color: #465366;
}

.w2w-safety__notice-mark {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--safety-accent);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.w2w-safety__notice p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.56;
}

.w2w-safety__notice strong {
  color: #27364b;
}

.w2w-safety__cta {
  display: inline-flex;
}

/* Carousel */

.w2w-safety__carousel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.w2w-safety__viewport {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(5, 13, 25, 0.22);
  touch-action: pan-y;
}

.w2w-safety__viewport:focus-visible {
  outline: 3px solid rgba(255, 112, 171, 0.54);
  outline-offset: 5px;
}

.w2w-safety__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    visibility 0.42s ease;
}

.w2w-safety__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.w2w-safety__media {
  height: 337px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(223, 17, 100, 0.08), transparent 44%),
    #fffafb;
}

.w2w-safety__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.w2w-safety__caption {
  flex: 1;
  padding: 22px 28px 24px;
}

.w2w-safety__tag {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #fff0f6;
  color: var(--safety-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.w2w-safety__caption h3 {
  margin: 0 0 8px;
  color: #1c314d;
  font-size: 1.3rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.w2w-safety__caption p {
  margin: 0;
  color: #5c687a;
  font-size: 0.91rem;
  line-height: 1.6;
}

.w2w-safety__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 20px;
}

.w2w-safety__arrow {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.w2w-safety__arrow span {
  margin-top: -4px;
  font-size: 2.05rem;
  line-height: 1;
}

.w2w-safety__arrow:hover {
  border-color: var(--safety-accent);
  background: var(--safety-accent);
  transform: translateY(-2px);
}

.w2w-safety__arrow:focus-visible {
  outline: 3px solid rgba(255, 112, 171, 0.45);
  outline-offset: 3px;
}

.w2w-safety__progress {
  min-width: 175px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.w2w-safety__counter {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.w2w-safety__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.w2w-safety__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.33);
  cursor: pointer;
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.w2w-safety__dot.is-active {
  width: 27px;
  background: #ff70aa;
}

.w2w-safety__dot:focus-visible {
  outline: 2px solid #ff70aa;
  outline-offset: 3px;
}


/* =========================================
   CUSTOMER REVIEWS
========================================= */


/* =========================================
   REVIEWS CAROUSEL
========================================= */

.w2w-reviews {
  --reviews-accent: var(--pink, #df1164);
  --reviews-navy: var(--navy, #1d324f);
  --reviews-text: #5b6779;
  --reviews-border: #e8ebf1;
  --reviews-soft: #fff7fb;

  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 90px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 17, 100, 0.055), transparent 33%),
    #ffffff;
}

.w2w-reviews__header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.w2w-reviews__header .eyebrow {
  margin: 0 0 13px;
  color: var(--reviews-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.w2w-reviews__header h2 {
  margin: 0 0 15px;
  color: var(--reviews-navy);
  font-size: clamp(2.05rem, 3.4vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.w2w-reviews__header > p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--reviews-text);
  font-size: 1rem;
  line-height: 1.67;
}

.w2w-reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.w2w-reviews__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 18px 4px 26px;
  touch-action: pan-y;
}

.w2w-reviews__viewport:focus-visible {
  outline: 3px solid rgba(223, 17, 100, 0.18);
  outline-offset: 6px;
  border-radius: 28px;
}

.w2w-reviews__track {
  --reviews-gap: 22px;

  display: flex;
  align-items: stretch;
  gap: var(--reviews-gap);
  will-change: transform;
}

.w2w-review {
  position: relative;
  flex: 0 0 calc((100% - (var(--reviews-gap) * 2)) / 3);
  min-width: 0;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 29px 27px 25px;
  border: 1px solid var(--reviews-border);
  border-radius: 25px;
  background: #ffffff;
  opacity: 0.68;
  transform: scale(0.965);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.w2w-review::before {
  content: "“";
  position: absolute;
  top: 42px;
  right: 24px;
  color: rgba(223, 17, 100, 0.1);
  font-family: Georgia, serif;
  font-size: 5.2rem;
  line-height: 1;
  pointer-events: none;
}

.w2w-review.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(223, 17, 100, 0.2);
  box-shadow: 0 20px 48px rgba(29, 50, 79, 0.1);
}

.w2w-review__rating {
  position: relative;
  z-index: 1;
  width: 114px;
  height: 22px;
  margin-bottom: 22px;
}

.w2w-review__rating img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.w2w-review blockquote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 25px;
  color: #3e4c60;
  font-size: 0.94rem;
  line-height: 1.72;
}

.w2w-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f0f1f5;
}

.w2w-review__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--reviews-soft);
  color: var(--reviews-accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.w2w-review__author div {
  display: grid;
  gap: 3px;
}

.w2w-review__author strong {
  color: var(--reviews-navy);
  font-size: 0.94rem;
}

.w2w-review__author span {
  color: #7b8593;
  font-size: 0.77rem;
}

.w2w-reviews__arrow {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--reviews-border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--reviews-navy);
  cursor: pointer;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.w2w-reviews__arrow span {
  display: block;
  margin-top: -4px;
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
}

.w2w-reviews__arrow:hover {
  border-color: var(--reviews-accent);
  background: var(--reviews-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.w2w-reviews__arrow:focus-visible {
  outline: 3px solid rgba(223, 17, 100, 0.2);
  outline-offset: 3px;
}

.w2w-reviews__footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 11px;
}

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

.w2w-reviews__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #eab0c8;
  cursor: pointer;
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.w2w-reviews__dot.is-active {
  width: 31px;
  background: var(--reviews-accent);
}

.w2w-reviews__dot:focus-visible {
  outline: 2px solid var(--reviews-accent);
  outline-offset: 3px;
}

.w2w-reviews__counter {
  margin: 0;
  color: #808997;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.w2w-reviews__disclaimer {
  max-width: 630px;
  margin: 25px auto 0;
  color: #858d99;
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: center;
}


/* =========================================
   SPECIFICATIONS
========================================= */


/* =========================================
   SPECIFICATIONS SECTION
========================================= */

.w2w-specs {
  --spec-accent: var(--pink, #df1164);
  --spec-navy: var(--navy, #1c314d);
  --spec-text: #586577;
  --spec-muted: #7b8595;
  --spec-border: #e8ebf2;
  --spec-surface: #ffffff;

  position: relative;
  padding: clamp(56px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 17, 100, 0.045), transparent 31%),
    #f7f8fb;
}

.w2w-specs__header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.w2w-specs__header .eyebrow {
  margin: 0 0 13px;
  color: var(--spec-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.w2w-specs__header h2 {
  margin: 0 0 15px;
  color: var(--spec-navy);
  font-size: clamp(2.05rem, 3.4vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.w2w-specs__header > p:last-child {
  max-width: 590px;
  margin: 0 auto;
  color: var(--spec-text);
  font-size: 1rem;
  line-height: 1.68;
}

.w2w-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.w2w-spec-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 27px 27px 18px;
  border: 1px solid var(--spec-border);
  border-radius: 25px;
  background: var(--spec-surface);
  box-shadow: 0 6px 18px rgba(25, 41, 64, 0.035);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.w2w-spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 27px;
  right: 27px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--card-accent);
  opacity: 0.85;
}

.w2w-spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 17, 100, 0.18);
  box-shadow: 0 20px 44px rgba(25, 41, 64, 0.08);
}

/* Individual accent colours */

.w2w-spec-card--general {
  --card-accent: #df1164;
  --card-icon-bg: #fff0f6;
  --card-icon-border: rgba(223, 17, 100, 0.14);
}

.w2w-spec-card--connectivity {
  --card-accent: #365fbd;
  --card-icon-bg: #eef3ff;
  --card-icon-border: rgba(54, 95, 189, 0.14);
}

.w2w-spec-card--design {
  --card-accent: #17a47b;
  --card-icon-bg: #ecfbf6;
  --card-icon-border: rgba(23, 164, 123, 0.15);
}

.w2w-spec-card--box {
  --card-accent: #d98913;
  --card-icon-bg: #fff6e8;
  --card-icon-border: rgba(217, 137, 19, 0.16);
}

.w2w-spec-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 7px 0 24px;
}

.w2w-spec-card__icon {
  position: relative;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 19px;
  background: var(--card-icon-bg);
}

.w2w-spec-card__icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px solid var(--card-icon-border);
}

.w2w-spec-card__icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.w2w-spec-card:hover .w2w-spec-card__icon img {
  transform: scale(1.08);
}

.w2w-spec-card__label {
  margin: 0 0 4px;
  color: var(--card-accent);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.w2w-spec-card__head h3 {
  margin: 0;
  color: var(--spec-navy);
  font-size: 1.38rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.w2w-spec-card__list {
  margin: 0;
}

.w2w-spec-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 23px;
  padding: 13px 0;
  border-top: 1px solid #eef0f5;
}

.w2w-spec-card__row dt {
  flex: 0 1 46%;
  margin: 0;
  color: var(--spec-muted);
  font-size: 0.87rem;
  line-height: 1.48;
}

.w2w-spec-card__row dd {
  flex: 0 1 54%;
  margin: 0;
  color: #243750;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.48;
  text-align: right;
}

.w2w-spec-card__row--stack {
  display: block;
}

.w2w-spec-card__row--stack dd {
  margin-top: 7px;
  text-align: left;
}

.w2w-specs__notice {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 27px;
  padding: 18px 21px;
  border: 1px solid #e8ebf2;
  border-radius: 19px;
  background: #ffffff;
}

.w2w-specs__notice-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--spec-accent);
  font-size: 1rem;
  font-weight: 800;
}

.w2w-specs__notice p {
  flex: 1;
  margin: 0;
  color: #667386;
  font-size: 0.85rem;
  line-height: 1.55;
}

.w2w-specs__link {
  flex-shrink: 0;
  color: var(--spec-accent);
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.w2w-specs__link::after {
  content: " →";
}

.w2w-specs__link:hover {
  text-decoration: underline;
}


/* =========================================
   REMAINING PAGE SECTIONS
========================================= */


.helpline {
  min-height: 355px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eef4f5;
}

.helpline__image {
  position: absolute;
  inset: 0;
  background: url("../images/helpline-bg.svg") center / cover no-repeat;
  opacity: .82;
}

.helpline__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.helpline h2 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  margin-bottom: 13px;
}

.helpline p:not(.eyebrow) {
  margin: 0 auto 16px;
  font-size: 1.02rem;
  max-width: 670px;
}

.helpline__phone {
  display: block;
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.all-features {
  background: #fff;
}

.all-features__container {
  max-width: 1020px;
}

.tabs__list {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tabs__list button {
  border: 1px solid #d3dbe4;
  background: #fff;
  min-height: 39px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  color: var(--navy);
}

.tabs__list button.is-active,
.tabs__list button:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.tabs__panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 62px;
}

.tabs__panel[hidden] {
  display: none;
}

.tabs__panel p {
  margin: 0;
  font-size: .88rem;
}

.tabs__panel strong {
  color: var(--pink);
}

.consultation {
  background: #f6f8fa;
  padding: 86px 0;
}

.consultation__grid {
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.consultation__info h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.16;
  margin-bottom: 17px;
}

.consultation__info>p:not(.eyebrow):not(.consultation__legal) {
  font-size: 1rem;
  margin-bottom: 27px;
}

.store-card {
  background: #fff;
  padding: 29px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.store-card h3 {
  color: var(--pink);
  font-size: 1.39rem;
  margin-bottom: 6px;
}

.store-card p {
  font-size: .87rem;
  margin: 0 0 17px;
}

.store-card address {
  font-size: .96rem;
  color: var(--text);
  line-height: 1.63;
  margin-bottom: 17px;
}

.store-card a {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.store-card a:hover {
  color: var(--pink);
}

.store-card .hours {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 18px;
  margin-bottom: 0;
}

.consultation__legal {
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.55;
  margin-top: 18px;
}

.lead-form {
  background: #fff;
  padding: 39px 40px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.lead-form__header h3 {
  font-size: 1.54rem;
  margin-bottom: 7px;
}

.lead-form__header p {
  font-size: .88rem;
  margin-bottom: 27px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: .81rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select {
  min-height: 53px;
  border: 1px solid #ced7e1;
  background: #fff;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(225, 10, 99, .12);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: #c93646;
}

.consent {
  display: flex;
  align-items: start;
  gap: 11px;
  margin: 23px 0;
  color: var(--text);
  font-size: .81rem;
  line-height: 1.55;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--pink);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.consent.is-invalid {
  color: #b61b34;
}

.lead-form__fineprint {
  margin: 17px 0 0;
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
}

.lead-form__fineprint a {
  color: var(--pink);
  text-decoration: underline;
}

.form-message {
  margin-top: 19px;
  border-radius: 7px;
  padding: 15px 17px;
  font-size: .88rem;
  line-height: 1.52;
}

.form-message.is-success {
  background: #eaf8f2;
  color: #07543c;
  border: 1px solid #bce6d6;
}

.form-message.is-error {
  background: #fff0f0;
  color: #a72637;
  border: 1px solid #f2c5cd;
}


.mobile-call {
  display: none;
}

/* Legal pages */
.legal-page {
  background: #f7f8fa;
}

.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}

.legal-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.legal-header__back {
  color: var(--pink);
  font-weight: 700;
  font-size: .9rem;
}

.legal-content {
  padding: 64px 0 80px;
}

.legal-wrap {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  padding: clamp(30px, 5vw, 58px);
  max-width: 960px;
}

.legal-wrap .eyebrow {
  margin-bottom: 15px;
}

.legal-wrap h1 {
  font-size: clamp(2rem, 3.7vw, 2.8rem);
  margin-bottom: 10px;
}

.legal-meta {
  color: var(--muted);
  font-size: .84rem;
  margin-bottom: 37px;
}

.legal-wrap h2 {
  font-size: 1.32rem;
  margin: 35px 0 13px;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--text);
  line-height: 1.72;
  font-size: .93rem;
}

.legal-wrap ul {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 7px;
}

.legal-alert {
  background: #fff4f8;
  border-left: 3px solid var(--pink);
  padding: 17px 20px;
  margin: 26px 0;
}

.legal-alert p {
  margin: 0;
}

/* =========================================
   RESPONSIVE: SMALL DESKTOP / TABLET
========================================= */

@media (max-width: 1180px) {
  .header__inner {
    gap: 18px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: .84rem;
  }

  .header__phone {
    display: none;
  }

  .anchor-nav__inner {
    gap: clamp(20px, 3vw, 30px);
  }

  .hero__product {
    right: 20px;
    width: clamp(225px, 22vw, 275px);
  }
}

@media (max-width: 1040px) {
  .w2w-feature {
    flex-basis: calc((100% - var(--feature-gap)) / 2);
  }

  .w2w-feature__media {
    height: 252px;
  }

  .w2w-feature__media img {
    height: 224px;
  }

  .w2w-review {
    flex-basis: calc((100% - var(--reviews-gap)) / 2);
  }
}

@media (max-width: 1020px) {
  .w2w-safety__panel {
    grid-template-columns: minmax(0, 1fr);
    max-width: 730px;
    margin: 0 auto;
  }

  .w2w-safety__content h2,
  .w2w-safety__lead {
    max-width: none;
  }

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

  .w2w-safety__carousel {
    width: 100%;
    max-width: 590px;
    margin: 4px auto 0;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .section {
    padding: 68px 0;
  }

  .site-notice__inner {
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 8px 12px;
    text-align: center;
  }

  .header__inner {
    justify-content: space-between;
  }

  .brand__mark {
    width: 47px;
    height: 47px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header__actions {
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 18px 17px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 27px rgba(18, 38, 66, .09);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 6px;
    border-bottom: 1px solid #eef2f6;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero__backdrop {
    background-position: 62% center;
  }

  .hero__backdrop::after {
    background: linear-gradient(
      90deg,
      rgba(11, 22, 39, .95) 0%,
      rgba(11, 22, 39, .86) 54%,
      rgba(11, 22, 39, .58) 100%
    );
  }

  .hero__grid {
    min-height: 0;
    display: block;
  }

  .hero__content {
    width: 100%;
    max-width: 650px;
    padding: 52px 0 32px;
  }

  .hero__product {
    position: relative;
    inset: auto;
    width: min(255px, 44vw);
    margin: 0 auto 38px;
  }

  .anchor-nav {
    display: none;
  }

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

  .demo-card {
    grid-column: 1 / -1;
    grid-row: auto;
    width: min(350px, 100%);
    justify-self: center;
  }

  .support__grid,
  .provider__grid,
  .consultation__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .support__grid {
    min-height: 0;
    padding: 62px 0;
  }

  .support__device {
    order: 2;
  }

  .device-showcase {
    min-height: 430px;
    padding: 22px 16px;
  }

  .device-showcase__backdrop {
    width: min(375px, 92%);
    height: min(375px, 92%);
  }

  .device-showcase__image {
    max-width: min(266px, 72%);
    max-height: 392px;
  }

  .provider__product {
    min-height: 430px;
  }

  .tabs__panel {
    gap: 22px 36px;
  }

  .mobile-call {
    position: fixed;
    z-index: 35;
    right: 16px;
    bottom: max(15px, env(safe-area-inset-bottom));
    left: 16px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--pink);
    box-shadow: 0 14px 29px rgba(225, 10, 99, .34);
    color: #fff;
    font-weight: 700;
  }


  /* Specs remain two columns on tablet but rows stack safely. */
  .w2w-specs__grid {
    gap: 18px;
  }

  .w2w-spec-card {
    padding: 23px 21px 15px;
  }

  .w2w-spec-card::before {
    right: 21px;
    left: 21px;
  }

  .w2w-spec-card__head {
    margin-bottom: 20px;
  }

  .w2w-spec-card__row {
    display: block;
  }

  .w2w-spec-card__row dd {
    margin-top: 6px;
    text-align: left;
  }
}

/* =========================================
   RESPONSIVE: PHONE
========================================= */

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 56px 0;
  }

  .site-notice__badge {
    display: none;
  }

  .brand__copy strong {
    font-size: .98rem;
  }

  .brand__copy small {
    font-size: .69rem;
  }

  .hero__backdrop {
    background-position: 58% center;
  }

  .hero__backdrop::after {
    background: linear-gradient(
      180deg,
      rgba(11, 22, 39, .88) 0%,
      rgba(11, 22, 39, .93) 55%,
      rgba(11, 22, 39, .82) 100%
    );
  }

  .hero__content {
    padding: 39px 0 24px;
  }

  .hero h1 {
    font-size: clamp(2.04rem, 10vw, 2.62rem);
    line-height: 1.12;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero__service {
    width: 100%;
    padding: 12px 13px;
    margin-bottom: 25px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__disclaimer {
    margin-bottom: 28px;
  }

  .hero__highlights {
    flex-direction: column;
    gap: 17px;
  }

  .hero__product {
    width: min(216px, 62vw);
    margin: 26px auto 27px;
  }

  .hero__phone-image {
    max-height: 405px;
  }

  .why__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }

  .reason h3 {
    font-size: 1.23rem;
  }

  .support::before {
    opacity: .18;
  }

  .support__grid {
    padding: 52px 0;
    gap: 31px;
  }

  .support__content h2 {
    font-size: clamp(1.82rem, 9vw, 2rem);
  }

  .provider__product {
    min-height: 350px;
  }

  .device-showcase {
    min-height: 350px;
    padding: 15px 10px 24px;
  }

  .device-showcase__backdrop {
    width: min(308px, 92%);
    height: min(308px, 92%);
  }

  .device-showcase__backdrop::before {
    inset: -16px;
  }

  .device-showcase__backdrop::after {
    bottom: 22px;
    width: 178px;
    height: 23px;
  }

  .device-showcase__image {
    max-width: min(214px, 67%);
    max-height: 310px;
    transform: rotate(1deg);
  }

  .device-showcase:hover .device-showcase__image {
    transform: rotate(1deg);
  }

  /* Feature carousel */
  .w2w-features {
    padding: 46px 0 48px;
  }

  .w2w-features__header {
    display: block;
    margin-bottom: 25px;
  }

  .w2w-features__heading h2 {
    font-size: clamp(1.79rem, 8vw, 2.15rem);
  }

  .w2w-features__heading > p:last-child {
    font-size: .94rem;
    line-height: 1.58;
  }

  .w2w-features__nav {
    margin-top: 22px;
  }

  .w2w-features__button {
    width: 47px;
    height: 47px;
  }

  .w2w-features__track {
    --feature-gap: 14px;
  }

  .w2w-feature {
    flex-basis: calc(100% - 30px);
    border-radius: 21px;
  }

  .w2w-feature__media {
    height: 228px;
    padding-top: 17px;
  }

  .w2w-feature__media img {
    height: 207px;
    max-width: 88%;
  }

  .w2w-feature__body {
    padding: 18px 18px 21px;
  }

  .w2w-feature h3 {
    font-size: 1.17rem;
  }

  .w2w-feature p {
    font-size: .89rem;
  }

  .w2w-features__footer {
    margin-top: 12px;
  }

  .w2w-features__note {
    margin-top: 18px;
    text-align: left;
  }

  /* Safety */
  .w2w-safety {
    padding: 44px 0;
  }

  .w2w-safety__panel {
    gap: 29px;
    padding: 29px 17px 24px;
    border-radius: 24px;
  }

  .w2w-safety__content h2 {
    font-size: clamp(1.83rem, 9vw, 2.18rem);
  }

  .w2w-safety__lead {
    margin-bottom: 23px;
    font-size: .93rem;
  }

  .w2w-safety__benefits {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .w2w-safety__benefit {
    padding: 15px 13px;
  }

  .w2w-safety__notice {
    margin-bottom: 23px;
    padding: 13px;
  }

  .w2w-safety__cta {
    width: 100%;
    justify-content: center;
  }

  .w2w-safety__viewport {
    height: 421px;
    border-radius: 20px;
  }

  .w2w-safety__media {
    height: 235px;
    padding: 12px;
  }

  .w2w-safety__caption {
    padding: 17px 18px 19px;
  }

  .w2w-safety__caption h3 {
    font-size: 1.13rem;
  }

  .w2w-safety__caption p {
    font-size: .85rem;
    line-height: 1.53;
  }

  .w2w-safety__controls {
    gap: 11px;
    margin-top: 17px;
  }

  .w2w-safety__arrow {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .w2w-safety__progress {
    min-width: 128px;
  }

  /* Reviews: arrows no longer protrude beyond the screen. */
  .w2w-reviews {
    padding: 46px 0 48px;
  }

  .w2w-reviews__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .w2w-reviews__header h2 {
    font-size: clamp(1.82rem, 8.5vw, 2.18rem);
  }

  .w2w-reviews__header > p:last-child {
    font-size: .93rem;
    line-height: 1.6;
  }

  .w2w-reviews__carousel {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 7px;
    align-items: center;
  }

  .w2w-reviews__viewport {
    padding: 8px 0 20px;
  }

  .w2w-reviews__track {
    --reviews-gap: 12px;
  }

  .w2w-review {
    flex-basis: 100%;
    min-height: 300px;
    padding: 23px 19px 20px;
    border-radius: 21px;
    opacity: 1;
    transform: none;
  }

  .w2w-review::before {
    top: 35px;
    right: 16px;
    font-size: 4.2rem;
  }

  .w2w-review blockquote {
    margin-bottom: 20px;
    font-size: .9rem;
    line-height: 1.65;
  }

  .w2w-reviews__arrow {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .w2w-reviews__footer {
    margin-top: 3px;
  }

  .w2w-reviews__disclaimer {
    margin-top: 19px;
    text-align: left;
  }

  /* Specifications: all four cards stack vertically on phones. */
  .w2w-specs {
    padding: 46px 0;
  }

  .w2w-specs__header {
    margin-bottom: 28px;
    text-align: left;
  }

  .w2w-specs__header h2 {
    font-size: clamp(1.83rem, 8.5vw, 2.18rem);
  }

  .w2w-specs__header > p:last-child {
    font-size: .93rem;
    line-height: 1.6;
  }

  .w2w-specs__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .w2w-spec-card {
    width: 100%;
    min-width: 0;
    padding: 20px 17px 11px;
    border-radius: 20px;
  }

  .w2w-spec-card::before {
    right: 17px;
    left: 17px;
  }

  .w2w-spec-card__head {
    gap: 13px;
    margin: 5px 0 16px;
  }

  .w2w-spec-card__icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
    border-radius: 16px;
  }

  .w2w-spec-card__icon img {
    width: 34px;
    height: 34px;
  }

  .w2w-spec-card__head h3 {
    font-size: 1.2rem;
  }

  .w2w-spec-card__row {
    display: block;
    gap: 0;
    padding: 10px 0;
  }

  .w2w-spec-card__row dt {
    width: 100%;
    font-size: .81rem;
  }

  .w2w-spec-card__row dd {
    width: 100%;
    margin-top: 5px;
    font-size: .85rem;
    text-align: left;
  }

  .w2w-specs__notice {
    display: block;
    margin-top: 18px;
    padding: 15px;
  }

  .w2w-specs__notice-icon {
    margin-bottom: 10px;
  }

  .w2w-specs__notice p {
    margin-bottom: 12px;
  }

  .w2w-specs__link {
    display: inline-flex;
    white-space: normal;
  }

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

  .tabs__panel {
    gap: 18px;
  }

  .consultation {
    padding: 59px 0;
  }

  .lead-form {
    padding: 28px 18px;
  }

}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand__mark {
    width: 43px;
    height: 43px;
  }

  .brand__copy small {
    display: none;
  }

  .w2w-safety__panel {
    padding-inline: 13px;
  }

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

  .w2w-reviews__arrow {
    display: none;
  }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
/* =========================================
   FOOTER
========================================= */

.footer {
  position: relative;
  overflow: hidden;
  padding: 62px 0 24px;
  background:
    radial-gradient(circle at 6% 0%, rgba(225, 10, 99, 0.16), transparent 28%),
    var(--navy-dark);
  color: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.93fr 0.78fr 1.04fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand--footer .brand__copy strong {
  color: #ffffff;
}

.brand--footer .brand__copy small {
  color: #b7c8df;
}

.footer__intro {
  max-width: 300px;
  margin: 21px 0 0;
  color: #bdcce0;
  font-size: 0.85rem;
  line-height: 1.67;
}

.footer__operator {
  max-width: 300px;
  margin: 22px 0 0;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #bdcce0;
  font-size: 0.82rem;
  line-height: 1.68;
}

.footer__operator strong {
  color: #ffffff;
}

.footer__replace {
  color: #ffb6d3;
}

.footer__column {
  min-width: 0;
}

.footer__title {
  margin: 0 0 19px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__address {
  margin: 0 0 18px;
  color: #bdcce0;
  font-size: 0.87rem;
  line-height: 1.68;
}

.footer__contact-list {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.footer__contact-list a {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  word-break: break-word;
}

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

.footer__links a {
  color: #d5e0ee;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.footer__links a:hover,
.footer__contact-list a:hover,
.footer__text-link:hover,
.footer__bottom-links a:hover {
  color: #ff72ad;
}

.footer__text-link {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer__notice {
  padding: 30px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.footer__notice-item {
  min-width: 0;
}

.footer__notice-item h2 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer__notice-item p {
  margin: 0;
  color: #b9c9dc;
  font-size: 0.79rem;
  line-height: 1.64;
}

.footer__notice-item strong {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding-top: 23px;
}

.footer__bottom p {
  margin: 0;
  color: #b9c9dd;
  font-size: 0.75rem;
  line-height: 1.55;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer__bottom-links li + li::before {
  content: "·";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.36);
}

.footer__bottom-links a {
  color: #d8e2ef;
  font-size: 0.76rem;
}

/* Tablet */

@media (max-width: 980px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .footer__notice-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .footer {
    padding: 48px 0 92px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 33px;
  }

  .footer__intro,
  .footer__operator {
    max-width: none;
  }

  .footer__notice {
    padding: 26px 0;
  }

  .footer__bottom {
    display: grid;
    gap: 17px;
    padding-top: 21px;
  }

  .footer__bottom-links {
    row-gap: 8px;
  }
}
/* =========================================
   EXTENDED LEGAL PAGE COMPONENTS
========================================= */

.legal-toc {
  margin: 35px 0 40px;
  padding: 26px 28px;
  border: 1px solid #e8ebf2;
  border-radius: 17px;
  background: #f8f9fc;
}

.legal-toc h2 {
  margin: 0 0 17px;
  font-size: 1.12rem;
}

.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding-left: 19px;
  color: var(--pink);
}

.legal-toc a {
  color: #465468;
  font-size: 0.88rem;
  line-height: 1.5;
}

.legal-toc a:hover {
  color: var(--pink);
}

.legal-section {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal-section h2 {
  margin-top: 39px;
}

.legal-section h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.06rem;
}

.legal-callout {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid #f1d4df;
  border-radius: 12px;
  background: #fff6fa;
}

.legal-callout p {
  margin: 0;
}

.legal-contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid #e5e9f0;
  border-radius: 14px;
  background: #f8f9fc;
}

.legal-contact-card p {
  margin: 0;
}

.legal-related {
  margin-top: 46px;
  padding: 27px 29px;
  border-radius: 16px;
  background: var(--navy-dark);
}

.legal-related h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.2rem;
}

.legal-related ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  padding: 0;
  list-style: none;
}

.legal-related a {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}

.legal-related a:hover {
  color: #ff72ad;
}

.footer--legal {
  padding-top: 0;
}

@media (max-width: 680px) {
  .legal-content {
    padding: 37px 0 58px;
  }

  .legal-wrap {
    padding: 25px 19px 29px;
  }

  .legal-toc {
    margin: 28px 0 32px;
    padding: 20px 18px;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-section h2 {
    margin-top: 31px;
  }

  .legal-contact-card {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 19px 18px;
  }

  .legal-related {
    margin-top: 36px;
    padding: 22px 18px;
  }

  .legal-related ul {
    display: grid;
    gap: 13px;
  }
}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
  background: #ffffff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 82px) 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(225, 10, 99, 0.11), transparent 29%),
    linear-gradient(135deg, #f8f9fc 0%, #ffffff 54%, #fff7fa 100%);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 430px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.contact-hero__content {
  min-width: 0;
}

.contact-hero__content .eyebrow {
  margin-bottom: 15px;
}

.contact-hero__content h1 {
  max-width: 660px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(2.55rem, 4.5vw, 3.65rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.contact-hero__lead {
  max-width: 630px;
  margin: 0 0 30px;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.7;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 23px;
}

.contact-hero__notice {
  max-width: 610px;
  margin: 0;
  padding-left: 15px;
  border-left: 2px solid var(--pink);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.contact-hero__card {
  min-width: 0;
  padding: 31px 31px 29px;
  border: 1px solid #e7ebf2;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(18, 38, 66, 0.09);
}

.contact-hero__card-label {
  margin: 0 0 11px;
  color: var(--pink);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero__card h2 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.25;
}

.contact-hero__operator {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-hero__operator strong {
  color: var(--navy);
}

.contact-hero__card address {
  margin: 0 0 22px;
  padding: 17px 18px;
  border-radius: 13px;
  background: #f7f8fb;
  color: var(--text);
  font-size: 0.91rem;
  line-height: 1.68;
}

.contact-hero__details {
  display: grid;
  gap: 13px;
}

.contact-hero__details li {
  display: grid;
  gap: 4px;
}

.contact-hero__details span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-hero__details a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-hero__details a:hover {
  color: var(--pink);
}

/* Contact routes */

.contact-routes {
  padding: clamp(54px, 7vw, 82px) 0;
  background: #ffffff;
}

.contact-section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.contact-section-heading h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 2.68rem);
  line-height: 1.17;
  letter-spacing: -0.05em;
}

.contact-section-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.65;
}

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

.contact-route {
  --route-accent: var(--pink);
  --route-soft: #fff0f6;

  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 25px 26px;
  border: 1px solid #e8ebf2;
  border-radius: 23px;
  background: #ffffff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-route--care {
  --route-accent: #315db8;
  --route-soft: #eef3ff;
}

.contact-route--privacy {
  --route-accent: #109673;
  --route-soft: #ebfaf5;
}

.contact-route:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 10, 99, 0.16);
  box-shadow: 0 18px 45px rgba(18, 38, 66, 0.08);
}

.contact-route__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--route-soft);
  color: var(--route-accent);
}

.contact-route__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-route h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.3;
}

.contact-route > p {
  flex: 1;
  margin: 0 0 21px;
  color: var(--text);
  font-size: 0.89rem;
  line-height: 1.62;
}

.contact-route__links {
  display: grid;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid #eef1f5;
}

.contact-route__links a {
  color: var(--route-accent);
  font-size: 0.87rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Visit section */

.contact-visit {
  padding: clamp(54px, 7vw, 84px) 0;
  background: #f7f8fb;
}

.contact-visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(335px, 400px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.contact-visit__content {
  min-width: 0;
}

.contact-visit__content h2 {
  max-width: 590px;
  margin: 0 0 17px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 2.62rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.contact-visit__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 27px;
  font-size: 0.97rem;
}

.contact-checklist {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.contact-checklist li {
  position: relative;
  padding-left: 31px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.52;
}

.contact-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-visit__warning {
  max-width: 630px;
  padding: 17px 19px;
  border-left: 3px solid var(--pink);
  border-radius: 0 12px 12px 0;
  background: #ffffff;
  color: #596679;
  font-size: 0.85rem;
  line-height: 1.63;
}

.contact-visit__warning strong {
  color: var(--navy);
}

.contact-hours {
  min-width: 0;
  padding: 29px 27px 27px;
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 14px 39px rgba(18, 38, 66, 0.065);
}

.contact-hours > h2 {
  margin: 0 0 25px;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.3;
}

.contact-hours__block {
  padding: 19px 0;
  border-top: 1px solid #edf0f5;
}

.contact-hours__block h3 {
  margin: 0 0 10px;
  color: var(--pink);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-hours__block address {
  color: var(--text);
  font-size: 0.91rem;
  line-height: 1.68;
}

.contact-hours__list {
  margin: 0;
}

.contact-hours__list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}

.contact-hours__list dt,
.contact-hours__list dd {
  margin: 0;
  color: var(--text);
  font-size: 0.87rem;
  line-height: 1.48;
}

.contact-hours__list dd {
  color: var(--navy);
  font-weight: 700;
  text-align: right;
}

.contact-hours__actions {
  display: grid;
  gap: 15px;
  margin-top: 23px;
}

.contact-hours__email {
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

/* Customer care */

.contact-care {
  padding: clamp(50px, 7vw, 78px) 0;
  background: #ffffff;
}

.contact-care__panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(29px, 5vw, 60px);
  padding: clamp(29px, 5vw, 47px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 4% 0%, rgba(225, 10, 99, 0.14), transparent 27%),
    var(--navy-dark);
}

.contact-care__content h2 {
  margin: 0 0 17px;
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 2.34rem);
  line-height: 1.18;
}

.contact-care__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.91rem;
  line-height: 1.67;
}

.contact-care__links {
  display: grid;
  gap: 11px;
}

.contact-care__links a {
  display: grid;
  gap: 5px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-care__links a:hover {
  border-color: rgba(255, 114, 173, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.contact-care__links strong {
  color: #ffffff;
  font-size: 0.93rem;
}

.contact-care__links span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.52;
}

/* Emergency notice */

.contact-emergency {
  padding: 0 0 clamp(52px, 7vw, 82px);
  background: #ffffff;
}

.contact-emergency__inner {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 23px 26px;
  border: 1px solid #f0d5df;
  border-radius: 18px;
  background: #fff6fa;
}

.contact-emergency__mark {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.contact-emergency h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
}

.contact-emergency p {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.63;
}

.contact-emergency strong {
  color: var(--navy);
}

/* =========================================
   CONTACT PAGE RESPONSIVE
========================================= */

@media (max-width: 980px) {
  .contact-hero__grid,
  .contact-visit__grid,
  .contact-care__panel {
    grid-template-columns: 1fr;
  }

  .contact-hero__card,
  .contact-hours {
    max-width: 560px;
    width: 100%;
  }

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

  .contact-route--privacy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    padding: 39px 0 46px;
  }

  .contact-hero__content h1 {
    font-size: clamp(2.03rem, 10vw, 2.5rem);
    line-height: 1.13;
  }

  .contact-hero__lead {
    margin-bottom: 25px;
    font-size: 0.95rem;
  }

  .contact-hero__actions {
    display: grid;
  }

  .contact-hero__card {
    padding: 23px 19px 22px;
    border-radius: 21px;
  }

  .contact-routes,
  .contact-visit,
  .contact-care {
    padding: 47px 0;
  }

  .contact-section-heading {
    margin-bottom: 27px;
    text-align: left;
  }

  .contact-section-heading h2,
  .contact-visit__content h2 {
    font-size: clamp(1.82rem, 8.5vw, 2.15rem);
  }

  .contact-routes__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-route--privacy {
    grid-column: auto;
  }

  .contact-route {
    padding: 23px 19px 21px;
    border-radius: 20px;
  }

  .contact-hours {
    padding: 22px 18px 21px;
    border-radius: 20px;
  }

  .contact-hours__list div {
    gap: 12px;
  }

  .contact-care__panel {
    padding: 26px 18px 20px;
    border-radius: 23px;
  }

  .contact-care__content h2 {
    font-size: clamp(1.75rem, 8vw, 2.06rem);
  }

  .contact-care__links a {
    padding: 15px 14px;
  }

  .contact-emergency {
    padding-bottom: 48px;
  }

  .contact-emergency__inner {
    gap: 13px;
    padding: 17px 15px;
  }
}
/* =========================================
   ACCESSIBILITY PAGE
========================================= */

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 12px 17px;
  border-radius: 7px;
  background: var(--pink);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transform: translateY(calc(-100% - 20px));
  transition: transform 0.18s ease;
}

.skip-link:focus {
  color: #ffffff;
  transform: translateY(0);
  outline: 3px solid rgba(225, 10, 99, 0.22);
  outline-offset: 3px;
}

.accessibility-checklist {
  list-style: none !important;
  padding-left: 0 !important;
  display: grid;
  gap: 11px !important;
  margin: 20px 0 27px;
}

.accessibility-checklist li {
  position: relative;
  padding: 13px 16px 13px 45px;
  border: 1px solid #e8ebf2;
  border-radius: 11px;
  background: #f8f9fc;
}

.accessibility-checklist li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
}

.accessibility-contact-options {
  margin: 22px 0 26px;
}

.accessibility-contact-options h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.accessibility-contact-options p + p {
  margin-top: 12px;
}

@media (max-width: 680px) {
  .skip-link {
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .accessibility-checklist li {
    padding: 12px 13px 12px 41px;
  }

  .accessibility-checklist li::before {
    top: 13px;
    left: 13px;
  }

  .accessibility-contact-options {
    margin: 19px 0 22px;
  }
}
/* =========================================
   COOKIES & BROWSER STORAGE PAGE
========================================= */

.cookie-summary {
  margin: 28px 0 34px;
  padding: clamp(22px, 4vw, 29px);
  border: 1px solid #dcefe8;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 122, 85, 0.08), transparent 38%),
    #f4fbf8;
}

.cookie-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f8f1;
  color: var(--success);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-summary__badge span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #ffffff;
  font-size: 0.66rem;
}

.cookie-summary h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 1.58rem);
}

.cookie-summary p {
  max-width: 760px;
  margin: 0;
  font-size: 0.91rem;
}

.cookie-table-wrap {
  width: 100%;
  margin: 23px 0 28px;
  overflow-x: auto;
  border: 1px solid #e5e9f0;
  border-radius: 15px;
  background: #ffffff;
}

.cookie-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.cookie-table caption {
  padding: 18px 20px 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  text-align: left;
}

.cookie-table thead {
  background: #f7f8fb;
}

.cookie-table th {
  padding: 15px 16px;
  border-bottom: 1px solid #e8ebf2;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cookie-table td {
  padding: 17px 16px;
  border-bottom: 1px solid #eef1f5;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.56;
  vertical-align: top;
}

.cookie-table tbody tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.cookie-parameter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 19px 0 23px;
}

.cookie-parameter-list code {
  padding: 8px 12px;
  border: 1px solid #e8ebf2;
  border-radius: 8px;
  background: #f8f9fc;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.cookie-disabled-list {
  margin-top: 18px !important;
  margin-bottom: 26px !important;
}

.cookie-contact-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
  margin: 25px 0 9px;
  padding: 21px 23px;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  background: #f8f9fc;
}

.cookie-contact-choice h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}

.cookie-contact-choice p {
  margin: 0;
  font-size: 0.87rem;
}

.cookie-contact-choice__links {
  flex-shrink: 0;
  display: grid;
  gap: 8px;
  text-align: right;
}

.cookie-contact-choice__links a {
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .cookie-summary {
    margin: 24px 0 29px;
    padding: 19px 16px;
    border-radius: 15px;
  }

  .cookie-summary h2 {
    font-size: 1.28rem;
  }

  .cookie-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .cookie-table {
    min-width: 0;
    display: block;
  }

  .cookie-table caption {
    padding: 0 0 14px;
    font-size: 1rem;
  }

  .cookie-table thead {
    display: none;
  }

  .cookie-table tbody,
  .cookie-table tr,
  .cookie-table td {
    display: block;
    width: 100%;
  }

  .cookie-table tr {
    overflow: hidden;
    border: 1px solid #e5e9f0;
    border-radius: 14px;
    background: #ffffff;
  }

  .cookie-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #eef1f5;
    font-size: 0.84rem;
  }

  .cookie-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cookie-parameter-list {
    gap: 7px;
  }

  .cookie-parameter-list code {
    padding: 7px 9px;
    font-size: 0.74rem;
  }

  .cookie-contact-choice {
    display: block;
    padding: 17px 15px;
  }

  .cookie-contact-choice__links {
    margin-top: 16px;
    text-align: left;
  }
}
/* =========================================
   RETURNS, REFUNDS & CONSUMER GUARANTEES
========================================= */

.returns-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
  gap: 22px;
  margin: 29px 0 36px;
  padding: clamp(22px, 4vw, 29px);
  border: 1px solid #e8ebf2;
  border-radius: 19px;
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 10, 99, 0.08), transparent 35%),
    #f8f9fc;
}

.returns-summary__label {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.returns-summary__content h2 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 1.62rem);
  line-height: 1.3;
}

.returns-summary__content p:last-child {
  margin: 0;
  font-size: 0.9rem;
}

.returns-summary__rights {
  align-self: start;
  padding: 18px 18px 17px;
  border: 1px solid #d9eee6;
  border-radius: 14px;
  background: #f2fbf7;
}

.returns-summary__rights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--success);
  font-size: 0.83rem;
}

.returns-summary__rights p {
  margin: 0;
  color: #46586a;
  font-size: 0.8rem;
  line-height: 1.57;
}

.returns-remedy {
  margin: 23px 0 27px;
  padding: 20px 21px;
  border-radius: 15px;
}

.returns-remedy--major {
  border: 1px solid #f0d3df;
  background: #fff6fa;
}

.returns-remedy--minor {
  border: 1px solid #dce8f8;
  background: #f4f8ff;
}

.returns-remedy__badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.returns-remedy--major .returns-remedy__badge {
  background: #ffe6f0;
  color: var(--pink-dark);
}

.returns-remedy--minor .returns-remedy__badge {
  background: #e8f0ff;
  color: #315db8;
}

.returns-remedy h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.returns-remedy p {
  margin: 0;
  font-size: 0.88rem;
}

.returns-policy-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 23px 0 28px;
  border: 1px solid #e5e9f0;
  border-radius: 15px;
  background: #ffffff;
}

.returns-policy-card__item {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border-bottom: 1px solid #eef1f5;
}

.returns-policy-card__item:nth-child(odd) {
  border-right: 1px solid #eef1f5;
}

.returns-policy-card__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.returns-policy-card__item strong {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.returns-policy-card__item span {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.52;
}

.returns-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 22px 0 29px;
}

.returns-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 18px 17px;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  background: #f8f9fc;
}

.returns-step__number {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  font-size: 0.83rem;
  font-weight: 800;
}

.returns-step h3 {
  margin: 3px 0 7px;
  color: var(--navy);
  font-size: 0.97rem;
}

.returns-step p {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.58;
}

.returns-repair-notice {
  margin: 24px 0 26px;
  padding: 22px 23px;
  border: 1px solid #e7ebf2;
  border-left: 4px solid var(--pink);
  border-radius: 0 15px 15px 0;
  background: #f8f9fc;
}

.returns-repair-notice h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 1.13rem;
}

.returns-repair-notice p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .returns-summary {
    grid-template-columns: 1fr;
  }

  .returns-policy-card,
  .returns-steps {
    grid-template-columns: 1fr;
  }

  .returns-policy-card__item:nth-child(odd) {
    border-right: 0;
  }

  .returns-policy-card__item:nth-last-child(2) {
    border-bottom: 1px solid #eef1f5;
  }
}

@media (max-width: 680px) {
  .returns-summary {
    margin: 24px 0 30px;
    padding: 18px 16px;
    border-radius: 15px;
  }

  .returns-summary__content h2 {
    font-size: 1.28rem;
  }

  .returns-remedy {
    padding: 17px 16px;
  }

  .returns-policy-card {
    margin: 20px 0 25px;
    border-radius: 13px;
  }

  .returns-policy-card__item {
    padding: 15px 14px;
  }

  .returns-step {
    padding: 15px 13px;
  }

  .returns-repair-notice {
    padding: 17px 15px;
  }
}