:root {
  --ink: #17212b;
  --body: #4f5f6d;
  --muted: #7b8995;
  --line: #dce4e9;
  --paper: #f5f8f8;
  --white: #ffffff;
  --teal: #007d7c;
  --teal-deep: #005f63;
  --mint: #dff3ee;
  --amber: #f2b84b;
  --coral: #df5b45;
  --navy: #142433;
  --shadow: 0 24px 60px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 86px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.58;
}

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

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

.top-strip {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.top-strip a {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 233, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 206px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(0, 125, 124, 0.22);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344555;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transition: 180ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 125, 124, 0.22);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.button.sell {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(242, 184, 75, 0.22);
}

.button.secondary-dark {
  color: var(--white);
  background: var(--navy);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 82px) 132px;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 24, 35, 0.92) 0%, rgba(12, 24, 35, 0.74) 45%, rgba(12, 24, 35, 0.16) 100%),
    linear-gradient(180deg, rgba(12, 24, 35, 0.08), rgba(12, 24, 35, 0.56));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(242, 184, 75, 0.24);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.devices .eyebrow,
.quote .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

.hero h1 span {
  display: block;
}

.hero-title-support {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-title-support span,
.hero-title-support a {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.hero-copy-mobile {
  display: none;
}

.hero-service-range {
  display: grid;
  max-width: 690px;
  gap: 10px;
  margin-top: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-service-range p {
  margin: 0;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-service-range div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-service-range span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.service-summary {
  position: absolute;
  right: clamp(20px, 6vw, 82px);
  bottom: 0;
  left: clamp(20px, 6vw, 82px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
}

.service-summary div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-summary div:last-child {
  border-right: 0;
}

.service-summary strong,
.service-summary span {
  display: block;
}

.service-summary strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.service-summary span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.91rem;
}

.section,
.devices,
.quote,
.contact {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 82px);
}

.section-kicker,
.section-heading {
  max-width: 760px;
}

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

.section-heading.compact {
  max-width: 640px;
}

.section h2,
.devices h2,
.quote h2,
.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.section p,
.devices p,
.contact p {
  color: var(--body);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 7vw, 92px);
  background: var(--white);
}

.intro-copy {
  font-size: 1.05rem;
}

.intro-copy p {
  margin-bottom: 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 82px) clamp(68px, 9vw, 118px);
  background: linear-gradient(var(--white) 0 42%, var(--paper) 42% 100%);
}

.proof-grid article {
  min-height: 250px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(23, 33, 43, 0.07);
}

.proof-grid article:first-child {
  border-radius: 8px 0 0 8px;
}

.proof-grid article:last-child {
  border-radius: 0 8px 8px 0;
}

.proof-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 800;
}

.proof-grid h3,
.repair-list h3,
.featured-repair h3,
.process-track h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.proof-grid p,
.repair-list p,
.featured-repair p,
.process-track p,
.retail-copy p {
  margin-bottom: 0;
  color: var(--body);
}

.repairs {
  background: var(--paper);
}

.repair-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: 22px;
}

.featured-repair {
  min-height: 100%;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(0, 95, 99, 0.96), rgba(20, 36, 51, 0.96)),
    var(--teal-deep);
  border-radius: 8px;
}

.featured-repair .eyebrow {
  color: var(--amber);
}

.featured-repair h3 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.featured-repair p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--white);
  font-weight: 800;
}

.repair-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.repair-list article,
.review-grid figure {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.055);
}

.specialist-repairs {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 33, 43, 0.07);
}

.specialist-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  margin-bottom: 24px;
}

.specialist-heading h3 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  line-height: 1.05;
}

.specialist-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--body);
}

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

.specialist-card {
  overflow: hidden;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.specialist-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.specialist-card div {
  padding: 20px;
}

.specialist-card h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.specialist-card p {
  margin: 0;
  color: var(--body);
  font-size: 0.92rem;
}

.process {
  background: var(--white);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-track article {
  padding: 30px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-track span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.retail {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background: #eef6f3;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.category-grid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  color: #263745;
  background: var(--white);
  border: 1px solid #cfe3de;
  border-radius: 8px;
  font-weight: 700;
}

.devices {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 36, 51, 0.97), rgba(0, 95, 99, 0.95)),
    var(--navy);
}

.devices p {
  color: rgba(255, 255, 255, 0.74);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.device-grid article,
.device-card {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.device-grid strong,
.device-grid span {
  display: block;
}

.device-grid strong {
  font-size: 1.1rem;
}

.device-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.buyback-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background: #f5f1e7;
}

.buyback-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.buyback-copy p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--body);
}

.buyback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buyback-content {
  display: grid;
  gap: 16px;
}

.buyback-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.buyback-steps article,
.buyback-form-card {
  background: var(--white);
  border: 1px solid #e1d8c4;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.055);
}

.buyback-steps article {
  padding: 22px;
}

.buyback-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  font-weight: 800;
}

.buyback-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.buyback-steps p {
  margin: 0;
  color: var(--body);
  font-size: 0.94rem;
}

.buyback-form-card {
  padding: 26px;
}

.buyback-form-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.15rem;
}

.buyback-form-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.buyback-form-card li {
  padding: 12px 14px;
  color: #263745;
  background: #fbf8ef;
  border: 1px solid #eadfca;
  border-radius: 8px;
  font-weight: 700;
}

.buyback-form-card p {
  margin: 0;
  color: var(--body);
}

.trade-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(340px, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background: var(--white);
}

.trade-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.trade-copy p {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--body);
}

.trade-content {
  display: grid;
  gap: 16px;
}

.trade-overview {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--navy);
  border-radius: 8px;
}

.trade-overview article {
  display: grid;
  grid-template-columns: minmax(90px, 0.34fr) 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trade-overview article:last-child {
  border-bottom: 0;
}

.trade-overview strong {
  color: var(--amber);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.trade-overview span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.trade-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trade-panel article {
  padding: 24px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trade-panel span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--teal);
  font-weight: 800;
}

.trade-panel strong,
.trade-panel p {
  display: block;
}

.trade-panel strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.trade-panel p {
  margin: 8px 0 0;
  color: var(--body);
}

.trade-note {
  padding: 22px;
  background: #fff7e8;
  border: 1px solid #f1d39a;
  border-radius: 8px;
}

.trade-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.trade-note p {
  margin: 0;
  color: var(--body);
}

.reviews {
  background: var(--white);
}

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

.review-grid figure {
  margin: 0;
}

.review-grid blockquote {
  margin: 0;
  color: #30404f;
  font-size: 1rem;
}

.review-grid figcaption {
  margin-top: 24px;
  color: var(--teal-deep);
  font-weight: 800;
}

.quote {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: var(--teal-deep);
}

.quote h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.6rem);
}

.quote-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.quote-card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.quote-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.quote-card p {
  margin-bottom: 22px;
  color: var(--body);
}

.site-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.site-form label {
  display: grid;
  gap: 7px;
  color: #314252;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-weight: 600;
}

.site-form textarea {
  min-height: 116px;
  resize: vertical;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 125, 124, 0.16);
}

.site-form button {
  width: 100%;
  cursor: pointer;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 246, 243, 0.98)),
    #eef6f3;
  border-top: 8px solid var(--amber);
}

.connect-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.connect-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--body);
}

.connect-highlight {
  position: relative;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(246, 181, 67, 0.72);
  border-left: 6px solid var(--amber);
  border-radius: 8px;
  background: #fff8e8;
  box-shadow: 0 18px 42px rgba(7, 33, 48, 0.08);
  font-weight: 700;
  color: var(--ink);
}

.social-grid {
  display: grid;
  gap: 14px;
}

.social-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid #cfe3de;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.08);
}

.social-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 10px 6px 6px;
  color: var(--teal-deep);
  background: #edf8f5;
  border: 1px solid #cfe3de;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.facebook-logo {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
}

.tiktok-logo {
  background: #111820;
  box-shadow:
    3px 0 0 rgba(37, 244, 238, 0.68),
    -3px 0 0 rgba(254, 44, 85, 0.68);
}

.social-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.25rem;
}

.social-card p {
  margin: 0 0 14px;
  color: var(--body);
}

.social-button {
  min-height: 42px;
  padding: 0 18px;
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.social-card img {
  width: 138px;
  height: 138px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1.05fr);
  gap: 22px;
  background: var(--paper);
}

.contact-details,
.location-panel {
  border-radius: 8px;
}

.contact-details {
  padding: clamp(30px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.055);
}

.contact-details h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.5rem);
}

.contact-details ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-details li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details li span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--teal-deep);
  font-weight: 800;
}

.location-panel {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 480px;
  background: #dfe8ea;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.055);
}

.location-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(205, 221, 220, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 33, 43, 0.16);
  backdrop-filter: blur(10px);
}

.map-pin {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}

.location-panel strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.location-panel a {
  display: inline-block;
  margin-top: 4px;
  color: var(--teal-deep);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.72);
  background: #101820;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  padding-bottom: 0;
  background:
    linear-gradient(135deg, rgba(20, 36, 51, 0.96), rgba(0, 95, 99, 0.92)),
    var(--navy);
}

.thank-you {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 32px;
  padding: clamp(24px, 6vw, 82px);
}

.thank-you .brand {
  color: var(--white);
}

.thank-you .brand small {
  color: rgba(255, 255, 255, 0.68);
}

.thank-you-card {
  max-width: 760px;
  padding: clamp(30px, 6vw, 62px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--body);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mobile-action-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.85fr 0.9fr;
  gap: 8px;
  max-width: 760px;
  padding: 8px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 228, 233, 0.95);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(23, 33, 43, 0.22);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 8px;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 7px;
  line-height: 1.05;
  text-align: center;
}

.mobile-action-bar a:nth-child(2) {
  color: var(--ink);
  background: var(--amber);
}

.mobile-action-bar a:nth-child(3) {
  color: var(--white);
  background: #1c6f8f;
  border: 1px solid rgba(28, 111, 143, 0.4);
}

.mobile-action-bar a:nth-child(4) {
  color: var(--ink);
  background: #edf5f4;
  border: 1px solid #cfe3de;
}

.mobile-action-bar span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.mobile-action-bar strong {
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .top-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    align-content: center;
    justify-self: end;
    gap: 6px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .menu-button span {
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

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

  .hero {
    min-height: 780px;
  }

  .service-summary,
  .proof-grid,
  .repair-list,
  .process-track,
  .category-grid,
  .device-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-summary {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 58px;
  }

  .service-summary div:nth-child(2) {
    border-right: 0;
  }

  .service-summary div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .repair-layout,
  .specialist-heading,
  .retail,
  .buyback-section,
  .trade-section,
  .connect-section,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .trade-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .top-strip {
    justify-content: center;
    gap: 12px;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .top-strip span:nth-child(2) {
    display: none;
  }

  .site-header {
    top: 0;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 18px 36px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 24, 35, 0.94), rgba(12, 24, 35, 0.64)),
      linear-gradient(90deg, rgba(12, 24, 35, 0.86), rgba(12, 24, 35, 0.2));
  }

  .hero-inner {
    max-width: none;
  }

  .hero-badge {
    min-height: 36px;
    margin-bottom: 16px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero h1 {
    max-width: 410px;
    margin-bottom: 16px;
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-title-support {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-title-support span,
  .hero-title-support a {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
  }

  .hero-copy {
    display: none;
  }

  .hero-copy-mobile {
    display: block;
    max-width: 380px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
  }

  .button,
  .quote-actions {
    width: 100%;
  }

  .quote-actions {
    flex-direction: column;
  }

  .hero-service-range {
    gap: 7px;
    margin-top: 22px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }

  .hero-service-range p {
    color: var(--teal-deep);
    font-size: 0.7rem;
  }

  .hero-service-range div {
    gap: 7px;
  }

  .hero-service-range span {
    padding: 7px 9px;
    color: #213140;
    background: #eef6f3;
    border-color: #cfe3de;
    font-size: 0.74rem;
  }

  .service-summary,
  .proof-grid,
  .repair-list,
  .process-track,
  .category-grid,
  .device-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-summary {
    margin-top: 40px;
    border-radius: 8px;
  }

  .service-summary div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-summary div:last-child {
    border-bottom: 0;
  }

  .section,
  .devices,
  .buyback-section,
  .trade-section,
  .connect-section,
  .quote,
  .contact {
    padding: 54px 18px;
  }

  .proof-grid {
    padding: 0 18px 54px;
  }

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:last-child {
    min-height: auto;
    border-radius: 8px;
  }

  .featured-repair,
  .repair-list article,
  .specialist-repairs,
  .process-track article,
  .review-grid figure,
  .contact-details {
    padding: 24px;
  }

  .section h2,
  .devices h2,
  .contact h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .quote h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .repair-layout,
  .process-track,
  .category-grid,
  .device-grid,
  .buyback-actions,
  .review-grid {
    gap: 12px;
  }

  .buyback-form-card ul {
    grid-template-columns: 1fr;
  }

  .featured-repair h3 {
    font-size: 1.9rem;
  }

  .specialist-heading h3 {
    font-size: 1.95rem;
  }

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

  .specialist-card img {
    height: 210px;
  }

  .social-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .social-card img {
    width: 132px;
    height: 132px;
  }

  .location-panel {
    min-height: 330px;
  }

  .location-panel iframe {
    min-height: 330px;
  }

  .map-overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 12px;
    padding: 12px;
  }

  .map-pin {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .site-footer {
    padding: 24px 18px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.85fr 0.9fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 233, 0.95);
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(23, 33, 43, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 50px;
    place-items: center;
    padding: 8px;
    color: var(--white);
    background: var(--teal-deep);
    border-radius: 7px;
    line-height: 1.05;
    text-align: center;
  }

  .mobile-action-bar a:nth-child(2) {
    color: var(--ink);
    background: var(--amber);
  }

  .mobile-action-bar a:nth-child(3) {
    color: var(--white);
    background: #1c6f8f;
    border: 1px solid rgba(28, 111, 143, 0.4);
  }

  .mobile-action-bar a:nth-child(4) {
    color: var(--ink);
    background: #edf5f4;
    border: 1px solid #cfe3de;
  }

  .mobile-action-bar span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0.72;
    text-transform: uppercase;
  }

  .mobile-action-bar strong {
    font-size: 0.86rem;
  }
}
