/* ============================================================
   iKon Technical Solutions - PS3 Repair Landing Page CSS
   Cleaned / organized version
   Theme: dark navy / black / electric blue
   ============================================================ */


/* ============================================================
   1. Theme Variables
   ============================================================ */

:root {
  --bg: #030712;
  --panel: #08111f;
  --panel-2: #0b1728;
  --text: #f4f8ff;
  --muted: #9fb2cc;

  --blue: #38bdf8;
  --blue-2: #0ea5e9;
  --deep-blue: #2563eb;
  --navy: #1e3a8a;

  /* Old variable names retained so existing HTML/classes still work */
  --gold: #38bdf8;
  --orange: #2563eb;
  --red: #1e3a8a;

  --line: rgba(148, 163, 184, 0.20);
  --line-blue: rgba(96, 165, 250, 0.18);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.60);

  /* Header logo controls */
  --header-logo-size: 74px;
  --header-logo-padding: 0px;
  --header-logo-mobile-size: 64px;
}


/* ============================================================
   2. Reset / Base
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 50% 8%, rgba(37, 99, 235, 0.22), transparent 36%),
    radial-gradient(circle at 82% 35%, rgba(14, 165, 233, 0.12), transparent 32%),
    linear-gradient(180deg, #020617 0%, #07111f 46%, #020617 100%);
}

a {
  color: inherit;
}

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.centered {
  text-align: center;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 8px;
  color: #000;
  background: #fff;
}


/* ============================================================
   3. Header / Navigation
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: var(--header-logo-size, 74px);
  height: var(--header-logo-size, 74px);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.38);
  border-radius: 999px;
  color: #f8fbff;
  background:
    radial-gradient(circle at 50% 35%, rgba(56, 189, 248, 0.16), transparent 48%),
    rgba(2, 6, 23, 0.92);
  font-weight: 900;
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.25);
}

.brand-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  padding: var(--header-logo-padding, 0px);
  object-fit: contain;
}

.brand strong {
  display: block;
  max-width: 126px;
  color: #f8fbff;
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  display: block;
  max-width: 126px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.header-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  padding: 6px 14px;
  border-left: 1px solid rgba(96, 165, 250, 0.20);
  border-right: 1px solid rgba(96, 165, 250, 0.20);
}

.header-phone span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-phone a {
  margin-top: 3px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.header-phone a:hover {
  color: var(--blue);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  flex-wrap: nowrap;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.top-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  box-shadow: 0 0 18px rgba(14, 165, 233, 0.22);
}


/* ============================================================
   4. Hero
   Top row: headline left, image right.
   Under row: lead, buttons, eBay note, U.S. note, and chips
   centered across the full hero width.
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px 0 auto 0;
  height: 420px;
  pointer-events: none;
  opacity: 0.7;
  background: repeating-linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.03) 0 1px,
    transparent 1px 22px
  );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  grid-template-areas:
    "copy visual"
    "details details";
  gap: 34px 38px;
  align-items: start;
}

.hero-copy {
  grid-area: copy;
  align-self: start;
}

.hero-visual {
  grid-area: visual;
  display: flex;
  justify-content: center;
  align-self: start;
  padding-top: 0;
}

.hero-card {
  width: 100%;
  max-width: 620px;
  padding: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(8, 17, 31, 0.90), rgba(2, 6, 23, 0.94));
  box-shadow: var(--shadow), 0 0 70px rgba(37, 99, 235, 0.16);
}

.hero-card img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 16px;
}

.hero-details {
  grid-area: details;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-details .lead {
  max-width: 940px;
  margin: 0 auto 22px;
  color: #d9deea;
  font-size: 20px;
}

.hero-details .hero-actions {
  justify-content: center;
  margin: 0 0 18px;
}

.hero-details .hero-ebay-note {
  margin: 0 auto;
}

.hero-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 22px;
}

/* Default lead/actions styles still apply outside the hero. */
.lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: #d9deea;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  color: #f8fbff;
  background: linear-gradient(135deg, #38bdf8, #1d4ed8);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.24);
}

.btn.secondary {
  color: #eaf6ff;
  background: rgba(15, 23, 42, 0.76);
  border-color: rgba(96, 165, 250, 0.24);
}

.btn.full {
  width: 100%;
  border: 0;
}

.hero-ebay-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  color: #b8c7dc;
  background: rgba(8, 17, 31, 0.72);
  font-size: 0.95rem;
}

.hero-ebay-note span {
  color: #f8fafc;
  font-weight: 900;
}

.hero-ebay-note a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.hero-ebay-note a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.service-area-note {
  width: min(100%, 720px);
  padding: 14px 18px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 16px;
  color: #dbeafe;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 38%),
    rgba(8, 17, 31, 0.78);
  text-align: center;
}

.service-area-note strong {
  display: inline;
  color: var(--blue);
  font-weight: 900;
}

.service-area-note span {
  display: inline;
  color: #f8fafc;
  font-size: 0.95rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, 820px);
  margin-top: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(8, 17, 31, 0.55);
}

.trust-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.78);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}


/* ============================================================
   5. Notice / General Sections
   ============================================================ */

.notice {
  padding: 18px 0 42px;
}

.notice-box {
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(15, 23, 42, 0.70));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
}

.notice-box h2 {
  font-size: 24px;
}

.notice-box p {
  margin: 0;
  color: #e4e8f1;
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.dark-panel {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.74), rgba(8, 17, 31, 0.66));
}


/* ============================================================
   6. Cards / Lists / Split Sections
   ============================================================ */

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

.card,
.spec-box,
.warning-box,
.request-form,
.mini-note,
.price-card {
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(8, 17, 31, 0.92));
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.22);
}

.card {
  min-height: 190px;
  padding: 22px;
}

.card:hover,
.price-card:hover {
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.45), 0 0 30px rgba(14, 165, 233, 0.08);
}

.card .icon {
  margin-bottom: 12px;
  font-size: 32px;
}

.card p,
.split p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 28px;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: #e8edf6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.spec-box,
.warning-box {
  padding: 24px;
}

.spec-box dl {
  margin: 0;
}

.spec-box div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec-box dt {
  color: #fff;
  font-weight: 900;
}

.spec-box dd {
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.warning-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}


/* ============================================================
   7. Pricing
   ============================================================ */

.pricing-showcase,
.pricing-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(14, 165, 233, 0.08), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.10), transparent 32%);
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-show-card {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 17, 31, 0.96));
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.45);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pricing-show-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.55), 0 0 24px rgba(56, 189, 248, 0.08);
}

.pricing-image-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.pricing-image-button img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #020617;
}

.pricing-image-placeholder {
  display: grid;
  place-items: center;
  height: 180px;
  font-size: 42px;
  background: rgba(2, 6, 23, 0.80);
}

.pricing-card-body {
  padding: 16px;
}

.pricing-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pricing-desc {
  min-height: 66px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-price,
.price-range {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  color: #eaf6ff;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.16);
}

.pricing-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 16px;
  color: #dbeafe;
  background: rgba(14, 165, 233, 0.08);
}


/* ============================================================
   8. Videos
   ============================================================ */

.content-carousel {
  position: relative;
  padding: 0 62px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.28s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(56, 189, 248, 0.30);
  border-radius: 999px;
  color: #eaf6ff;
  background:
    radial-gradient(circle at 35% 25%, rgba(56, 189, 248, 0.20), transparent 42%),
    rgba(15, 23, 42, 0.94);
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.45), 0 0 22px rgba(56, 189, 248, 0.10);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}

.carousel-arrow:hover:not(:disabled) {
  border-color: rgba(56, 189, 248, 0.62);
  filter: brightness(1.12);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.content-carousel.is-static {
  padding: 0;
}

.content-carousel.is-static .carousel-arrow {
  display: none;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 17, 31, 0.96));
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.40);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body {
  padding: 18px;
}

.video-card-body h3 {
  margin: 0 0 8px;
}

.video-card-body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}


/* ============================================================
   9. Gallery / Lightbox
   ============================================================ */

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

.gallery-item {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 16px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 17, 31, 0.96));
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.35);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #020617;
}

.gallery-caption {
  display: block;
  padding: 12px;
  color: #dbeafe;
  font-size: 14px;
  text-align: left;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(2, 6, 23, 0.92);
}

.lightbox-inner {
  max-width: 1100px;
  max-height: 90vh;
  text-align: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.65);
}

.lightbox-caption {
  margin-top: 12px;
  color: #dbeafe;
  font-size: 16px;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.90);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}


/* ============================================================
   10. Reviews
   ============================================================ */

.review-card {
  padding: 22px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 17, 31, 0.96));
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.40);
}

.review-stars {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-text {
  margin: 0 0 18px;
  color: #eaf2ff;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.review-meta strong {
  color: #fff;
}

.review-meta span,
.review-date {
  color: var(--muted);
  font-size: 13px;
}

.review-service {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 10px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(14, 165, 233, 0.10);
  font-size: 13px;
  font-weight: 800;
}


/* ============================================================
   11. Models / Forms / eBay Box
   ============================================================ */

.model-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 20px;
}

.model {
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.36);
  border-radius: 16px;
  color: #eaf6ff;
  background: rgba(14, 165, 233, 0.10);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}

.form-section {
  background:
    radial-gradient(circle at 30% 10%, rgba(14, 165, 233, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.50), transparent);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 28px;
}

.mini-note {
  margin-top: 20px;
  padding: 16px;
  color: #dfe4ee;
}

.request-form {
  padding: 22px;
}

.request-form label,
.request-form fieldset {
  display: block;
  margin-bottom: 14px;
  color: #eaf0fa;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 12px;
  color: #f8fbff;
  background: rgba(2, 6, 23, 0.62);
  font: inherit;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.request-form textarea {
  resize: vertical;
}

.request-form fieldset {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.request-form legend {
  padding: 0 8px;
  color: var(--blue);
}

.request-form .check {
  color: #dbe2ed;
  font-weight: 700;
}

.request-form .check input {
  width: auto;
  margin-right: 8px;
}

.hp {
  display: none !important;
}

.form-disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.ebay-option {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(8, 17, 31, 0.95), rgba(2, 6, 23, 0.95));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.ebay-option-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ebay-option h3 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 1.35rem;
  line-height: 1.2;
}

.ebay-option p {
  margin: 0 0 18px;
  color: #b8c7dc;
  line-height: 1.65;
}

.ebay-option a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0284c7);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.ebay-option a:hover {
  transform: translateY(-1px);
  filter: brightness(1.12);
}




/* ============================================================
   12. FAQ
   ============================================================ */

.faq-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(14, 165, 233, 0.10), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(8, 17, 31, 0.42));
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 17, 31, 0.96));
  box-shadow: 0 14px 45px rgba(2, 6, 23, 0.34);
}

.faq-item[open] {
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.48), 0 0 28px rgba(56, 189, 248, 0.08);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 18px 52px 18px 18px;
  cursor: pointer;
  color: #f8fafc;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(56, 189, 248, 0.30);
  border-radius: 999px;
  color: var(--blue);
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  border-top: 1px solid rgba(96, 165, 250, 0.14);
}

.faq-answer p {
  margin: 14px 0 0;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;

  max-width: 900px;
  margin: 22px auto 0;
  padding: 22px 24px;

  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 18px;
  color: #dbeafe;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 38%),
    rgba(14, 165, 233, 0.08);
}

.faq-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-cta-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.faq-cta-copy span {
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.5;
  max-width: 650px;
}

.faq-cta .btn {
  justify-self: end;
  white-space: nowrap;
  margin: 0;
}

@media (max-width: 700px) {
  .faq-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .faq-cta .btn {
    justify-self: start;
  }
}


/* ============================================================
   13. Footer
   ============================================================ */

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(96, 165, 250, 0.18);
  background: #020617;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}


/* ============================================================
   14. Responsive
   ============================================================ */

@media (max-width: 1250px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .brand {
    min-width: 220px;
  }

  .top-nav {
    gap: 10px;
    font-size: 12px;
  }

  .header-phone {
    min-width: 165px;
    padding: 6px 10px;
  }

  .header-phone a {
    font-size: 16px;
  }

  .nav-cta {
    padding: 9px 12px;
  }
}

@media (max-width: 1200px) {
  .pricing-card-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    flex: 1 1 230px;
    min-width: auto;
  }

  .header-phone {
    order: 2;
    flex: 1 1 100%;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(96, 165, 250, 0.20);
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.08);
    text-align: center;
  }

  .header-phone a {
    font-size: 22px;
  }

  .top-nav {
    order: 3;
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-nav a {
    padding: 8px 10px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    font-size: 12px;
  }

  .top-nav .nav-cta {
    color: #fff !important;
    background: linear-gradient(135deg, #38bdf8, #1d4ed8);
  }
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "details";
  }

  .hero-copy,
  .hero-details {
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-card {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .split-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .pricing-card-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-carousel {
    padding: 0 52px;
  }

  .carousel-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

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

  .footer-inner {
    display: block;
  }
}

@media (max-width: 650px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
    text-align: left;
  }

  .brand-mark {
    width: var(--header-logo-mobile-size, 64px);
    height: var(--header-logo-mobile-size, 64px);
  }

  .header-phone {
    display: flex;
  }

  .top-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .top-nav a {
    padding: 9px 8px;
    font-size: 12px;
    text-align: center;
  }

  .top-nav a[href="#process"],
  .top-nav a[href="#videos"],
  .top-nav a[href="#gallery"],
  .top-nav a[href="#models"],
  .top-nav a[href="#warranty"] {
    display: none;
  }

  .top-nav .nav-cta {
    grid-column: 1 / -1;
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .hero-actions .btn,
  .hero-ebay-note {
    width: 100%;
  }

  .hero-ebay-note {
    border-radius: 16px;
    justify-content: center;
  }

  .cards,
  .pricing-card-grid,
  .gallery-grid,
  .faq-grid,
  .model-row {
    grid-template-columns: 1fr;
  }

  .content-carousel {
    padding: 0 42px;
  }

  .carousel-slide {
    flex-basis: 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .pricing-image-button img,
  .gallery-item img {
    height: 220px;
  }

  .trust-strip span {
    font-size: 12px;
  }
}


/* ============================================================
   Service detail pages / SEO service cards
   ============================================================ */

.service-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-link-card {
  padding: 0;
  min-height: 0;
}

.service-link-card a {
  display: block;
  height: 100%;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.service-link-card h3,
.pricing-card-body h3 a {
  color: #fff;
  text-decoration: none;
}

.service-link-card:hover h3,
.pricing-card-body h3 a:hover,
.service-detail-link:hover {
  color: var(--blue);
}

.service-card-cta,
.service-detail-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.service-detail-link {
  margin-top: 14px;
}

.service-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.14), transparent 30%),
    radial-gradient(circle at 75% 10%, rgba(29, 78, 216, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.97), rgba(8, 17, 31, 0.96));
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.service-hero-copy h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.service-title-image {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.84);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44), 0 0 40px rgba(56, 189, 248, 0.10);
}

.service-title-image img {
  display: block;
  width: 100%;
  min-height: 330px;
  max-height: 520px;
  object-fit: cover;
}

.service-price-pill {
  display: inline-block;
  margin: 10px 0 20px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #eaf6ff;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.18);
}

.related-services-grid {
  max-height: none;
}

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

  .service-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .service-title-image img {
    min-height: 240px;
  }
}


/* ============================================================
   FINAL FIX: main Services section - forced 4 columns desktop
   Uses a unique grid class so the general .cards rule cannot fight it.
   Only the title and CTA are clickable, not the paragraph/card body.
   ============================================================ */

#services .wrap {
  width: min(1320px, calc(100% - 32px));
}

#services .services-four-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch;
}

#services .services-four-grid .service-link-card {
  min-width: 0;
  min-height: 210px;
  padding: 22px !important;
}

#services .services-four-grid .service-link-card .icon {
  margin-bottom: 12px;
}

#services .services-four-grid .service-link-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.1;
}

#services .services-four-grid .service-link-card h3 a {
  display: inline;
  height: auto;
  padding: 0;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

#services .services-four-grid .service-link-card h3 a:hover {
  color: var(--blue);
}

#services .services-four-grid .service-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

#services .services-four-grid .service-card-cta {
  display: inline-block;
  height: auto;
  margin-top: 14px;
  padding: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

#services .services-four-grid .service-card-cta:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  #services .services-four-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 850px) {
  #services .services-four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #services .services-four-grid {
    grid-template-columns: 1fr !important;
  }
}

.talk-first-note {
  width: min(100%, 720px);
  padding: 14px 18px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 16px;
  color: #dbeafe;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 38%),
    rgba(8, 17, 31, 0.72);
  text-align: center;
}

.talk-first-note strong {
  display: inline;
  color: var(--blue);
  font-weight: 900;
}

.talk-first-note span {
  display: inline;
  color: #f8fafc;
  font-size: 0.95rem;
}

.talk-first-note a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.talk-first-note a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}
