/* Pure&Clean Mobile — homepage styles
   UK English storefront concept for easy-use mobile phones.
*/
:root {
  --yellow: #ffd000;
  --yellow-strong: #f7c600;
  --yellow-soft: #fff8d7;
  --ink: #252525;
  --ink-2: #393939;
  --body: #4d5360;
  --muted: #697180;
  --line: #e7e8ee;
  --panel: #f6f6fb;
  --panel-2: #fafafc;
  --white: #ffffff;
  --teal: #128b83;
  --footer: #292929;
  --shadow: 0 18px 38px rgba(25, 28, 38, .09);
  --radius: 14px;
  --container: 1360px;
  --service-bar-h: 39px;
  --header-h: 72px;
  --hero-content-width: 1280px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.text-large {
  font-size: 112.5%;
}

body.modal-open {
  overflow: hidden;
}

body.high-contrast {
  --yellow: #ffd800;
  --yellow-strong: #ffd800;
  --ink: #000;
  --ink-2: #000;
  --body: #0b0b0b;
  --muted: #101010;
  --line: #111;
  --panel: #fff;
  --panel-2: #fff;
  --footer: #000;
}

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

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

a:hover {
  text-decoration: underline;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 .7rem;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(2.15rem, 3.25vw, 3.35rem);
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

h3 {
  font-size: 1.05rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 2000;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 7px;
  transform: translateY(-150%);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: .96rem;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #006f8a;
  outline-offset: 2px;
}

.button--accent {
  background: var(--yellow);
  color: #1c1c1c;
}

.button--accent:hover {
  background: var(--yellow-strong);
}

.button--dark {
  background: #2b2b2b;
  color: var(--white);
}

.button--dark:hover {
  background: #161616;
}

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

.button--outline:hover {
  background: rgba(255, 255, 255, .15);
}

.button--ghost {
  border-color: #cfd2dd;
  background: var(--white);
  color: var(--ink);
}

.button--small {
  min-height: 40px;
  padding: .55rem 1.02rem;
  font-size: .9rem;
}

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

.service-bar {
  background: #242424;
  color: #f8f8f8;
  font-size: .82rem;
}

.service-bar__inner {
  min-height: var(--service-bar-h);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.service-bar p {
  margin: 0;
}

.service-bar__link {
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #ececf1;
  box-shadow: 0 2px 12px rgba(18, 24, 38, .035);
  backdrop-filter: blur(10px);
}

.header__inner {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

/* Brand */
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}
.brand__logo {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 5px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.02;
}

.brand__name {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand__type {
  margin-top: .16rem;
  color: var(--teal);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.1rem);
  margin-left: auto;
}

.primary-nav a {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 620;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: #806600;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .9rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Mobile menu button */
.menu-toggle {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .48rem .82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
}

.menu-toggle__lines {
  display: grid;
  gap: 4px;
}

.menu-toggle__lines span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
/* =========================================================
   FULL-VIEWPORT HERO
   Markup required: .hero__frame > image + overlay + .hero__inner
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.hero__frame {
  position: relative;
  display: flex;
  width: 100%;
  height: calc(100svh - var(--service-bar-h) - var(--header-h));
  min-height: 585px;
  overflow: hidden;
  background: #d9d5ce;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 22, 25, .78) 0%, rgba(18, 22, 25, .66) 31%, rgba(18, 22, 25, .25) 59%, rgba(18, 22, 25, .12) 100%),
    linear-gradient(0deg, rgba(18, 22, 25, .24) 0%, rgba(18, 22, 25, 0) 48%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--hero-content-width), calc(100% - 48px));
  min-height: 100%;
  margin-inline: auto;
  padding-block: clamp(2.3rem, 6.5vh, 4.5rem);
  display: grid;
  grid-template-columns: minmax(390px, 590px) minmax(270px, 336px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 6.5vw, 6.5rem);
}

.hero__content {
  min-width: 0;
  color: var(--white);
}

.eyebrow,
.hero .eyebrow {
  display: inline-flex;
  margin: 0 0 .95rem;
  color: var(--yellow);
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero__content h1 {
  max-width: 610px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.55rem, 4.3vw, 4.05rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.062em;
}

.hero__text {
  max-width: 490px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.97rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.8rem;
}

.hero__buttons .button {
  min-width: 154px;
}

.hero .button--outline {
  border-color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  backdrop-filter: blur(7px);
}

.hero .button--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .18);
}

.hero__highlights {
  position: static;
  z-index: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: .72rem;
}

.hero__highlights div,
.hero__highlights div:nth-child(2),
.hero__highlights div:nth-child(3) {
  min-height: 124px;
  padding: 1rem .75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(24, 28, 31, .54);
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.hero__highlights div:nth-child(2),
.hero__highlights div:nth-child(3) {
  background: rgba(73, 77, 80, .58);
}

.hero__highlights strong {
  color: var(--white);
  font-size: clamp(1.1rem, 1.4vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.hero__highlights span {
  margin-top: .42rem;
  color: rgba(255, 255, 255, .84);
  font-size: .72rem;
  line-height: 1.35;
}

.confidence-strip {
  padding: 1rem 0 3.4rem;
}

.confidence-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.confidence-card {
  border-radius: 13px;
  background: var(--panel);
  text-align: center;
  min-height: 112px;
  padding: 1.25rem .75rem .85rem;
}

.confidence-card svg,
.benefits article svg {
  width: 25px;
  height: 25px;
  margin: 0 auto .55rem;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.65;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.confidence-card h2 {
  font-size: .94rem;
  margin-bottom: .22rem;
  letter-spacing: 0;
}

.confidence-card p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 2.1rem;
}

.section-heading--centred {
  text-align: center;
  margin-inline: auto;
}

.section-heading--compact {
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  margin-bottom: .7rem;
}

.section-heading p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.section-label {
  margin: 0 0 .72rem;
  color: #687078;
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.products {
  padding: 0 0 3.6rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ecedf3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .18s ease, transform .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card__image {
  position: relative;
  height: 184px;
  margin: 12px 12px 0;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #f7f7fb;
}

.product-card__image img {
  height: 152px;
  width: auto;
  object-fit: contain;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.1rem 1.1rem;
}

.product-card__tag {
  margin: 0 0 .35rem;
  font-size: .68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--teal);
}

.product-card h3 {
  font-size: 1.08rem;
  margin-bottom: .18rem;
}

.product-card__price {
  color: var(--ink);
  font-size: 1.48rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 .72rem;
}

.product-card__description {
  margin: 0 0 1.1rem;
  font-size: .89rem;
  color: var(--muted);
  flex: 1;
}

.product-card--featured {
  border-color: var(--yellow);
  background: #fffdf4;
}

.product-card--featured .product-card__image {
  background: #fff;
}

.featured-badge {
  position: absolute;
  top: .65rem;
  left: .65rem;
  background: var(--yellow);
  color: #1c1c1c;
  border-radius: 999px;
  font-size: .65rem;
  line-height: 1;
  font-weight: 800;
  padding: .42rem .58rem;
}

.steps {
  padding: 3.3rem 0;
  border-top: 1px solid #f0f1f5;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 0 1.15rem;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 34px);
  top: 31px;
  width: calc(100% - 68px);
  height: 2px;
  background: #e2daaa;
}

.step-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #282828;
  margin: 0 auto .85rem;
  color: var(--white);
}

.step-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card span {
  display: block;
  color: var(--teal);
  font-weight: 780;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .35rem;
}

.step-card h3 {
  font-size: .98rem;
  margin-bottom: .4rem;
}

.step-card p {
  font-size: .81rem;
  color: var(--muted);
  margin: 0;
}

.benefits {
  padding: 2.25rem 0 3.4rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .92rem;
}

.benefits article {
  background: var(--panel);
  border-radius: 13px;
  padding: 1.35rem 1.15rem;
}

.benefits article svg {
  margin: 0 0 .8rem;
}

.benefits h3 {
  font-size: .98rem;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.guidance {
  padding: 0 0 3.7rem;
}

.guidance__inner {
  border: 1px solid #eff0f4;
  border-radius: 14px;
  padding: clamp(1.5rem, 3.5vw, 2.65rem);
}

.guidance__inner h2 {
  max-width: 660px;
  margin-bottom: 1.15rem;
}

.guidance__inner p:not(.section-label) {
  max-width: 910px;
  color: var(--muted);
  font-size: .94rem;
}

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

.faq {
  padding: 0 0 3.2rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem .9rem;
}

.faq-item {
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 680;
  font-size: .9rem;
}

.faq-item__toggle span {
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-item__toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}

.faq-item__panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.1rem;
  color: var(--muted);
  font-size: .86rem;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__panel p {
  padding-bottom: 1rem;
}

.advice {
  padding: 0 0 4.2rem;
}

.advice__box {
  border-radius: 14px;
  background: #292929;
  color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 2rem;
}

.advice__box h2 {
  color: var(--white);
  margin-bottom: .35rem;
}

.advice__box p:not(.section-label) {
  margin: 0;
  color: #d5d5d5;
  max-width: 640px;
}

.advice__box .section-label {
  color: var(--yellow);
}

.access-tools {
  position: fixed;
  right: 16px;
  top: 46%;
  z-index: 90;
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.access-tools button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

.access-tools button+button {
  border-top: 1px solid var(--line);
}

.access-tools button[aria-pressed="true"] {
  background: var(--yellow);
}

.site-footer {
  color: #d7d7d7;
  background: var(--footer);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.05fr 1fr 1fr 1fr 1.32fr;
  gap: 2rem;
  padding: 3.1rem 0 2.6rem;
}

.footer__brand img {
  margin-bottom: 1.1rem;
}

.footer__brand p {
  font-size: .86rem;
  color: #bdbdbd;
  max-width: 260px;
}

.footer__company {
  margin-top: 1.2rem;
}

.footer__column h2,
.footer__legal h2 {
  color: var(--white);
  font-size: .86rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.footer__column a {
  display: block;
  margin-bottom: .68rem;
  color: #d3d3d3;
  font-size: .83rem;
}

.footer__legal p {
  font-size: .83rem;
  color: #c6c6c6;
}

.footer__modal-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--yellow);
  text-decoration: underline;
  font-size: .84rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  padding: 1.05rem 0;
  font-size: .78rem;
  color: #b9b9b9;
}

.footer__bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 25px rgba(20, 22, 30, .12);
}

.cookie-banner__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding-block: .8rem;
}

.cookie-banner p {
  margin: 0;
  font-size: .83rem;
  color: var(--body);
}

.cookie-banner a {
  text-decoration: underline;
  color: var(--teal);
}

.cookie-banner__buttons {
  flex: 0 0 auto;
  display: flex;
  gap: .65rem;
}

.modal {
  width: min(610px, calc(100% - 30px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  padding: 1.55rem;
  border: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.modal::backdrop {
  background: rgba(15, 18, 24, .62);
  backdrop-filter: blur(3px);
}

.modal--compact {
  width: min(520px, calc(100% - 30px));
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: .9rem;
}

.modal__header h2 {
  margin: 0;
}

.modal__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.modal__intro {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 1.15rem;
}

.enquiry-form {
  display: grid;
  gap: .9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.form-field {
  display: grid;
  gap: .33rem;
}

.form-field label {
  font-size: .87rem;
  font-weight: 680;
  color: var(--ink);
}

.form-field input,
.form-field select {
  min-height: 48px;
  border: 1px solid #ccd0dc;
  border-radius: 8px;
  padding: .65rem .75rem;
  color: var(--ink);
  background: var(--white);
}

.form-field input.is-invalid,
.check-field input.is-invalid {
  outline: 2px solid #bf2032;
  outline-offset: 1px;
}

.check-field {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--body);
  font-size: .83rem;
}

.check-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
}

.check-field a {
  text-decoration: underline;
}

.error {
  color: #b21628;
  min-height: .2rem;
  font-size: .75rem;
}

.form-status {
  display: none;
  margin: 0;
  padding: .85rem;
  border-radius: 7px;
  font-size: .88rem;
}

.form-status.is-visible {
  display: block;
  background: #e7f8f1;
  color: #0a6447;
}

.product-modal__content {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 1.1rem;
  margin: .55rem 0 1.35rem;
}

.product-modal__content img {
  max-height: 152px;
  width: auto;
  margin: auto;
}

.product-modal__content h3 {
  font-size: 1.18rem;
}

.product-modal__price {
  font-size: 1.55rem;
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 .45rem;
}

.product-modal__content p:last-child {
  font-size: .88rem;
  color: var(--muted);
}

.company-details {
  font-style: normal;
  line-height: 1.65;
  color: var(--body);
}

/* =========================================================
   RESPONSIVE LAYOUT
   ========================================================= */
@media (max-width: 1120px) {
  .header__inner {
    gap: 1.05rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .primary-nav a {
    font-size: .87rem;
  }

  .header-actions {
    gap: .6rem;
  }

  .header-phone {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(360px, 535px) minmax(250px, 302px);
    gap: clamp(1.3rem, 3vw, 2.3rem);
  }

  .hero__content h1 {
    font-size: clamp(2.35rem, 4.3vw, 3.45rem);
  }

  .hero__highlights div,
  .hero__highlights div:nth-child(2),
  .hero__highlights div:nth-child(3) {
    min-height: 108px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: .45rem 20px .9rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .08);
  }

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

  .primary-nav a {
    padding: .86rem 0;
    border-bottom: 1px solid #efeff4;
    font-size: .94rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero__frame {
    min-height: 610px;
  }

  .hero__inner {
    grid-template-columns: minmax(330px, 1fr) 270px;
    width: min(calc(100% - 36px), var(--hero-content-width));
    gap: 1.1rem;
  }

  .hero__content h1 {
    font-size: clamp(2.25rem, 5.2vw, 3.05rem);
  }

  .hero__highlights {
    gap: .52rem;
  }

  .hero__highlights div,
  .hero__highlights div:nth-child(2),
  .hero__highlights div:nth-child(3) {
    min-height: 94px;
    padding: .65rem .45rem;
  }

  .confidence-strip__grid,
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

  .step-card:nth-child(2)::after {
    display: none;
  }

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

  .footer__grid {
    grid-template-columns: 1.55fr repeat(2, 1fr);
  }

  .footer__legal {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --service-bar-h: 50px;
    --header-h: 64px;
  }

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

  .service-bar__inner {
    min-height: var(--service-bar-h);
    padding: .35rem 0;
    text-align: center;
    font-size: .76rem;
    line-height: 1.35;
  }

  .service-bar__link {
    display: none;
  }

  .header__inner {
    gap: .7rem;
  }

  .brand {
    gap: .54rem;
  }

  .brand__logo {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
  }

  .brand__name {
    font-size: .92rem;
  }

  .brand__type {
    font-size: .67rem;
  }

  .menu-toggle {
    min-height: 42px;
    padding: .42rem .68rem;
  }

  .hero__frame {
    height: calc(100svh - var(--service-bar-h) - var(--header-h));
    min-height: 635px;
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(15, 18, 21, .14) 0%, rgba(15, 18, 21, .21) 25%, rgba(15, 18, 21, .76) 53%, rgba(15, 18, 21, .94) 100%),
      linear-gradient(90deg, rgba(15, 18, 21, .32) 0%, rgba(15, 18, 21, .06) 100%);
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    width: calc(100% - 30px);
    padding: clamp(7rem, 20vh, 10rem) 0 .9rem;
    gap: .85rem;
  }

  .eyebrow,
  .hero .eyebrow {
    margin-bottom: .58rem;
    font-size: .68rem;
    letter-spacing: .17em;
  }

  .hero__content h1 {
    max-width: 380px;
    font-size: clamp(1.88rem, 8.9vw, 2.34rem);
    line-height: 1.03;
    letter-spacing: -.052em;
  }

  .hero__text {
    max-width: 390px;
    margin-top: .68rem;
    font-size: .9rem;
    line-height: 1.48;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-top: 1.05rem;
  }

  .hero__buttons .button {
    min-width: 0;
    min-height: 45px;
    padding-inline: .55rem;
    font-size: .84rem;
  }

  .hero__highlights {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .38rem;
    margin-top: .08rem;
  }

  .hero__highlights div,
  .hero__highlights div:nth-child(2),
  .hero__highlights div:nth-child(3) {
    min-height: 64px;
    padding: .46rem .16rem;
    border-radius: 11px;
    background: rgba(25, 28, 31, .57);
  }

  .hero__highlights strong {
    font-size: .85rem;
    line-height: 1.11;
    letter-spacing: -.02em;
  }

  .hero__highlights span {
    display: none;
  }

  .access-tools {
    top: calc(var(--service-bar-h) + var(--header-h) + 12px);
    right: 10px;
    bottom: auto;
    border-radius: 999px;
  }

  .access-tools button {
    width: 36px;
    height: 36px;
    font-size: .83rem;
  }

  .confidence-strip {
    padding-top: 1rem;
    padding-bottom: 2.6rem;
  }

  .confidence-strip__grid,
  .benefits__grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    height: 172px;
  }

  .steps {
    padding: 2.55rem 0;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .step-card::after {
    display: none !important;
  }

  .advice__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.45rem;
  }

  .advice__box .button {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 2.35rem;
    gap: 2rem 1rem;
  }

  .footer__brand,
  .footer__legal {
    grid-column: 1 / -1;
  }

  .cookie-banner__inner {
    display: block;
    padding-block: .95rem;
  }

  .cookie-banner p {
    margin-bottom: .8rem;
  }

  .cookie-banner__buttons {
    width: 100%;
  }

  .cookie-banner__buttons .button {
    flex: 1;
  }

  .form-row,
  .product-modal__content {
    grid-template-columns: 1fr;
  }

  .product-modal__content {
    text-align: center;
  }
}

@media (max-width: 420px) {
  :root {
    --service-bar-h: 52px;
    --header-h: 62px;
  }

  .menu-toggle__label {
    display: none;
  }

  .hero__frame {
    min-height: 620px;
  }

  .hero__inner {
    width: calc(100% - 26px);
    padding-bottom: .72rem;
  }

  .hero__content h1 {
    font-size: clamp(1.72rem, 8.8vw, 2rem);
  }

  .hero__text {
    font-size: .86rem;
    line-height: 1.44;
  }

  .hero__buttons {
    margin-top: .86rem;
  }

  .hero__highlights div,
  .hero__highlights div:nth-child(2),
  .hero__highlights div:nth-child(3) {
    min-height: 58px;
  }

  .hero__highlights strong {
    font-size: .79rem;
  }
}

@media (max-height: 680px) and (max-width: 720px) {
  .hero__frame {
    height: auto;
    min-height: 640px;
  }
}

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

.company-details {
  color: var(--body);
}

.company-details__intro {
  margin: 0 0 1.2rem;
  color: var(--body);
  font-size: .95rem;
  line-height: 1.65;
}

.company-details__intro strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.company-details__address {
  margin: 0 0 1rem;
  padding: .95rem 1rem;
  border-radius: 11px;
  background: var(--panel);
  color: var(--body);
  font-style: normal;
  font-size: .9rem;
  line-height: 1.65;
}

.company-details__address strong {
  color: var(--ink);
}

.company-details__contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin: 0 0 1.15rem;
}

.company-details__contacts div {
  padding: .78rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.company-details__contacts dt {
  margin-bottom: .18rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.company-details__contacts dd {
  margin: 0;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 680;
}

.company-details__contacts a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company-details__disclosure {
  margin-bottom: 1.15rem;
  padding: .95rem 1rem;
  border-left: 3px solid var(--yellow-strong);
  border-radius: 0 10px 10px 0;
  background: #fffaf0;
}

.company-details__disclosure h3 {
  margin: 0 0 .45rem;
  color: var(--ink);
  font-size: .94rem;
}

.company-details__disclosure p {
  margin: 0 0 .65rem;
  color: var(--body);
  font-size: .82rem;
  line-height: 1.6;
}

.company-details__disclosure p:last-child {
  margin-bottom: 0;
}

.company-details__links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.company-details__links a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .company-details__contacts {
    grid-template-columns: 1fr;
  }
}