:root {
  --color-charcoal: #050505;
  --color-night: #070a12;
  --color-slate: #0e1422;
  --color-steel: #101528;
  --color-cloud: #f9fafc;
  --color-silver: #b5bece;
  --color-amber: #ff2b2b;
  --color-fire: #ff2b2b;
  --color-lime: #5df0d0;
  --color-navy: #041f3f;
  --color-sky: #00a2ff;
  --font-display: 'Saira', 'Jost', sans-serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 20px 45px rgba(0, 0, 0, 0.45);
  --container-width: min(1200px, 90vw);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-night);
  color: #f8fbff;
  line-height: 1.6;
}

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

a:hover {
  opacity: 0.85;
}

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

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.top-bar {
  background: #fff;
  color: #0c1525;
  border-bottom: 1px solid #e4e8f0;
  font-size: 0.9rem;
}

.top-bar__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
}

.top-info-block {
  flex: 1 1 220px;
}

.top-info-block--logo {
  flex: 0 0 auto;
}

.top-info-block--logo img {
  max-height: 90px;
  width: auto;
}

.top-info-block--details {
  max-width: 260px;
}

.top-info-block__label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #7a859b;
  margin: 0 0 0.2rem;
}

.top-info-block__rating {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
}

.top-info-block__rating span {
  color: #ffd447;
  font-weight: 600;
  margin-left: 0.35rem;
}

.top-info-block__rating a {
  color: var(--color-navy);
  text-decoration: underline;
  margin-left: 0.35rem;
  font-weight: 600;
}

.top-info-block--call {
  text-align: center;
}

.top-info-block__phone {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.top-info-block__hours {
  font-size: 0.85rem;
  color: #7a859b;
}

.top-info-block--cta {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 1 1 280px;
  align-items: stretch;
}

.cta-panel {
  background: var(--color-fire);
  color: #fff;
  border-radius: 14px;
  padding: 0.9rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  min-width: 190px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(255, 43, 43, 0.35);
}

.cta-panel span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.cta-panel strong {
  font-size: 0.85rem;
  line-height: 1.4;
}

.nav-bar {
  padding: 0.75rem 0;
  position: relative;
  background: #000;
  color: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}

.site-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.branding__logo img {
  max-height: 90px;
  width: auto;
  display: block;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.primary-nav li {
  position: relative;
}

.primary-nav a {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.primary-nav a::after {
  content: '';
  display: block;
  margin-top: 0.4rem;
  width: 0;
  height: 2px;
  background: var(--color-amber);
  transition: width 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after {
  width: 100%;
}

.primary-nav .menu-item-has-children > a {
  padding-right: 1.5rem;
}

.primary-nav .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.6;
}

.primary-nav .menu-item-has-children > a:hover::before {
  opacity: 0.9;
}

.primary-nav .submenu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  position: absolute;
  right: -0.4rem;
  top: 0;
  bottom: 0;
  width: 2.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.primary-nav .submenu-toggle::before {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.primary-nav .menu-item-has-children.is-submenu-open > .submenu-toggle::before {
  transform: rotate(-135deg);
}

.primary-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  min-width: 260px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(2, 5, 16, 0.98);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
  display: block;
}

.primary-nav .sub-menu li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-nav .sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: #eef4ff;
}

.primary-nav .sub-menu a::after {
  display: none;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu,
.primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.primary-nav .menu-item-service-county > .sub-menu {
  left: 100%;
  top: 0;
  transform: translate(12px, 0);
  min-width: 230px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-fire);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--color-fire);
  background: var(--color-fire);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 30px rgba(255, 43, 43, 0.25);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 43, 43, 0.35);
}

.button--primary {
  background: var(--color-fire);
  color: #fff;
}

.button--ghost {
  background: #fff;
  color: var(--color-fire);
  border-color: var(--color-fire);
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.18);
}

.button--ghost:hover {
  background: var(--color-fire);
  color: #fff;
  border-color: var(--color-fire);
  box-shadow: 0 18px 40px rgba(255, 43, 43, 0.35);
}

.site-main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 6.5rem 0 5rem;
  min-height: clamp(620px, 82vh, 900px);
  background: radial-gradient(circle at 20% 20%, rgba(255, 43, 43, 0.2), transparent 55%),
    url('../images/hero.png') center/cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 0, 0, 0.55), rgba(120, 0, 0, 0.35));
}

.hero__grid {
  position: relative;
  z-index: 1;
}

.hero__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__headline {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  color: #f5f8ff;
  max-width: none;
  width: 100%;
}

.hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0.3rem auto 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  display: inline-block;
  padding: 0.8rem clamp(1.5rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(20, 20, 20, 0.55));
  border-radius: 10px;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.hero__copy h1::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  color: var(--color-amber);
  margin-bottom: 0.5rem;
}

.hero__subline {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #f1f3fd;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.hero__divider {
  display: inline-block;
  width: min(640px, 85%);
  height: 3px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0.25rem auto 1.25rem;
  position: relative;
}

.hero__lead,
.hero .lead {
  font-size: 1.1rem;
  color: #e2e7f7;
  max-width: 720px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
}

.hero__stats .value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.hero__stats .label {
  color: #c5cde0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}


.process {
  background: linear-gradient(180deg, #fff7f7 0%, #ffe1e1 55%, #ff4f4f 100%);
  padding: 4.5rem 0 4rem;
  color: #1a0a0a;
  text-align: center;
}

.process__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.process__intro-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.process__hero-image {
  width: min(360px, 60vw);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
}

.process__intro-cta {
  background: #fff;
  color: #c20c0c;
  border-color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process__intro-cta:hover {
  background: #c20c0c;
  color: #fff;
  border-color: #c20c0c;
}

.process__headline {
  max-width: 960px;
  margin-bottom: 1.5rem;
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
  justify-content: center;
}

.process__title-strong {
  font-weight: 800;
  color: #111;
}

.process__title-light {
  font-weight: 700;
  color: #b10c0c;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .process-step:not(:last-child) .process-step__media::after {
    content: '';
    position: absolute;
    top: calc(50% + 25px);
    left: calc(100% + 0.75rem);
    transform: translateY(-50%);
    width: clamp(90px, 9vw, 150px);
    height: 3px;
    background: rgba(177, 12, 12, 0.45);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }
}

.process-step {
  text-align: center;
  color: #1f1f1f;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.process-step__media {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 160px;
}

.process-step__media img {
  max-width: 180px;
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.process-step h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-step h3 span {
  color: #b10c0c;
  margin-left: 0.35em;
}

.process-step p {
  margin: 0.75rem auto 0;
  max-width: 240px;
  font-size: 0.95rem;
}

.shop {
  background: radial-gradient(circle at 15% 20%, rgba(255, 43, 43, 0.3), transparent 55%), #050505;
  padding: 4.5rem 0;
  color: #f5f5f5;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.shop__panel {
  background: rgba(5, 5, 5, 0.9);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.55);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.shop__panel h2,
.shop__panel h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.shop__panel p {
  margin: 0;
  color: rgba(245, 245, 245, 0.9);
}

.shop__label {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: rgba(255, 96, 96, 0.95);
}

.shop__panel--feature {
  background: linear-gradient(145deg, rgba(7, 7, 7, 0.95), rgba(32, 0, 0, 0.9));
}

.shop__panel--shop {
  background: linear-gradient(150deg, #1e0404, #5c0a0a 85%);
}

.shop__panel--dispatch {
  background: linear-gradient(150deg, #0a0a0a, #2b0808 85%);
}

.shop__media {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.shop__media img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.55));
}

.shop__panel--feature .shop__media,
.shop__panel--intro .shop__media {
  margin-bottom: 1rem;
}

.shop__panel .button {
  align-self: flex-start;
}

.shop__panel--intro .button {
  align-self: center;
}

.shop__panel--dispatch {
  text-align: left;
}

.shop__panel--dispatch .button {
  align-self: center;
  margin-top: 1.5rem;
}

.shop__panel--feature .button {
  margin-top: auto;
}

.services {
  position: relative;
  padding: 5rem 0 4.5rem;
  color: #1b1b1b;
  background: #150404;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--services-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 16, 16, 0.35), rgba(21, 4, 4, 0.95));
}

.services__inner {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 12px solid rgba(255, 43, 43, 0.6);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45);
}

.services__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.services__header .eyebrow {
  color: rgba(204, 28, 28, 0.95);
  letter-spacing: 0.28em;
}

.services__header h2 {
  margin: 0.5rem 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services__header p {
  color: rgba(24, 24, 24, 0.75);
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 240px;
}

.services-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 43, 43, 0.5);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.services-card__icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.services-card__icon img {
  max-width: 85px;
  width: 100%;
  height: auto;
}

.services-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
}

.services-card h3 span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(20, 20, 20, 0.45);
  margin-top: 0.35rem;
}

.services__footer {
  margin-top: 2.5rem;
  text-align: center;
}

.services__footer .button {
  padding-inline: 2.5rem;
}

.services__brands {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.services__brand img {
  max-height: 42px;
  width: auto;
  opacity: 0.9;
}

.experts {
  position: relative;
  padding: clamp(4rem, 6vw, 6rem) 0;
  color: #fff;
  background: #0d0d0d;
  overflow: hidden;
}

.experts::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--experts-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.05);
}

.experts::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.7), rgba(3, 3, 3, 0.15));
}

.experts .container {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.experts__content {
  max-width: 680px;
}

.experts__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.experts__content h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.experts__accent {
  color: #ff2b2b;
  display: inline;
  margin-right: 0.35em;
}

.testimonials {
  position: relative;
  padding: clamp(4rem, 5vw, 5rem) 0;
  background: radial-gradient(circle at top, rgba(255, 20, 20, 0.18), rgba(5, 5, 10, 0.95));
  color: #fff;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: url('../images/hero.png') center/cover;
  filter: blur(10px);
}

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

.testimonials .eyebrow {
  color: rgba(255, 109, 109, 0.95);
  letter-spacing: 0.28em;
}

.testimonials h2 {
  margin-top: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 0.5rem;
}

.testimonials__track::-webkit-scrollbar {
  height: 6px;
}

.testimonials__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.testimonial {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
  min-width: clamp(280px, 32vw, 360px);
}

.testimonial .quote {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
}

.testimonial .author {
  margin: 1.25rem 0 0.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial .detail {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.contact {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, #050505, #0c0f1a);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.contact__form,
.contact__map {
  background: rgba(9, 9, 9, 0.85);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form textarea {
  background: rgba(4, 8, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-family: inherit;
}

.notice {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.notice.success {
  background: rgba(114, 240, 196, 0.15);
  color: #72f0c4;
}

.notice.error {
  background: rgba(255, 91, 69, 0.1);
  color: #ffb4a8;
}

.contact__alt a {
  font-weight: 600;
  color: var(--color-amber);
}

.contact__map iframe {
  border-radius: 16px;
  min-height: 360px;
}

.about-page {
  padding: 5rem 0;
  background: linear-gradient(180deg, #03060d, #070a14);
}

.about-page--policy {
  background: linear-gradient(180deg, #050609, #08090f);
}

.about-page--careers {
  background: linear-gradient(180deg, #03050a, #080c16);
}

.about-page__hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.about-page__hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
}

.about-page__hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.about-page__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-page__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card {
  background: rgba(5, 9, 18, 0.95);
  border-radius: 22px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.about-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-card strong {
  display: block;
  font-size: 1.35rem;
  margin-top: 0.85rem;
}

.about-card p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.about-page__actions {
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-page__split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-panel {
  background: rgba(6, 9, 19, 0.95);
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

.about-panel h2 {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-panel p {
  margin: 0.35rem 0 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-list {
  margin: 1rem 0 0;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.about-list li + li {
  margin-top: 0.4rem;
}

.about-panel--map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.policy-section {
  background: rgba(4, 7, 15, 0.95);
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.policy-section-group {
  display: grid;
  gap: 1.5rem;
}

.policy-section + .policy-section {
  margin-top: 1.5rem;
}

.policy-section h2 {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.policy-section p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0.25rem 0;
}

.policy-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.policy-section ul li + li {
  margin-top: 0.35rem;
}

.careers-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.career-card {
  background: rgba(5, 8, 20, 0.95);
  border-radius: 22px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.career-card h3 {
  margin: 0 0 0.5rem;
}

.career-card p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.career-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.career-card ul li + li {
  margin-top: 0.3rem;
}

.career-card__meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.benefits-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.benefits-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.85);
}

.benefits-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: var(--color-amber);
  flex-shrink: 0;
}

.process-page {
  background: linear-gradient(180deg, #ffefef, #fcd7d7);
  padding: 5rem 0 4rem;
  color: #1b0f0f;
}

.process-page__hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.process-page__hero-copy h1 {
  margin: 0 0 1rem;
  color: #160a0a;
}

.process-page__hero-copy p {
  max-width: 560px;
  color: #2d1a1a;
}

.process-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0.5rem;
}

.process-page__hero-note {
  margin: 0;
  font-weight: 600;
  color: #3d1c1c;
}

.process-page__hero-media img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.35));
}

.process-page__timeline {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fcd7d7, #ffd9d9);
}

.process-page__timeline h2 {
  max-width: 720px;
  margin-bottom: 2.5rem;
  color: #1f1414;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.process-timeline__card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.process-timeline__number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-fire);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-timeline__card img {
  max-height: 110px;
  margin: 0 auto 1rem;
}

.process-timeline__card h3 {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: #161616;
}

.process-timeline__card p {
  margin: 0;
  color: #333;
}

.process-page__details {
  padding: 4rem 0;
  background: #050505;
}

.process-page__details .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.process-detail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.process-detail h3 {
  margin: 0 0 0.75rem;
}

.process-detail ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.process-page__cta {
  background: linear-gradient(135deg, #000, #250505);
  padding: 4rem 0;
  color: #fff;
}

.process-page__cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.process-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  min-width: 260px;
  justify-content: flex-end;
}

.site-footer {
  background: #010101;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.floating-cta {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  left: auto;
  bottom: clamp(14px, 3vh, 32px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  pointer-events: none;
  z-index: 800;
  max-width: min(420px, 90vw);
}

.floating-cta__button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-fire);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 15px 40px rgba(255, 43, 43, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.floating-cta__button--ghost {
  background: #fff;
  color: var(--color-fire);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.floating-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(255, 43, 43, 0.45);
}

.floating-cta__button--ghost:hover {
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.38);
}

.floating-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-cta__icon svg {
  display: block;
}

.service-area-page {
  background: #0b0b0f;
  color: #f8fbff;
  padding-bottom: 3rem;
}

.service-area__hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.service-area__hero h1 {
  margin: 0.3rem 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

.service-area__hero .lead {
  margin: 0.2rem 0 0;
  color: #d8deea;
}

.service-area__directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.service-area__directory h2 {
  margin-top: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.service-area__directory ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.service-area__directory a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-area__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.service-area__section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.service-area__section h2 {
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area__section h3 {
  margin: 1.25rem 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.service-area__section p {
  margin: 0.5rem 0;
  color: #d8deea;
}

.service-area__section ul,
.service-area__section ol {
  margin: 0.25rem 0 0 1.1rem;
  color: #d8deea;
  padding-left: 1rem;
  line-height: 1.55;
}

.service-area__section--accent {
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow: 0 20px 45px rgba(255, 43, 43, 0.18);
}

.service-area__section--cta .button {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.service-area__cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.service-area__contact-inline {
  margin: 0.75rem 0 0;
  color: #e4e8f3;
}

.service-area__contact-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.service-area__contact-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-area__map {
  position: relative;
  margin: 2.5rem auto 0;
  background: #040507;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-area__map-frame {
  width: 100%;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.service-area__map-canvas {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 0 auto;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1024px) {
  .top-bar__grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .top-info-block {
    flex: 1 1 100%;
  }

  .top-info-block--details,
  .top-info-block--call {
    max-width: none;
  }

  .top-info-block--call {
    text-align: left;
  }

  .top-info-block--cta {
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .top-info-block--cta .cta-panel {
    flex: 1 1 220px;
  }

  .top-info-block__phone {
    font-size: 1.2rem;
  }

  .has-mobile-nav .nav-inner {
    justify-content: space-between;
  }

  .has-mobile-nav .nav-toggle {
    display: flex;
  }

  .has-mobile-nav .primary-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(5, 8, 18, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
    margin: 0;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    z-index: 10;
  }

  .has-mobile-nav .primary-nav.is-open {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.75rem 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .has-mobile-nav .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .has-mobile-nav .primary-nav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .has-mobile-nav .primary-nav .menu-item {
    position: relative;
  }

  .has-mobile-nav .primary-nav a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.07em;
  }

  .has-mobile-nav .primary-nav a::after {
    display: none;
  }

  .has-mobile-nav .primary-nav .menu-item-has-children > a {
    padding-right: 3rem;
  }

  .has-mobile-nav .primary-nav .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    right: 0.5rem;
  }

  .has-mobile-nav .primary-nav .sub-menu {
    position: static;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.25s ease;
  }

  .has-mobile-nav .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 600px;
    padding-bottom: 0.75rem;
  }

  .has-mobile-nav .primary-nav .sub-menu a {
    padding: 0.65rem 2.75rem 0.35rem;
    font-size: 0.85rem;
  }

  .shop__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 4.5rem 0 3.25rem;
    min-height: 72vh;
  }

  .hero__copy h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
    padding: 0.65rem clamp(1rem, 6vw, 2.5rem);
  }

  .hero__subline {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    letter-spacing: 0.14em;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__ctas .button {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    gap: 1rem;
  }

  .hero__stats .value {
    font-size: 1.75rem;
  }

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

  .process,
  .shop,
  .services,
  .testimonials {
    padding: 3.5rem 0;
  }

  .contact {
    padding: 3.5rem 0 4rem;
  }

  .service-area__body,
  .service-area__directory {
    padding: 2rem;
  }

  .service-area__map-frame {
    height: 360px;
  }

  .process__grid,
  .shop__grid,
  .contact__grid {
    gap: 1.5rem;
  }

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

  .services__cta {
    flex-direction: column;
    text-align: center;
  }

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

  .contact__form,
  .contact__map {
    padding: 1.75rem;
  }

  .contact__map iframe {
    min-height: 280px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .floating-cta {
    gap: 0.4rem;
  }

  .floating-cta__button {
    padding: 0.8rem 1.15rem;
    font-size: 0.95rem;
  }

  .shop__panel {
    padding: 2rem;
  }

  .experts .container {
    min-height: 420px;
  }

  .experts__content {
    padding: 1.75rem;
  }
}

@media (max-width: 640px) {
  .top-bar__grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-info-block--cta {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: -7rem;
  }

  .container {
    width: min(92vw, 540px);
  }

  .top-info-block__phone {
    font-size: 1.15rem;
  }

  .top-info-block--cta .cta-panel {
    width: min(185px, 68vw);
    min-width: 0;
    max-width: 185px;
    flex: 0 0 auto;
    padding: 0.48rem 0.7rem;
    letter-spacing: 0.04em;
    gap: 0.08rem;
    align-self: flex-end;
  }

  .top-info-block--cta .cta-panel span {
    font-size: 0.64rem;
  }

  .top-info-block--cta .cta-panel strong {
    font-size: 0.74rem;
  }

  .hero {
    padding: 3.25rem 0 2.5rem;
  }

  .hero__copy h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    letter-spacing: 0.04em;
  }

  .hero__subline {
    font-size: clamp(0.9rem, 3.2vw, 1.05rem);
    letter-spacing: 0.12em;
  }

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

  .hero__stats .value {
    font-size: 1.55rem;
  }

  .hero__stats .label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .floating-cta {
    right: clamp(10px, 4vw, 18px);
    left: auto;
    bottom: 12px;
    gap: 0.35rem;
    max-width: 92vw;
  }

  .floating-cta__button {
    flex: 1 1 auto;
    justify-content: center;
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
  }

  .service-area__body,
  .service-area__directory {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .service-area__map-frame {
    height: 320px;
  }

  .services__grid,
  .experts__grid {
    grid-template-columns: 1fr;
  }

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

  .contact__grid {
    gap: 1.25rem;
  }

  .contact__form,
  .contact__map {
    padding: 1.5rem;
  }

  .contact__map iframe {
    min-height: 250px;
  }

  .process-step {
    padding: 0;
  }

  .process__grid::before {
    display: none;
  }

  .site-footer {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-menu {
    align-items: center;
  }

  .shop__panel {
    padding: 1.65rem;
  }

  .shop__label {
    letter-spacing: 0.24em;
  }

  .shop__panel h2,
  .shop__panel h3 {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .top-info-block__phone {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 3.25rem;
    min-height: 68vh;
  }

  .hero__copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.3rem);
  }

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

  .hero__stats .value {
    font-size: 1.4rem;
  }

  .hero__stats .label {
    letter-spacing: 0.12em;
  }

  .cta-panel {
    padding: 0.75rem 1rem;
  }

  .contact__form,
  .contact__map {
    padding: 1.35rem;
  }

  .shop__panel {
    padding: 1.5rem;
  }

  .experts__content {
    padding: 1.5rem;
  }
}

.sms-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sms-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sms-popup__inner {
  background: #050505;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: min(420px, 92vw);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.sms-popup__inner h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.sms-popup__inner p {
  margin: 0 0 1rem;
  color: #d2d4de;
}

.sms-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.sms-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sms-form input {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.brand-strip {
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0.8;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-inner nav {
  justify-self: center;
}
