* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #f6c453;
  --gold-light: #ffe39a;
  --white: #ffffff;
  --muted: #c9ced8;
  --dark: #07080d;
  --glass: rgba(9, 12, 20, 0.74);
  --border: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(3, 5, 10, .72), rgba(3, 5, 10, .86)),
    url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=2200&q=85")
    center/cover fixed no-repeat;
  overflow-x: hidden;
}

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

.page-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(246,196,83,.10), transparent 45%);
  z-index: -1;
}

.topbar {
  width: min(1180px, 92%);
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(5, 7, 12, .72);
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--gold-light), #d69b21);
  color: #111;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(246,196,83,.24);
}

.brand h1 {
  font-size: 22px;
  letter-spacing: 2px;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.location-btn,
.btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
}

.location-btn {
  border: 1px solid rgba(246,196,83,.35);
  color: var(--gold-light);
}

.location-btn:hover,
.btn:hover,
.contact-btn:hover {
  transform: translateY(-3px);
}

.hero {
  min-height: 610px;
  width: min(1180px, 92%);
  margin: auto;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  padding: 80px 0;
}

.eyebrow,
.section-heading p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.hero h2 {
  margin: 18px 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -3px;
}

.hero h2 span {
  color: var(--gold-light);
}

.hero-text {
  max-width: 650px;
  color: #d5d9e1;
  line-height: 1.75;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn.primary {
  background: var(--gold);
  color: #121212;
}

.btn.secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.07);
}

.running-ad {
  width: 100%;
  overflow: hidden;
  background: var(--gold);
  color: #101010;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 14px 0;
  white-space: nowrap;
}

.ad-track {
  display: inline-flex;
  gap: 55px;
  min-width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cards-section,
.about,
.contact {
  width: min(1180px, 92%);
  margin: auto;
  padding: 100px 0;
}

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

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 52px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0,0,0,.25);
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246,196,83,.5);
}

.card-image {
  height: 255px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.repair-card .card-image {
  background:
    linear-gradient(rgba(10,12,18,.25), rgba(10,12,18,.75)),
    url("https://images.unsplash.com/photo-1598327105666-5b89351aff97?auto=format&fit=crop&w=1200&q=80")
    center/cover;
}

.accessories-card .card-image {
  background:
    linear-gradient(rgba(10,12,18,.25), rgba(10,12,18,.75)),
    url("https://images.unsplash.com/photo-1609592424750-7f2c31f6f5e1?auto=format&fit=crop&w=1200&q=80")
    center/cover;
}

.phone-broken {
  font-size: 110px;
  filter: drop-shadow(0 15px 18px rgba(0,0,0,.5));
  transform: rotate(-8deg);
}

.repair-tools {
  position: absolute;
  bottom: 22px;
  right: 28px;
  font-size: 32px;
}

.accessory-icons {
  font-size: 70px;
  letter-spacing: 14px;
  text-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.accessory-label {
  position: absolute;
  bottom: 20px;
  left: 25px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.card-content {
  padding: 28px;
}

.card-tag {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.card-content h3 {
  margin: 9px 0;
  font-size: 30px;
}

.card-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-content strong {
  color: var(--gold-light);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.about h2 {
  margin-top: 12px;
  font-size: clamp(30px, 5vw, 52px);
}

.about > p {
  color: #d2d6df;
  line-height: 1.9;
  font-size: 17px;
}

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

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(8,10,16,.76);
  transition: .25s ease;
}

.contact-btn > span {
  font-size: 30px;
}

.contact-btn small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

footer {
  padding: 45px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.55);
}

.footer-brand {
  color: var(--gold-light);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
}

footer p {
  color: var(--muted);
  margin-top: 8px;
}

.copyright {
  font-size: 12px;
  margin-top: 20px;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .location-btn {
    display: none;
  }

  .hero {
    min-height: 570px;
  }

  .hero h2 {
    letter-spacing: -2px;
  }

  .service-grid,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-section,
  .about,
  .contact {
    padding: 70px 0;
  }

  .card-image {
    height: 220px;
  }

  .brand h1 {
    font-size: 18px;
  }

  .brand span {
    font-size: 9px;
  }
}
