@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --orange: #ff5100;
  --orange-soft: #fff0e9;
  --green: #087f5b;
  --green-dark: #056548;
  --green-soft: #e8f7f1;
  --black: #101010;
  --muted: #6d6d6d;
  --line: #e5e5e5;
  --off-white: #f7f8f9;
  --font-primary: "Poppins", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: white;
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > * {
  padding-inline: 12px;
}

.col-6 { width: 50%; }
.col-lg-2 { width: 16.666%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.g-3 { row-gap: 16px; }
.g-4 { row-gap: 24px; }
.g-5 { row-gap: 40px; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }

h1,
h2,
h3,
.brand-logo,
.desktop-nav,
.btn-recell,
.btn-recell-outline,
.btn-outline-dark-custom {
  font-family: var(--font-primary);
  letter-spacing: -0.035em;
  font-weight: 800;
}

.site-header {
  height: 88px;
  background: #fff;
  border-bottom: 1px solid #ededed;
}

.recell-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 29px;
  font-weight: 900;
}

.brand-logo span {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  gap: 39px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.desktop-nav a,
.location-link,
.site-footer a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.location-link:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

.location-link i {
  color: var(--orange);
  font-size: 21px;
  vertical-align: -2px;
  margin-right: 4px;
}

.btn-outline-dark-custom,
.btn-recell-outline {
  display: inline-flex;
  min-height: 48px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: 0.2s ease;
}

.btn-outline-dark-custom:hover,
.btn-recell-outline:hover {
  color: white;
  background: #111;
}

.mobile-menu {
  display: none;
}

.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  color: var(--green-dark);
  background: linear-gradient(90deg, var(--green-soft), var(--orange-soft), var(--green-soft));
  font-size: 14px;
  font-weight: 900;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 86px;
  background:
    radial-gradient(circle at 92% 9%, rgba(8, 127, 91, 0.12), transparent 24%),
    radial-gradient(circle at 8% 40%, rgba(255, 81, 0, 0.09), transparent 24%),
    #fff;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  width: 190px;
  height: 190px;
  top: -105px;
  right: 8%;
  border: 28px solid rgba(255, 81, 0, 0.08);
}

.hero-section::after {
  width: 120px;
  height: 120px;
  bottom: 28%;
  left: -72px;
  background: rgba(8, 127, 91, 0.08);
}

.hero-row {
  position: relative;
  z-index: 1;
  min-height: 360px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 29px;
  padding: 0 13px;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 28px 0 20px;
  max-width: 670px;
  font-size: clamp(46px, 5vw, 66px);
  line-height: 1.03;
  text-wrap: balance;
  animation: heroCopyIn 0.75s ease both;
}

.hero-accent {
  color: var(--green);
  background: linear-gradient(90deg, var(--green), #12a879 62%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.btn-recell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 0 31px;
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff7130);
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(255, 81, 0, 0.22);
  transition: 0.25s ease;
}

.btn-recell:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 13px 28px rgba(8, 127, 91, 0.25);
  transform: translateY(-3px);
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 25px;
  box-shadow:
    0 22px 55px rgba(8, 127, 91, 0.16),
    12px 12px 0 var(--green-soft),
    -8px -8px 0 var(--orange-soft);
  animation: heroImageIn 0.85s ease both, heroFloat 5s ease-in-out 0.85s infinite;
}

.service-cards {
  margin-top: 56px;
}

.service-card {
  min-height: 174px;
  padding: 25px 26px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
  background: rgba(255, 255, 255, 0.94);
  transition: 0.25s ease;
}

.service-card.active {
  border: 2px solid var(--orange);
  background: linear-gradient(145deg, #fff, var(--orange-soft));
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 16px 34px rgba(8, 127, 91, 0.13);
  transform: translateY(-6px);
}

.service-card:hover .icon-circle {
  color: #fff;
  background: var(--green);
  transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 27px;
}

.service-card ul {
  margin: 0;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.service-card li::marker {
  color: #20bf84;
}

.service-card .blue-bullets li::marker {
  color: #4c86ff;
}

.service-card .orange-bullets li::marker {
  color: var(--orange);
}

.icon-circle,
.benefit-strip span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 22px;
  transition: 0.25s ease;
}

.trending-block {
  margin-top: 53px;
}

.small-title {
  margin: 0 0 18px;
  font-size: 18px;
}

.trending-card {
  height: 92px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: 0.25s ease;
}

.trending-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 81, 0, 0.12);
  transform: translateY(-4px);
}

.trending-card:hover img {
  transform: scale(1.06);
}

.trending-card img {
  width: 69px;
  height: 69px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.25s ease;
}

.grade-line {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.grade-line span {
  margin-right: 5px;
  padding: 4px 8px;
  color: #20a779;
  background: #c8ffea;
  border-radius: 4px;
  font-weight: 800;
}

.trending-card h3 {
  margin: 7px 0 2px;
  font-size: 16px;
}

.trending-card strong {
  font-size: 17px;
}

.trending-card del {
  margin-left: 4px;
  color: var(--muted);
  font-size: 11px;
}

.brand-section {
  padding: 61px 0 58px;
  background: var(--off-white);
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title-row h2 {
  margin: 0;
  font-size: 26px;
}

.section-title-row > a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.brand-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.brand-grid a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: 0.2s ease;
}

.brand-name {
  color: #101010;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  min-width: 52px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-family: Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
}

.apple-mark {
  font-size: 34px;
}

.samsung-mark {
  min-width: 70px;
  height: 28px;
  padding: 0 7px;
  border: 2px solid #1428a0;
  border-radius: 50%;
  color: #1428a0;
  font-size: 10px;
  font-style: italic;
  letter-spacing: -0.5px;
  transform: rotate(-4deg);
}

.oneplus-mark {
  min-width: 34px;
  width: 34px;
  height: 34px;
  border: 3px solid #f5010c;
  color: #f5010c;
  font-size: 21px;
  letter-spacing: -3px;
}

.google-mark {
  font-size: 32px;
  font-weight: 800;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 66%, #ea4335 0 83%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.xiaomi-mark {
  min-width: 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ff6900;
  color: #fff;
  font-size: 15px;
  text-transform: lowercase;
}

.vivo-mark {
  color: #415fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: lowercase;
}

.brand-grid a:hover {
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.steps-section,
.plans-section,
.faq-section {
  padding: 98px 0;
}

.section-heading.centered {
  margin-bottom: 57px;
  text-align: center;
}

.section-heading h2,
.products-title h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4vw, 47px);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.step-card {
  min-height: 252px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--orange);
  font-size: 26px;
}

.step-number {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 17px;
}

.step-card h3 {
  margin: 27px 0 11px;
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.repair-section {
  padding: 96px 0;
  color: white;
  /* background: #111; */
  text-align: center;
}

.eyebrow.solid {
  color: white;
  background: var(--orange);
}

.repair-section .section-heading h2 {
  margin-top: 27px;
}

.repair-features {
  text-align: left;
}

.repair-features article {
  min-height: 146px;
  padding: 29px 31px;
  background: #1b1b1b;
  border: 1px solid #343434;
  border-radius: 20px;
}

.repair-features h3 {
  margin: 0 0 13px;
  font-size: 23px;
}

.repair-features h3 i {
  color: #9c9c9c;
}

.repair-features p {
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

.repair-cta {
  margin-top: 50px;
}

.products-section {
  padding: 96px 0;
}

.products-title {
  margin-bottom: 46px;
  align-items: flex-end;
}

.products-title h2 {
  margin-bottom: 0;
}

.products-title .btn-recell-outline {
  color: var(--black);
}

.products-title .btn-recell-outline:hover {
  color: white;
}

.product-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.product-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.product-grade {
  display: inline-block;
  padding: 5px 9px;
  color: #0aa97b;
  background: #c8ffea;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
}

.product-grade.blue {
  color: #3e7ee7;
  background: #d8e7ff;
}

.product-body h3 {
  margin: 11px 0 25px;
  font-size: 21px;
}

.product-body del {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.price-row strong {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 26px;
}

.price-row a {
  padding: 11px 15px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

.benefit-strip {
  padding: 43px 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.benefit-strip .container > div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.plans-section {
  padding-bottom: 105px;
}

.plan-card {
  position: relative;
  height: 100%;
  min-height: 530px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.plan-card h3 {
  margin: 0 0 18px;
  font-size: 23px;
}

.plan-card > p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.plan-price {
  margin: 32px 0 29px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.plan-price small {
  margin-left: 5px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.plan-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.plan-card ul {
  margin: 22px 0 27px;
  padding-left: 27px;
  line-height: 2.35;
  font-size: 14px;
}

.plan-card li::marker {
  content: "✓  ";
}

.plan-card > a {
  margin-top: auto;
  min-height: 45px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--black);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.plan-card.featured {
  color: white;
  background: #1b1b1b;
  border: 2px solid var(--orange);
}

.plan-card.featured > p,
.plan-card.featured .plan-price small {
  color: #bfbfbf;
}

.plan-card.featured hr {
  border-color: #3a3a3a;
}

.plan-card.featured > a {
  background: var(--orange);
}

.recommended {
  position: absolute;
  top: 34px;
  right: 34px;
  padding: 7px 12px;
  background: var(--orange);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
}

.stories-section {
  padding: 98px 0 105px;
  background: var(--off-white);
}

.story-card {
  height: 100%;
  min-height: 278px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.stars {
  margin-bottom: 27px;
  color: #f19c00;
  letter-spacing: 3px;
}

.story-card > p {
  margin: 0 0 27px;
  font-size: 14px;
  line-height: 1.65;
}

.person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.person img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.person strong,
.person span {
  display: block;
  font-size: 13px;
}

.person span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.app-section {
  padding: 77px 0;
  color: white;
  background:
    linear-gradient(rgba(8, 9, 11, 0.78), rgba(8, 9, 11, 0.84)),
    url("../images/app-grid.jpg") center bottom / cover no-repeat;
  text-align: center;
}

.app-section h2 {
  margin: 0 0 18px;
  font-size: 39px;
  line-height: 1.1;
}

.app-section p {
  margin: 0;
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.45;
}

.app-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.app-buttons a {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  background: var(--orange);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.app-buttons .ios {
  color: var(--black);
  background: white;
}

.faq-section {
  padding-bottom: 110px;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-list article {
  margin-top: 15px;
  padding: 25px 24px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-list h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  padding: 66px 0 27px;
  color: #b7b7b7;
  background: #121212;
  font-size: 14px;
}

.brand-logo.light {
  color: white;
}

.site-footer h3 {
  margin: 2px 0 21px;
  color: white;
  font-size: 16px;
  letter-spacing: 0;
}

.site-footer p {
  max-width: 370px;
  margin: 22px 0 0;
  line-height: 1.75;
}

.site-footer .col-lg-2 a,
.site-footer .col-lg-4:nth-child(4) a {
  display: block;
  margin-bottom: 20px;
}

.site-footer .col-lg-4:nth-child(4) i {
  margin-right: 7px;
  color: var(--orange);
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #707070;
  border-top: 1px solid #323232;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 30px;
}

/* Service category sections */
.catalog-section {
  padding: 82px 0;
}

.services-catalog {
  background: #fff;
  border-top: 1px solid var(--line);
}

.sell-catalog {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(32px, 3.5vw, 43px);
  line-height: 1.08;
}

.catalog-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

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

.catalog-card {
  min-width: 0;
  padding: 8px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8eeee;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.035);
  text-align: center;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.catalog-card:hover {
  color: var(--black);
  border-color: var(--orange);
  box-shadow: 0 13px 30px rgba(255, 81, 0, 0.12);
  transform: translateY(-4px);
}

.catalog-card:nth-child(even):hover {
  border-color: var(--green);
  box-shadow: 0 13px 30px rgba(8, 127, 91, 0.14);
}

.catalog-card:hover .catalog-visual {
  background: linear-gradient(145deg, var(--green-soft), var(--orange-soft));
}

.catalog-visual {
  width: 100%;
  height: 106px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #eaf7f5;
  border: 1px solid #e2f0ee;
  border-radius: 13px;
}

.catalog-card strong {
  min-height: 35px;
  display: grid;
  place-items: center;
  padding: 0 2px;
  font-size: 13px;
  line-height: 1.3;
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

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

@media (max-width: 1199px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .col-lg-2,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7 {
    width: 100%;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    list-style: none;
    border: 2px solid #111;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 20;
    top: 52px;
    right: 0;
    width: 240px;
    padding: 15px;
    display: grid;
    background: white;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.14);
  }

  .mobile-menu nav a {
    padding: 12px 10px;
    font-weight: 800;
  }

  .hero-copy {
    margin-bottom: 40px;
  }

  .hero-image {
    max-width: 650px;
  }

  .service-cards > div,
  .steps-section .row > div,
  .repair-features > div,
  .products-section .row > div,
  .plans-section .row > div,
  .stories-section .row > div {
    margin-bottom: 24px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-card {
    min-height: 500px;
  }

  .site-footer .col-lg-4 {
    margin-bottom: 20px;
  }

  .catalog-section {
    padding: 68px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1200px);
  }

  .site-header {
    height: 72px;
  }

  .brand-logo {
    font-size: 25px;
  }

  .trust-strip {
    padding: 9px 18px;
    text-align: center;
    font-size: 10px;
    line-height: 1.4;
  }

  .hero-section {
    padding: 52px 0 60px;
  }

  .hero-copy h1 {
    margin-top: 23px;
    font-size: 39px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-recell,
  .btn-recell-outline {
    width: 100%;
  }

  .service-cards {
    margin-top: 42px;
  }

  .trending-card {
    height: auto;
    min-height: 92px;
  }

  .brand-section,
  .steps-section,
  .products-section,
  .plans-section,
  .stories-section,
  .faq-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .section-title-row {
    align-items: flex-start;
    gap: 20px;
  }

  .section-title-row h2 {
    font-size: 24px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-grid a {
    min-height: 100px;
  }

  .section-heading h2,
  .products-title h2 {
    font-size: 34px;
  }

  .section-heading.centered {
    margin-bottom: 38px;
  }

  .desktop-only {
    display: none;
  }

  .repair-section {
    padding: 65px 0;
  }

  .repair-features h3 {
    font-size: 19px;
  }

  .products-title {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card > img {
    height: 220px;
  }

  .benefit-strip .container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plan-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .recommended {
    top: 28px;
    right: 24px;
  }

  .app-section h2 {
    font-size: 31px;
  }

  .app-buttons {
    flex-direction: column;
  }

  .app-buttons a {
    justify-content: center;
  }

  .col-6 {
    width: 50%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    line-height: 1.6;
  }

  .catalog-heading {
    margin-bottom: 26px;
    align-items: flex-start;
  }

  .catalog-heading > a {
    display: none;
  }

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

  .catalog-card {
    padding: 7px 7px 12px;
    border-radius: 15px;
  }

  .catalog-visual {
    height: 98px;
  }

  .catalog-card strong {
    min-height: 34px;
    font-size: 12px;
  }
}
