:root {
  --bg: #e4ece7;
  --bg-layer: #e4ece7;
  --section-bg: #edf3ee;
  --surface: #f8fcf8;
  --surface-soft: #eef5ef;
  --panel: #dce8df;
  --panel-soft: #d3e2d8;
  --ink: #111827;
  --muted: #111827;
  --line: #b8cabd;
  --accent: #2d7a58;
  --accent-dark: #225d43;
  --cta: #256445;
  --cta-dark: #1d5036;
  --cta-glow: rgba(37, 100, 69, 0.34);
  --dark-bg: #0d1118;
  --dark-soft: #141b27;
  --glow: rgba(70, 145, 103, 0.35);
  --shadow: 0 28px 72px rgba(15, 23, 42, 0.1);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body::before {
  display: none;
}

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

.loader-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  animation: loadLine 900ms ease forwards;
  z-index: 120;
}

@keyframes loadLine {
  to {
    transform: scaleX(1);
  }
}

body.is-loaded .loader-line {
  opacity: 0;
  transition: opacity 280ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 250, 0.88);
  backdrop-filter: blur(12px);
}

.site-nav {
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(16px, 3vw, 46px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 35px;
  height: 35px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #304055;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.nav-tools .nav-cta {
  order: 1;
}

.nav-tools .lang-icon-btn {
  order: 2;
}

.nav-tools .cart-toggle {
  order: 3;
}

.language-select select,
.cart-toggle,
.clean-form input,
.clean-form textarea,
.clean-form select,
.form-row select,
.track-form input {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.language-select {
  position: absolute;
  top: calc(100% + 8px);
  right: 50px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 95;
}

.language-select.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-select select {
  min-height: 42px;
  min-width: 176px;
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 680;
  background: #fff;
  border-color: #b6c7da;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.13);
}

.lang-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #213851;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.lang-icon-btn:hover {
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

.lang-icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-toggle {
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 720;
  cursor: pointer;
}

.cart-toggle.icon-cart {
  position: relative;
  width: 40px;
  min-height: 40px;
  padding: 0;
  justify-content: center;
}

.cart-toggle.icon-cart .cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-toggle.icon-cart .cart-icon svg {
  width: 20px;
  height: 20px;
  color: #203750;
}

.cart-toggle.icon-cart .cart-count {
  position: absolute;
  top: -6px;
  right: -5px;
}

.nav-cta {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #2e684a;
  background: linear-gradient(135deg, #2a7b56 0%, #3e966d 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 780;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(29, 84, 58, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 16px 28px rgba(29, 84, 58, 0.34);
}

.cart-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  font-size: 0.72rem;
}

main {
  width: 100%;
  padding: 0 0 clamp(20px, 2vw, 34px);
}

.section {
  position: relative;
  width: 100%;
  padding: clamp(28px, 4.2vw, 56px) clamp(16px, 4vw, 52px);
  background: var(--section-bg);
  border-top: 1px solid #c6d3e2;
  border-bottom: 1px solid #c6d3e2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(17, 24, 39, 0.03),
    0 18px 34px rgba(15, 23, 42, 0.04);
}

main > .section:nth-of-type(even) {
  background: var(--section-bg);
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: min(1160px, 94%);
  height: 2px;
  background: rgba(65, 82, 108, 0.36);
  box-shadow: 0 13px 30px rgba(15, 23, 42, 0.2);
  pointer-events: none;
}

.section::after {
  display: none;
}

.section.no-divider::before,
.section.no-divider::after {
  display: none;
}

.page-hero {
  --hero-image: none;
  overflow: hidden;
  padding: clamp(16px, 2.2vw, 24px) clamp(16px, 3vw, 38px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(138deg, rgba(236, 244, 238, 0.78) 0%, rgba(224, 236, 227, 0.72) 46%, rgba(212, 228, 216, 0.7) 100%),
    var(--hero-image) center/cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.page-hero .inner {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  min-height: clamp(118px, 16vw, 164px);
  display: grid;
  align-content: center;
  gap: 6px;
}

.page-hero .kicker {
  color: #12304e;
}

.page-hero h1 {
  color: #0d1f34;
  font-size: clamp(1.42rem, 2.55vw, 2rem);
  text-shadow: 0 10px 18px rgba(255, 255, 255, 0.42);
}

.page-hero .hero-sub {
  color: #111827;
  font-weight: 680;
  max-width: 58ch;
}

.page-hero .section-head {
  min-height: clamp(118px, 16vw, 164px);
  align-items: center;
  margin-bottom: 0;
}

.page-hero .section-head > div {
  display: grid;
  gap: 6px;
}

.inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.kicker.is-dark {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.55rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.45rem, 2.9vw, 2.7rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(440px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.hero-layout > div:first-child {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 650px;
  margin-right: clamp(-24px, -2vw, -8px);
}

.hero-layout h1 {
  max-width: 15ch;
  text-wrap: balance;
}

.hero-sub {
  margin: 12px 0 0;
  color: #101825;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  max-width: 55ch;
}

.hero-trust-pills {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust-pills li {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #324763;
}

.hero-stock {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow);
  padding: 14px;
}

.hero-stock h2 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #233450;
}

.hero-stock-list {
  display: grid;
  gap: 10px;
}

.hero-stock-list article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.hero-stock-list h3 {
  font-size: 0.92rem;
  margin: 0;
}

.hero-stock-list p {
  margin: 3px 0 0;
  font-size: 0.82rem;
  color: #304a68;
  font-weight: 700;
}

.metrics-inline {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.metrics-inline > div {
  position: relative;
  padding: 0 18px 0 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.metrics-inline > div::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 1px;
  height: 16px;
  background: var(--line);
}

.metrics-inline > div:last-child::after {
  display: none;
}

.metrics-inline strong {
  font-size: 1.26rem;
  color: var(--accent-dark);
}

.metrics-inline span {
  font-size: 0.83rem;
  color: #364359;
  font-weight: 700;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.btn {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 790;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  border-color: #1a2f47;
  box-shadow:
    0 16px 32px rgba(17, 24, 39, 0.2),
    0 0 0 1px rgba(74, 111, 150, 0.24);
}

.btn-primary:hover {
  background: #223e60;
  box-shadow:
    0 22px 44px rgba(17, 24, 39, 0.25),
    0 0 0 1px rgba(74, 111, 150, 0.4),
    0 0 0 6px rgba(27, 47, 70, 0.12);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: #243042;
}

.btn-ghost:hover {
  background: #172033;
  border-color: #172033;
  color: #f5f8fc;
}

.btn.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  margin-right: clamp(-32px, -3.2vw, -12px);
  display: grid;
  align-items: center;
  justify-items: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 0 8% 5%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 42%, rgba(82, 132, 198, 0.28), rgba(82, 132, 198, 0.09) 36%, transparent 68%),
    linear-gradient(155deg, #f2f8f5 0%, #dce9e3 100%);
  border: 1px solid #dce4df;
  box-shadow: 0 34px 72px rgba(17, 24, 39, 0.2);
}

.hero-phone-stack {
  position: relative;
  width: min(430px, 100%);
  height: 300px;
  perspective: 920px;
  z-index: 2;
}

.hero-phone-stack .layer {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid #b2cabd;
  background: linear-gradient(150deg, #f7fcf9, #d8e8df);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.22);
  transform-origin: center;
  animation: stageFloat 6.4s ease-in-out infinite;
}

.hero-phone-stack .layer::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 16px;
  border: 1px solid rgba(22, 91, 59, 0.26);
  background:
    radial-gradient(circle at 18% 22%, rgba(76, 188, 132, 0.2), transparent 50%),
    radial-gradient(circle at 72% 70%, rgba(31, 125, 81, 0.14), transparent 52%);
}

.hero-phone-stack .layer-back {
  transform: translateX(-38px) translateY(20px) rotateY(28deg) scale(0.84);
  opacity: 0.38;
}

.hero-phone-stack .layer-mid {
  transform: translateX(-8px) translateY(10px) rotateY(17deg) scale(0.9);
  opacity: 0.62;
  animation-delay: -1.1s;
}

.hero-phone-stack .layer-front {
  transform: translateX(30px) rotateY(7deg);
  animation-delay: -2.2s;
}

.hero-price-chip {
  position: absolute;
  left: clamp(2px, 2vw, 16px);
  top: 16px;
  z-index: 4;
  min-width: 180px;
  border: 1px solid #dce4e6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 10px 12px;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.18);
}

.hero-price-chip span {
  display: block;
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b596f;
}

.hero-price-chip strong {
  display: block;
  margin-top: 3px;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #101b2f;
}

.hero-price-chip small {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  color: #4a5f54;
  font-weight: 650;
}

.hero-float-card {
  position: absolute;
  right: clamp(8px, 3vw, 28px);
  bottom: 18px;
  min-width: 210px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 12px;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.2);
}

.hero-float-card p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #31455f;
}

.hero-float-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.52rem;
  letter-spacing: -0.03em;
  color: #11213b;
}

.hero-float-card span {
  display: block;
  margin-top: 2px;
  color: #526077;
  font-size: 0.82rem;
}

.hero-side-note {
  position: absolute;
  right: clamp(8px, 3vw, 28px);
  bottom: -30px;
  margin: 0;
  z-index: 5;
  font-size: 0.79rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #384a63;
}

.hero-drop {
  background: var(--section-bg);
  border-color: rgba(133, 154, 185, 0.44);
}

.hero-drop-wrap {
  width: min(1380px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(20px, 4vw, 62px);
  align-items: center;
}

.hero-drop-copy {
  max-width: 520px;
}

.hero-drop-title {
  margin: 0;
  color: #122534;
  font-size: clamp(2.15rem, 5.2vw, 4.45rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 12ch;
  text-wrap: balance;
}

.hero-drop-sub {
  margin: 14px 0 20px;
  font-size: clamp(0.92rem, 1.3vw, 1.07rem);
  color: #111827;
  font-weight: 680;
  max-width: 48ch;
}

.btn-hero {
  background: linear-gradient(135deg, #1d57dc 0%, #3b7cff 100%);
  border-color: #214fc1;
  color: #fff;
  min-height: 54px;
  padding: 0 26px;
  font-size: 1rem;
  box-shadow:
    0 20px 36px rgba(26, 69, 168, 0.34),
    0 0 0 1px rgba(33, 79, 193, 0.28);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #184cc9 0%, #2e70f6 100%);
  border-color: #1a44aa;
  box-shadow:
    0 24px 44px rgba(26, 69, 168, 0.4),
    0 0 0 1px rgba(33, 79, 193, 0.38),
    0 0 0 6px rgba(38, 104, 242, 0.16);
}

.hero-drop-visual {
  margin: 0;
  border: 1px solid #b7c8dd;
  border-radius: 22px;
  background: #d6e2f0;
  padding: clamp(20px, 3vw, 28px);
  min-height: 392px;
  position: relative;
  box-shadow:
    0 26px 52px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.drop-phone-stack {
  position: relative;
  height: 308px;
  margin: 2px 0 84px;
}

.drop-phone-card {
  margin: 0;
  position: absolute;
  width: 48%;
  min-width: 238px;
  border: 1px solid #b3c4d8;
  border-radius: 16px;
  background: #e7eef8;
  padding: 12px 12px 8px;
  box-shadow: 0 20px 38px rgba(17, 24, 39, 0.18);
}

.drop-phone-card.is-xcover6 {
  left: 0;
  top: 52px;
  transform: rotate(-9deg);
  z-index: 1;
}

.drop-phone-card.is-xcover7 {
  left: 27%;
  top: 8px;
  transform: rotate(-1deg);
  z-index: 3;
}

.drop-phone-card.is-xcover5 {
  right: 0;
  top: 58px;
  transform: rotate(8deg);
  z-index: 2;
}

.drop-phone-card img {
  width: 100%;
  height: 214px;
  object-fit: contain;
  display: block;
}

.drop-phone-card figcaption {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
  color: #162c46;
}

.drop-meta-card {
  position: absolute;
  right: clamp(12px, 3vw, 20px);
  bottom: clamp(10px, 2vw, 16px);
  border: 1px solid #b7c8da;
  border-radius: 12px;
  background: rgba(248, 251, 255, 0.96);
  min-width: 210px;
  padding: 12px 14px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}

.drop-meta-card p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #21476d;
}

.drop-meta-card span {
  display: block;
  margin-top: 8px;
  color: #1b2f47;
  font-size: 0.82rem;
  font-weight: 700;
}

.drop-meta-card strong {
  display: block;
  margin-top: 4px;
  color: #101f34;
  font-size: 1.62rem;
  letter-spacing: -0.03em;
}

@keyframes dropFocus {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    box-shadow: 0 22px 44px rgba(17, 24, 39, 0.17);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotate(1.5deg);
    box-shadow: 0 30px 58px rgba(17, 24, 39, 0.22);
  }
}

.benefit-strip-section {
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.benefit-strip article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 690;
  color: #2f4b3c;
}

.process-section {
  padding-top: clamp(24px, 3.2vw, 40px);
  padding-bottom: clamp(24px, 3.2vw, 40px);
  background:
    radial-gradient(circle at 12% 18%, rgba(64, 126, 87, 0.16), transparent 42%),
    radial-gradient(circle at 86% 82%, rgba(42, 108, 73, 0.14), transparent 44%),
    linear-gradient(145deg, #d8e7dc 0%, #cfdfd4 48%, #dcebe0 100%);
  border-top-color: #bccfbe;
  border-bottom-color: #bccfbe;
}

.process-section::before {
  width: min(1220px, 94%);
  background: rgba(71, 98, 77, 0.44);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.process-content h2 {
  max-width: 22ch;
  font-size: clamp(1.34rem, 2.5vw, 2.1rem);
}

.process-steps-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.process-step-card {
  border: 1px solid #b5cbb8;
  border-radius: 14px;
  background: linear-gradient(170deg, #eef5ef 0%, #ddeadf 100%);
  padding: 12px;
  box-shadow:
    0 15px 28px rgba(15, 23, 42, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.process-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  border-radius: 999px;
  background: #2a6c4b;
  color: #f6fbff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-step-card h3 {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #10243d;
}

.process-step-card p {
  margin: 5px 0 0;
  color: #111827;
  font-size: 0.84rem;
  line-height: 1.45;
}

.sell-box {
  border: 1px solid #9db5cf;
  border-radius: 16px;
  background:
    linear-gradient(165deg, #243f63 0%, #1d3554 54%, #1b3150 100%);
  box-shadow: var(--shadow);
  padding: 14px;
  perspective: 1200px;
  overflow: hidden;
}

.sell-box h3 {
  font-size: 1.2rem;
  color: #f2f7ff;
}

.sell-box p {
  margin: 8px 0 10px;
  color: #d9e5f6;
  line-height: 1.42;
  font-size: 0.9rem;
}

.sell-phone-stage {
  margin: 8px 0 10px;
  border: 1px solid rgba(173, 197, 224, 0.6);
  border-radius: 16px;
  min-height: 236px;
  display: grid;
  place-items: center;
  gap: 10px;
  perspective: 1100px;
  transform-style: preserve-3d;
  background: #d7e4f4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 30px rgba(15, 23, 42, 0.12);
}

.sell-phone-3d {
  --phone-w: 112px;
  --phone-h: 206px;
  --phone-d: 16px;
  width: var(--phone-w);
  height: var(--phone-h);
  margin: 0;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  animation: sellSpin 8.8s linear infinite;
}

.sell-3d-label {
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1e456e;
  opacity: 0.9;
}

.sell-phone-3d .p3d {
  position: absolute;
  display: block;
  transform-style: preserve-3d;
}

.sell-phone-3d .p3d.back {
  inset: 0;
  border-radius: 22px;
  border: 1.5px solid #5a6576;
  background: linear-gradient(160deg, #d3dbe7 0%, #adb9cb 100%);
  transform: rotateY(180deg) translateZ(calc(var(--phone-d) / 2));
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.2);
}

.sell-phone-3d .p3d.front {
  inset: 0;
  border-radius: 22px;
  border: 1.5px solid #4d5a6d;
  background: linear-gradient(160deg, #e8eef8 0%, #b9c7d9 100%);
  transform: translateZ(calc(var(--phone-d) / 2));
  box-shadow: 0 22px 34px rgba(17, 24, 39, 0.22);
}

.sell-phone-3d .p3d.side-left,
.sell-phone-3d .p3d.side-right {
  top: 0;
  width: var(--phone-d);
  height: var(--phone-h);
  left: 50%;
  margin-left: calc(var(--phone-d) / -2);
  border-radius: 8px;
  background: linear-gradient(180deg, #5f6c80 0%, #4f5b6d 100%);
}

.sell-phone-3d .p3d.side-left {
  transform: rotateY(-90deg) translateZ(calc(var(--phone-w) / 2));
}

.sell-phone-3d .p3d.side-right {
  transform: rotateY(90deg) translateZ(calc(var(--phone-w) / 2));
}

.sell-phone-3d .p3d.side-top,
.sell-phone-3d .p3d.side-bottom {
  left: 0;
  top: 50%;
  margin-top: calc(var(--phone-d) / -2);
  width: var(--phone-w);
  height: var(--phone-d);
  border-radius: 8px;
  background: linear-gradient(180deg, #626f82 0%, #4f5b6d 100%);
}

.sell-phone-3d .p3d.side-top {
  transform: rotateX(90deg) translateZ(calc(var(--phone-h) / 2));
}

.sell-phone-3d .p3d.side-bottom {
  transform: rotateX(-90deg) translateZ(calc(var(--phone-h) / 2));
}

.sell-phone-3d .p3d.screen {
  inset: 14px 10px 26px;
  border-radius: 16px;
  border: 1px solid rgba(80, 157, 117, 0.45);
  background:
    url("assets/phones/xcover-front.svg") center/contain no-repeat,
    linear-gradient(155deg, #f7fffa 0%, #d9eee3 100%);
  transform: translateZ(9px);
}

.sell-phone-3d .p3d.camera {
  width: 34px;
  height: 34px;
  left: 12px;
  top: 12px;
  border-radius: 11px;
  border: 1px solid #4f5b6d;
  background: linear-gradient(160deg, #ced8e8 0%, #9eaabc 100%);
  transform: translateZ(10px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.2);
}

.sell-phone-3d .p3d.camera::before,
.sell-phone-3d .p3d.camera::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #7c89a0, #1f2937);
}

.sell-phone-3d .p3d.camera::before {
  width: 11px;
  height: 11px;
  left: 6px;
  top: 6px;
}

.sell-phone-3d .p3d.camera::after {
  width: 11px;
  height: 11px;
  right: 6px;
  bottom: 6px;
}

@keyframes sellSpin {
  0% {
    transform: rotateY(18deg) rotateX(-12deg);
  }
  50% {
    transform: rotateY(198deg) rotateX(-10deg);
  }
  100% {
    transform: rotateY(378deg) rotateX(-12deg);
  }
}

@keyframes stageFloat {
  0%,
  100% {
    filter: drop-shadow(0 14px 26px rgba(9, 23, 16, 0.22));
  }
  50% {
    filter: drop-shadow(0 22px 34px rgba(9, 23, 16, 0.2));
  }
}

.micro-statement {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #2d425c;
}

.core-moment-section {
  overflow: hidden;
}

.core-moment-layout {
  display: grid;
  grid-template-columns: minmax(540px, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
}

.core-copy h2 {
  max-width: 20ch;
  text-wrap: balance;
}

.feature-list.compact {
  margin-top: 14px;
}

.core-canvas {
  position: relative;
  min-height: 390px;
  margin-right: clamp(-54px, -4vw, -18px);
}

.exploded-phone {
  position: absolute;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: end;
  pointer-events: none;
}

.slice {
  position: absolute;
  width: min(360px, 72%);
  height: 230px;
  border-radius: 20px;
  border: 1px solid #afcabc;
  background: linear-gradient(150deg, #f7f9fc, #e0e7ef);
}

.slice::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 13px;
  border: 1px solid rgba(22, 91, 59, 0.24);
  background:
    radial-gradient(circle at 20% 25%, rgba(76, 188, 132, 0.15), transparent 48%),
    radial-gradient(circle at 72% 68%, rgba(17, 24, 39, 0.12), transparent 52%);
}

.slice-1 {
  transform: translateX(-84px) translateY(18px) rotate(-6deg);
  opacity: 0.38;
}

.slice-2 {
  transform: translateX(-36px) translateY(8px) rotate(-3deg);
  opacity: 0.6;
}

.slice-3 {
  transform: translateX(12px) rotate(-1deg);
}

.core-score-card {
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: min(360px, 92%);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(5px);
  padding: 14px;
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.16);
}

.core-score-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a5346;
}

.core-score-line {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.core-score-line strong {
  font-size: 2.4rem;
  color: var(--accent-dark);
  letter-spacing: -0.03em;
}

.core-score-line span {
  color: #314c6c;
  font-weight: 730;
}

#momentScore {
  margin-top: 10px;
  width: 100%;
  accent-color: var(--accent);
}

.moment-bars {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.moment-bars div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
  align-items: center;
}

.moment-bars span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2c4767;
}

.moment-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #4f77a9);
  width: 50%;
  transition: width 220ms ease;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
}

.section-head p {
  margin: 0;
  color: #111827;
  font-weight: 680;
}

.catalog-list,
.products-sections {
  display: grid;
  gap: 12px;
}

.home-catalog-foot {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.catalog-row,
.device-card {
  border: 1px solid #b7c9de;
  border-radius: 16px;
  background: var(--panel);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.catalog-row:hover,
.device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 72px rgba(15, 23, 42, 0.14);
}

.catalog-row {
  display: grid;
  grid-template-columns: 250px 1fr 220px;
  gap: 16px;
  padding: 18px;
}

.catalog-list {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

#homeCatalog.catalog-list {
  grid-template-columns: repeat(3, minmax(260px, 340px));
  grid-auto-flow: row;
  grid-auto-columns: auto;
  justify-content: center;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
}

#homeCatalog .home-model-card {
  height: 100%;
}

.catalog-list::-webkit-scrollbar,
.device-grid::-webkit-scrollbar {
  height: 8px;
}

.catalog-list::-webkit-scrollbar-thumb,
.device-grid::-webkit-scrollbar-thumb {
  background: #b2c2d5;
  border-radius: 999px;
}

.home-model-card {
  border: 1px solid #b7c9de;
  border-radius: 16px;
  background: var(--panel);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.home-model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 72px rgba(15, 23, 42, 0.14);
}

.home-model-card,
.device-card {
  scroll-snap-align: start;
}

.home-model-card .catalog-visual {
  min-height: 138px;
}

.home-model-card .catalog-body h3 {
  font-size: 1.06rem;
}

.home-model-card .catalog-body p {
  margin: 6px 0 8px;
  font-size: 0.89rem;
}

.home-model-card .feature-list {
  gap: 5px;
  font-size: 0.84rem;
}

.home-model-buy {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.card-actions .btn {
  width: 100%;
}

.catalog-visual,
.device-visual,
.product-photo {
  border: 1px solid #dbe2eb;
  border-radius: 12px;
  background: var(--panel-soft);
  display: grid;
  place-items: center;
  font-weight: 760;
  color: #24324a;
}

.catalog-visual img,
.device-visual img,
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.catalog-visual {
  min-height: 160px;
}

.catalog-body h3 {
  font-size: 1.24rem;
}

.catalog-body p {
  margin: 7px 0 9px;
  color: #111827;
  line-height: 1.45;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: #111827;
}

.catalog-buy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.catalog-price strong {
  display: block;
  font-size: 2.05rem;
  color: #132641;
}

.catalog-price span {
  color: #111827;
  font-size: 0.85rem;
  font-weight: 700;
}

.engine-room {
  position: relative;
  overflow: hidden;
  background: var(--section-bg);
  color: #111827;
}

.engine-room::before {
  display: none;
}

.engine-room h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 0.98;
  text-wrap: balance;
  color: #11243b;
}

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

.engine-steps::before {
  display: none;
}

.engine-steps article {
  position: relative;
  border: 1px solid #b7c9de;
  border-radius: 14px;
  background: var(--panel);
  padding: 16px;
  box-shadow:
    0 20px 38px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.engine-steps article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6f8fb2;
  box-shadow: 0 0 0 4px rgba(111, 143, 178, 0.2);
}

.engine-steps p {
  margin: 7px 0 0;
  color: #111827;
  line-height: 1.45;
}

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

.trust-grid article {
  border: 1px solid #b7c9de;
  border-radius: 14px;
  background: var(--panel);
  padding: 18px;
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trust-grid p {
  margin: 8px 0 0;
  color: #111827;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin: 7px 0 0;
  color: #111827;
}

.process-next {
  border: 1px solid #b5c7db;
  border-radius: 16px;
  background: #dbe6f4;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.process-next h2 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: #11253d;
}

.process-next p {
  margin: 0;
  color: #111827;
  font-weight: 680;
}

.contact-prompt {
  border: 1px solid #b4c8dd;
  border-radius: 16px;
  background: #dbe8f7;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow:
    0 18px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.contact-prompt h2 {
  font-size: clamp(1.14rem, 2vw, 1.58rem);
  color: #10253d;
}

.contact-prompt p {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 650;
}

.model-section {
  border: 1px solid #b8ccb9;
  border-radius: 16px;
  background: #dde9de;
  padding: 14px;
  box-shadow:
    0 18px 32px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.model-section-head {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.model-section-head h2 {
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  color: #10233a;
}

.model-section-head p {
  margin: 0;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 700;
}

.device-grid-single {
  grid-template-columns: minmax(260px, 340px);
  grid-auto-flow: row;
  overflow: visible;
  scroll-snap-type: none;
}

.faq-layout {
  max-width: 980px;
}

.faq-grid {
  margin-top: 16px;
  border: 1px solid #b5c7db;
  border-radius: 14px;
  background: #dce7f5;
  padding: 12px 16px;
}

.faq-grid details {
  border-bottom-color: #b5c7db;
}

.faq-grid details:last-child {
  border-bottom: 0;
}

.sell-hero-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(54, 96, 153, 0.2), transparent 42%),
    radial-gradient(circle at 80% 84%, rgba(34, 82, 138, 0.16), transparent 42%),
    linear-gradient(150deg, #d3e0ee 0%, #c7d7ea 55%, #d6e3f1 100%);
  border-top-color: #b4c6da;
  border-bottom-color: #b4c6da;
}

.sell-layout {
  align-items: start;
}

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

.sell-steps-inline article {
  border: 1px solid #a9bfd7;
  border-radius: 12px;
  background: #e6eef8;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.sell-steps-inline strong {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #22486f;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.sell-steps-inline span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #10253d;
}

.sell-form {
  border: 1px solid #a9bfd7;
  border-radius: 16px;
  background: #dce8f6;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.products-sections {
  gap: 18px;
}

.device-section h2 {
  margin-bottom: 10px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  align-items: stretch;
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}

.accessories-device-grid {
  margin-top: 6px;
}

.model-section.is-expanded .device-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accessories-device-grid.is-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.device-card.is-collapsed-item {
  display: none;
}

.device-card {
  padding: 8px 8px 9px;
}

.home-model-card[data-open-id],
.device-card[data-open-id] {
  cursor: pointer;
}

.device-visual {
  min-height: 84px;
}

.device-photo-strip {
  margin-top: 7px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.device-photo-strip img {
  width: 100%;
  height: 34px;
  object-fit: contain;
  border: 1px solid #c8d7e6;
  border-radius: 8px;
  background: #f4f8fc;
  padding: 3px;
}

.device-card h3 {
  margin: 9px 0 5px;
  font-size: 1rem;
}

.device-card p {
  margin: 0;
  color: #111827;
  font-size: 0.85rem;
}

.accessory-device-card {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr;
  gap: 6px;
}

.accessory-device-card .catalog-price strong {
  font-size: 1.5rem;
}

.accessory-device-card .catalog-price span {
  display: block;
  margin-top: 2px;
  line-height: 1.4;
}

.accessory-device-card .cert-pill {
  width: max-content;
  margin-top: 1px;
}

.device-actions {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.device-actions .btn {
  width: 100%;
  min-height: 38px;
  padding: 0 8px;
  font-size: 0.8rem;
}

.accessory-device-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-expand {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.section-more-btn {
  min-width: 170px;
}

.device-actions label {
  font-size: 0.82rem;
  color: #2f4863;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.product-detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

.product-detail-left,
.product-detail-right {
  border: 1px solid #b2c5db;
  border-radius: 16px;
  background: var(--panel);
  padding: 18px;
  box-shadow:
    0 22px 46px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-detail-right {
  margin-right: clamp(-28px, -2vw, -10px);
}

.product-detail-left h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  line-height: 1.05;
}

.big-price {
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  font-weight: 820;
  letter-spacing: -0.03em;
  color: #10213b;
}

.saving-line {
  margin: 6px 0 12px;
  color: #2f4a68;
  font-weight: 700;
  min-height: 20px;
}

.form-row {
  margin-bottom: 10px;
}

.form-row label,
.clean-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 760;
}

.form-row select,
.track-form input,
.clean-form input,
.clean-form textarea,
.clean-form select {
  width: 100%;
  padding: 0 10px;
}

.clean-form textarea {
  min-height: 130px;
  padding-top: 10px;
}

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

.check-grid label {
  min-height: 34px;
  border: 1px solid #b9ccdf;
  border-radius: 9px;
  background: linear-gradient(180deg, #e9f2fc 0%, #dceafb 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2b4560;
}

.check-grid input {
  margin: 0;
}

.trust-inline {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.trust-inline li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid #b7c9de;
  border-radius: 10px;
  background: var(--panel-soft);
  color: #28435e;
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
}

.mini-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 3px;
  height: 7px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(38deg);
}

.system-status {
  margin: 9px 0 0;
  color: #1f4a7a;
  font-size: 0.86rem;
  font-weight: 700;
  min-height: 20px;
}

.addons-section {
  background: #d5e0ee;
  border-top-color: #bccbdb;
  border-bottom-color: #bccbdb;
}

.addons-section::before {
  width: min(1220px, 94%);
  background: rgba(72, 93, 120, 0.38);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.upsell-block {
  margin-top: 0;
  border: 1px solid #acbfd4;
  border-radius: 16px;
  background: #cfdced;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.upsell-block-wide {
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.upsell-title {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 760;
  color: #11253f;
}

.upsell-sub {
  margin: -2px 0 0;
  font-size: 0.9rem;
  color: #111827;
  font-weight: 740;
}

.upsell-carousel {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: center;
}

.upsell-track {
  overflow: hidden;
}

.upsell-nav {
  min-height: 40px;
  border: 1px solid #aebfd4;
  border-radius: 10px;
  background: #e8f0f9;
  color: #18314b;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.upsell-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.upsell-list::-webkit-scrollbar {
  display: none;
}

.upsell-item {
  border: 1px solid #aec2d8;
  border-radius: 12px;
  background: #e5edf7;
  padding: 12px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  scroll-snap-align: start;
}

.upsell-item-media {
  width: 72px;
  height: 72px;
  border: 1px solid #b4c7dc;
  border-radius: 10px;
  background: #eef4fb;
  padding: 6px;
}

.upsell-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.upsell-item-copy strong {
  display: block;
  font-size: 0.9rem;
  color: #11243d;
}

.upsell-item-copy small {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  color: #111827;
  font-weight: 700;
}

.upsell-badge {
  display: inline-flex;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #92afcf;
  background: rgba(39, 88, 154, 0.14);
  color: #193e66;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.upsell-item-buy {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.upsell-item-buy span {
  font-size: 0.9rem;
  font-weight: 760;
  color: #111f34;
}

.upsell-item-buy .btn {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.upsell-bundle {
  border: 1px solid #aebfd3;
  border-radius: 12px;
  background: #dce6f3;
  padding: 12px;
}

.upsell-bundle-head {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.upsell-bundle-media {
  width: 84px;
  height: 84px;
  border: 1px solid #b1c4d8;
  border-radius: 10px;
  background: #edf3fa;
  padding: 6px;
}

.upsell-bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.upsell-bundle h3 {
  margin: 0;
  font-size: 0.92rem;
  color: #10243f;
}

.upsell-bundle p {
  margin: 4px 0 6px;
  font-size: 0.86rem;
  color: #111827;
  font-weight: 620;
}

.upsell-bundle ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 3px;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 620;
}

.upsell-bundle-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.upsell-bundle-foot span {
  font-size: 0.83rem;
  color: #111827;
  font-weight: 760;
}

.upsell-bundle-foot .btn {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.device-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.device-info-card {
  border: 1px solid #b2c4d8;
  border-radius: 16px;
  background: #d7e2ef;
  padding: 16px;
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.device-info-card h2 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #10233b;
}

.premium-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.premium-list li {
  border: 1px solid #b4c7dc;
  border-radius: 11px;
  background: #e6edf7;
  padding: 10px 12px;
  color: #0f1f33;
  font-size: 0.89rem;
  font-weight: 730;
  line-height: 1.4;
}

.product-photo.small {
  min-height: 320px;
}

.product-gallery-thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-thumb {
  border: 1px solid #b7cadd;
  border-radius: 10px;
  background: var(--panel-soft);
  min-height: 84px;
  padding: 6px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-thumb:hover {
  transform: translateY(-1px);
}

.product-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(31, 74, 122, 0.15);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.battery-block {
  margin-top: 10px;
  border: 1px solid #b5c9df;
  border-radius: 12px;
  background: linear-gradient(180deg, #e3edf9 0%, #d4e3f5 100%);
  padding: 12px;
}

.battery-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.battery-head span {
  font-weight: 800;
  color: var(--accent-dark);
}

.battery-meter {
  height: 9px;
  border-radius: 999px;
  background: #d7e6dd;
  overflow: hidden;
}

.battery-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #4f77a9);
  transition: width 300ms ease;
}

.component-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.component-row span {
  border: 1px solid #b7cadd;
  border-radius: 10px;
  text-align: left;
  padding: 10px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2f3f55;
  background: var(--panel-soft);
  display: grid;
  gap: 2px;
}

.component-row span strong {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2a425d;
}

.component-row span small {
  font-size: 0.79rem;
  font-weight: 700;
  color: #0f1e31;
}

.compare-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.compare-picks label {
  border: 1px solid #b7cadd;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--panel-soft);
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  font-size: 0.9rem;
}

.compare-table th {
  color: #36493f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.model-section-head p {
  margin: 0;
  color: #0f1f33;
  font-size: 0.9rem;
  font-weight: 720;
}

.catalog-visual,
.device-visual,
.product-photo {
  background: #f2f6fb;
  border-color: #c5d3e2;
}

.section-head p,
.home-model-card .catalog-body p,
.device-card p,
.hero-drop-sub {
  color: #111827;
  font-weight: 620;
}

.process-section {
  background: #dbe6f2;
  border-top-color: #bbccdf;
  border-bottom-color: #bbccdf;
}

.process-shell {
  display: grid;
  gap: 14px;
}

.process-header {
  display: grid;
  gap: 8px;
}

.process-header h2 {
  max-width: 24ch;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  color: #0f233a;
}

.process-header p {
  margin: 0;
  color: #111827;
  font-weight: 640;
  max-width: 72ch;
}

.process-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.process-step-card {
  border-color: #b8c9dc;
  background: #edf3fa;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  box-shadow:
    0 18px 30px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.process-step-card span {
  min-width: 34px;
  min-height: 34px;
  border-radius: 10px;
  background: #183d66;
  font-size: 0.75rem;
}

.process-step-card h3 {
  margin-top: 1px;
  font-size: 0.96rem;
  color: #10243d;
}

.process-step-card p {
  margin: 6px 0 0;
  color: #111827;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 620;
}

.sell-box-inline {
  margin-top: 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 14px;
  align-items: center;
  border-color: #88b091;
  background: linear-gradient(160deg, #2f6a49 0%, #25563b 56%, #204a33 100%);
}

.sell-box-copy p {
  margin: 8px 0 12px;
}

.sell-box-inline .sell-phone-stage {
  margin: 0;
  min-height: 208px;
}

.engine-room {
  background:
    radial-gradient(circle at 12% 18%, rgba(89, 152, 112, 0.2), transparent 42%),
    radial-gradient(circle at 88% 76%, rgba(69, 132, 92, 0.16), transparent 44%),
    linear-gradient(155deg, #e8f1ea 0%, #dce9df 55%, #ebf3ed 100%);
  border-top-color: #bdd1c1;
  border-bottom-color: #bdd1c1;
}

.engine-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.45fr);
  gap: 14px;
  align-items: stretch;
}

.engine-main {
  border: 1px solid #b9cfbc;
  border-radius: 18px;
  background: rgba(248, 253, 249, 0.88);
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.engine-main h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  color: #173928;
  line-height: 1.1;
}

.engine-main p {
  margin: 0;
  color: #111827;
  font-weight: 630;
  line-height: 1.5;
}

.engine-link {
  width: max-content;
  margin-top: 2px;
  border-color: #9bbb9f;
  color: #1a4a34;
  background: #f9fdf9;
}

.engine-link:hover {
  background: #235f41;
  border-color: #235f41;
  color: #fff;
}

.engine-flow-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.flow-card {
  position: relative;
  border: 1px solid #b6ccb9;
  border-radius: 16px;
  background: linear-gradient(165deg, #f3faf5 0%, #e7f2ea 100%);
  padding: 14px;
  box-shadow:
    0 18px 32px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.engine-flow-cards .flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 26px;
  width: 16px;
  height: 2px;
  background: #9ab79f;
}

.flow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #2b6a49;
  background: #2a6d4b;
  color: #f4f9f5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.flow-card h3 {
  margin: 10px 0 6px;
  color: #183925;
  font-size: 0.98rem;
}

.flow-card p {
  margin: 0;
  color: #111827;
  font-size: 0.87rem;
  line-height: 1.45;
  font-weight: 620;
}

.faq-highlight {
  position: relative;
  overflow: hidden;
  border: 1px solid #c4d6c8;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.72), transparent 56%),
    radial-gradient(circle at 82% 72%, rgba(217, 235, 221, 0.72), transparent 54%),
    linear-gradient(150deg, #ecf3ed 0%, #e4eee6 100%);
  min-height: 220px;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 4vw, 54px);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 10px;
  box-shadow:
    0 26px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.faq-highlight-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a6b4a;
}

.faq-highlight h2 {
  margin: 0;
  color: #132f21;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.faq-highlight p {
  margin: 0;
  max-width: 62ch;
  color: #111827;
  font-size: clamp(0.96rem, 1.35vw, 1.25rem);
  line-height: 1.45;
}

.faq-highlight .btn {
  min-width: 220px;
  margin-top: 6px;
}

.compare-duel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.compare-device-pane {
  border: 1px solid #b7c9de;
  border-radius: 16px;
  background: #dce8f6;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow:
    0 18px 30px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.compare-device-pane label {
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #143251;
}

.compare-device-pane select {
  min-height: 42px;
  border: 1px solid #b9cbdf;
  border-radius: 10px;
  background: #f7faff;
  color: #111827;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0 10px;
}

.compare-device-preview {
  border: 1px solid #bccde1;
  border-radius: 12px;
  background: #f2f7fc;
  padding: 10px;
  display: grid;
  gap: 7px;
  min-height: 246px;
  align-content: start;
}

.compare-preview-media {
  border: 1px solid #c5d4e4;
  border-radius: 10px;
  background: #fff;
  min-height: 140px;
  padding: 10px;
  display: grid;
  place-items: center;
}

.compare-preview-media img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
}

.compare-device-preview h3 {
  font-size: 1rem;
  color: #0f2238;
}

.compare-device-preview p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #111827;
}

.compare-device-preview strong {
  margin-top: auto;
  font-size: 1.2rem;
  color: #133256;
}

.compare-center-icon {
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #b3c6dc;
  background: #edf4fc;
  color: #183c62;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 18px rgba(15, 23, 42, 0.12);
}

.compare-metric-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.compare-metric-card {
  border: 1px solid #b7c9de;
  border-radius: 12px;
  background: #edf3fa;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.compare-metric-card h3 {
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #173a61;
}

.compare-metric-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.compare-metric-values span {
  border: 1px solid #bfd0e3;
  border-radius: 10px;
  background: #f9fbff;
  padding: 9px 10px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-layout {
  align-items: start;
}

.contact-cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-cards article,
.track-side,
.clean-form,
.track-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.contact-cards p,
.track-side p,
.track-side li {
  color: var(--muted);
}

body[data-page="accessories"] {
  color: #14253a;
  background: var(--bg);
}

body[data-page="accessories"]::before {
  display: none;
}

body[data-page="accessories"] .site-header {
  background: rgba(245, 249, 255, 0.88);
  border-color: #ccd8e8;
}

body[data-page="accessories"] .brand,
body[data-page="accessories"] .nav-links a {
  color: #16283f;
}

body[data-page="accessories"] .nav-links a:hover {
  color: #0d1e32;
}

body[data-page="accessories"] .language-select select,
body[data-page="accessories"] .cart-toggle {
  border-color: #c4d3e5;
  background: rgba(255, 255, 255, 0.94);
  color: #152840;
}

body[data-page="accessories"] .section {
  background: var(--section-bg);
  border-color: #c6d4e5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(17, 24, 39, 0.03);
}

body[data-page="accessories"] .section::before {
  height: 1px;
  background: rgba(68, 94, 124, 0.4);
  box-shadow: 0 12px 26px rgba(22, 37, 57, 0.16);
}

body[data-page="accessories"] .section::after {
  display: none;
}

body[data-page="accessories"] .kicker {
  color: #2a4f79;
}

body[data-page="accessories"] .hero-sub {
  color: #111827;
}

.accessory-hero-section {
  padding-top: clamp(34px, 4.6vw, 66px);
  background: var(--section-bg);
}

.accessories-section {
  background: var(--section-bg);
}

.accessory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
}

.accessory-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #11263d;
}

.accessory-kicker {
  color: #2c527d;
}

.accessory-positioning {
  margin: 14px 0 0;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accessory-hero-visual {
  position: relative;
  border: 1px solid #c2d3e2;
  border-radius: 20px;
  background: var(--panel-soft);
  min-height: 280px;
  padding: 20px;
  box-shadow:
    0 26px 56px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.accessory-visual-stack {
  position: relative;
  width: min(320px, 100%);
  height: 180px;
  margin: 8px auto 54px;
}

.accessory-visual-stack span {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(138, 192, 164, 0.54);
  background: var(--panel);
}

.accessory-visual-stack span:nth-child(1) {
  transform: translateX(-26px) translateY(12px) rotate(-8deg);
  opacity: 0.42;
}

.accessory-visual-stack span:nth-child(2) {
  transform: translateX(-10px) translateY(4px) rotate(-3deg);
  opacity: 0.7;
}

.accessory-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid #c3d1e1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 12px;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.accessory-chip p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #111827;
}

.accessory-chip strong {
  display: block;
  margin-top: 5px;
  color: #10243d;
  font-size: 0.88rem;
}

.accessories-head h2 {
  color: #11263c;
}

.accessories-head p {
  color: #111827;
  font-weight: 700;
}

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

.accessory-card {
  border: 1px solid #b4c7dc;
  border-radius: 16px;
  background: var(--panel);
  padding: 14px;
  box-shadow:
    0 24px 44px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.accessory-card h3 {
  margin: 0 0 10px;
  color: #10243b;
  font-size: 1.12rem;
}

.accessory-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.accessory-items li {
  border: 1px solid #b9ccdf;
  border-radius: 12px;
  background: var(--panel-soft);
  padding: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.accessory-items strong {
  display: block;
  color: #11253d;
  font-size: 0.88rem;
}

.accessory-items small {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 620;
}

.cert-pill {
  display: inline-flex;
  margin-top: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #9cb7d7;
  background: rgba(56, 98, 156, 0.1);
  color: #1e426c;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.acc-price {
  color: #132843;
  font-size: 1rem;
  font-weight: 770;
}

body[data-page="accessories"] .site-footer {
  border-top: 1px solid #c5d2e2;
  background:
    radial-gradient(circle at 84% 18%, rgba(82, 132, 198, 0.16), rgba(82, 132, 198, 0.04) 34%, transparent 56%),
    linear-gradient(160deg, #eef4fb 0%, #e4edf8 52%, #dde8f4 100%);
  color: #111827;
}

body[data-page="accessories"] .footer-topbar {
  border-bottom: 1px solid rgba(120, 146, 177, 0.36);
}

body[data-page="accessories"] .footer-topbar p {
  color: #111827;
}

body[data-page="accessories"] .footer-social span {
  color: #111827;
}

body[data-page="accessories"] .footer-social a {
  border-color: rgba(111, 138, 170, 0.56);
  color: #111827;
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="accessories"] .footer-col h3,
body[data-page="accessories"] .footer-col h4 {
  color: #142b45;
}

body[data-page="accessories"] .pay-badges span {
  border-color: rgba(128, 149, 175, 0.52);
  color: #111827;
  background: rgba(255, 255, 255, 0.8);
}

body[data-page="accessories"] .footer-col p {
  color: #111827;
}

body[data-page="accessories"] .footer-col a {
  color: #111827;
}

body[data-page="accessories"] .footer-col a:hover {
  color: #000000;
}

body[data-page="accessories"] .footer-legal {
  border-top: 1px solid rgba(123, 145, 171, 0.38);
  color: #111827;
}

.form-feedback {
  margin: 10px 0 0;
  color: #1f4a7a;
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.timeline li {
  color: var(--muted);
}

.site-footer {
  padding: 14px clamp(16px, 4vw, 52px) 18px;
  border-top: 1px solid rgba(184, 198, 218, 0.25);
  background:
    radial-gradient(circle at 84% 18%, rgba(82, 132, 198, 0.16), rgba(82, 132, 198, 0.03) 36%, transparent 58%),
    linear-gradient(160deg, #101726 0%, #151f31 52%, #0d1421 100%);
  color: #c1ccde;
  font-size: 0.84rem;
}

.footer-topbar {
  width: min(1320px, 100%);
  margin: 0 auto 16px;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(184, 198, 218, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-topbar p {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6d4ea;
  font-weight: 760;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social span {
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9cb0cc;
  font-weight: 760;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(184, 198, 218, 0.38);
  display: grid;
  place-items: center;
  color: #e3edff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 760;
}

.footer-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 18px;
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 10px;
  color: #f1f6ff;
}

.footer-brand h3 {
  font-size: 1.3rem;
}

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

.pay-badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-badges span {
  min-height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(184, 198, 218, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 760;
  color: #dde8f9;
  background: rgba(16, 23, 38, 0.52);
}

.footer-col p {
  margin: 0 0 6px;
  color: #b8c4d8;
  line-height: 1.5;
}

.footer-col p span {
  display: block;
}

.footer-col a {
  display: block;
  color: #b9c8df;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-legal {
  width: min(1320px, 100%);
  margin: 16px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 198, 218, 0.2);
  color: #98a8c0;
  font-size: 0.8rem;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: -10px 0 24px rgba(12, 29, 18, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.icon-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: var(--surface-soft);
  font-size: 1.24rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  margin: 0;
  padding: 12px;
  list-style: none;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  flex: 1;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
}

.cart-item p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-line {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.qty-controls {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-controls button,
.qty-controls span {
  width: 26px;
  height: 24px;
  border: 0;
  display: grid;
  place-items: center;
  background: #fff;
  font-weight: 700;
}

.qty-controls button {
  cursor: pointer;
}

.link-btn {
  border: 0;
  background: transparent;
  color: #5a6b61;
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: 10px;
  text-align: center;
  color: var(--muted);
  padding: 12px;
  font-size: 0.9rem;
}

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 12px;
}

.drawer-foot p {
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 90;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.system-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  min-width: 220px;
  max-width: 86vw;
  border: 1px solid #2f6f52;
  border-radius: 10px;
  background: #123825;
  color: #d9efe3;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 110;
}

.system-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  min-height: 48px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  border: 1px solid #2f7e5a;
  background: #1f9f67;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 760;
  box-shadow: 0 16px 28px rgba(22, 56, 41, 0.28);
  z-index: 115;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  display: block;
}

.whatsapp-float:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

body.is-loaded [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .hero-layout,
  .core-moment-layout,
  .process-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw);
  }

  .hero-layout > div:first-child {
    margin-right: clamp(-42px, -4vw, -12px);
  }

  .metrics-inline,
  .hero-actions {
    flex-wrap: wrap;
  }

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

  .footer-topbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .core-moment-layout,
  .process-layout,
  .accessory-hero,
  .accessory-grid,
  .two-col,
  .product-detail-wrap,
  .catalog-row {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-stock,
  .core-canvas,
  .product-detail-right {
    margin-right: 0;
  }

  .hero-layout > div:first-child {
    margin-right: 0;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-layout h1 {
    max-width: 13ch;
  }

  .hero-drop-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-drop-title {
    font-size: clamp(1.8rem, 7vw, 2.9rem);
  }

  .drop-phone-stack {
    height: 278px;
    margin-bottom: 78px;
  }

  .drop-phone-card {
    width: 46%;
    min-width: 0;
  }

  .drop-phone-card.is-xcover6 {
    left: 0;
    top: 44px;
  }

  .drop-phone-card.is-xcover7 {
    left: 27%;
    top: 6px;
  }

  .drop-phone-card.is-xcover5 {
    right: 0;
    top: 50px;
  }

  #homeCatalog.catalog-list {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }

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

  .device-insights-grid {
    grid-template-columns: 1fr;
  }

  .hero-stock h2 {
    font-size: 1rem;
  }

  .core-canvas {
    min-height: 340px;
  }

  .hero-side-note {
    position: static;
    margin-top: 10px;
  }

  .catalog-buy {
    justify-items: start;
  }

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

  .sell-box-inline {
    grid-template-columns: 1fr;
  }

  .engine-layout {
    grid-template-columns: 1fr;
  }

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

  .engine-flow-cards .flow-card::after {
    display: none;
  }

  .faq-highlight {
    min-height: 0;
    padding: 28px 20px;
  }

  .compare-duel {
    grid-template-columns: 1fr;
  }

  .compare-center-icon {
    display: none;
  }

  .compare-metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .device-grid,
  .model-section.is-expanded .device-grid,
  .accessories-device-grid.is-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .metrics-inline,
  .engine-steps,
  .benefit-strip,
  .trust-grid,
  .trust-inline,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-trust-pills {
    gap: 6px;
  }

  .metrics-inline {
    display: grid;
  }

  .metrics-inline > div::after {
    display: none;
  }

  .engine-steps::before {
    display: none;
  }

  .process-header h2 {
    max-width: none;
  }

  .contact-prompt {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .metrics-inline,
  .engine-steps,
  .benefit-strip,
  .trust-grid,
  .trust-inline,
  .contact-cards,
  .footer-grid,
  .check-grid,
  .component-row,
  .process-steps-grid,
  .device-insights-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-pills li {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .footer-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-toggle [data-i18n="nav.cart"] {
    display: none;
  }

  .hero-phone-stack {
    height: 250px;
  }

  .hero-drop-visual {
    min-height: 282px;
    padding: 14px;
  }

  .drop-phone-stack {
    height: 236px;
    margin-bottom: 72px;
  }

  .drop-phone-card {
    width: 62%;
    min-width: 0;
    padding: 8px;
  }

  .drop-phone-card.is-xcover6 {
    left: 0;
    top: 54px;
  }

  .drop-phone-card.is-xcover7 {
    left: 19%;
    top: 6px;
  }

  .drop-phone-card.is-xcover5 {
    right: 0;
    top: 58px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .engine-flow-cards {
    grid-template-columns: 1fr;
  }

  .faq-highlight .btn {
    width: 100%;
    min-width: 0;
  }

  .device-actions {
    grid-template-columns: 1fr;
  }

  .upsell-carousel {
    grid-template-columns: 1fr;
  }

  .upsell-nav {
    display: none;
  }

  .upsell-track {
    overflow: visible;
  }

  .upsell-list {
    grid-auto-flow: row;
    grid-auto-columns: minmax(0, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .upsell-item {
    grid-template-columns: 1fr;
  }

  .upsell-item-buy {
    justify-items: start;
  }

  .upsell-item-media,
  .upsell-bundle-media {
    width: 100%;
    height: 120px;
  }

  .upsell-bundle-head {
    grid-template-columns: 1fr;
  }

  .upsell-bundle-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .drop-phone-card img {
    height: 132px;
  }

  .drop-meta-card {
    right: 10px;
    bottom: 10px;
    min-width: 170px;
  }

  .sell-phone-3d {
    --phone-w: 106px;
    --phone-h: 194px;
    --phone-d: 14px;
  }

  .sell-phone-stage {
    min-height: 218px;
  }

  #homeCatalog.catalog-list {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
  }

  .home-catalog-foot .btn {
    width: 100%;
    max-width: 320px;
  }

  .process-next {
    flex-direction: column;
    align-items: flex-start;
  }

  .model-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sell-steps-inline {
    grid-template-columns: 1fr;
  }

  .hero-price-chip {
    left: 2px;
    top: 6px;
  }

  .hero-float-card {
    right: 2px;
    bottom: 6px;
  }

  .footer-legal {
    margin-top: 12px;
  }

  .core-canvas {
    min-height: 300px;
  }

  .core-score-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 160px;
  }

  .process-step-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-step-card span {
    width: max-content;
  }

  .compare-device-preview {
    min-height: 0;
  }

  .compare-preview-media {
    min-height: 120px;
  }

  .device-grid,
  .model-section.is-expanded .device-grid,
  .accessories-device-grid.is-expanded {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
  }

.whatsapp-float span {
  display: none;
}
}

/* Theme cleanup: remove remaining blue accents and reduce phone image scale */
.btn-primary {
  background: linear-gradient(135deg, #2a7b56 0%, #3e966d 100%);
  border-color: #255e42;
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(37, 100, 69, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #236948 0%, #327f5a 100%);
  border-color: #1f5339;
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(37, 100, 69, 0.38),
    0 0 0 6px rgba(45, 122, 88, 0.14);
}

.btn-hero {
  background: linear-gradient(135deg, #2d7a58 0%, #4ca877 100%);
  border-color: #266446;
  box-shadow:
    0 20px 36px rgba(20, 68, 46, 0.32),
    0 0 0 1px rgba(38, 100, 71, 0.3);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #256847 0%, #3e8f66 100%);
  border-color: #1f553a;
  box-shadow:
    0 24px 44px rgba(20, 68, 46, 0.38),
    0 0 0 1px rgba(38, 100, 71, 0.36),
    0 0 0 6px rgba(61, 140, 100, 0.16);
}

.btn-ghost {
  border-color: #a8c0b2;
  background: rgba(255, 255, 255, 0.74);
  color: #173628;
}

.btn-ghost:hover {
  background: #1f5c3f;
  border-color: #1f5c3f;
  color: #f7fcf8;
}

.language-select select {
  border-color: #aec2b5;
  box-shadow: 0 12px 22px rgba(20, 59, 41, 0.14);
}

.lang-icon-btn {
  color: #24513b;
}

.cart-toggle.icon-cart .cart-icon svg {
  color: #24513b;
}

.hero-drop-visual {
  border-color: #b6c9bd;
  background: #d9e6de;
}

.drop-phone-card {
  border-color: #abc0b3;
  background: #ebf4ee;
}

.core-score-line span,
.moment-bars span {
  color: #1f4732;
}

.moment-bars i,
.battery-fill {
  background: linear-gradient(90deg, var(--accent), #52a57b);
}

.catalog-row,
.device-card,
.home-model-card,
.engine-steps article,
.trust-grid article,
.faq-grid,
.sell-form,
.compare-device-pane,
.compare-metric-card,
.device-info-card {
  border-color: #b8cabd;
}

.catalog-list::-webkit-scrollbar-thumb,
.device-grid::-webkit-scrollbar-thumb {
  background: #afc2b5;
}

.catalog-visual,
.device-visual,
.product-photo {
  border-color: #c3d2c9;
  background: #e4ede7;
  color: #1e3227;
}

.catalog-price strong,
.compare-device-preview strong {
  color: #184430;
}

.engine-room h2,
.compare-device-preview h3,
.device-info-card h2 {
  color: #142e21;
}

.engine-steps article::before {
  background: #3a8a62;
  box-shadow: 0 0 0 4px rgba(58, 138, 98, 0.18);
}

.sell-hero-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(57, 126, 92, 0.2), transparent 42%),
    radial-gradient(circle at 80% 84%, rgba(39, 105, 75, 0.16), transparent 42%),
    linear-gradient(150deg, #d5e3da 0%, #c6d8cb 55%, #d7e6dc 100%);
  border-top-color: #b6c8bc;
  border-bottom-color: #b6c8bc;
}

.sell-box {
  border-color: #88a995;
  background: linear-gradient(165deg, #24513a 0%, #1e4431 54%, #183726 100%);
}

.sell-box h3 {
  color: #f3faf6;
}

.sell-box p {
  color: #d9e9df;
}

.sell-phone-stage {
  border-color: rgba(133, 168, 145, 0.6);
  background: #d7e5dc;
}

.sell-3d-label {
  color: #22513b;
}

.sell-phone-3d .p3d.back {
  background: linear-gradient(160deg, #d3dbd6 0%, #a9b8af 100%);
}

.sell-phone-3d .p3d.front {
  background: linear-gradient(160deg, #e7ede8 0%, #becbc2 100%);
}

.sell-phone-3d .p3d.side-left,
.sell-phone-3d .p3d.side-right,
.sell-phone-3d .p3d.side-top,
.sell-phone-3d .p3d.side-bottom {
  background: linear-gradient(180deg, #5f6d64 0%, #4f5b54 100%);
}

.sell-phone-3d .p3d.camera {
  background: linear-gradient(160deg, #ccd8d1 0%, #9fafa5 100%);
}

.sell-phone-3d .p3d.camera::before,
.sell-phone-3d .p3d.camera::after {
  background: radial-gradient(circle at 40% 35%, #738478, #1f2937);
}

.sell-steps-inline article {
  border-color: #afc4b8;
  background: #e5efe9;
}

.sell-steps-inline strong {
  background: #245d42;
}

.sell-steps-inline span {
  color: #143425;
}

.check-grid label {
  border-color: #b7cabd;
  background: linear-gradient(180deg, #ecf4ee 0%, #dde9e2 100%);
  color: #1f4130;
}

.trust-inline li {
  border-color: #b8cabd;
  color: #1e3e2f;
}

.premium-list li {
  border-color: #b8cabd;
  background: #e7f0ea;
  color: #13291f;
}

.product-thumb {
  border-color: #b8cabd;
}

.product-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(45, 122, 88, 0.18);
}

.battery-block {
  border-color: #b6c8bc;
  background: linear-gradient(180deg, #e8f1eb 0%, #d9e6de 100%);
}

.component-row span {
  border-color: #b8cabd;
  color: #243a2e;
}

.compare-device-pane {
  background: #dce8df;
}

.compare-device-pane label {
  color: #1a412f;
}

.compare-device-pane select {
  border-color: #b6c8bc;
  background: #f7fcf8;
}

.compare-device-preview {
  border-color: #bfd0c4;
  background: #eaf3ed;
}

.compare-preview-media {
  border-color: #c8d8cd;
}

.compare-center-icon {
  border-color: #b7c9be;
  background: #ecf4ef;
  color: #1d4a35;
}

.compare-metric-card h3 {
  color: #1a4834;
}

.compare-metric-values span {
  border-color: #c1d3c7;
  background: #f8fcf9;
}

.catalog-visual,
.device-visual {
  min-height: 148px;
}

.home-model-card .catalog-visual {
  min-height: 124px;
}

.catalog-visual img,
.device-visual img {
  width: 72%;
  height: auto;
  max-height: 128px;
  margin: 0 auto;
}

.product-photo img {
  width: 78%;
  height: auto;
  max-height: 260px;
  margin: 0 auto;
}

.product-thumb img {
  width: 84%;
  height: auto;
  max-height: 68px;
  margin: 0 auto;
}

.compare-preview-media img {
  width: 78%;
  height: auto;
  max-height: 108px;
}

.drop-phone-card img {
  width: 84%;
  height: clamp(124px, 16vw, 188px);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .catalog-visual img,
  .device-visual img {
    width: 78%;
    max-height: 116px;
  }

  .product-photo img {
    width: 82%;
    max-height: 220px;
  }
}

/* Products page cleanup */
body[data-page="products"] .section {
  background: #fff;
  border-top-color: #dde6df;
  border-bottom-color: #dde6df;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(17, 24, 39, 0.03);
}

body[data-page="products"] .section::before {
  background: rgba(66, 88, 72, 0.22);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

body[data-page="products"] .products-hero-compact {
  padding-top: 14px;
  padding-bottom: 14px;
}

body[data-page="products"] .products-hero-compact::after {
  background:
    linear-gradient(130deg, rgba(245, 250, 247, 0.95) 0%, rgba(235, 246, 239, 0.86) 52%, rgba(227, 240, 232, 0.82) 100%),
    var(--hero-image) center/cover no-repeat;
}

body[data-page="products"] .products-hero-compact .page-hero-content {
  min-height: 96px;
  gap: 4px;
}

body[data-page="products"] .products-hero-compact h1 {
  font-size: clamp(1.34rem, 2.1vw, 1.88rem);
}

body[data-page="products"] .products-hero-compact .hero-sub {
  max-width: 62ch;
  font-size: 0.95rem;
}

body[data-page="products"] .products-sections {
  gap: 24px;
}

body[data-page="products"] .model-section {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body[data-page="products"] .model-section + .model-section {
  padding-top: 10px;
}

body[data-page="products"] .model-section-head {
  margin-bottom: 12px;
  display: grid;
  gap: 3px;
  justify-content: start;
}

body[data-page="products"] .model-section-head h2 {
  font-size: clamp(1.1rem, 2.1vw, 1.48rem);
  color: #111827;
}

body[data-page="products"] .model-section-head p {
  color: #111827;
  font-size: 0.88rem;
  font-weight: 680;
}

body[data-page="products"] .device-grid,
body[data-page="products"] .model-section.is-expanded .device-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="products"] .device-card {
  border: 1px solid #d8e4dc;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 10px;
}

body[data-page="products"] .device-card:hover {
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

body[data-page="products"] .device-visual {
  min-height: 118px;
  border-color: #e2ece5;
  background: #fff;
}

body[data-page="products"] .device-visual img {
  width: 62%;
  max-height: 108px;
  object-fit: contain;
}

body[data-page="products"] .device-photo-strip img {
  border-color: #dbe6de;
  background: #fff;
  height: 32px;
}

body[data-page="products"] .device-card h3 {
  margin: 8px 0 5px;
  font-size: 0.95rem;
  color: #111827;
}

body[data-page="products"] .catalog-price strong,
body[data-page="products"] .catalog-price span,
body[data-page="products"] .device-card p {
  color: #111827;
}

body[data-page="products"] .device-actions .btn {
  min-height: 36px;
  font-size: 0.79rem;
}

body[data-page="products"] .section-expand {
  margin-top: 10px;
  justify-content: flex-start;
}

body[data-page="products"] .section-more-btn {
  min-width: 152px;
}

@media (max-width: 1200px) {
  body[data-page="products"] .device-grid,
  body[data-page="products"] .model-section.is-expanded .device-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-page="products"] .device-grid,
  body[data-page="products"] .model-section.is-expanded .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="products"] .products-hero-compact .page-hero-content {
    min-height: 84px;
  }
}

@media (max-width: 620px) {
  body[data-page="products"] .device-grid,
  body[data-page="products"] .model-section.is-expanded .device-grid {
    grid-template-columns: 1fr;
  }
}

/* Final polish: logo, white cards, compact flow, matching footer */
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #2f6f56;
  background: #f8fcf9;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  background: url("assets/brand/phone-recovery-mark.svg") center/contain no-repeat;
}

.hero-drop-visual,
.drop-phone-card,
.home-model-card,
.catalog-row,
.device-card,
.accessory-device-card,
.catalog-visual,
.device-visual,
.product-photo,
.device-photo-strip img {
  background: #fff;
}

.hero-drop-visual,
.drop-phone-card,
.home-model-card,
.catalog-row,
.device-card,
.accessory-device-card {
  border-color: #d2e1d7;
}

.catalog-visual,
.device-visual,
.product-photo,
.device-photo-strip img {
  border-color: #dde8e1;
}

.drop-phone-card figcaption {
  color: #193d2d;
}

.flow-run-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(89, 152, 112, 0.18), transparent 42%),
    radial-gradient(circle at 88% 76%, rgba(69, 132, 92, 0.14), transparent 44%),
    linear-gradient(155deg, #eaf2ed 0%, #e1ebe4 55%, #edf4ef 100%);
  border-top-color: #c8d9cd;
  border-bottom-color: #c8d9cd;
  padding-top: 16px;
  padding-bottom: 16px;
}

.flow-runline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.flow-runline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(50% - 1px);
  height: 2px;
  background: linear-gradient(90deg, #7fa892 0%, #2f6d53 50%, #7fa892 100%);
  opacity: 0.9;
  z-index: 0;
}

.run-step {
  position: relative;
  z-index: 1;
  min-height: 88px;
  border: 1px solid #c7d9cd;
  border-radius: 14px;
  background: #fff;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.run-step span {
  min-width: 34px;
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid #2e6a50;
  background: #2a6d4b;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 790;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.run-step h3 {
  margin: 0;
  font-size: 0.98rem;
  color: #173c2c;
  letter-spacing: 0.01em;
}

.device-info-card,
.premium-list li,
.component-row span,
.upsell-block,
.upsell-item,
.upsell-bundle,
.upsell-item-media,
.upsell-bundle-media,
.upsell-nav,
.upsell-badge,
.cert-pill {
  background: #fff;
}

.device-info-card,
.premium-list li,
.component-row span,
.upsell-block,
.upsell-item,
.upsell-bundle,
.upsell-item-media,
.upsell-bundle-media,
.upsell-nav,
.cert-pill {
  border-color: #d4e2d9;
}

.upsell-title,
.upsell-item-copy strong,
.upsell-bundle h3,
.device-info-card h2,
.component-row span strong {
  color: #163c2c;
}

.upsell-badge,
.cert-pill {
  color: #1b4a36;
}

.site-footer,
body[data-page="accessories"] .site-footer {
  border-top-color: rgba(145, 182, 163, 0.28);
  background:
    radial-gradient(circle at 84% 18%, rgba(95, 164, 125, 0.18), rgba(95, 164, 125, 0.03) 36%, transparent 58%),
    linear-gradient(160deg, #112d23 0%, #163729 52%, #10291f 100%);
  color: #d6e5dc;
}

.footer-topbar,
body[data-page="accessories"] .footer-topbar {
  border-bottom-color: rgba(145, 182, 163, 0.24);
}

.footer-brand h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-brand h3::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("assets/brand/phone-recovery-mark.svg") center/contain no-repeat;
}

.footer-topbar p,
.footer-col h3,
.footer-col h4,
.footer-social span,
.footer-social a,
.footer-col p,
.footer-col a,
.footer-legal,
.pay-badges span,
body[data-page="accessories"] .footer-topbar p,
body[data-page="accessories"] .footer-col h3,
body[data-page="accessories"] .footer-col h4,
body[data-page="accessories"] .footer-social span,
body[data-page="accessories"] .footer-social a,
body[data-page="accessories"] .footer-col p,
body[data-page="accessories"] .footer-col a,
body[data-page="accessories"] .footer-legal,
body[data-page="accessories"] .pay-badges span {
  color: #d8e7de;
}

.footer-social a,
.pay-badges span,
body[data-page="accessories"] .footer-social a,
body[data-page="accessories"] .pay-badges span {
  border-color: rgba(145, 182, 163, 0.36);
  background: rgba(17, 45, 35, 0.45);
}

.footer-col a:hover,
body[data-page="accessories"] .footer-col a:hover {
  color: #ffffff;
}

.footer-legal,
body[data-page="accessories"] .footer-legal {
  border-top-color: rgba(145, 182, 163, 0.2);
}

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

  .flow-runline::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .flow-runline {
    grid-template-columns: 1fr;
  }
}
